bundlesocial 2.0.0 → 2.2.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/dist/index.d.mts +252 -66
- package/dist/index.d.ts +252 -66
- package/package.json +1 -1
- package/readme.md +4 -133
package/dist/index.d.mts
CHANGED
|
@@ -83,6 +83,7 @@ type OrganizationGetOrganizationResponse = {
|
|
|
83
83
|
defaultPaymentMethodFilled?: boolean;
|
|
84
84
|
billingAddressFilled?: boolean;
|
|
85
85
|
apiAccess?: boolean;
|
|
86
|
+
ref?: string | null;
|
|
86
87
|
createdAt: string | null;
|
|
87
88
|
updatedAt: string | null;
|
|
88
89
|
deletedAt?: string | null;
|
|
@@ -136,7 +137,9 @@ type OrganizationGetOrganizationResponse = {
|
|
|
136
137
|
organizationSubscriptionId: string;
|
|
137
138
|
teamId: string;
|
|
138
139
|
stripePriceId: string;
|
|
139
|
-
tier: 'PRO';
|
|
140
|
+
tier: 'PRO' | 'CUSTOM';
|
|
141
|
+
maxMonthlyPosts: number;
|
|
142
|
+
maxDailyPosts: number;
|
|
140
143
|
createdAt: string | null;
|
|
141
144
|
updatedAt: string | null;
|
|
142
145
|
} | null;
|
|
@@ -162,6 +165,7 @@ type TeamGetTeamResponse = {
|
|
|
162
165
|
defaultPaymentMethodFilled?: boolean;
|
|
163
166
|
billingAddressFilled?: boolean;
|
|
164
167
|
apiAccess?: boolean;
|
|
168
|
+
ref?: string | null;
|
|
165
169
|
createdAt: string | null;
|
|
166
170
|
updatedAt: string | null;
|
|
167
171
|
deletedAt?: string | null;
|
|
@@ -190,7 +194,7 @@ type TeamGetTeamResponse = {
|
|
|
190
194
|
}>;
|
|
191
195
|
socialAccounts: Array<{
|
|
192
196
|
id: string;
|
|
193
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | '
|
|
197
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
194
198
|
teamId: string;
|
|
195
199
|
username?: string | null;
|
|
196
200
|
displayName?: string | null;
|
|
@@ -216,12 +220,51 @@ type TeamGetTeamResponse = {
|
|
|
216
220
|
usage: {
|
|
217
221
|
monthlyPosts: number;
|
|
218
222
|
};
|
|
223
|
+
bio?: {
|
|
224
|
+
id: string;
|
|
225
|
+
username: string;
|
|
226
|
+
name: string | null;
|
|
227
|
+
description: string | null;
|
|
228
|
+
avatarUrl: string | null;
|
|
229
|
+
socials: {
|
|
230
|
+
[key: string]: (string | null);
|
|
231
|
+
} | null;
|
|
232
|
+
teamId: string;
|
|
233
|
+
createdAt: string | null;
|
|
234
|
+
updatedAt: string | null;
|
|
235
|
+
items: Array<{
|
|
236
|
+
id: string;
|
|
237
|
+
bioId: string;
|
|
238
|
+
name: string;
|
|
239
|
+
link: string;
|
|
240
|
+
icon?: string | null;
|
|
241
|
+
enabled: boolean;
|
|
242
|
+
order?: number | null;
|
|
243
|
+
createdAt: string | null;
|
|
244
|
+
updatedAt: string | null;
|
|
245
|
+
analytics: Array<{
|
|
246
|
+
id: string;
|
|
247
|
+
count: number;
|
|
248
|
+
bioItemId: string;
|
|
249
|
+
deviceType: {
|
|
250
|
+
[key: string]: (number);
|
|
251
|
+
};
|
|
252
|
+
country: {
|
|
253
|
+
[key: string]: (number);
|
|
254
|
+
};
|
|
255
|
+
createdAt: string | null;
|
|
256
|
+
updatedAt: string | null;
|
|
257
|
+
}>;
|
|
258
|
+
}>;
|
|
259
|
+
} | null;
|
|
219
260
|
teamPlan?: {
|
|
220
261
|
id: string;
|
|
221
262
|
organizationSubscriptionId: string;
|
|
222
263
|
teamId: string;
|
|
223
264
|
stripePriceId: string;
|
|
224
|
-
tier: 'PRO';
|
|
265
|
+
tier: 'PRO' | 'CUSTOM';
|
|
266
|
+
maxMonthlyPosts: number;
|
|
267
|
+
maxDailyPosts: number;
|
|
225
268
|
createdAt: string | null;
|
|
226
269
|
updatedAt: string | null;
|
|
227
270
|
organizationSubscription?: {
|
|
@@ -288,7 +331,7 @@ type TeamCreateTeamData = {
|
|
|
288
331
|
*/
|
|
289
332
|
requestBody?: {
|
|
290
333
|
name: string;
|
|
291
|
-
tier: 'FREE' | 'PRO';
|
|
334
|
+
tier: 'FREE' | 'PRO' | 'CUSTOM';
|
|
292
335
|
avatarUrl?: string | null;
|
|
293
336
|
};
|
|
294
337
|
};
|
|
@@ -307,9 +350,13 @@ type SocialAccountConnectData = {
|
|
|
307
350
|
* Body
|
|
308
351
|
*/
|
|
309
352
|
requestBody?: {
|
|
310
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'DISCORD' | 'SLACK';
|
|
353
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'DISCORD' | 'SLACK' | 'MASTODON';
|
|
311
354
|
teamId: string;
|
|
312
355
|
redirectUrl: string;
|
|
356
|
+
/**
|
|
357
|
+
* Mastodon only
|
|
358
|
+
*/
|
|
359
|
+
serverUrl?: string;
|
|
313
360
|
};
|
|
314
361
|
};
|
|
315
362
|
type SocialAccountConnectResponse = {
|
|
@@ -323,13 +370,13 @@ type SocialAccountDisconnectData = {
|
|
|
323
370
|
* Body
|
|
324
371
|
*/
|
|
325
372
|
requestBody?: {
|
|
326
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'DISCORD' | 'SLACK';
|
|
373
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'DISCORD' | 'SLACK' | 'MASTODON';
|
|
327
374
|
teamId: string;
|
|
328
375
|
};
|
|
329
376
|
};
|
|
330
377
|
type SocialAccountDisconnectResponse = {
|
|
331
378
|
id: string;
|
|
332
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | '
|
|
379
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
333
380
|
teamId: string;
|
|
334
381
|
username?: string | null;
|
|
335
382
|
displayName?: string | null;
|
|
@@ -364,7 +411,7 @@ type SocialAccountSetChannelData = {
|
|
|
364
411
|
};
|
|
365
412
|
type SocialAccountSetChannelResponse = {
|
|
366
413
|
id: string;
|
|
367
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | '
|
|
414
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
368
415
|
teamId: string;
|
|
369
416
|
username?: string | null;
|
|
370
417
|
displayName?: string | null;
|
|
@@ -398,7 +445,7 @@ type SocialAccountRefreshChannelsData = {
|
|
|
398
445
|
};
|
|
399
446
|
type SocialAccountRefreshChannelsResponse = {
|
|
400
447
|
id: string;
|
|
401
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | '
|
|
448
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
402
449
|
teamId: string;
|
|
403
450
|
username?: string | null;
|
|
404
451
|
displayName?: string | null;
|
|
@@ -601,6 +648,10 @@ type PostGetResponse = {
|
|
|
601
648
|
text?: string | null;
|
|
602
649
|
uploadIds?: Array<(string)> | null;
|
|
603
650
|
} | null;
|
|
651
|
+
THREADS?: {
|
|
652
|
+
text?: string | null;
|
|
653
|
+
uploadIds?: Array<(string)> | null;
|
|
654
|
+
} | null;
|
|
604
655
|
TIKTOK?: {
|
|
605
656
|
text?: string | null;
|
|
606
657
|
uploadIds?: Array<(string)> | null;
|
|
@@ -693,8 +744,12 @@ type PostGetResponse = {
|
|
|
693
744
|
*/
|
|
694
745
|
avatarUrl?: string | null;
|
|
695
746
|
} | null;
|
|
696
|
-
|
|
697
|
-
|
|
747
|
+
MASTODON?: {
|
|
748
|
+
text?: string | null;
|
|
749
|
+
uploadIds?: Array<(string)> | null;
|
|
750
|
+
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
751
|
+
spoiler?: string | null;
|
|
752
|
+
} | null;
|
|
698
753
|
};
|
|
699
754
|
error?: string | null;
|
|
700
755
|
errors?: {
|
|
@@ -708,7 +763,7 @@ type PostGetResponse = {
|
|
|
708
763
|
DISCORD?: string | null;
|
|
709
764
|
SLACK?: string | null;
|
|
710
765
|
YOUTUBE?: string | null;
|
|
711
|
-
|
|
766
|
+
MASTODON?: string | null;
|
|
712
767
|
THREADS?: string | null;
|
|
713
768
|
} | null;
|
|
714
769
|
externalData?: {
|
|
@@ -757,7 +812,7 @@ type PostGetResponse = {
|
|
|
757
812
|
id?: string | null;
|
|
758
813
|
permalink?: string | null;
|
|
759
814
|
} | null;
|
|
760
|
-
|
|
815
|
+
MASTODON?: {
|
|
761
816
|
id?: string | null;
|
|
762
817
|
permalink?: string | null;
|
|
763
818
|
} | null;
|
|
@@ -804,7 +859,7 @@ type PostGetResponse = {
|
|
|
804
859
|
deletedAt?: string | null;
|
|
805
860
|
socialAccount: {
|
|
806
861
|
id: string;
|
|
807
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | '
|
|
862
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
808
863
|
teamId: string;
|
|
809
864
|
username?: string | null;
|
|
810
865
|
displayName?: string | null;
|
|
@@ -838,7 +893,7 @@ type PostUpdateData = {
|
|
|
838
893
|
title?: string;
|
|
839
894
|
postDate?: string;
|
|
840
895
|
status?: 'DRAFT' | 'SCHEDULED';
|
|
841
|
-
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | '
|
|
896
|
+
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
842
897
|
data?: {
|
|
843
898
|
TWITTER?: {
|
|
844
899
|
text?: string | null;
|
|
@@ -876,6 +931,10 @@ type PostUpdateData = {
|
|
|
876
931
|
text?: string | null;
|
|
877
932
|
uploadIds?: Array<(string)> | null;
|
|
878
933
|
} | null;
|
|
934
|
+
THREADS?: {
|
|
935
|
+
text?: string | null;
|
|
936
|
+
uploadIds?: Array<(string)> | null;
|
|
937
|
+
} | null;
|
|
879
938
|
TIKTOK?: {
|
|
880
939
|
text?: string | null;
|
|
881
940
|
uploadIds?: Array<(string)> | null;
|
|
@@ -968,8 +1027,12 @@ type PostUpdateData = {
|
|
|
968
1027
|
*/
|
|
969
1028
|
avatarUrl?: string | null;
|
|
970
1029
|
} | null;
|
|
971
|
-
|
|
972
|
-
|
|
1030
|
+
MASTODON?: {
|
|
1031
|
+
text?: string | null;
|
|
1032
|
+
uploadIds?: Array<(string)> | null;
|
|
1033
|
+
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
1034
|
+
spoiler?: string | null;
|
|
1035
|
+
} | null;
|
|
973
1036
|
};
|
|
974
1037
|
};
|
|
975
1038
|
};
|
|
@@ -1017,6 +1080,10 @@ type PostUpdateResponse = {
|
|
|
1017
1080
|
text?: string | null;
|
|
1018
1081
|
uploadIds?: Array<(string)> | null;
|
|
1019
1082
|
} | null;
|
|
1083
|
+
THREADS?: {
|
|
1084
|
+
text?: string | null;
|
|
1085
|
+
uploadIds?: Array<(string)> | null;
|
|
1086
|
+
} | null;
|
|
1020
1087
|
TIKTOK?: {
|
|
1021
1088
|
text?: string | null;
|
|
1022
1089
|
uploadIds?: Array<(string)> | null;
|
|
@@ -1109,8 +1176,12 @@ type PostUpdateResponse = {
|
|
|
1109
1176
|
*/
|
|
1110
1177
|
avatarUrl?: string | null;
|
|
1111
1178
|
} | null;
|
|
1112
|
-
|
|
1113
|
-
|
|
1179
|
+
MASTODON?: {
|
|
1180
|
+
text?: string | null;
|
|
1181
|
+
uploadIds?: Array<(string)> | null;
|
|
1182
|
+
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
1183
|
+
spoiler?: string | null;
|
|
1184
|
+
} | null;
|
|
1114
1185
|
};
|
|
1115
1186
|
error?: string | null;
|
|
1116
1187
|
errors?: {
|
|
@@ -1124,7 +1195,7 @@ type PostUpdateResponse = {
|
|
|
1124
1195
|
DISCORD?: string | null;
|
|
1125
1196
|
SLACK?: string | null;
|
|
1126
1197
|
YOUTUBE?: string | null;
|
|
1127
|
-
|
|
1198
|
+
MASTODON?: string | null;
|
|
1128
1199
|
THREADS?: string | null;
|
|
1129
1200
|
} | null;
|
|
1130
1201
|
externalData?: {
|
|
@@ -1173,7 +1244,7 @@ type PostUpdateResponse = {
|
|
|
1173
1244
|
id?: string | null;
|
|
1174
1245
|
permalink?: string | null;
|
|
1175
1246
|
} | null;
|
|
1176
|
-
|
|
1247
|
+
MASTODON?: {
|
|
1177
1248
|
id?: string | null;
|
|
1178
1249
|
permalink?: string | null;
|
|
1179
1250
|
} | null;
|
|
@@ -1233,6 +1304,10 @@ type PostDeleteResponse = {
|
|
|
1233
1304
|
text?: string | null;
|
|
1234
1305
|
uploadIds?: Array<(string)> | null;
|
|
1235
1306
|
} | null;
|
|
1307
|
+
THREADS?: {
|
|
1308
|
+
text?: string | null;
|
|
1309
|
+
uploadIds?: Array<(string)> | null;
|
|
1310
|
+
} | null;
|
|
1236
1311
|
TIKTOK?: {
|
|
1237
1312
|
text?: string | null;
|
|
1238
1313
|
uploadIds?: Array<(string)> | null;
|
|
@@ -1325,8 +1400,12 @@ type PostDeleteResponse = {
|
|
|
1325
1400
|
*/
|
|
1326
1401
|
avatarUrl?: string | null;
|
|
1327
1402
|
} | null;
|
|
1328
|
-
|
|
1329
|
-
|
|
1403
|
+
MASTODON?: {
|
|
1404
|
+
text?: string | null;
|
|
1405
|
+
uploadIds?: Array<(string)> | null;
|
|
1406
|
+
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
1407
|
+
spoiler?: string | null;
|
|
1408
|
+
} | null;
|
|
1330
1409
|
};
|
|
1331
1410
|
error?: string | null;
|
|
1332
1411
|
errors?: {
|
|
@@ -1340,7 +1419,7 @@ type PostDeleteResponse = {
|
|
|
1340
1419
|
DISCORD?: string | null;
|
|
1341
1420
|
SLACK?: string | null;
|
|
1342
1421
|
YOUTUBE?: string | null;
|
|
1343
|
-
|
|
1422
|
+
MASTODON?: string | null;
|
|
1344
1423
|
THREADS?: string | null;
|
|
1345
1424
|
} | null;
|
|
1346
1425
|
externalData?: {
|
|
@@ -1389,7 +1468,7 @@ type PostDeleteResponse = {
|
|
|
1389
1468
|
id?: string | null;
|
|
1390
1469
|
permalink?: string | null;
|
|
1391
1470
|
} | null;
|
|
1392
|
-
|
|
1471
|
+
MASTODON?: {
|
|
1393
1472
|
id?: string | null;
|
|
1394
1473
|
permalink?: string | null;
|
|
1395
1474
|
} | null;
|
|
@@ -1407,7 +1486,7 @@ type PostGetListData = {
|
|
|
1407
1486
|
offset?: number | null;
|
|
1408
1487
|
order?: 'ASC' | 'DESC' | null;
|
|
1409
1488
|
orderBy?: 'createdAt' | 'updatedAt' | 'postDate' | 'postedDate' | 'deletedAt' | null;
|
|
1410
|
-
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | '
|
|
1489
|
+
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')> | null;
|
|
1411
1490
|
q?: string | null;
|
|
1412
1491
|
status?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | null;
|
|
1413
1492
|
teamId: string;
|
|
@@ -1457,6 +1536,10 @@ type PostGetListResponse = {
|
|
|
1457
1536
|
text?: string | null;
|
|
1458
1537
|
uploadIds?: Array<(string)> | null;
|
|
1459
1538
|
} | null;
|
|
1539
|
+
THREADS?: {
|
|
1540
|
+
text?: string | null;
|
|
1541
|
+
uploadIds?: Array<(string)> | null;
|
|
1542
|
+
} | null;
|
|
1460
1543
|
TIKTOK?: {
|
|
1461
1544
|
text?: string | null;
|
|
1462
1545
|
uploadIds?: Array<(string)> | null;
|
|
@@ -1549,8 +1632,12 @@ type PostGetListResponse = {
|
|
|
1549
1632
|
*/
|
|
1550
1633
|
avatarUrl?: string | null;
|
|
1551
1634
|
} | null;
|
|
1552
|
-
|
|
1553
|
-
|
|
1635
|
+
MASTODON?: {
|
|
1636
|
+
text?: string | null;
|
|
1637
|
+
uploadIds?: Array<(string)> | null;
|
|
1638
|
+
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
1639
|
+
spoiler?: string | null;
|
|
1640
|
+
} | null;
|
|
1554
1641
|
};
|
|
1555
1642
|
error?: string | null;
|
|
1556
1643
|
errors?: {
|
|
@@ -1564,7 +1651,7 @@ type PostGetListResponse = {
|
|
|
1564
1651
|
DISCORD?: string | null;
|
|
1565
1652
|
SLACK?: string | null;
|
|
1566
1653
|
YOUTUBE?: string | null;
|
|
1567
|
-
|
|
1654
|
+
MASTODON?: string | null;
|
|
1568
1655
|
THREADS?: string | null;
|
|
1569
1656
|
} | null;
|
|
1570
1657
|
externalData?: {
|
|
@@ -1613,7 +1700,7 @@ type PostGetListResponse = {
|
|
|
1613
1700
|
id?: string | null;
|
|
1614
1701
|
permalink?: string | null;
|
|
1615
1702
|
} | null;
|
|
1616
|
-
|
|
1703
|
+
MASTODON?: {
|
|
1617
1704
|
id?: string | null;
|
|
1618
1705
|
permalink?: string | null;
|
|
1619
1706
|
} | null;
|
|
@@ -1660,7 +1747,7 @@ type PostGetListResponse = {
|
|
|
1660
1747
|
deletedAt?: string | null;
|
|
1661
1748
|
socialAccount: {
|
|
1662
1749
|
id: string;
|
|
1663
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | '
|
|
1750
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
1664
1751
|
teamId: string;
|
|
1665
1752
|
username?: string | null;
|
|
1666
1753
|
displayName?: string | null;
|
|
@@ -1696,7 +1783,7 @@ type PostCreateData = {
|
|
|
1696
1783
|
title: string;
|
|
1697
1784
|
postDate: string;
|
|
1698
1785
|
status: 'DRAFT' | 'SCHEDULED';
|
|
1699
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | '
|
|
1786
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
1700
1787
|
data: {
|
|
1701
1788
|
TWITTER?: {
|
|
1702
1789
|
text?: string | null;
|
|
@@ -1734,6 +1821,10 @@ type PostCreateData = {
|
|
|
1734
1821
|
text?: string | null;
|
|
1735
1822
|
uploadIds?: Array<(string)> | null;
|
|
1736
1823
|
} | null;
|
|
1824
|
+
THREADS?: {
|
|
1825
|
+
text?: string | null;
|
|
1826
|
+
uploadIds?: Array<(string)> | null;
|
|
1827
|
+
} | null;
|
|
1737
1828
|
TIKTOK?: {
|
|
1738
1829
|
text?: string | null;
|
|
1739
1830
|
uploadIds?: Array<(string)> | null;
|
|
@@ -1826,8 +1917,12 @@ type PostCreateData = {
|
|
|
1826
1917
|
*/
|
|
1827
1918
|
avatarUrl?: string | null;
|
|
1828
1919
|
} | null;
|
|
1829
|
-
|
|
1830
|
-
|
|
1920
|
+
MASTODON?: {
|
|
1921
|
+
text?: string | null;
|
|
1922
|
+
uploadIds?: Array<(string)> | null;
|
|
1923
|
+
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
1924
|
+
spoiler?: string | null;
|
|
1925
|
+
} | null;
|
|
1831
1926
|
};
|
|
1832
1927
|
};
|
|
1833
1928
|
};
|
|
@@ -1875,6 +1970,10 @@ type PostCreateResponse = {
|
|
|
1875
1970
|
text?: string | null;
|
|
1876
1971
|
uploadIds?: Array<(string)> | null;
|
|
1877
1972
|
} | null;
|
|
1973
|
+
THREADS?: {
|
|
1974
|
+
text?: string | null;
|
|
1975
|
+
uploadIds?: Array<(string)> | null;
|
|
1976
|
+
} | null;
|
|
1878
1977
|
TIKTOK?: {
|
|
1879
1978
|
text?: string | null;
|
|
1880
1979
|
uploadIds?: Array<(string)> | null;
|
|
@@ -1967,8 +2066,12 @@ type PostCreateResponse = {
|
|
|
1967
2066
|
*/
|
|
1968
2067
|
avatarUrl?: string | null;
|
|
1969
2068
|
} | null;
|
|
1970
|
-
|
|
1971
|
-
|
|
2069
|
+
MASTODON?: {
|
|
2070
|
+
text?: string | null;
|
|
2071
|
+
uploadIds?: Array<(string)> | null;
|
|
2072
|
+
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
2073
|
+
spoiler?: string | null;
|
|
2074
|
+
} | null;
|
|
1972
2075
|
};
|
|
1973
2076
|
error?: string | null;
|
|
1974
2077
|
errors?: {
|
|
@@ -1982,7 +2085,7 @@ type PostCreateResponse = {
|
|
|
1982
2085
|
DISCORD?: string | null;
|
|
1983
2086
|
SLACK?: string | null;
|
|
1984
2087
|
YOUTUBE?: string | null;
|
|
1985
|
-
|
|
2088
|
+
MASTODON?: string | null;
|
|
1986
2089
|
THREADS?: string | null;
|
|
1987
2090
|
} | null;
|
|
1988
2091
|
externalData?: {
|
|
@@ -2031,7 +2134,7 @@ type PostCreateResponse = {
|
|
|
2031
2134
|
id?: string | null;
|
|
2032
2135
|
permalink?: string | null;
|
|
2033
2136
|
} | null;
|
|
2034
|
-
|
|
2137
|
+
MASTODON?: {
|
|
2035
2138
|
id?: string | null;
|
|
2036
2139
|
permalink?: string | null;
|
|
2037
2140
|
} | null;
|
|
@@ -2112,6 +2215,7 @@ type $OpenApiTs = {
|
|
|
2112
2215
|
defaultPaymentMethodFilled?: boolean;
|
|
2113
2216
|
billingAddressFilled?: boolean;
|
|
2114
2217
|
apiAccess?: boolean;
|
|
2218
|
+
ref?: string | null;
|
|
2115
2219
|
createdAt: string | null;
|
|
2116
2220
|
updatedAt: string | null;
|
|
2117
2221
|
deletedAt?: string | null;
|
|
@@ -2165,7 +2269,9 @@ type $OpenApiTs = {
|
|
|
2165
2269
|
organizationSubscriptionId: string;
|
|
2166
2270
|
teamId: string;
|
|
2167
2271
|
stripePriceId: string;
|
|
2168
|
-
tier: 'PRO';
|
|
2272
|
+
tier: 'PRO' | 'CUSTOM';
|
|
2273
|
+
maxMonthlyPosts: number;
|
|
2274
|
+
maxDailyPosts: number;
|
|
2169
2275
|
createdAt: string | null;
|
|
2170
2276
|
updatedAt: string | null;
|
|
2171
2277
|
} | null;
|
|
@@ -2238,6 +2344,7 @@ type $OpenApiTs = {
|
|
|
2238
2344
|
defaultPaymentMethodFilled?: boolean;
|
|
2239
2345
|
billingAddressFilled?: boolean;
|
|
2240
2346
|
apiAccess?: boolean;
|
|
2347
|
+
ref?: string | null;
|
|
2241
2348
|
createdAt: string | null;
|
|
2242
2349
|
updatedAt: string | null;
|
|
2243
2350
|
deletedAt?: string | null;
|
|
@@ -2266,7 +2373,7 @@ type $OpenApiTs = {
|
|
|
2266
2373
|
}>;
|
|
2267
2374
|
socialAccounts: Array<{
|
|
2268
2375
|
id: string;
|
|
2269
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | '
|
|
2376
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
2270
2377
|
teamId: string;
|
|
2271
2378
|
username?: string | null;
|
|
2272
2379
|
displayName?: string | null;
|
|
@@ -2292,12 +2399,51 @@ type $OpenApiTs = {
|
|
|
2292
2399
|
usage: {
|
|
2293
2400
|
monthlyPosts: number;
|
|
2294
2401
|
};
|
|
2402
|
+
bio?: {
|
|
2403
|
+
id: string;
|
|
2404
|
+
username: string;
|
|
2405
|
+
name: string | null;
|
|
2406
|
+
description: string | null;
|
|
2407
|
+
avatarUrl: string | null;
|
|
2408
|
+
socials: {
|
|
2409
|
+
[key: string]: (string | null);
|
|
2410
|
+
} | null;
|
|
2411
|
+
teamId: string;
|
|
2412
|
+
createdAt: string | null;
|
|
2413
|
+
updatedAt: string | null;
|
|
2414
|
+
items: Array<{
|
|
2415
|
+
id: string;
|
|
2416
|
+
bioId: string;
|
|
2417
|
+
name: string;
|
|
2418
|
+
link: string;
|
|
2419
|
+
icon?: string | null;
|
|
2420
|
+
enabled: boolean;
|
|
2421
|
+
order?: number | null;
|
|
2422
|
+
createdAt: string | null;
|
|
2423
|
+
updatedAt: string | null;
|
|
2424
|
+
analytics: Array<{
|
|
2425
|
+
id: string;
|
|
2426
|
+
count: number;
|
|
2427
|
+
bioItemId: string;
|
|
2428
|
+
deviceType: {
|
|
2429
|
+
[key: string]: (number);
|
|
2430
|
+
};
|
|
2431
|
+
country: {
|
|
2432
|
+
[key: string]: (number);
|
|
2433
|
+
};
|
|
2434
|
+
createdAt: string | null;
|
|
2435
|
+
updatedAt: string | null;
|
|
2436
|
+
}>;
|
|
2437
|
+
}>;
|
|
2438
|
+
} | null;
|
|
2295
2439
|
teamPlan?: {
|
|
2296
2440
|
id: string;
|
|
2297
2441
|
organizationSubscriptionId: string;
|
|
2298
2442
|
teamId: string;
|
|
2299
2443
|
stripePriceId: string;
|
|
2300
|
-
tier: 'PRO';
|
|
2444
|
+
tier: 'PRO' | 'CUSTOM';
|
|
2445
|
+
maxMonthlyPosts: number;
|
|
2446
|
+
maxDailyPosts: number;
|
|
2301
2447
|
createdAt: string | null;
|
|
2302
2448
|
updatedAt: string | null;
|
|
2303
2449
|
organizationSubscription?: {
|
|
@@ -2609,7 +2755,7 @@ type $OpenApiTs = {
|
|
|
2609
2755
|
*/
|
|
2610
2756
|
200: {
|
|
2611
2757
|
id: string;
|
|
2612
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | '
|
|
2758
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
2613
2759
|
teamId: string;
|
|
2614
2760
|
username?: string | null;
|
|
2615
2761
|
displayName?: string | null;
|
|
@@ -2684,7 +2830,7 @@ type $OpenApiTs = {
|
|
|
2684
2830
|
*/
|
|
2685
2831
|
200: {
|
|
2686
2832
|
id: string;
|
|
2687
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | '
|
|
2833
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
2688
2834
|
teamId: string;
|
|
2689
2835
|
username?: string | null;
|
|
2690
2836
|
displayName?: string | null;
|
|
@@ -2759,7 +2905,7 @@ type $OpenApiTs = {
|
|
|
2759
2905
|
*/
|
|
2760
2906
|
200: {
|
|
2761
2907
|
id: string;
|
|
2762
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | '
|
|
2908
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
2763
2909
|
teamId: string;
|
|
2764
2910
|
username?: string | null;
|
|
2765
2911
|
displayName?: string | null;
|
|
@@ -3227,6 +3373,10 @@ type $OpenApiTs = {
|
|
|
3227
3373
|
text?: string | null;
|
|
3228
3374
|
uploadIds?: Array<(string)> | null;
|
|
3229
3375
|
} | null;
|
|
3376
|
+
THREADS?: {
|
|
3377
|
+
text?: string | null;
|
|
3378
|
+
uploadIds?: Array<(string)> | null;
|
|
3379
|
+
} | null;
|
|
3230
3380
|
TIKTOK?: {
|
|
3231
3381
|
text?: string | null;
|
|
3232
3382
|
uploadIds?: Array<(string)> | null;
|
|
@@ -3319,8 +3469,12 @@ type $OpenApiTs = {
|
|
|
3319
3469
|
*/
|
|
3320
3470
|
avatarUrl?: string | null;
|
|
3321
3471
|
} | null;
|
|
3322
|
-
|
|
3323
|
-
|
|
3472
|
+
MASTODON?: {
|
|
3473
|
+
text?: string | null;
|
|
3474
|
+
uploadIds?: Array<(string)> | null;
|
|
3475
|
+
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
3476
|
+
spoiler?: string | null;
|
|
3477
|
+
} | null;
|
|
3324
3478
|
};
|
|
3325
3479
|
error?: string | null;
|
|
3326
3480
|
errors?: {
|
|
@@ -3334,7 +3488,7 @@ type $OpenApiTs = {
|
|
|
3334
3488
|
DISCORD?: string | null;
|
|
3335
3489
|
SLACK?: string | null;
|
|
3336
3490
|
YOUTUBE?: string | null;
|
|
3337
|
-
|
|
3491
|
+
MASTODON?: string | null;
|
|
3338
3492
|
THREADS?: string | null;
|
|
3339
3493
|
} | null;
|
|
3340
3494
|
externalData?: {
|
|
@@ -3383,7 +3537,7 @@ type $OpenApiTs = {
|
|
|
3383
3537
|
id?: string | null;
|
|
3384
3538
|
permalink?: string | null;
|
|
3385
3539
|
} | null;
|
|
3386
|
-
|
|
3540
|
+
MASTODON?: {
|
|
3387
3541
|
id?: string | null;
|
|
3388
3542
|
permalink?: string | null;
|
|
3389
3543
|
} | null;
|
|
@@ -3430,7 +3584,7 @@ type $OpenApiTs = {
|
|
|
3430
3584
|
deletedAt?: string | null;
|
|
3431
3585
|
socialAccount: {
|
|
3432
3586
|
id: string;
|
|
3433
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | '
|
|
3587
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
3434
3588
|
teamId: string;
|
|
3435
3589
|
username?: string | null;
|
|
3436
3590
|
displayName?: string | null;
|
|
@@ -3547,6 +3701,10 @@ type $OpenApiTs = {
|
|
|
3547
3701
|
text?: string | null;
|
|
3548
3702
|
uploadIds?: Array<(string)> | null;
|
|
3549
3703
|
} | null;
|
|
3704
|
+
THREADS?: {
|
|
3705
|
+
text?: string | null;
|
|
3706
|
+
uploadIds?: Array<(string)> | null;
|
|
3707
|
+
} | null;
|
|
3550
3708
|
TIKTOK?: {
|
|
3551
3709
|
text?: string | null;
|
|
3552
3710
|
uploadIds?: Array<(string)> | null;
|
|
@@ -3639,8 +3797,12 @@ type $OpenApiTs = {
|
|
|
3639
3797
|
*/
|
|
3640
3798
|
avatarUrl?: string | null;
|
|
3641
3799
|
} | null;
|
|
3642
|
-
|
|
3643
|
-
|
|
3800
|
+
MASTODON?: {
|
|
3801
|
+
text?: string | null;
|
|
3802
|
+
uploadIds?: Array<(string)> | null;
|
|
3803
|
+
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
3804
|
+
spoiler?: string | null;
|
|
3805
|
+
} | null;
|
|
3644
3806
|
};
|
|
3645
3807
|
error?: string | null;
|
|
3646
3808
|
errors?: {
|
|
@@ -3654,7 +3816,7 @@ type $OpenApiTs = {
|
|
|
3654
3816
|
DISCORD?: string | null;
|
|
3655
3817
|
SLACK?: string | null;
|
|
3656
3818
|
YOUTUBE?: string | null;
|
|
3657
|
-
|
|
3819
|
+
MASTODON?: string | null;
|
|
3658
3820
|
THREADS?: string | null;
|
|
3659
3821
|
} | null;
|
|
3660
3822
|
externalData?: {
|
|
@@ -3703,7 +3865,7 @@ type $OpenApiTs = {
|
|
|
3703
3865
|
id?: string | null;
|
|
3704
3866
|
permalink?: string | null;
|
|
3705
3867
|
} | null;
|
|
3706
|
-
|
|
3868
|
+
MASTODON?: {
|
|
3707
3869
|
id?: string | null;
|
|
3708
3870
|
permalink?: string | null;
|
|
3709
3871
|
} | null;
|
|
@@ -3808,6 +3970,10 @@ type $OpenApiTs = {
|
|
|
3808
3970
|
text?: string | null;
|
|
3809
3971
|
uploadIds?: Array<(string)> | null;
|
|
3810
3972
|
} | null;
|
|
3973
|
+
THREADS?: {
|
|
3974
|
+
text?: string | null;
|
|
3975
|
+
uploadIds?: Array<(string)> | null;
|
|
3976
|
+
} | null;
|
|
3811
3977
|
TIKTOK?: {
|
|
3812
3978
|
text?: string | null;
|
|
3813
3979
|
uploadIds?: Array<(string)> | null;
|
|
@@ -3900,8 +4066,12 @@ type $OpenApiTs = {
|
|
|
3900
4066
|
*/
|
|
3901
4067
|
avatarUrl?: string | null;
|
|
3902
4068
|
} | null;
|
|
3903
|
-
|
|
3904
|
-
|
|
4069
|
+
MASTODON?: {
|
|
4070
|
+
text?: string | null;
|
|
4071
|
+
uploadIds?: Array<(string)> | null;
|
|
4072
|
+
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
4073
|
+
spoiler?: string | null;
|
|
4074
|
+
} | null;
|
|
3905
4075
|
};
|
|
3906
4076
|
error?: string | null;
|
|
3907
4077
|
errors?: {
|
|
@@ -3915,7 +4085,7 @@ type $OpenApiTs = {
|
|
|
3915
4085
|
DISCORD?: string | null;
|
|
3916
4086
|
SLACK?: string | null;
|
|
3917
4087
|
YOUTUBE?: string | null;
|
|
3918
|
-
|
|
4088
|
+
MASTODON?: string | null;
|
|
3919
4089
|
THREADS?: string | null;
|
|
3920
4090
|
} | null;
|
|
3921
4091
|
externalData?: {
|
|
@@ -3964,7 +4134,7 @@ type $OpenApiTs = {
|
|
|
3964
4134
|
id?: string | null;
|
|
3965
4135
|
permalink?: string | null;
|
|
3966
4136
|
} | null;
|
|
3967
|
-
|
|
4137
|
+
MASTODON?: {
|
|
3968
4138
|
id?: string | null;
|
|
3969
4139
|
permalink?: string | null;
|
|
3970
4140
|
} | null;
|
|
@@ -4072,6 +4242,10 @@ type $OpenApiTs = {
|
|
|
4072
4242
|
text?: string | null;
|
|
4073
4243
|
uploadIds?: Array<(string)> | null;
|
|
4074
4244
|
} | null;
|
|
4245
|
+
THREADS?: {
|
|
4246
|
+
text?: string | null;
|
|
4247
|
+
uploadIds?: Array<(string)> | null;
|
|
4248
|
+
} | null;
|
|
4075
4249
|
TIKTOK?: {
|
|
4076
4250
|
text?: string | null;
|
|
4077
4251
|
uploadIds?: Array<(string)> | null;
|
|
@@ -4164,8 +4338,12 @@ type $OpenApiTs = {
|
|
|
4164
4338
|
*/
|
|
4165
4339
|
avatarUrl?: string | null;
|
|
4166
4340
|
} | null;
|
|
4167
|
-
|
|
4168
|
-
|
|
4341
|
+
MASTODON?: {
|
|
4342
|
+
text?: string | null;
|
|
4343
|
+
uploadIds?: Array<(string)> | null;
|
|
4344
|
+
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
4345
|
+
spoiler?: string | null;
|
|
4346
|
+
} | null;
|
|
4169
4347
|
};
|
|
4170
4348
|
error?: string | null;
|
|
4171
4349
|
errors?: {
|
|
@@ -4179,7 +4357,7 @@ type $OpenApiTs = {
|
|
|
4179
4357
|
DISCORD?: string | null;
|
|
4180
4358
|
SLACK?: string | null;
|
|
4181
4359
|
YOUTUBE?: string | null;
|
|
4182
|
-
|
|
4360
|
+
MASTODON?: string | null;
|
|
4183
4361
|
THREADS?: string | null;
|
|
4184
4362
|
} | null;
|
|
4185
4363
|
externalData?: {
|
|
@@ -4228,7 +4406,7 @@ type $OpenApiTs = {
|
|
|
4228
4406
|
id?: string | null;
|
|
4229
4407
|
permalink?: string | null;
|
|
4230
4408
|
} | null;
|
|
4231
|
-
|
|
4409
|
+
MASTODON?: {
|
|
4232
4410
|
id?: string | null;
|
|
4233
4411
|
permalink?: string | null;
|
|
4234
4412
|
} | null;
|
|
@@ -4275,7 +4453,7 @@ type $OpenApiTs = {
|
|
|
4275
4453
|
deletedAt?: string | null;
|
|
4276
4454
|
socialAccount: {
|
|
4277
4455
|
id: string;
|
|
4278
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | '
|
|
4456
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
4279
4457
|
teamId: string;
|
|
4280
4458
|
username?: string | null;
|
|
4281
4459
|
displayName?: string | null;
|
|
@@ -4394,6 +4572,10 @@ type $OpenApiTs = {
|
|
|
4394
4572
|
text?: string | null;
|
|
4395
4573
|
uploadIds?: Array<(string)> | null;
|
|
4396
4574
|
} | null;
|
|
4575
|
+
THREADS?: {
|
|
4576
|
+
text?: string | null;
|
|
4577
|
+
uploadIds?: Array<(string)> | null;
|
|
4578
|
+
} | null;
|
|
4397
4579
|
TIKTOK?: {
|
|
4398
4580
|
text?: string | null;
|
|
4399
4581
|
uploadIds?: Array<(string)> | null;
|
|
@@ -4486,8 +4668,12 @@ type $OpenApiTs = {
|
|
|
4486
4668
|
*/
|
|
4487
4669
|
avatarUrl?: string | null;
|
|
4488
4670
|
} | null;
|
|
4489
|
-
|
|
4490
|
-
|
|
4671
|
+
MASTODON?: {
|
|
4672
|
+
text?: string | null;
|
|
4673
|
+
uploadIds?: Array<(string)> | null;
|
|
4674
|
+
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
4675
|
+
spoiler?: string | null;
|
|
4676
|
+
} | null;
|
|
4491
4677
|
};
|
|
4492
4678
|
error?: string | null;
|
|
4493
4679
|
errors?: {
|
|
@@ -4501,7 +4687,7 @@ type $OpenApiTs = {
|
|
|
4501
4687
|
DISCORD?: string | null;
|
|
4502
4688
|
SLACK?: string | null;
|
|
4503
4689
|
YOUTUBE?: string | null;
|
|
4504
|
-
|
|
4690
|
+
MASTODON?: string | null;
|
|
4505
4691
|
THREADS?: string | null;
|
|
4506
4692
|
} | null;
|
|
4507
4693
|
externalData?: {
|
|
@@ -4550,7 +4736,7 @@ type $OpenApiTs = {
|
|
|
4550
4736
|
id?: string | null;
|
|
4551
4737
|
permalink?: string | null;
|
|
4552
4738
|
} | null;
|
|
4553
|
-
|
|
4739
|
+
MASTODON?: {
|
|
4554
4740
|
id?: string | null;
|
|
4555
4741
|
permalink?: string | null;
|
|
4556
4742
|
} | null;
|