misskey-js 2025.10.0-beta.2 → 2025.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23300,25 +23300,25 @@ export interface operations {
23300
23300
  requestBody: {
23301
23301
  content: {
23302
23302
  'application/json': {
23303
- visibility: 'public' | 'home' | 'followers' | 'specified';
23304
- visibleUserIds: string[];
23305
- cw: string | null;
23306
- hashtag: string | null;
23307
- localOnly: boolean;
23308
- reactionAcceptance: null | 'likeOnly' | 'likeOnlyForRemote' | 'nonSensitiveOnly' | 'nonSensitiveOnlyForLocalLikeOnlyForRemote';
23309
- replyId: string | null;
23310
- renoteId: string | null;
23311
- channelId: string | null;
23312
- text: string | null;
23313
- fileIds: string[];
23314
- poll: {
23303
+ visibility?: 'public' | 'home' | 'followers' | 'specified';
23304
+ visibleUserIds?: string[];
23305
+ cw?: string | null;
23306
+ hashtag?: string | null;
23307
+ localOnly?: boolean;
23308
+ reactionAcceptance?: null | 'likeOnly' | 'likeOnlyForRemote' | 'nonSensitiveOnly' | 'nonSensitiveOnlyForLocalLikeOnlyForRemote';
23309
+ replyId?: string | null;
23310
+ renoteId?: string | null;
23311
+ channelId?: string | null;
23312
+ text?: string | null;
23313
+ fileIds?: string[];
23314
+ poll?: {
23315
23315
  choices: string[];
23316
23316
  multiple?: boolean;
23317
23317
  expiresAt?: number | null;
23318
23318
  expiredAfter?: number | null;
23319
23319
  } | null;
23320
- scheduledAt: number | null;
23321
- isActuallyScheduled: boolean;
23320
+ scheduledAt?: number | null;
23321
+ isActuallyScheduled?: boolean;
23322
23322
  };
23323
23323
  };
23324
23324
  };