add: json-schemaのnoteにpollの型定義を追加
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* version: 2023.12.2
|
||||
* generatedAt: 2024-01-08T06:48:05.059Z
|
||||
* generatedAt: 2024-01-08T13:32:03.180Z
|
||||
*/
|
||||
|
||||
import type { SwitchCaseResponseType } from '../api.js';
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* version: 2023.12.2
|
||||
* generatedAt: 2024-01-08T06:48:05.055Z
|
||||
* generatedAt: 2024-01-08T13:32:03.177Z
|
||||
*/
|
||||
|
||||
import type {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* version: 2023.12.2
|
||||
* generatedAt: 2024-01-08T06:48:05.053Z
|
||||
* generatedAt: 2024-01-08T13:32:03.174Z
|
||||
*/
|
||||
|
||||
import { operations } from './types.js';
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* version: 2023.12.2
|
||||
* generatedAt: 2024-01-08T06:48:05.052Z
|
||||
* generatedAt: 2024-01-08T13:32:03.173Z
|
||||
*/
|
||||
|
||||
import { components } from './types.js';
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
/*
|
||||
* version: 2023.12.2
|
||||
* generatedAt: 2024-01-08T06:48:04.940Z
|
||||
* generatedAt: 2024-01-08T13:32:03.048Z
|
||||
*/
|
||||
|
||||
/**
|
||||
@@ -3791,7 +3791,16 @@ export type components = {
|
||||
fileIds?: string[];
|
||||
files?: components['schemas']['DriveFile'][];
|
||||
tags?: string[];
|
||||
poll?: Record<string, unknown> | null;
|
||||
poll?: ({
|
||||
/** Format: date-time */
|
||||
expiresAt?: string | null;
|
||||
multiple: boolean;
|
||||
choices: {
|
||||
isVoted: boolean;
|
||||
text: string;
|
||||
votes: number;
|
||||
}[];
|
||||
}) | null;
|
||||
emojis?: Record<string, never>;
|
||||
/**
|
||||
* Format: id
|
||||
|
||||
Reference in New Issue
Block a user