misskey-js 2025.9.1-alpha.1 → 2025.10.0-alpha.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.
- package/built/autogen/types.d.ts +89 -35
- package/built/autogen/types.d.ts.map +1 -1
- package/built/consts.d.ts +3 -3
- package/built/consts.d.ts.map +1 -1
- package/built/consts.js +4 -0
- package/built/consts.js.map +2 -2
- package/built/index.d.ts +3 -3
- package/built/index.d.ts.map +1 -1
- package/package.json +1 -1
package/built/autogen/types.d.ts
CHANGED
|
@@ -1467,6 +1467,18 @@ export type components = {
|
|
|
1467
1467
|
type: 'list';
|
|
1468
1468
|
userListId: string;
|
|
1469
1469
|
};
|
|
1470
|
+
scheduledNotePosted?: {
|
|
1471
|
+
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
|
1472
|
+
} | {
|
|
1473
|
+
type: 'list';
|
|
1474
|
+
userListId: string;
|
|
1475
|
+
};
|
|
1476
|
+
scheduledNotePostFailed?: {
|
|
1477
|
+
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
|
1478
|
+
} | {
|
|
1479
|
+
type: 'list';
|
|
1480
|
+
userListId: string;
|
|
1481
|
+
};
|
|
1470
1482
|
receiveFollowRequest?: {
|
|
1471
1483
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
|
1472
1484
|
} | {
|
|
@@ -1638,25 +1650,25 @@ export type components = {
|
|
|
1638
1650
|
id: string;
|
|
1639
1651
|
createdAt: string;
|
|
1640
1652
|
text: string | null;
|
|
1641
|
-
cw
|
|
1653
|
+
cw: string | null;
|
|
1642
1654
|
userId: string;
|
|
1643
1655
|
user: components['schemas']['UserLite'];
|
|
1644
|
-
replyId
|
|
1645
|
-
renoteId
|
|
1656
|
+
replyId: string | null;
|
|
1657
|
+
renoteId: string | null;
|
|
1646
1658
|
reply?: components['schemas']['Note'] | null;
|
|
1647
1659
|
renote?: components['schemas']['Note'] | null;
|
|
1648
1660
|
visibility: 'public' | 'home' | 'followers' | 'specified';
|
|
1649
|
-
visibleUserIds
|
|
1650
|
-
fileIds
|
|
1661
|
+
visibleUserIds: string[];
|
|
1662
|
+
fileIds: string[];
|
|
1651
1663
|
files?: components['schemas']['DriveFile'][];
|
|
1652
|
-
hashtag
|
|
1653
|
-
poll
|
|
1664
|
+
hashtag: string | null;
|
|
1665
|
+
poll: {
|
|
1654
1666
|
expiresAt?: string | null;
|
|
1655
1667
|
expiredAfter?: number | null;
|
|
1656
1668
|
multiple: boolean;
|
|
1657
1669
|
choices: string[];
|
|
1658
1670
|
} | null;
|
|
1659
|
-
channelId
|
|
1671
|
+
channelId: string | null;
|
|
1660
1672
|
channel?: {
|
|
1661
1673
|
id: string;
|
|
1662
1674
|
name: string;
|
|
@@ -1665,8 +1677,10 @@ export type components = {
|
|
|
1665
1677
|
allowRenoteToExternal: boolean;
|
|
1666
1678
|
userId: string | null;
|
|
1667
1679
|
} | null;
|
|
1668
|
-
localOnly
|
|
1680
|
+
localOnly: boolean;
|
|
1669
1681
|
reactionAcceptance: 'likeOnly' | 'likeOnlyForRemote' | 'nonSensitiveOnly' | 'nonSensitiveOnlyForLocalLikeOnlyForRemote' | null;
|
|
1682
|
+
scheduledAt: number | null;
|
|
1683
|
+
isActuallyScheduled: boolean;
|
|
1670
1684
|
};
|
|
1671
1685
|
NoteReaction: {
|
|
1672
1686
|
id: string;
|
|
@@ -1737,6 +1751,16 @@ export type components = {
|
|
|
1737
1751
|
user: components['schemas']['UserLite'];
|
|
1738
1752
|
userId: string;
|
|
1739
1753
|
note: components['schemas']['Note'];
|
|
1754
|
+
} | {
|
|
1755
|
+
id: string;
|
|
1756
|
+
createdAt: string;
|
|
1757
|
+
type: 'scheduledNotePosted';
|
|
1758
|
+
note: components['schemas']['Note'];
|
|
1759
|
+
} | {
|
|
1760
|
+
id: string;
|
|
1761
|
+
createdAt: string;
|
|
1762
|
+
type: 'scheduledNotePostFailed';
|
|
1763
|
+
noteDraft: components['schemas']['NoteDraft'];
|
|
1740
1764
|
} | {
|
|
1741
1765
|
id: string;
|
|
1742
1766
|
createdAt: string;
|
|
@@ -2217,6 +2241,7 @@ export type components = {
|
|
|
2217
2241
|
canImportUserLists: boolean;
|
|
2218
2242
|
chatAvailability: 'available' | 'readonly' | 'unavailable';
|
|
2219
2243
|
noteDraftLimit: number;
|
|
2244
|
+
scheduledNoteLimit: number;
|
|
2220
2245
|
watermarkAvailable: boolean;
|
|
2221
2246
|
};
|
|
2222
2247
|
ReversiGameLite: {
|
|
@@ -5956,7 +5981,7 @@ export interface operations {
|
|
|
5956
5981
|
requestBody: {
|
|
5957
5982
|
content: {
|
|
5958
5983
|
'application/json': {
|
|
5959
|
-
queue: 'system' | 'endedPollNotification' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
5984
|
+
queue: 'system' | 'endedPollNotification' | 'postScheduledNote' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
5960
5985
|
state: '*' | 'completed' | 'wait' | 'active' | 'paused' | 'prioritized' | 'delayed' | 'failed';
|
|
5961
5986
|
};
|
|
5962
5987
|
};
|
|
@@ -6123,7 +6148,7 @@ export interface operations {
|
|
|
6123
6148
|
requestBody: {
|
|
6124
6149
|
content: {
|
|
6125
6150
|
'application/json': {
|
|
6126
|
-
queue: 'system' | 'endedPollNotification' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6151
|
+
queue: 'system' | 'endedPollNotification' | 'postScheduledNote' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6127
6152
|
state: ('active' | 'wait' | 'delayed' | 'completed' | 'failed' | 'paused')[];
|
|
6128
6153
|
search?: string;
|
|
6129
6154
|
};
|
|
@@ -6184,7 +6209,7 @@ export interface operations {
|
|
|
6184
6209
|
requestBody: {
|
|
6185
6210
|
content: {
|
|
6186
6211
|
'application/json': {
|
|
6187
|
-
queue: 'system' | 'endedPollNotification' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6212
|
+
queue: 'system' | 'endedPollNotification' | 'postScheduledNote' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6188
6213
|
};
|
|
6189
6214
|
};
|
|
6190
6215
|
};
|
|
@@ -6240,7 +6265,7 @@ export interface operations {
|
|
|
6240
6265
|
requestBody: {
|
|
6241
6266
|
content: {
|
|
6242
6267
|
'application/json': {
|
|
6243
|
-
queue: 'system' | 'endedPollNotification' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6268
|
+
queue: 'system' | 'endedPollNotification' | 'postScheduledNote' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6244
6269
|
};
|
|
6245
6270
|
};
|
|
6246
6271
|
};
|
|
@@ -6251,7 +6276,7 @@ export interface operations {
|
|
|
6251
6276
|
};
|
|
6252
6277
|
content: {
|
|
6253
6278
|
'application/json': {
|
|
6254
|
-
name: 'system' | 'endedPollNotification' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6279
|
+
name: 'system' | 'endedPollNotification' | 'postScheduledNote' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6255
6280
|
qualifiedName: string;
|
|
6256
6281
|
counts: {
|
|
6257
6282
|
[key: string]: number;
|
|
@@ -6333,7 +6358,7 @@ export interface operations {
|
|
|
6333
6358
|
};
|
|
6334
6359
|
content: {
|
|
6335
6360
|
'application/json': {
|
|
6336
|
-
name: 'system' | 'endedPollNotification' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6361
|
+
name: 'system' | 'endedPollNotification' | 'postScheduledNote' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6337
6362
|
counts: {
|
|
6338
6363
|
[key: string]: number;
|
|
6339
6364
|
};
|
|
@@ -6391,7 +6416,7 @@ export interface operations {
|
|
|
6391
6416
|
requestBody: {
|
|
6392
6417
|
content: {
|
|
6393
6418
|
'application/json': {
|
|
6394
|
-
queue: 'system' | 'endedPollNotification' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6419
|
+
queue: 'system' | 'endedPollNotification' | 'postScheduledNote' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6395
6420
|
jobId: string;
|
|
6396
6421
|
};
|
|
6397
6422
|
};
|
|
@@ -6448,7 +6473,7 @@ export interface operations {
|
|
|
6448
6473
|
requestBody: {
|
|
6449
6474
|
content: {
|
|
6450
6475
|
'application/json': {
|
|
6451
|
-
queue: 'system' | 'endedPollNotification' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6476
|
+
queue: 'system' | 'endedPollNotification' | 'postScheduledNote' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6452
6477
|
jobId: string;
|
|
6453
6478
|
};
|
|
6454
6479
|
};
|
|
@@ -6505,7 +6530,7 @@ export interface operations {
|
|
|
6505
6530
|
requestBody: {
|
|
6506
6531
|
content: {
|
|
6507
6532
|
'application/json': {
|
|
6508
|
-
queue: 'system' | 'endedPollNotification' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6533
|
+
queue: 'system' | 'endedPollNotification' | 'postScheduledNote' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6509
6534
|
jobId: string;
|
|
6510
6535
|
};
|
|
6511
6536
|
};
|
|
@@ -6565,7 +6590,7 @@ export interface operations {
|
|
|
6565
6590
|
requestBody: {
|
|
6566
6591
|
content: {
|
|
6567
6592
|
'application/json': {
|
|
6568
|
-
queue: 'system' | 'endedPollNotification' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6593
|
+
queue: 'system' | 'endedPollNotification' | 'postScheduledNote' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
|
|
6569
6594
|
jobId: string;
|
|
6570
6595
|
};
|
|
6571
6596
|
};
|
|
@@ -7801,6 +7826,18 @@ export interface operations {
|
|
|
7801
7826
|
type: 'list';
|
|
7802
7827
|
userListId: string;
|
|
7803
7828
|
};
|
|
7829
|
+
scheduledNotePosted?: {
|
|
7830
|
+
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
|
7831
|
+
} | {
|
|
7832
|
+
type: 'list';
|
|
7833
|
+
userListId: string;
|
|
7834
|
+
};
|
|
7835
|
+
scheduledNotePostFailed?: {
|
|
7836
|
+
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
|
7837
|
+
} | {
|
|
7838
|
+
type: 'list';
|
|
7839
|
+
userListId: string;
|
|
7840
|
+
};
|
|
7804
7841
|
receiveFollowRequest?: {
|
|
7805
7842
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
|
7806
7843
|
} | {
|
|
@@ -20460,8 +20497,8 @@ export interface operations {
|
|
|
20460
20497
|
sinceDate?: number;
|
|
20461
20498
|
untilDate?: number;
|
|
20462
20499
|
markAsRead?: boolean;
|
|
20463
|
-
includeTypes?: ('note' | 'follow' | 'mention' | 'reply' | 'renote' | 'quote' | 'reaction' | 'pollEnded' | 'receiveFollowRequest' | 'followRequestAccepted' | 'roleAssigned' | 'chatRoomInvitationReceived' | 'achievementEarned' | 'exportCompleted' | 'login' | 'createToken' | 'app' | 'test' | 'pollVote' | 'groupInvited')[];
|
|
20464
|
-
excludeTypes?: ('note' | 'follow' | 'mention' | 'reply' | 'renote' | 'quote' | 'reaction' | 'pollEnded' | 'receiveFollowRequest' | 'followRequestAccepted' | 'roleAssigned' | 'chatRoomInvitationReceived' | 'achievementEarned' | 'exportCompleted' | 'login' | 'createToken' | 'app' | 'test' | 'pollVote' | 'groupInvited')[];
|
|
20500
|
+
includeTypes?: ('note' | 'follow' | 'mention' | 'reply' | 'renote' | 'quote' | 'reaction' | 'pollEnded' | 'scheduledNotePosted' | 'scheduledNotePostFailed' | 'receiveFollowRequest' | 'followRequestAccepted' | 'roleAssigned' | 'chatRoomInvitationReceived' | 'achievementEarned' | 'exportCompleted' | 'login' | 'createToken' | 'app' | 'test' | 'pollVote' | 'groupInvited')[];
|
|
20501
|
+
excludeTypes?: ('note' | 'follow' | 'mention' | 'reply' | 'renote' | 'quote' | 'reaction' | 'pollEnded' | 'scheduledNotePosted' | 'scheduledNotePostFailed' | 'receiveFollowRequest' | 'followRequestAccepted' | 'roleAssigned' | 'chatRoomInvitationReceived' | 'achievementEarned' | 'exportCompleted' | 'login' | 'createToken' | 'app' | 'test' | 'pollVote' | 'groupInvited')[];
|
|
20465
20502
|
};
|
|
20466
20503
|
};
|
|
20467
20504
|
};
|
|
@@ -20534,8 +20571,8 @@ export interface operations {
|
|
|
20534
20571
|
sinceDate?: number;
|
|
20535
20572
|
untilDate?: number;
|
|
20536
20573
|
markAsRead?: boolean;
|
|
20537
|
-
includeTypes?: ('note' | 'follow' | 'mention' | 'reply' | 'renote' | 'quote' | 'reaction' | 'pollEnded' | 'receiveFollowRequest' | 'followRequestAccepted' | 'roleAssigned' | 'chatRoomInvitationReceived' | 'achievementEarned' | 'exportCompleted' | 'login' | 'createToken' | 'app' | 'test' | 'pollVote' | 'groupInvited')[];
|
|
20538
|
-
excludeTypes?: ('note' | 'follow' | 'mention' | 'reply' | 'renote' | 'quote' | 'reaction' | 'pollEnded' | 'receiveFollowRequest' | 'followRequestAccepted' | 'roleAssigned' | 'chatRoomInvitationReceived' | 'achievementEarned' | 'exportCompleted' | 'login' | 'createToken' | 'app' | 'test' | 'pollVote' | 'groupInvited')[];
|
|
20574
|
+
includeTypes?: ('note' | 'follow' | 'mention' | 'reply' | 'renote' | 'quote' | 'reaction' | 'pollEnded' | 'scheduledNotePosted' | 'scheduledNotePostFailed' | 'receiveFollowRequest' | 'followRequestAccepted' | 'roleAssigned' | 'chatRoomInvitationReceived' | 'achievementEarned' | 'exportCompleted' | 'login' | 'createToken' | 'app' | 'test' | 'pollVote' | 'groupInvited')[];
|
|
20575
|
+
excludeTypes?: ('note' | 'follow' | 'mention' | 'reply' | 'renote' | 'quote' | 'reaction' | 'pollEnded' | 'scheduledNotePosted' | 'scheduledNotePostFailed' | 'receiveFollowRequest' | 'followRequestAccepted' | 'roleAssigned' | 'chatRoomInvitationReceived' | 'achievementEarned' | 'exportCompleted' | 'login' | 'createToken' | 'app' | 'test' | 'pollVote' | 'groupInvited')[];
|
|
20539
20576
|
};
|
|
20540
20577
|
};
|
|
20541
20578
|
};
|
|
@@ -21653,6 +21690,18 @@ export interface operations {
|
|
|
21653
21690
|
type: 'list';
|
|
21654
21691
|
userListId: string;
|
|
21655
21692
|
};
|
|
21693
|
+
scheduledNotePosted?: {
|
|
21694
|
+
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
|
21695
|
+
} | {
|
|
21696
|
+
type: 'list';
|
|
21697
|
+
userListId: string;
|
|
21698
|
+
};
|
|
21699
|
+
scheduledNotePostFailed?: {
|
|
21700
|
+
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
|
21701
|
+
} | {
|
|
21702
|
+
type: 'list';
|
|
21703
|
+
userListId: string;
|
|
21704
|
+
};
|
|
21656
21705
|
receiveFollowRequest?: {
|
|
21657
21706
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
|
21658
21707
|
} | {
|
|
@@ -23251,23 +23300,25 @@ export interface operations {
|
|
|
23251
23300
|
requestBody: {
|
|
23252
23301
|
content: {
|
|
23253
23302
|
'application/json': {
|
|
23254
|
-
visibility
|
|
23255
|
-
visibleUserIds
|
|
23256
|
-
cw
|
|
23257
|
-
hashtag
|
|
23258
|
-
localOnly
|
|
23259
|
-
reactionAcceptance
|
|
23260
|
-
replyId
|
|
23261
|
-
renoteId
|
|
23262
|
-
channelId
|
|
23263
|
-
text
|
|
23264
|
-
fileIds
|
|
23265
|
-
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: {
|
|
23266
23315
|
choices: string[];
|
|
23267
23316
|
multiple?: boolean;
|
|
23268
23317
|
expiresAt?: number | null;
|
|
23269
23318
|
expiredAfter?: number | null;
|
|
23270
23319
|
} | null;
|
|
23320
|
+
scheduledAt: number | null;
|
|
23321
|
+
isActuallyScheduled: boolean;
|
|
23271
23322
|
};
|
|
23272
23323
|
};
|
|
23273
23324
|
};
|
|
@@ -23397,6 +23448,7 @@ export interface operations {
|
|
|
23397
23448
|
untilId?: string;
|
|
23398
23449
|
sinceDate?: number;
|
|
23399
23450
|
untilDate?: number;
|
|
23451
|
+
scheduled?: boolean | null;
|
|
23400
23452
|
};
|
|
23401
23453
|
};
|
|
23402
23454
|
};
|
|
@@ -23473,6 +23525,8 @@ export interface operations {
|
|
|
23473
23525
|
expiresAt?: number | null;
|
|
23474
23526
|
expiredAfter?: number | null;
|
|
23475
23527
|
} | null;
|
|
23528
|
+
scheduledAt?: number | null;
|
|
23529
|
+
isActuallyScheduled?: boolean;
|
|
23476
23530
|
};
|
|
23477
23531
|
};
|
|
23478
23532
|
};
|