bundlesocial 2.24.0 → 2.26.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 +1716 -541
- package/dist/index.d.ts +1716 -541
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -95,6 +95,8 @@ type OrganizationGetOrganizationResponse = {
|
|
|
95
95
|
DISCORD?: number;
|
|
96
96
|
SLACK?: number;
|
|
97
97
|
MASTODON?: number;
|
|
98
|
+
BLUESKY?: number;
|
|
99
|
+
GOOGLE_BUSINESS?: number;
|
|
98
100
|
} | null;
|
|
99
101
|
apiAccess?: boolean;
|
|
100
102
|
analyticsDisabled?: boolean;
|
|
@@ -264,6 +266,8 @@ type TeamGetTeamResponse = {
|
|
|
264
266
|
DISCORD?: number;
|
|
265
267
|
SLACK?: number;
|
|
266
268
|
MASTODON?: number;
|
|
269
|
+
BLUESKY?: number;
|
|
270
|
+
GOOGLE_BUSINESS?: number;
|
|
267
271
|
} | null;
|
|
268
272
|
apiAccess?: boolean;
|
|
269
273
|
analyticsDisabled?: boolean;
|
|
@@ -296,7 +300,7 @@ type TeamGetTeamResponse = {
|
|
|
296
300
|
}>;
|
|
297
301
|
socialAccounts: Array<{
|
|
298
302
|
id: string;
|
|
299
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
303
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
300
304
|
teamId: string;
|
|
301
305
|
username?: string | null;
|
|
302
306
|
displayName?: string | null;
|
|
@@ -428,6 +432,8 @@ type TeamGetListResponse = {
|
|
|
428
432
|
DISCORD?: number;
|
|
429
433
|
SLACK?: number;
|
|
430
434
|
MASTODON?: number;
|
|
435
|
+
BLUESKY?: number;
|
|
436
|
+
GOOGLE_BUSINESS?: number;
|
|
431
437
|
} | null;
|
|
432
438
|
apiAccess?: boolean;
|
|
433
439
|
analyticsDisabled?: boolean;
|
|
@@ -460,7 +466,7 @@ type TeamGetListResponse = {
|
|
|
460
466
|
}>;
|
|
461
467
|
socialAccounts: Array<{
|
|
462
468
|
id: string;
|
|
463
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
469
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
464
470
|
teamId: string;
|
|
465
471
|
username?: string | null;
|
|
466
472
|
displayName?: string | null;
|
|
@@ -552,11 +558,11 @@ type SocialAccountConnectData = {
|
|
|
552
558
|
* Body
|
|
553
559
|
*/
|
|
554
560
|
requestBody?: {
|
|
555
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
561
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
556
562
|
teamId: string;
|
|
557
563
|
redirectUrl: string;
|
|
558
564
|
/**
|
|
559
|
-
* Mastodon only
|
|
565
|
+
* Mastodon or Bluesky only
|
|
560
566
|
*/
|
|
561
567
|
serverUrl?: string;
|
|
562
568
|
/**
|
|
@@ -576,13 +582,13 @@ type SocialAccountDisconnectData = {
|
|
|
576
582
|
* Body
|
|
577
583
|
*/
|
|
578
584
|
requestBody?: {
|
|
579
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
585
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
580
586
|
teamId: string;
|
|
581
587
|
};
|
|
582
588
|
};
|
|
583
589
|
type SocialAccountDisconnectResponse = {
|
|
584
590
|
id: string;
|
|
585
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
591
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
586
592
|
teamId: string;
|
|
587
593
|
username?: string | null;
|
|
588
594
|
displayName?: string | null;
|
|
@@ -614,14 +620,14 @@ type SocialAccountSetChannelData = {
|
|
|
614
620
|
* Body
|
|
615
621
|
*/
|
|
616
622
|
requestBody?: {
|
|
617
|
-
type: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE';
|
|
623
|
+
type: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'GOOGLE_BUSINESS';
|
|
618
624
|
teamId: string;
|
|
619
625
|
channelId: string;
|
|
620
626
|
};
|
|
621
627
|
};
|
|
622
628
|
type SocialAccountSetChannelResponse = {
|
|
623
629
|
id: string;
|
|
624
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
630
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
625
631
|
teamId: string;
|
|
626
632
|
username?: string | null;
|
|
627
633
|
displayName?: string | null;
|
|
@@ -653,13 +659,13 @@ type SocialAccountRefreshChannelsData = {
|
|
|
653
659
|
* Body
|
|
654
660
|
*/
|
|
655
661
|
requestBody?: {
|
|
656
|
-
type: 'DISCORD' | 'SLACK' | 'REDDIT' | 'PINTEREST' | 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE';
|
|
662
|
+
type: 'DISCORD' | 'SLACK' | 'REDDIT' | 'PINTEREST' | 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'GOOGLE_BUSINESS';
|
|
657
663
|
teamId: string;
|
|
658
664
|
};
|
|
659
665
|
};
|
|
660
666
|
type SocialAccountRefreshChannelsResponse = {
|
|
661
667
|
id: string;
|
|
662
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
668
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
663
669
|
teamId: string;
|
|
664
670
|
username?: string | null;
|
|
665
671
|
displayName?: string | null;
|
|
@@ -693,7 +699,7 @@ type SocialAccountCreatePortalLinkData = {
|
|
|
693
699
|
requestBody?: {
|
|
694
700
|
teamId: string;
|
|
695
701
|
redirectUrl: string;
|
|
696
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
702
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
697
703
|
logoUrl?: string;
|
|
698
704
|
userLogoUrl?: string;
|
|
699
705
|
userName?: string;
|
|
@@ -704,7 +710,8 @@ type SocialAccountCreatePortalLinkData = {
|
|
|
704
710
|
hideUserName?: boolean;
|
|
705
711
|
hideLanguageSwitcher?: boolean;
|
|
706
712
|
showModalOnConnectSuccess?: boolean;
|
|
707
|
-
language?: 'en' | 'pl' | 'fr' | 'hi' | 'sv';
|
|
713
|
+
language?: 'en' | 'pl' | 'fr' | 'hi' | 'sv' | 'de' | 'es' | 'it' | 'nl' | 'pt' | 'ru' | 'tr' | 'zh';
|
|
714
|
+
maxSocialAccountsConnected?: number;
|
|
708
715
|
};
|
|
709
716
|
};
|
|
710
717
|
type SocialAccountCreatePortalLinkResponse = {
|
|
@@ -721,12 +728,12 @@ type SocialAccountCopyData = {
|
|
|
721
728
|
* If you set that to true, selected page will not be transferred automatically. The user will have to select the page themselves again. This only applies to Facebook, Instagram, Linkedin and Youtube.
|
|
722
729
|
*/
|
|
723
730
|
resetChannel?: boolean;
|
|
724
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
731
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
725
732
|
};
|
|
726
733
|
};
|
|
727
734
|
type SocialAccountCopyResponse = Array<{
|
|
728
735
|
id: string;
|
|
729
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
736
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
730
737
|
teamId: string;
|
|
731
738
|
username?: string | null;
|
|
732
739
|
displayName?: string | null;
|
|
@@ -1161,6 +1168,62 @@ type PostGetResponse = {
|
|
|
1161
1168
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
1162
1169
|
spoiler?: string | null;
|
|
1163
1170
|
} | null;
|
|
1171
|
+
BLUESKY?: {
|
|
1172
|
+
text?: string | null;
|
|
1173
|
+
uploadIds?: Array<(string)> | null;
|
|
1174
|
+
/**
|
|
1175
|
+
* Extra hashtags (without #), up to 8.
|
|
1176
|
+
*/
|
|
1177
|
+
tags?: Array<(string)> | null;
|
|
1178
|
+
/**
|
|
1179
|
+
* Self-labels (content warnings) applied to the post.
|
|
1180
|
+
*/
|
|
1181
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
1182
|
+
/**
|
|
1183
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
1184
|
+
*/
|
|
1185
|
+
quoteUri?: string;
|
|
1186
|
+
/**
|
|
1187
|
+
* Target URL for the external link card
|
|
1188
|
+
*/
|
|
1189
|
+
externalUrl?: string | null;
|
|
1190
|
+
/**
|
|
1191
|
+
* Card title for the external link card
|
|
1192
|
+
*/
|
|
1193
|
+
externalTitle?: string | null;
|
|
1194
|
+
/**
|
|
1195
|
+
* Card description for the external link card
|
|
1196
|
+
*/
|
|
1197
|
+
externalDescription?: string | null;
|
|
1198
|
+
/**
|
|
1199
|
+
* Alt text for the video embed.
|
|
1200
|
+
*/
|
|
1201
|
+
videoAlt?: string | null;
|
|
1202
|
+
} | null;
|
|
1203
|
+
GOOGLE_BUSINESS?: {
|
|
1204
|
+
text?: string | null;
|
|
1205
|
+
/**
|
|
1206
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
1207
|
+
*/
|
|
1208
|
+
uploadIds?: Array<(string)> | null;
|
|
1209
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
1210
|
+
/**
|
|
1211
|
+
* Language tag like 'en' or 'en-US'.
|
|
1212
|
+
*/
|
|
1213
|
+
languageCode?: string | null;
|
|
1214
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
1215
|
+
callToActionUrl?: string | null;
|
|
1216
|
+
eventTitle?: string | null;
|
|
1217
|
+
eventStartDate?: string | null;
|
|
1218
|
+
eventEndDate?: string | null;
|
|
1219
|
+
offerCouponCode?: string | null;
|
|
1220
|
+
offerRedeemOnlineUrl?: string | null;
|
|
1221
|
+
offerTermsConditions?: string | null;
|
|
1222
|
+
/**
|
|
1223
|
+
* Alert type for ALERT posts.
|
|
1224
|
+
*/
|
|
1225
|
+
alertType?: 'COVID_19' | null;
|
|
1226
|
+
} | null;
|
|
1164
1227
|
};
|
|
1165
1228
|
error?: string | null;
|
|
1166
1229
|
errors?: {
|
|
@@ -1176,6 +1239,8 @@ type PostGetResponse = {
|
|
|
1176
1239
|
YOUTUBE?: string | null;
|
|
1177
1240
|
MASTODON?: string | null;
|
|
1178
1241
|
THREADS?: string | null;
|
|
1242
|
+
BLUESKY?: string | null;
|
|
1243
|
+
GOOGLE_BUSINESS?: string | null;
|
|
1179
1244
|
} | null;
|
|
1180
1245
|
externalData?: {
|
|
1181
1246
|
TWITTER?: {
|
|
@@ -1192,12 +1257,12 @@ type PostGetResponse = {
|
|
|
1192
1257
|
postId?: string | null;
|
|
1193
1258
|
videoId?: string | null;
|
|
1194
1259
|
permalink?: string | null;
|
|
1195
|
-
thumbnail?: string;
|
|
1260
|
+
thumbnail?: string | null;
|
|
1196
1261
|
} | null;
|
|
1197
1262
|
INSTAGRAM?: {
|
|
1198
1263
|
id?: string | null;
|
|
1199
1264
|
permalink?: string | null;
|
|
1200
|
-
thumbnail?: string;
|
|
1265
|
+
thumbnail?: string | null;
|
|
1201
1266
|
} | null;
|
|
1202
1267
|
TIKTOK?: {
|
|
1203
1268
|
id?: string | null;
|
|
@@ -1207,7 +1272,7 @@ type PostGetResponse = {
|
|
|
1207
1272
|
id?: string | null;
|
|
1208
1273
|
activity?: string | null;
|
|
1209
1274
|
permalink?: string | null;
|
|
1210
|
-
thumbnail?: string;
|
|
1275
|
+
thumbnail?: string | null;
|
|
1211
1276
|
} | null;
|
|
1212
1277
|
REDDIT?: {
|
|
1213
1278
|
id?: string | null;
|
|
@@ -1238,6 +1303,29 @@ type PostGetResponse = {
|
|
|
1238
1303
|
id?: string | null;
|
|
1239
1304
|
permalink?: string | null;
|
|
1240
1305
|
} | null;
|
|
1306
|
+
BLUESKY?: {
|
|
1307
|
+
id?: string | null;
|
|
1308
|
+
uri?: string | null;
|
|
1309
|
+
/**
|
|
1310
|
+
* Content ID of the created record
|
|
1311
|
+
*/
|
|
1312
|
+
cid?: string | null;
|
|
1313
|
+
permalink?: string | null;
|
|
1314
|
+
/**
|
|
1315
|
+
* Author DID (owner of the record)
|
|
1316
|
+
*/
|
|
1317
|
+
did?: string | null;
|
|
1318
|
+
} | null;
|
|
1319
|
+
GOOGLE_BUSINESS?: {
|
|
1320
|
+
/**
|
|
1321
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
1322
|
+
*/
|
|
1323
|
+
id?: string | null;
|
|
1324
|
+
/**
|
|
1325
|
+
* Public link to the post (searchUrl) when available.
|
|
1326
|
+
*/
|
|
1327
|
+
permalink?: string | null;
|
|
1328
|
+
} | null;
|
|
1241
1329
|
} | null;
|
|
1242
1330
|
createdAt: string | null;
|
|
1243
1331
|
updatedAt: string | null;
|
|
@@ -1278,7 +1366,7 @@ type PostGetResponse = {
|
|
|
1278
1366
|
deletedAt?: string | null;
|
|
1279
1367
|
socialAccount: {
|
|
1280
1368
|
id: string;
|
|
1281
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
1369
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1282
1370
|
teamId: string;
|
|
1283
1371
|
username?: string | null;
|
|
1284
1372
|
displayName?: string | null;
|
|
@@ -1316,7 +1404,7 @@ type PostUpdateData = {
|
|
|
1316
1404
|
title?: string;
|
|
1317
1405
|
postDate?: string;
|
|
1318
1406
|
status?: 'DRAFT' | 'SCHEDULED';
|
|
1319
|
-
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
1407
|
+
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
1320
1408
|
data?: {
|
|
1321
1409
|
TWITTER?: {
|
|
1322
1410
|
text?: string | null;
|
|
@@ -1523,6 +1611,62 @@ type PostUpdateData = {
|
|
|
1523
1611
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
1524
1612
|
spoiler?: string | null;
|
|
1525
1613
|
} | null;
|
|
1614
|
+
BLUESKY?: {
|
|
1615
|
+
text?: string | null;
|
|
1616
|
+
uploadIds?: Array<(string)> | null;
|
|
1617
|
+
/**
|
|
1618
|
+
* Extra hashtags (without #), up to 8.
|
|
1619
|
+
*/
|
|
1620
|
+
tags?: Array<(string)> | null;
|
|
1621
|
+
/**
|
|
1622
|
+
* Self-labels (content warnings) applied to the post.
|
|
1623
|
+
*/
|
|
1624
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
1625
|
+
/**
|
|
1626
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
1627
|
+
*/
|
|
1628
|
+
quoteUri?: string;
|
|
1629
|
+
/**
|
|
1630
|
+
* Target URL for the external link card
|
|
1631
|
+
*/
|
|
1632
|
+
externalUrl?: string | null;
|
|
1633
|
+
/**
|
|
1634
|
+
* Card title for the external link card
|
|
1635
|
+
*/
|
|
1636
|
+
externalTitle?: string | null;
|
|
1637
|
+
/**
|
|
1638
|
+
* Card description for the external link card
|
|
1639
|
+
*/
|
|
1640
|
+
externalDescription?: string | null;
|
|
1641
|
+
/**
|
|
1642
|
+
* Alt text for the video embed.
|
|
1643
|
+
*/
|
|
1644
|
+
videoAlt?: string | null;
|
|
1645
|
+
} | null;
|
|
1646
|
+
GOOGLE_BUSINESS?: {
|
|
1647
|
+
text?: string | null;
|
|
1648
|
+
/**
|
|
1649
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
1650
|
+
*/
|
|
1651
|
+
uploadIds?: Array<(string)> | null;
|
|
1652
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
1653
|
+
/**
|
|
1654
|
+
* Language tag like 'en' or 'en-US'.
|
|
1655
|
+
*/
|
|
1656
|
+
languageCode?: string | null;
|
|
1657
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
1658
|
+
callToActionUrl?: string | null;
|
|
1659
|
+
eventTitle?: string | null;
|
|
1660
|
+
eventStartDate?: string | null;
|
|
1661
|
+
eventEndDate?: string | null;
|
|
1662
|
+
offerCouponCode?: string | null;
|
|
1663
|
+
offerRedeemOnlineUrl?: string | null;
|
|
1664
|
+
offerTermsConditions?: string | null;
|
|
1665
|
+
/**
|
|
1666
|
+
* Alert type for ALERT posts.
|
|
1667
|
+
*/
|
|
1668
|
+
alertType?: 'COVID_19' | null;
|
|
1669
|
+
} | null;
|
|
1526
1670
|
};
|
|
1527
1671
|
};
|
|
1528
1672
|
};
|
|
@@ -1740,6 +1884,62 @@ type PostUpdateResponse = {
|
|
|
1740
1884
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
1741
1885
|
spoiler?: string | null;
|
|
1742
1886
|
} | null;
|
|
1887
|
+
BLUESKY?: {
|
|
1888
|
+
text?: string | null;
|
|
1889
|
+
uploadIds?: Array<(string)> | null;
|
|
1890
|
+
/**
|
|
1891
|
+
* Extra hashtags (without #), up to 8.
|
|
1892
|
+
*/
|
|
1893
|
+
tags?: Array<(string)> | null;
|
|
1894
|
+
/**
|
|
1895
|
+
* Self-labels (content warnings) applied to the post.
|
|
1896
|
+
*/
|
|
1897
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
1898
|
+
/**
|
|
1899
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
1900
|
+
*/
|
|
1901
|
+
quoteUri?: string;
|
|
1902
|
+
/**
|
|
1903
|
+
* Target URL for the external link card
|
|
1904
|
+
*/
|
|
1905
|
+
externalUrl?: string | null;
|
|
1906
|
+
/**
|
|
1907
|
+
* Card title for the external link card
|
|
1908
|
+
*/
|
|
1909
|
+
externalTitle?: string | null;
|
|
1910
|
+
/**
|
|
1911
|
+
* Card description for the external link card
|
|
1912
|
+
*/
|
|
1913
|
+
externalDescription?: string | null;
|
|
1914
|
+
/**
|
|
1915
|
+
* Alt text for the video embed.
|
|
1916
|
+
*/
|
|
1917
|
+
videoAlt?: string | null;
|
|
1918
|
+
} | null;
|
|
1919
|
+
GOOGLE_BUSINESS?: {
|
|
1920
|
+
text?: string | null;
|
|
1921
|
+
/**
|
|
1922
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
1923
|
+
*/
|
|
1924
|
+
uploadIds?: Array<(string)> | null;
|
|
1925
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
1926
|
+
/**
|
|
1927
|
+
* Language tag like 'en' or 'en-US'.
|
|
1928
|
+
*/
|
|
1929
|
+
languageCode?: string | null;
|
|
1930
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
1931
|
+
callToActionUrl?: string | null;
|
|
1932
|
+
eventTitle?: string | null;
|
|
1933
|
+
eventStartDate?: string | null;
|
|
1934
|
+
eventEndDate?: string | null;
|
|
1935
|
+
offerCouponCode?: string | null;
|
|
1936
|
+
offerRedeemOnlineUrl?: string | null;
|
|
1937
|
+
offerTermsConditions?: string | null;
|
|
1938
|
+
/**
|
|
1939
|
+
* Alert type for ALERT posts.
|
|
1940
|
+
*/
|
|
1941
|
+
alertType?: 'COVID_19' | null;
|
|
1942
|
+
} | null;
|
|
1743
1943
|
};
|
|
1744
1944
|
error?: string | null;
|
|
1745
1945
|
errors?: {
|
|
@@ -1755,6 +1955,8 @@ type PostUpdateResponse = {
|
|
|
1755
1955
|
YOUTUBE?: string | null;
|
|
1756
1956
|
MASTODON?: string | null;
|
|
1757
1957
|
THREADS?: string | null;
|
|
1958
|
+
BLUESKY?: string | null;
|
|
1959
|
+
GOOGLE_BUSINESS?: string | null;
|
|
1758
1960
|
} | null;
|
|
1759
1961
|
externalData?: {
|
|
1760
1962
|
TWITTER?: {
|
|
@@ -1771,12 +1973,12 @@ type PostUpdateResponse = {
|
|
|
1771
1973
|
postId?: string | null;
|
|
1772
1974
|
videoId?: string | null;
|
|
1773
1975
|
permalink?: string | null;
|
|
1774
|
-
thumbnail?: string;
|
|
1976
|
+
thumbnail?: string | null;
|
|
1775
1977
|
} | null;
|
|
1776
1978
|
INSTAGRAM?: {
|
|
1777
1979
|
id?: string | null;
|
|
1778
1980
|
permalink?: string | null;
|
|
1779
|
-
thumbnail?: string;
|
|
1981
|
+
thumbnail?: string | null;
|
|
1780
1982
|
} | null;
|
|
1781
1983
|
TIKTOK?: {
|
|
1782
1984
|
id?: string | null;
|
|
@@ -1786,7 +1988,7 @@ type PostUpdateResponse = {
|
|
|
1786
1988
|
id?: string | null;
|
|
1787
1989
|
activity?: string | null;
|
|
1788
1990
|
permalink?: string | null;
|
|
1789
|
-
thumbnail?: string;
|
|
1991
|
+
thumbnail?: string | null;
|
|
1790
1992
|
} | null;
|
|
1791
1993
|
REDDIT?: {
|
|
1792
1994
|
id?: string | null;
|
|
@@ -1817,6 +2019,29 @@ type PostUpdateResponse = {
|
|
|
1817
2019
|
id?: string | null;
|
|
1818
2020
|
permalink?: string | null;
|
|
1819
2021
|
} | null;
|
|
2022
|
+
BLUESKY?: {
|
|
2023
|
+
id?: string | null;
|
|
2024
|
+
uri?: string | null;
|
|
2025
|
+
/**
|
|
2026
|
+
* Content ID of the created record
|
|
2027
|
+
*/
|
|
2028
|
+
cid?: string | null;
|
|
2029
|
+
permalink?: string | null;
|
|
2030
|
+
/**
|
|
2031
|
+
* Author DID (owner of the record)
|
|
2032
|
+
*/
|
|
2033
|
+
did?: string | null;
|
|
2034
|
+
} | null;
|
|
2035
|
+
GOOGLE_BUSINESS?: {
|
|
2036
|
+
/**
|
|
2037
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
2038
|
+
*/
|
|
2039
|
+
id?: string | null;
|
|
2040
|
+
/**
|
|
2041
|
+
* Public link to the post (searchUrl) when available.
|
|
2042
|
+
*/
|
|
2043
|
+
permalink?: string | null;
|
|
2044
|
+
} | null;
|
|
1820
2045
|
} | null;
|
|
1821
2046
|
createdAt: string | null;
|
|
1822
2047
|
updatedAt: string | null;
|
|
@@ -2039,6 +2264,62 @@ type PostDeleteResponse = {
|
|
|
2039
2264
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
2040
2265
|
spoiler?: string | null;
|
|
2041
2266
|
} | null;
|
|
2267
|
+
BLUESKY?: {
|
|
2268
|
+
text?: string | null;
|
|
2269
|
+
uploadIds?: Array<(string)> | null;
|
|
2270
|
+
/**
|
|
2271
|
+
* Extra hashtags (without #), up to 8.
|
|
2272
|
+
*/
|
|
2273
|
+
tags?: Array<(string)> | null;
|
|
2274
|
+
/**
|
|
2275
|
+
* Self-labels (content warnings) applied to the post.
|
|
2276
|
+
*/
|
|
2277
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
2278
|
+
/**
|
|
2279
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
2280
|
+
*/
|
|
2281
|
+
quoteUri?: string;
|
|
2282
|
+
/**
|
|
2283
|
+
* Target URL for the external link card
|
|
2284
|
+
*/
|
|
2285
|
+
externalUrl?: string | null;
|
|
2286
|
+
/**
|
|
2287
|
+
* Card title for the external link card
|
|
2288
|
+
*/
|
|
2289
|
+
externalTitle?: string | null;
|
|
2290
|
+
/**
|
|
2291
|
+
* Card description for the external link card
|
|
2292
|
+
*/
|
|
2293
|
+
externalDescription?: string | null;
|
|
2294
|
+
/**
|
|
2295
|
+
* Alt text for the video embed.
|
|
2296
|
+
*/
|
|
2297
|
+
videoAlt?: string | null;
|
|
2298
|
+
} | null;
|
|
2299
|
+
GOOGLE_BUSINESS?: {
|
|
2300
|
+
text?: string | null;
|
|
2301
|
+
/**
|
|
2302
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
2303
|
+
*/
|
|
2304
|
+
uploadIds?: Array<(string)> | null;
|
|
2305
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
2306
|
+
/**
|
|
2307
|
+
* Language tag like 'en' or 'en-US'.
|
|
2308
|
+
*/
|
|
2309
|
+
languageCode?: string | null;
|
|
2310
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
2311
|
+
callToActionUrl?: string | null;
|
|
2312
|
+
eventTitle?: string | null;
|
|
2313
|
+
eventStartDate?: string | null;
|
|
2314
|
+
eventEndDate?: string | null;
|
|
2315
|
+
offerCouponCode?: string | null;
|
|
2316
|
+
offerRedeemOnlineUrl?: string | null;
|
|
2317
|
+
offerTermsConditions?: string | null;
|
|
2318
|
+
/**
|
|
2319
|
+
* Alert type for ALERT posts.
|
|
2320
|
+
*/
|
|
2321
|
+
alertType?: 'COVID_19' | null;
|
|
2322
|
+
} | null;
|
|
2042
2323
|
};
|
|
2043
2324
|
error?: string | null;
|
|
2044
2325
|
errors?: {
|
|
@@ -2054,6 +2335,8 @@ type PostDeleteResponse = {
|
|
|
2054
2335
|
YOUTUBE?: string | null;
|
|
2055
2336
|
MASTODON?: string | null;
|
|
2056
2337
|
THREADS?: string | null;
|
|
2338
|
+
BLUESKY?: string | null;
|
|
2339
|
+
GOOGLE_BUSINESS?: string | null;
|
|
2057
2340
|
} | null;
|
|
2058
2341
|
externalData?: {
|
|
2059
2342
|
TWITTER?: {
|
|
@@ -2070,12 +2353,12 @@ type PostDeleteResponse = {
|
|
|
2070
2353
|
postId?: string | null;
|
|
2071
2354
|
videoId?: string | null;
|
|
2072
2355
|
permalink?: string | null;
|
|
2073
|
-
thumbnail?: string;
|
|
2356
|
+
thumbnail?: string | null;
|
|
2074
2357
|
} | null;
|
|
2075
2358
|
INSTAGRAM?: {
|
|
2076
2359
|
id?: string | null;
|
|
2077
2360
|
permalink?: string | null;
|
|
2078
|
-
thumbnail?: string;
|
|
2361
|
+
thumbnail?: string | null;
|
|
2079
2362
|
} | null;
|
|
2080
2363
|
TIKTOK?: {
|
|
2081
2364
|
id?: string | null;
|
|
@@ -2085,7 +2368,7 @@ type PostDeleteResponse = {
|
|
|
2085
2368
|
id?: string | null;
|
|
2086
2369
|
activity?: string | null;
|
|
2087
2370
|
permalink?: string | null;
|
|
2088
|
-
thumbnail?: string;
|
|
2371
|
+
thumbnail?: string | null;
|
|
2089
2372
|
} | null;
|
|
2090
2373
|
REDDIT?: {
|
|
2091
2374
|
id?: string | null;
|
|
@@ -2116,6 +2399,29 @@ type PostDeleteResponse = {
|
|
|
2116
2399
|
id?: string | null;
|
|
2117
2400
|
permalink?: string | null;
|
|
2118
2401
|
} | null;
|
|
2402
|
+
BLUESKY?: {
|
|
2403
|
+
id?: string | null;
|
|
2404
|
+
uri?: string | null;
|
|
2405
|
+
/**
|
|
2406
|
+
* Content ID of the created record
|
|
2407
|
+
*/
|
|
2408
|
+
cid?: string | null;
|
|
2409
|
+
permalink?: string | null;
|
|
2410
|
+
/**
|
|
2411
|
+
* Author DID (owner of the record)
|
|
2412
|
+
*/
|
|
2413
|
+
did?: string | null;
|
|
2414
|
+
} | null;
|
|
2415
|
+
GOOGLE_BUSINESS?: {
|
|
2416
|
+
/**
|
|
2417
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
2418
|
+
*/
|
|
2419
|
+
id?: string | null;
|
|
2420
|
+
/**
|
|
2421
|
+
* Public link to the post (searchUrl) when available.
|
|
2422
|
+
*/
|
|
2423
|
+
permalink?: string | null;
|
|
2424
|
+
} | null;
|
|
2119
2425
|
} | null;
|
|
2120
2426
|
createdAt: string | null;
|
|
2121
2427
|
updatedAt: string | null;
|
|
@@ -2126,7 +2432,7 @@ type PostGetListData = {
|
|
|
2126
2432
|
offset?: number | null;
|
|
2127
2433
|
order?: 'ASC' | 'DESC' | null;
|
|
2128
2434
|
orderBy?: 'createdAt' | 'updatedAt' | 'postDate' | 'postedDate' | 'deletedAt' | null;
|
|
2129
|
-
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')> | null;
|
|
2435
|
+
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')> | null;
|
|
2130
2436
|
q?: string | null;
|
|
2131
2437
|
status?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | null;
|
|
2132
2438
|
teamId: string;
|
|
@@ -2346,6 +2652,62 @@ type PostGetListResponse = {
|
|
|
2346
2652
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
2347
2653
|
spoiler?: string | null;
|
|
2348
2654
|
} | null;
|
|
2655
|
+
BLUESKY?: {
|
|
2656
|
+
text?: string | null;
|
|
2657
|
+
uploadIds?: Array<(string)> | null;
|
|
2658
|
+
/**
|
|
2659
|
+
* Extra hashtags (without #), up to 8.
|
|
2660
|
+
*/
|
|
2661
|
+
tags?: Array<(string)> | null;
|
|
2662
|
+
/**
|
|
2663
|
+
* Self-labels (content warnings) applied to the post.
|
|
2664
|
+
*/
|
|
2665
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
2666
|
+
/**
|
|
2667
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
2668
|
+
*/
|
|
2669
|
+
quoteUri?: string;
|
|
2670
|
+
/**
|
|
2671
|
+
* Target URL for the external link card
|
|
2672
|
+
*/
|
|
2673
|
+
externalUrl?: string | null;
|
|
2674
|
+
/**
|
|
2675
|
+
* Card title for the external link card
|
|
2676
|
+
*/
|
|
2677
|
+
externalTitle?: string | null;
|
|
2678
|
+
/**
|
|
2679
|
+
* Card description for the external link card
|
|
2680
|
+
*/
|
|
2681
|
+
externalDescription?: string | null;
|
|
2682
|
+
/**
|
|
2683
|
+
* Alt text for the video embed.
|
|
2684
|
+
*/
|
|
2685
|
+
videoAlt?: string | null;
|
|
2686
|
+
} | null;
|
|
2687
|
+
GOOGLE_BUSINESS?: {
|
|
2688
|
+
text?: string | null;
|
|
2689
|
+
/**
|
|
2690
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
2691
|
+
*/
|
|
2692
|
+
uploadIds?: Array<(string)> | null;
|
|
2693
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
2694
|
+
/**
|
|
2695
|
+
* Language tag like 'en' or 'en-US'.
|
|
2696
|
+
*/
|
|
2697
|
+
languageCode?: string | null;
|
|
2698
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
2699
|
+
callToActionUrl?: string | null;
|
|
2700
|
+
eventTitle?: string | null;
|
|
2701
|
+
eventStartDate?: string | null;
|
|
2702
|
+
eventEndDate?: string | null;
|
|
2703
|
+
offerCouponCode?: string | null;
|
|
2704
|
+
offerRedeemOnlineUrl?: string | null;
|
|
2705
|
+
offerTermsConditions?: string | null;
|
|
2706
|
+
/**
|
|
2707
|
+
* Alert type for ALERT posts.
|
|
2708
|
+
*/
|
|
2709
|
+
alertType?: 'COVID_19' | null;
|
|
2710
|
+
} | null;
|
|
2349
2711
|
};
|
|
2350
2712
|
error?: string | null;
|
|
2351
2713
|
errors?: {
|
|
@@ -2361,6 +2723,8 @@ type PostGetListResponse = {
|
|
|
2361
2723
|
YOUTUBE?: string | null;
|
|
2362
2724
|
MASTODON?: string | null;
|
|
2363
2725
|
THREADS?: string | null;
|
|
2726
|
+
BLUESKY?: string | null;
|
|
2727
|
+
GOOGLE_BUSINESS?: string | null;
|
|
2364
2728
|
} | null;
|
|
2365
2729
|
externalData?: {
|
|
2366
2730
|
TWITTER?: {
|
|
@@ -2377,12 +2741,12 @@ type PostGetListResponse = {
|
|
|
2377
2741
|
postId?: string | null;
|
|
2378
2742
|
videoId?: string | null;
|
|
2379
2743
|
permalink?: string | null;
|
|
2380
|
-
thumbnail?: string;
|
|
2744
|
+
thumbnail?: string | null;
|
|
2381
2745
|
} | null;
|
|
2382
2746
|
INSTAGRAM?: {
|
|
2383
2747
|
id?: string | null;
|
|
2384
2748
|
permalink?: string | null;
|
|
2385
|
-
thumbnail?: string;
|
|
2749
|
+
thumbnail?: string | null;
|
|
2386
2750
|
} | null;
|
|
2387
2751
|
TIKTOK?: {
|
|
2388
2752
|
id?: string | null;
|
|
@@ -2392,7 +2756,7 @@ type PostGetListResponse = {
|
|
|
2392
2756
|
id?: string | null;
|
|
2393
2757
|
activity?: string | null;
|
|
2394
2758
|
permalink?: string | null;
|
|
2395
|
-
thumbnail?: string;
|
|
2759
|
+
thumbnail?: string | null;
|
|
2396
2760
|
} | null;
|
|
2397
2761
|
REDDIT?: {
|
|
2398
2762
|
id?: string | null;
|
|
@@ -2423,6 +2787,29 @@ type PostGetListResponse = {
|
|
|
2423
2787
|
id?: string | null;
|
|
2424
2788
|
permalink?: string | null;
|
|
2425
2789
|
} | null;
|
|
2790
|
+
BLUESKY?: {
|
|
2791
|
+
id?: string | null;
|
|
2792
|
+
uri?: string | null;
|
|
2793
|
+
/**
|
|
2794
|
+
* Content ID of the created record
|
|
2795
|
+
*/
|
|
2796
|
+
cid?: string | null;
|
|
2797
|
+
permalink?: string | null;
|
|
2798
|
+
/**
|
|
2799
|
+
* Author DID (owner of the record)
|
|
2800
|
+
*/
|
|
2801
|
+
did?: string | null;
|
|
2802
|
+
} | null;
|
|
2803
|
+
GOOGLE_BUSINESS?: {
|
|
2804
|
+
/**
|
|
2805
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
2806
|
+
*/
|
|
2807
|
+
id?: string | null;
|
|
2808
|
+
/**
|
|
2809
|
+
* Public link to the post (searchUrl) when available.
|
|
2810
|
+
*/
|
|
2811
|
+
permalink?: string | null;
|
|
2812
|
+
} | null;
|
|
2426
2813
|
} | null;
|
|
2427
2814
|
createdAt: string | null;
|
|
2428
2815
|
updatedAt: string | null;
|
|
@@ -2463,7 +2850,7 @@ type PostGetListResponse = {
|
|
|
2463
2850
|
deletedAt?: string | null;
|
|
2464
2851
|
socialAccount: {
|
|
2465
2852
|
id: string;
|
|
2466
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
2853
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
2467
2854
|
teamId: string;
|
|
2468
2855
|
username?: string | null;
|
|
2469
2856
|
displayName?: string | null;
|
|
@@ -2503,7 +2890,7 @@ type PostCreateData = {
|
|
|
2503
2890
|
title: string;
|
|
2504
2891
|
postDate: string;
|
|
2505
2892
|
status: 'DRAFT' | 'SCHEDULED';
|
|
2506
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
2893
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
2507
2894
|
data: {
|
|
2508
2895
|
TWITTER?: {
|
|
2509
2896
|
text?: string | null;
|
|
@@ -2710,6 +3097,62 @@ type PostCreateData = {
|
|
|
2710
3097
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
2711
3098
|
spoiler?: string | null;
|
|
2712
3099
|
} | null;
|
|
3100
|
+
BLUESKY?: {
|
|
3101
|
+
text?: string | null;
|
|
3102
|
+
uploadIds?: Array<(string)> | null;
|
|
3103
|
+
/**
|
|
3104
|
+
* Extra hashtags (without #), up to 8.
|
|
3105
|
+
*/
|
|
3106
|
+
tags?: Array<(string)> | null;
|
|
3107
|
+
/**
|
|
3108
|
+
* Self-labels (content warnings) applied to the post.
|
|
3109
|
+
*/
|
|
3110
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
3111
|
+
/**
|
|
3112
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
3113
|
+
*/
|
|
3114
|
+
quoteUri?: string;
|
|
3115
|
+
/**
|
|
3116
|
+
* Target URL for the external link card
|
|
3117
|
+
*/
|
|
3118
|
+
externalUrl?: string | null;
|
|
3119
|
+
/**
|
|
3120
|
+
* Card title for the external link card
|
|
3121
|
+
*/
|
|
3122
|
+
externalTitle?: string | null;
|
|
3123
|
+
/**
|
|
3124
|
+
* Card description for the external link card
|
|
3125
|
+
*/
|
|
3126
|
+
externalDescription?: string | null;
|
|
3127
|
+
/**
|
|
3128
|
+
* Alt text for the video embed.
|
|
3129
|
+
*/
|
|
3130
|
+
videoAlt?: string | null;
|
|
3131
|
+
} | null;
|
|
3132
|
+
GOOGLE_BUSINESS?: {
|
|
3133
|
+
text?: string | null;
|
|
3134
|
+
/**
|
|
3135
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
3136
|
+
*/
|
|
3137
|
+
uploadIds?: Array<(string)> | null;
|
|
3138
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
3139
|
+
/**
|
|
3140
|
+
* Language tag like 'en' or 'en-US'.
|
|
3141
|
+
*/
|
|
3142
|
+
languageCode?: string | null;
|
|
3143
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
3144
|
+
callToActionUrl?: string | null;
|
|
3145
|
+
eventTitle?: string | null;
|
|
3146
|
+
eventStartDate?: string | null;
|
|
3147
|
+
eventEndDate?: string | null;
|
|
3148
|
+
offerCouponCode?: string | null;
|
|
3149
|
+
offerRedeemOnlineUrl?: string | null;
|
|
3150
|
+
offerTermsConditions?: string | null;
|
|
3151
|
+
/**
|
|
3152
|
+
* Alert type for ALERT posts.
|
|
3153
|
+
*/
|
|
3154
|
+
alertType?: 'COVID_19' | null;
|
|
3155
|
+
} | null;
|
|
2713
3156
|
};
|
|
2714
3157
|
};
|
|
2715
3158
|
};
|
|
@@ -2927,6 +3370,62 @@ type PostCreateResponse = {
|
|
|
2927
3370
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
2928
3371
|
spoiler?: string | null;
|
|
2929
3372
|
} | null;
|
|
3373
|
+
BLUESKY?: {
|
|
3374
|
+
text?: string | null;
|
|
3375
|
+
uploadIds?: Array<(string)> | null;
|
|
3376
|
+
/**
|
|
3377
|
+
* Extra hashtags (without #), up to 8.
|
|
3378
|
+
*/
|
|
3379
|
+
tags?: Array<(string)> | null;
|
|
3380
|
+
/**
|
|
3381
|
+
* Self-labels (content warnings) applied to the post.
|
|
3382
|
+
*/
|
|
3383
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
3384
|
+
/**
|
|
3385
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
3386
|
+
*/
|
|
3387
|
+
quoteUri?: string;
|
|
3388
|
+
/**
|
|
3389
|
+
* Target URL for the external link card
|
|
3390
|
+
*/
|
|
3391
|
+
externalUrl?: string | null;
|
|
3392
|
+
/**
|
|
3393
|
+
* Card title for the external link card
|
|
3394
|
+
*/
|
|
3395
|
+
externalTitle?: string | null;
|
|
3396
|
+
/**
|
|
3397
|
+
* Card description for the external link card
|
|
3398
|
+
*/
|
|
3399
|
+
externalDescription?: string | null;
|
|
3400
|
+
/**
|
|
3401
|
+
* Alt text for the video embed.
|
|
3402
|
+
*/
|
|
3403
|
+
videoAlt?: string | null;
|
|
3404
|
+
} | null;
|
|
3405
|
+
GOOGLE_BUSINESS?: {
|
|
3406
|
+
text?: string | null;
|
|
3407
|
+
/**
|
|
3408
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
3409
|
+
*/
|
|
3410
|
+
uploadIds?: Array<(string)> | null;
|
|
3411
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
3412
|
+
/**
|
|
3413
|
+
* Language tag like 'en' or 'en-US'.
|
|
3414
|
+
*/
|
|
3415
|
+
languageCode?: string | null;
|
|
3416
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
3417
|
+
callToActionUrl?: string | null;
|
|
3418
|
+
eventTitle?: string | null;
|
|
3419
|
+
eventStartDate?: string | null;
|
|
3420
|
+
eventEndDate?: string | null;
|
|
3421
|
+
offerCouponCode?: string | null;
|
|
3422
|
+
offerRedeemOnlineUrl?: string | null;
|
|
3423
|
+
offerTermsConditions?: string | null;
|
|
3424
|
+
/**
|
|
3425
|
+
* Alert type for ALERT posts.
|
|
3426
|
+
*/
|
|
3427
|
+
alertType?: 'COVID_19' | null;
|
|
3428
|
+
} | null;
|
|
2930
3429
|
};
|
|
2931
3430
|
error?: string | null;
|
|
2932
3431
|
errors?: {
|
|
@@ -2942,6 +3441,8 @@ type PostCreateResponse = {
|
|
|
2942
3441
|
YOUTUBE?: string | null;
|
|
2943
3442
|
MASTODON?: string | null;
|
|
2944
3443
|
THREADS?: string | null;
|
|
3444
|
+
BLUESKY?: string | null;
|
|
3445
|
+
GOOGLE_BUSINESS?: string | null;
|
|
2945
3446
|
} | null;
|
|
2946
3447
|
externalData?: {
|
|
2947
3448
|
TWITTER?: {
|
|
@@ -2958,12 +3459,12 @@ type PostCreateResponse = {
|
|
|
2958
3459
|
postId?: string | null;
|
|
2959
3460
|
videoId?: string | null;
|
|
2960
3461
|
permalink?: string | null;
|
|
2961
|
-
thumbnail?: string;
|
|
3462
|
+
thumbnail?: string | null;
|
|
2962
3463
|
} | null;
|
|
2963
3464
|
INSTAGRAM?: {
|
|
2964
3465
|
id?: string | null;
|
|
2965
3466
|
permalink?: string | null;
|
|
2966
|
-
thumbnail?: string;
|
|
3467
|
+
thumbnail?: string | null;
|
|
2967
3468
|
} | null;
|
|
2968
3469
|
TIKTOK?: {
|
|
2969
3470
|
id?: string | null;
|
|
@@ -2973,7 +3474,7 @@ type PostCreateResponse = {
|
|
|
2973
3474
|
id?: string | null;
|
|
2974
3475
|
activity?: string | null;
|
|
2975
3476
|
permalink?: string | null;
|
|
2976
|
-
thumbnail?: string;
|
|
3477
|
+
thumbnail?: string | null;
|
|
2977
3478
|
} | null;
|
|
2978
3479
|
REDDIT?: {
|
|
2979
3480
|
id?: string | null;
|
|
@@ -3004,19 +3505,42 @@ type PostCreateResponse = {
|
|
|
3004
3505
|
id?: string | null;
|
|
3005
3506
|
permalink?: string | null;
|
|
3006
3507
|
} | null;
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3508
|
+
BLUESKY?: {
|
|
3509
|
+
id?: string | null;
|
|
3510
|
+
uri?: string | null;
|
|
3511
|
+
/**
|
|
3512
|
+
* Content ID of the created record
|
|
3513
|
+
*/
|
|
3514
|
+
cid?: string | null;
|
|
3515
|
+
permalink?: string | null;
|
|
3516
|
+
/**
|
|
3517
|
+
* Author DID (owner of the record)
|
|
3518
|
+
*/
|
|
3519
|
+
did?: string | null;
|
|
3520
|
+
} | null;
|
|
3521
|
+
GOOGLE_BUSINESS?: {
|
|
3522
|
+
/**
|
|
3523
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
3524
|
+
*/
|
|
3525
|
+
id?: string | null;
|
|
3526
|
+
/**
|
|
3527
|
+
* Public link to the post (searchUrl) when available.
|
|
3528
|
+
*/
|
|
3529
|
+
permalink?: string | null;
|
|
3530
|
+
} | null;
|
|
3531
|
+
} | null;
|
|
3532
|
+
createdAt: string | null;
|
|
3533
|
+
updatedAt: string | null;
|
|
3010
3534
|
deletedAt?: string | null;
|
|
3011
3535
|
};
|
|
3012
3536
|
type AnalyticsGetSocialAccountAnalyticsData = {
|
|
3013
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
|
|
3537
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3014
3538
|
teamId: string;
|
|
3015
3539
|
};
|
|
3016
3540
|
type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
3017
3541
|
socialAccount: {
|
|
3018
3542
|
id: string;
|
|
3019
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
3543
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3020
3544
|
teamId: string;
|
|
3021
3545
|
username?: string | null;
|
|
3022
3546
|
displayName?: string | null;
|
|
@@ -3061,7 +3585,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
|
3061
3585
|
}>;
|
|
3062
3586
|
};
|
|
3063
3587
|
type AnalyticsGetPostAnalyticsData = {
|
|
3064
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
|
|
3588
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3065
3589
|
postId: string;
|
|
3066
3590
|
};
|
|
3067
3591
|
type AnalyticsGetPostAnalyticsResponse = {
|
|
@@ -3279,6 +3803,62 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3279
3803
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
3280
3804
|
spoiler?: string | null;
|
|
3281
3805
|
} | null;
|
|
3806
|
+
BLUESKY?: {
|
|
3807
|
+
text?: string | null;
|
|
3808
|
+
uploadIds?: Array<(string)> | null;
|
|
3809
|
+
/**
|
|
3810
|
+
* Extra hashtags (without #), up to 8.
|
|
3811
|
+
*/
|
|
3812
|
+
tags?: Array<(string)> | null;
|
|
3813
|
+
/**
|
|
3814
|
+
* Self-labels (content warnings) applied to the post.
|
|
3815
|
+
*/
|
|
3816
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
3817
|
+
/**
|
|
3818
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
3819
|
+
*/
|
|
3820
|
+
quoteUri?: string;
|
|
3821
|
+
/**
|
|
3822
|
+
* Target URL for the external link card
|
|
3823
|
+
*/
|
|
3824
|
+
externalUrl?: string | null;
|
|
3825
|
+
/**
|
|
3826
|
+
* Card title for the external link card
|
|
3827
|
+
*/
|
|
3828
|
+
externalTitle?: string | null;
|
|
3829
|
+
/**
|
|
3830
|
+
* Card description for the external link card
|
|
3831
|
+
*/
|
|
3832
|
+
externalDescription?: string | null;
|
|
3833
|
+
/**
|
|
3834
|
+
* Alt text for the video embed.
|
|
3835
|
+
*/
|
|
3836
|
+
videoAlt?: string | null;
|
|
3837
|
+
} | null;
|
|
3838
|
+
GOOGLE_BUSINESS?: {
|
|
3839
|
+
text?: string | null;
|
|
3840
|
+
/**
|
|
3841
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
3842
|
+
*/
|
|
3843
|
+
uploadIds?: Array<(string)> | null;
|
|
3844
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
3845
|
+
/**
|
|
3846
|
+
* Language tag like 'en' or 'en-US'.
|
|
3847
|
+
*/
|
|
3848
|
+
languageCode?: string | null;
|
|
3849
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
3850
|
+
callToActionUrl?: string | null;
|
|
3851
|
+
eventTitle?: string | null;
|
|
3852
|
+
eventStartDate?: string | null;
|
|
3853
|
+
eventEndDate?: string | null;
|
|
3854
|
+
offerCouponCode?: string | null;
|
|
3855
|
+
offerRedeemOnlineUrl?: string | null;
|
|
3856
|
+
offerTermsConditions?: string | null;
|
|
3857
|
+
/**
|
|
3858
|
+
* Alert type for ALERT posts.
|
|
3859
|
+
*/
|
|
3860
|
+
alertType?: 'COVID_19' | null;
|
|
3861
|
+
} | null;
|
|
3282
3862
|
};
|
|
3283
3863
|
error?: string | null;
|
|
3284
3864
|
errors?: {
|
|
@@ -3294,6 +3874,8 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3294
3874
|
YOUTUBE?: string | null;
|
|
3295
3875
|
MASTODON?: string | null;
|
|
3296
3876
|
THREADS?: string | null;
|
|
3877
|
+
BLUESKY?: string | null;
|
|
3878
|
+
GOOGLE_BUSINESS?: string | null;
|
|
3297
3879
|
} | null;
|
|
3298
3880
|
externalData?: {
|
|
3299
3881
|
TWITTER?: {
|
|
@@ -3310,12 +3892,12 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3310
3892
|
postId?: string | null;
|
|
3311
3893
|
videoId?: string | null;
|
|
3312
3894
|
permalink?: string | null;
|
|
3313
|
-
thumbnail?: string;
|
|
3895
|
+
thumbnail?: string | null;
|
|
3314
3896
|
} | null;
|
|
3315
3897
|
INSTAGRAM?: {
|
|
3316
3898
|
id?: string | null;
|
|
3317
3899
|
permalink?: string | null;
|
|
3318
|
-
thumbnail?: string;
|
|
3900
|
+
thumbnail?: string | null;
|
|
3319
3901
|
} | null;
|
|
3320
3902
|
TIKTOK?: {
|
|
3321
3903
|
id?: string | null;
|
|
@@ -3325,7 +3907,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3325
3907
|
id?: string | null;
|
|
3326
3908
|
activity?: string | null;
|
|
3327
3909
|
permalink?: string | null;
|
|
3328
|
-
thumbnail?: string;
|
|
3910
|
+
thumbnail?: string | null;
|
|
3329
3911
|
} | null;
|
|
3330
3912
|
REDDIT?: {
|
|
3331
3913
|
id?: string | null;
|
|
@@ -3356,6 +3938,29 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3356
3938
|
id?: string | null;
|
|
3357
3939
|
permalink?: string | null;
|
|
3358
3940
|
} | null;
|
|
3941
|
+
BLUESKY?: {
|
|
3942
|
+
id?: string | null;
|
|
3943
|
+
uri?: string | null;
|
|
3944
|
+
/**
|
|
3945
|
+
* Content ID of the created record
|
|
3946
|
+
*/
|
|
3947
|
+
cid?: string | null;
|
|
3948
|
+
permalink?: string | null;
|
|
3949
|
+
/**
|
|
3950
|
+
* Author DID (owner of the record)
|
|
3951
|
+
*/
|
|
3952
|
+
did?: string | null;
|
|
3953
|
+
} | null;
|
|
3954
|
+
GOOGLE_BUSINESS?: {
|
|
3955
|
+
/**
|
|
3956
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
3957
|
+
*/
|
|
3958
|
+
id?: string | null;
|
|
3959
|
+
/**
|
|
3960
|
+
* Public link to the post (searchUrl) when available.
|
|
3961
|
+
*/
|
|
3962
|
+
permalink?: string | null;
|
|
3963
|
+
} | null;
|
|
3359
3964
|
} | null;
|
|
3360
3965
|
createdAt: string | null;
|
|
3361
3966
|
updatedAt: string | null;
|
|
@@ -3380,13 +3985,13 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3380
3985
|
}>;
|
|
3381
3986
|
};
|
|
3382
3987
|
type AnalyticsGetSocialAccountAnalyticsRawData = {
|
|
3383
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
|
|
3988
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3384
3989
|
teamId: string;
|
|
3385
3990
|
};
|
|
3386
3991
|
type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
3387
3992
|
socialAccount: {
|
|
3388
3993
|
id: string;
|
|
3389
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
3994
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3390
3995
|
teamId: string;
|
|
3391
3996
|
username?: string | null;
|
|
3392
3997
|
displayName?: string | null;
|
|
@@ -3424,7 +4029,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
|
3424
4029
|
}>;
|
|
3425
4030
|
};
|
|
3426
4031
|
type AnalyticsGetPostAnalyticsRawData = {
|
|
3427
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
|
|
4032
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3428
4033
|
postId: string;
|
|
3429
4034
|
};
|
|
3430
4035
|
type AnalyticsGetPostAnalyticsRawResponse = {
|
|
@@ -3642,6 +4247,62 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3642
4247
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
3643
4248
|
spoiler?: string | null;
|
|
3644
4249
|
} | null;
|
|
4250
|
+
BLUESKY?: {
|
|
4251
|
+
text?: string | null;
|
|
4252
|
+
uploadIds?: Array<(string)> | null;
|
|
4253
|
+
/**
|
|
4254
|
+
* Extra hashtags (without #), up to 8.
|
|
4255
|
+
*/
|
|
4256
|
+
tags?: Array<(string)> | null;
|
|
4257
|
+
/**
|
|
4258
|
+
* Self-labels (content warnings) applied to the post.
|
|
4259
|
+
*/
|
|
4260
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
4261
|
+
/**
|
|
4262
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
4263
|
+
*/
|
|
4264
|
+
quoteUri?: string;
|
|
4265
|
+
/**
|
|
4266
|
+
* Target URL for the external link card
|
|
4267
|
+
*/
|
|
4268
|
+
externalUrl?: string | null;
|
|
4269
|
+
/**
|
|
4270
|
+
* Card title for the external link card
|
|
4271
|
+
*/
|
|
4272
|
+
externalTitle?: string | null;
|
|
4273
|
+
/**
|
|
4274
|
+
* Card description for the external link card
|
|
4275
|
+
*/
|
|
4276
|
+
externalDescription?: string | null;
|
|
4277
|
+
/**
|
|
4278
|
+
* Alt text for the video embed.
|
|
4279
|
+
*/
|
|
4280
|
+
videoAlt?: string | null;
|
|
4281
|
+
} | null;
|
|
4282
|
+
GOOGLE_BUSINESS?: {
|
|
4283
|
+
text?: string | null;
|
|
4284
|
+
/**
|
|
4285
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
4286
|
+
*/
|
|
4287
|
+
uploadIds?: Array<(string)> | null;
|
|
4288
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
4289
|
+
/**
|
|
4290
|
+
* Language tag like 'en' or 'en-US'.
|
|
4291
|
+
*/
|
|
4292
|
+
languageCode?: string | null;
|
|
4293
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
4294
|
+
callToActionUrl?: string | null;
|
|
4295
|
+
eventTitle?: string | null;
|
|
4296
|
+
eventStartDate?: string | null;
|
|
4297
|
+
eventEndDate?: string | null;
|
|
4298
|
+
offerCouponCode?: string | null;
|
|
4299
|
+
offerRedeemOnlineUrl?: string | null;
|
|
4300
|
+
offerTermsConditions?: string | null;
|
|
4301
|
+
/**
|
|
4302
|
+
* Alert type for ALERT posts.
|
|
4303
|
+
*/
|
|
4304
|
+
alertType?: 'COVID_19' | null;
|
|
4305
|
+
} | null;
|
|
3645
4306
|
};
|
|
3646
4307
|
error?: string | null;
|
|
3647
4308
|
errors?: {
|
|
@@ -3657,6 +4318,8 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3657
4318
|
YOUTUBE?: string | null;
|
|
3658
4319
|
MASTODON?: string | null;
|
|
3659
4320
|
THREADS?: string | null;
|
|
4321
|
+
BLUESKY?: string | null;
|
|
4322
|
+
GOOGLE_BUSINESS?: string | null;
|
|
3660
4323
|
} | null;
|
|
3661
4324
|
externalData?: {
|
|
3662
4325
|
TWITTER?: {
|
|
@@ -3673,12 +4336,12 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3673
4336
|
postId?: string | null;
|
|
3674
4337
|
videoId?: string | null;
|
|
3675
4338
|
permalink?: string | null;
|
|
3676
|
-
thumbnail?: string;
|
|
4339
|
+
thumbnail?: string | null;
|
|
3677
4340
|
} | null;
|
|
3678
4341
|
INSTAGRAM?: {
|
|
3679
4342
|
id?: string | null;
|
|
3680
4343
|
permalink?: string | null;
|
|
3681
|
-
thumbnail?: string;
|
|
4344
|
+
thumbnail?: string | null;
|
|
3682
4345
|
} | null;
|
|
3683
4346
|
TIKTOK?: {
|
|
3684
4347
|
id?: string | null;
|
|
@@ -3688,7 +4351,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3688
4351
|
id?: string | null;
|
|
3689
4352
|
activity?: string | null;
|
|
3690
4353
|
permalink?: string | null;
|
|
3691
|
-
thumbnail?: string;
|
|
4354
|
+
thumbnail?: string | null;
|
|
3692
4355
|
} | null;
|
|
3693
4356
|
REDDIT?: {
|
|
3694
4357
|
id?: string | null;
|
|
@@ -3719,6 +4382,29 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3719
4382
|
id?: string | null;
|
|
3720
4383
|
permalink?: string | null;
|
|
3721
4384
|
} | null;
|
|
4385
|
+
BLUESKY?: {
|
|
4386
|
+
id?: string | null;
|
|
4387
|
+
uri?: string | null;
|
|
4388
|
+
/**
|
|
4389
|
+
* Content ID of the created record
|
|
4390
|
+
*/
|
|
4391
|
+
cid?: string | null;
|
|
4392
|
+
permalink?: string | null;
|
|
4393
|
+
/**
|
|
4394
|
+
* Author DID (owner of the record)
|
|
4395
|
+
*/
|
|
4396
|
+
did?: string | null;
|
|
4397
|
+
} | null;
|
|
4398
|
+
GOOGLE_BUSINESS?: {
|
|
4399
|
+
/**
|
|
4400
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
4401
|
+
*/
|
|
4402
|
+
id?: string | null;
|
|
4403
|
+
/**
|
|
4404
|
+
* Public link to the post (searchUrl) when available.
|
|
4405
|
+
*/
|
|
4406
|
+
permalink?: string | null;
|
|
4407
|
+
} | null;
|
|
3722
4408
|
} | null;
|
|
3723
4409
|
createdAt: string | null;
|
|
3724
4410
|
updatedAt: string | null;
|
|
@@ -3734,18 +4420,6 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3734
4420
|
deletedAt?: string | null;
|
|
3735
4421
|
}>;
|
|
3736
4422
|
};
|
|
3737
|
-
type AnalyticsGetProfileAnalyticsResponse = string;
|
|
3738
|
-
type AnalyticsGetProfilePostsResponse = string;
|
|
3739
|
-
type AnalyticsGetProfilePostData = {
|
|
3740
|
-
id: string;
|
|
3741
|
-
};
|
|
3742
|
-
type AnalyticsGetProfilePostResponse = string;
|
|
3743
|
-
type AnalyticsGetProfilePostByPostIdData = {
|
|
3744
|
-
id: string;
|
|
3745
|
-
};
|
|
3746
|
-
type AnalyticsGetProfilePostByPostIdResponse = string;
|
|
3747
|
-
type AnalyticsGetRawSocialAccountAnalyticsResponse = string;
|
|
3748
|
-
type AnalyticsGetRawPostsAnalyticsResponse = string;
|
|
3749
4423
|
type CommentGetData = {
|
|
3750
4424
|
id: string;
|
|
3751
4425
|
};
|
|
@@ -3790,6 +4464,9 @@ type CommentGetResponse = {
|
|
|
3790
4464
|
SLACK?: {
|
|
3791
4465
|
text?: string | null;
|
|
3792
4466
|
} | null;
|
|
4467
|
+
BLUESKY?: {
|
|
4468
|
+
text?: string | null;
|
|
4469
|
+
} | null;
|
|
3793
4470
|
};
|
|
3794
4471
|
error?: string | null;
|
|
3795
4472
|
errors?: {
|
|
@@ -3803,6 +4480,7 @@ type CommentGetResponse = {
|
|
|
3803
4480
|
THREADS?: string | null;
|
|
3804
4481
|
DISCORD?: string | null;
|
|
3805
4482
|
SLACK?: string | null;
|
|
4483
|
+
BLUESKY?: string | null;
|
|
3806
4484
|
} | null;
|
|
3807
4485
|
externalData?: {
|
|
3808
4486
|
FACEBOOK?: {
|
|
@@ -3846,6 +4524,19 @@ type CommentGetResponse = {
|
|
|
3846
4524
|
id?: string | null;
|
|
3847
4525
|
permalink?: string | null;
|
|
3848
4526
|
} | null;
|
|
4527
|
+
BLUESKY?: {
|
|
4528
|
+
id?: string | null;
|
|
4529
|
+
uri?: string | null;
|
|
4530
|
+
/**
|
|
4531
|
+
* Content ID of the created record
|
|
4532
|
+
*/
|
|
4533
|
+
cid?: string | null;
|
|
4534
|
+
permalink?: string | null;
|
|
4535
|
+
/**
|
|
4536
|
+
* Author DID (owner of the record)
|
|
4537
|
+
*/
|
|
4538
|
+
did?: string | null;
|
|
4539
|
+
} | null;
|
|
3849
4540
|
} | null;
|
|
3850
4541
|
createdAt: string | null;
|
|
3851
4542
|
updatedAt: string | null;
|
|
@@ -3862,7 +4553,7 @@ type CommentUpdateData = {
|
|
|
3862
4553
|
internalParentCommentId?: string | null;
|
|
3863
4554
|
postDate?: string;
|
|
3864
4555
|
status?: 'DRAFT' | 'SCHEDULED';
|
|
3865
|
-
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
4556
|
+
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY')>;
|
|
3866
4557
|
data?: {
|
|
3867
4558
|
FACEBOOK?: {
|
|
3868
4559
|
text?: string | null;
|
|
@@ -3894,6 +4585,9 @@ type CommentUpdateData = {
|
|
|
3894
4585
|
SLACK?: {
|
|
3895
4586
|
text?: string | null;
|
|
3896
4587
|
} | null;
|
|
4588
|
+
BLUESKY?: {
|
|
4589
|
+
text?: string | null;
|
|
4590
|
+
} | null;
|
|
3897
4591
|
};
|
|
3898
4592
|
};
|
|
3899
4593
|
};
|
|
@@ -3938,6 +4632,9 @@ type CommentUpdateResponse = {
|
|
|
3938
4632
|
SLACK?: {
|
|
3939
4633
|
text?: string | null;
|
|
3940
4634
|
} | null;
|
|
4635
|
+
BLUESKY?: {
|
|
4636
|
+
text?: string | null;
|
|
4637
|
+
} | null;
|
|
3941
4638
|
};
|
|
3942
4639
|
error?: string | null;
|
|
3943
4640
|
errors?: {
|
|
@@ -3951,6 +4648,7 @@ type CommentUpdateResponse = {
|
|
|
3951
4648
|
THREADS?: string | null;
|
|
3952
4649
|
DISCORD?: string | null;
|
|
3953
4650
|
SLACK?: string | null;
|
|
4651
|
+
BLUESKY?: string | null;
|
|
3954
4652
|
} | null;
|
|
3955
4653
|
externalData?: {
|
|
3956
4654
|
FACEBOOK?: {
|
|
@@ -3994,6 +4692,19 @@ type CommentUpdateResponse = {
|
|
|
3994
4692
|
id?: string | null;
|
|
3995
4693
|
permalink?: string | null;
|
|
3996
4694
|
} | null;
|
|
4695
|
+
BLUESKY?: {
|
|
4696
|
+
id?: string | null;
|
|
4697
|
+
uri?: string | null;
|
|
4698
|
+
/**
|
|
4699
|
+
* Content ID of the created record
|
|
4700
|
+
*/
|
|
4701
|
+
cid?: string | null;
|
|
4702
|
+
permalink?: string | null;
|
|
4703
|
+
/**
|
|
4704
|
+
* Author DID (owner of the record)
|
|
4705
|
+
*/
|
|
4706
|
+
did?: string | null;
|
|
4707
|
+
} | null;
|
|
3997
4708
|
} | null;
|
|
3998
4709
|
createdAt: string | null;
|
|
3999
4710
|
updatedAt: string | null;
|
|
@@ -4043,6 +4754,9 @@ type CommentDeleteResponse = {
|
|
|
4043
4754
|
SLACK?: {
|
|
4044
4755
|
text?: string | null;
|
|
4045
4756
|
} | null;
|
|
4757
|
+
BLUESKY?: {
|
|
4758
|
+
text?: string | null;
|
|
4759
|
+
} | null;
|
|
4046
4760
|
};
|
|
4047
4761
|
error?: string | null;
|
|
4048
4762
|
errors?: {
|
|
@@ -4056,6 +4770,7 @@ type CommentDeleteResponse = {
|
|
|
4056
4770
|
THREADS?: string | null;
|
|
4057
4771
|
DISCORD?: string | null;
|
|
4058
4772
|
SLACK?: string | null;
|
|
4773
|
+
BLUESKY?: string | null;
|
|
4059
4774
|
} | null;
|
|
4060
4775
|
externalData?: {
|
|
4061
4776
|
FACEBOOK?: {
|
|
@@ -4099,6 +4814,19 @@ type CommentDeleteResponse = {
|
|
|
4099
4814
|
id?: string | null;
|
|
4100
4815
|
permalink?: string | null;
|
|
4101
4816
|
} | null;
|
|
4817
|
+
BLUESKY?: {
|
|
4818
|
+
id?: string | null;
|
|
4819
|
+
uri?: string | null;
|
|
4820
|
+
/**
|
|
4821
|
+
* Content ID of the created record
|
|
4822
|
+
*/
|
|
4823
|
+
cid?: string | null;
|
|
4824
|
+
permalink?: string | null;
|
|
4825
|
+
/**
|
|
4826
|
+
* Author DID (owner of the record)
|
|
4827
|
+
*/
|
|
4828
|
+
did?: string | null;
|
|
4829
|
+
} | null;
|
|
4102
4830
|
} | null;
|
|
4103
4831
|
createdAt: string | null;
|
|
4104
4832
|
updatedAt: string | null;
|
|
@@ -4109,7 +4837,7 @@ type CommentGetListData = {
|
|
|
4109
4837
|
offset?: number | null;
|
|
4110
4838
|
order?: 'ASC' | 'DESC';
|
|
4111
4839
|
orderBy?: 'createdAt' | 'updatedAt' | 'deletedAt';
|
|
4112
|
-
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
4840
|
+
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY')>;
|
|
4113
4841
|
postId?: string;
|
|
4114
4842
|
q?: string;
|
|
4115
4843
|
status?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
|
|
@@ -4157,6 +4885,9 @@ type CommentGetListResponse = {
|
|
|
4157
4885
|
SLACK?: {
|
|
4158
4886
|
text?: string | null;
|
|
4159
4887
|
} | null;
|
|
4888
|
+
BLUESKY?: {
|
|
4889
|
+
text?: string | null;
|
|
4890
|
+
} | null;
|
|
4160
4891
|
};
|
|
4161
4892
|
error?: string | null;
|
|
4162
4893
|
errors?: {
|
|
@@ -4170,6 +4901,7 @@ type CommentGetListResponse = {
|
|
|
4170
4901
|
THREADS?: string | null;
|
|
4171
4902
|
DISCORD?: string | null;
|
|
4172
4903
|
SLACK?: string | null;
|
|
4904
|
+
BLUESKY?: string | null;
|
|
4173
4905
|
} | null;
|
|
4174
4906
|
externalData?: {
|
|
4175
4907
|
FACEBOOK?: {
|
|
@@ -4213,6 +4945,19 @@ type CommentGetListResponse = {
|
|
|
4213
4945
|
id?: string | null;
|
|
4214
4946
|
permalink?: string | null;
|
|
4215
4947
|
} | null;
|
|
4948
|
+
BLUESKY?: {
|
|
4949
|
+
id?: string | null;
|
|
4950
|
+
uri?: string | null;
|
|
4951
|
+
/**
|
|
4952
|
+
* Content ID of the created record
|
|
4953
|
+
*/
|
|
4954
|
+
cid?: string | null;
|
|
4955
|
+
permalink?: string | null;
|
|
4956
|
+
/**
|
|
4957
|
+
* Author DID (owner of the record)
|
|
4958
|
+
*/
|
|
4959
|
+
did?: string | null;
|
|
4960
|
+
} | null;
|
|
4216
4961
|
} | null;
|
|
4217
4962
|
createdAt: string | null;
|
|
4218
4963
|
updatedAt: string | null;
|
|
@@ -4231,7 +4976,7 @@ type CommentCreateData = {
|
|
|
4231
4976
|
internalParentCommentId?: string | null;
|
|
4232
4977
|
postDate: string;
|
|
4233
4978
|
status: 'DRAFT' | 'SCHEDULED';
|
|
4234
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
4979
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY')>;
|
|
4235
4980
|
data: {
|
|
4236
4981
|
FACEBOOK?: {
|
|
4237
4982
|
text?: string | null;
|
|
@@ -4263,6 +5008,9 @@ type CommentCreateData = {
|
|
|
4263
5008
|
SLACK?: {
|
|
4264
5009
|
text?: string | null;
|
|
4265
5010
|
} | null;
|
|
5011
|
+
BLUESKY?: {
|
|
5012
|
+
text?: string | null;
|
|
5013
|
+
} | null;
|
|
4266
5014
|
};
|
|
4267
5015
|
};
|
|
4268
5016
|
};
|
|
@@ -4307,6 +5055,9 @@ type CommentCreateResponse = {
|
|
|
4307
5055
|
SLACK?: {
|
|
4308
5056
|
text?: string | null;
|
|
4309
5057
|
} | null;
|
|
5058
|
+
BLUESKY?: {
|
|
5059
|
+
text?: string | null;
|
|
5060
|
+
} | null;
|
|
4310
5061
|
};
|
|
4311
5062
|
error?: string | null;
|
|
4312
5063
|
errors?: {
|
|
@@ -4320,6 +5071,7 @@ type CommentCreateResponse = {
|
|
|
4320
5071
|
THREADS?: string | null;
|
|
4321
5072
|
DISCORD?: string | null;
|
|
4322
5073
|
SLACK?: string | null;
|
|
5074
|
+
BLUESKY?: string | null;
|
|
4323
5075
|
} | null;
|
|
4324
5076
|
externalData?: {
|
|
4325
5077
|
FACEBOOK?: {
|
|
@@ -4363,6 +5115,19 @@ type CommentCreateResponse = {
|
|
|
4363
5115
|
id?: string | null;
|
|
4364
5116
|
permalink?: string | null;
|
|
4365
5117
|
} | null;
|
|
5118
|
+
BLUESKY?: {
|
|
5119
|
+
id?: string | null;
|
|
5120
|
+
uri?: string | null;
|
|
5121
|
+
/**
|
|
5122
|
+
* Content ID of the created record
|
|
5123
|
+
*/
|
|
5124
|
+
cid?: string | null;
|
|
5125
|
+
permalink?: string | null;
|
|
5126
|
+
/**
|
|
5127
|
+
* Author DID (owner of the record)
|
|
5128
|
+
*/
|
|
5129
|
+
did?: string | null;
|
|
5130
|
+
} | null;
|
|
4366
5131
|
} | null;
|
|
4367
5132
|
createdAt: string | null;
|
|
4368
5133
|
updatedAt: string | null;
|
|
@@ -4780,6 +5545,26 @@ type MiscLinkedinBuildCommentaryData = {
|
|
|
4780
5545
|
type MiscLinkedinBuildCommentaryResponse = {
|
|
4781
5546
|
commentary: string;
|
|
4782
5547
|
};
|
|
5548
|
+
type MiscGoogleBusinessAddMediaData = {
|
|
5549
|
+
/**
|
|
5550
|
+
* Body
|
|
5551
|
+
*/
|
|
5552
|
+
requestBody?: {
|
|
5553
|
+
teamId: string;
|
|
5554
|
+
uploadId: string;
|
|
5555
|
+
category?: 'CATEGORY_UNSPECIFIED' | 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'PRODUCT' | 'AT_WORK' | 'FOOD_AND_DRINK' | 'MENU' | 'COMMON_AREA' | 'ROOMS' | 'TEAMS' | 'ADDITIONAL';
|
|
5556
|
+
description?: string;
|
|
5557
|
+
};
|
|
5558
|
+
};
|
|
5559
|
+
type MiscGoogleBusinessAddMediaResponse = {
|
|
5560
|
+
name?: string;
|
|
5561
|
+
googleUrl?: string;
|
|
5562
|
+
locationAssociation?: {
|
|
5563
|
+
category?: 'CATEGORY_UNSPECIFIED' | 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'PRODUCT' | 'AT_WORK' | 'FOOD_AND_DRINK' | 'MENU' | 'COMMON_AREA' | 'ROOMS' | 'TEAMS' | 'ADDITIONAL';
|
|
5564
|
+
priceListItemId?: string;
|
|
5565
|
+
};
|
|
5566
|
+
description?: string;
|
|
5567
|
+
};
|
|
4783
5568
|
type $OpenApiTs = {
|
|
4784
5569
|
'/api/v1/': {
|
|
4785
5570
|
get: {
|
|
@@ -4860,6 +5645,8 @@ type $OpenApiTs = {
|
|
|
4860
5645
|
DISCORD?: number;
|
|
4861
5646
|
SLACK?: number;
|
|
4862
5647
|
MASTODON?: number;
|
|
5648
|
+
BLUESKY?: number;
|
|
5649
|
+
GOOGLE_BUSINESS?: number;
|
|
4863
5650
|
} | null;
|
|
4864
5651
|
apiAccess?: boolean;
|
|
4865
5652
|
analyticsDisabled?: boolean;
|
|
@@ -5076,6 +5863,8 @@ type $OpenApiTs = {
|
|
|
5076
5863
|
DISCORD?: number;
|
|
5077
5864
|
SLACK?: number;
|
|
5078
5865
|
MASTODON?: number;
|
|
5866
|
+
BLUESKY?: number;
|
|
5867
|
+
GOOGLE_BUSINESS?: number;
|
|
5079
5868
|
} | null;
|
|
5080
5869
|
apiAccess?: boolean;
|
|
5081
5870
|
analyticsDisabled?: boolean;
|
|
@@ -5108,7 +5897,7 @@ type $OpenApiTs = {
|
|
|
5108
5897
|
}>;
|
|
5109
5898
|
socialAccounts: Array<{
|
|
5110
5899
|
id: string;
|
|
5111
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
5900
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5112
5901
|
teamId: string;
|
|
5113
5902
|
username?: string | null;
|
|
5114
5903
|
displayName?: string | null;
|
|
@@ -5369,6 +6158,8 @@ type $OpenApiTs = {
|
|
|
5369
6158
|
DISCORD?: number;
|
|
5370
6159
|
SLACK?: number;
|
|
5371
6160
|
MASTODON?: number;
|
|
6161
|
+
BLUESKY?: number;
|
|
6162
|
+
GOOGLE_BUSINESS?: number;
|
|
5372
6163
|
} | null;
|
|
5373
6164
|
apiAccess?: boolean;
|
|
5374
6165
|
analyticsDisabled?: boolean;
|
|
@@ -5401,7 +6192,7 @@ type $OpenApiTs = {
|
|
|
5401
6192
|
}>;
|
|
5402
6193
|
socialAccounts: Array<{
|
|
5403
6194
|
id: string;
|
|
5404
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
6195
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5405
6196
|
teamId: string;
|
|
5406
6197
|
username?: string | null;
|
|
5407
6198
|
displayName?: string | null;
|
|
@@ -5634,7 +6425,7 @@ type $OpenApiTs = {
|
|
|
5634
6425
|
*/
|
|
5635
6426
|
200: {
|
|
5636
6427
|
id: string;
|
|
5637
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
6428
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5638
6429
|
teamId: string;
|
|
5639
6430
|
username?: string | null;
|
|
5640
6431
|
displayName?: string | null;
|
|
@@ -5713,7 +6504,7 @@ type $OpenApiTs = {
|
|
|
5713
6504
|
*/
|
|
5714
6505
|
200: {
|
|
5715
6506
|
id: string;
|
|
5716
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
6507
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5717
6508
|
teamId: string;
|
|
5718
6509
|
username?: string | null;
|
|
5719
6510
|
displayName?: string | null;
|
|
@@ -5792,7 +6583,7 @@ type $OpenApiTs = {
|
|
|
5792
6583
|
*/
|
|
5793
6584
|
200: {
|
|
5794
6585
|
id: string;
|
|
5795
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
6586
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5796
6587
|
teamId: string;
|
|
5797
6588
|
username?: string | null;
|
|
5798
6589
|
displayName?: string | null;
|
|
@@ -5924,7 +6715,7 @@ type $OpenApiTs = {
|
|
|
5924
6715
|
*/
|
|
5925
6716
|
200: Array<{
|
|
5926
6717
|
id: string;
|
|
5927
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
6718
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5928
6719
|
teamId: string;
|
|
5929
6720
|
username?: string | null;
|
|
5930
6721
|
displayName?: string | null;
|
|
@@ -6703,6 +7494,62 @@ type $OpenApiTs = {
|
|
|
6703
7494
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
6704
7495
|
spoiler?: string | null;
|
|
6705
7496
|
} | null;
|
|
7497
|
+
BLUESKY?: {
|
|
7498
|
+
text?: string | null;
|
|
7499
|
+
uploadIds?: Array<(string)> | null;
|
|
7500
|
+
/**
|
|
7501
|
+
* Extra hashtags (without #), up to 8.
|
|
7502
|
+
*/
|
|
7503
|
+
tags?: Array<(string)> | null;
|
|
7504
|
+
/**
|
|
7505
|
+
* Self-labels (content warnings) applied to the post.
|
|
7506
|
+
*/
|
|
7507
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
7508
|
+
/**
|
|
7509
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
7510
|
+
*/
|
|
7511
|
+
quoteUri?: string;
|
|
7512
|
+
/**
|
|
7513
|
+
* Target URL for the external link card
|
|
7514
|
+
*/
|
|
7515
|
+
externalUrl?: string | null;
|
|
7516
|
+
/**
|
|
7517
|
+
* Card title for the external link card
|
|
7518
|
+
*/
|
|
7519
|
+
externalTitle?: string | null;
|
|
7520
|
+
/**
|
|
7521
|
+
* Card description for the external link card
|
|
7522
|
+
*/
|
|
7523
|
+
externalDescription?: string | null;
|
|
7524
|
+
/**
|
|
7525
|
+
* Alt text for the video embed.
|
|
7526
|
+
*/
|
|
7527
|
+
videoAlt?: string | null;
|
|
7528
|
+
} | null;
|
|
7529
|
+
GOOGLE_BUSINESS?: {
|
|
7530
|
+
text?: string | null;
|
|
7531
|
+
/**
|
|
7532
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
7533
|
+
*/
|
|
7534
|
+
uploadIds?: Array<(string)> | null;
|
|
7535
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
7536
|
+
/**
|
|
7537
|
+
* Language tag like 'en' or 'en-US'.
|
|
7538
|
+
*/
|
|
7539
|
+
languageCode?: string | null;
|
|
7540
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
7541
|
+
callToActionUrl?: string | null;
|
|
7542
|
+
eventTitle?: string | null;
|
|
7543
|
+
eventStartDate?: string | null;
|
|
7544
|
+
eventEndDate?: string | null;
|
|
7545
|
+
offerCouponCode?: string | null;
|
|
7546
|
+
offerRedeemOnlineUrl?: string | null;
|
|
7547
|
+
offerTermsConditions?: string | null;
|
|
7548
|
+
/**
|
|
7549
|
+
* Alert type for ALERT posts.
|
|
7550
|
+
*/
|
|
7551
|
+
alertType?: 'COVID_19' | null;
|
|
7552
|
+
} | null;
|
|
6706
7553
|
};
|
|
6707
7554
|
error?: string | null;
|
|
6708
7555
|
errors?: {
|
|
@@ -6718,6 +7565,8 @@ type $OpenApiTs = {
|
|
|
6718
7565
|
YOUTUBE?: string | null;
|
|
6719
7566
|
MASTODON?: string | null;
|
|
6720
7567
|
THREADS?: string | null;
|
|
7568
|
+
BLUESKY?: string | null;
|
|
7569
|
+
GOOGLE_BUSINESS?: string | null;
|
|
6721
7570
|
} | null;
|
|
6722
7571
|
externalData?: {
|
|
6723
7572
|
TWITTER?: {
|
|
@@ -6734,12 +7583,12 @@ type $OpenApiTs = {
|
|
|
6734
7583
|
postId?: string | null;
|
|
6735
7584
|
videoId?: string | null;
|
|
6736
7585
|
permalink?: string | null;
|
|
6737
|
-
thumbnail?: string;
|
|
7586
|
+
thumbnail?: string | null;
|
|
6738
7587
|
} | null;
|
|
6739
7588
|
INSTAGRAM?: {
|
|
6740
7589
|
id?: string | null;
|
|
6741
7590
|
permalink?: string | null;
|
|
6742
|
-
thumbnail?: string;
|
|
7591
|
+
thumbnail?: string | null;
|
|
6743
7592
|
} | null;
|
|
6744
7593
|
TIKTOK?: {
|
|
6745
7594
|
id?: string | null;
|
|
@@ -6749,7 +7598,7 @@ type $OpenApiTs = {
|
|
|
6749
7598
|
id?: string | null;
|
|
6750
7599
|
activity?: string | null;
|
|
6751
7600
|
permalink?: string | null;
|
|
6752
|
-
thumbnail?: string;
|
|
7601
|
+
thumbnail?: string | null;
|
|
6753
7602
|
} | null;
|
|
6754
7603
|
REDDIT?: {
|
|
6755
7604
|
id?: string | null;
|
|
@@ -6780,6 +7629,29 @@ type $OpenApiTs = {
|
|
|
6780
7629
|
id?: string | null;
|
|
6781
7630
|
permalink?: string | null;
|
|
6782
7631
|
} | null;
|
|
7632
|
+
BLUESKY?: {
|
|
7633
|
+
id?: string | null;
|
|
7634
|
+
uri?: string | null;
|
|
7635
|
+
/**
|
|
7636
|
+
* Content ID of the created record
|
|
7637
|
+
*/
|
|
7638
|
+
cid?: string | null;
|
|
7639
|
+
permalink?: string | null;
|
|
7640
|
+
/**
|
|
7641
|
+
* Author DID (owner of the record)
|
|
7642
|
+
*/
|
|
7643
|
+
did?: string | null;
|
|
7644
|
+
} | null;
|
|
7645
|
+
GOOGLE_BUSINESS?: {
|
|
7646
|
+
/**
|
|
7647
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
7648
|
+
*/
|
|
7649
|
+
id?: string | null;
|
|
7650
|
+
/**
|
|
7651
|
+
* Public link to the post (searchUrl) when available.
|
|
7652
|
+
*/
|
|
7653
|
+
permalink?: string | null;
|
|
7654
|
+
} | null;
|
|
6783
7655
|
} | null;
|
|
6784
7656
|
createdAt: string | null;
|
|
6785
7657
|
updatedAt: string | null;
|
|
@@ -6820,7 +7692,7 @@ type $OpenApiTs = {
|
|
|
6820
7692
|
deletedAt?: string | null;
|
|
6821
7693
|
socialAccount: {
|
|
6822
7694
|
id: string;
|
|
6823
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
7695
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
6824
7696
|
teamId: string;
|
|
6825
7697
|
username?: string | null;
|
|
6826
7698
|
displayName?: string | null;
|
|
@@ -7111,6 +7983,62 @@ type $OpenApiTs = {
|
|
|
7111
7983
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
7112
7984
|
spoiler?: string | null;
|
|
7113
7985
|
} | null;
|
|
7986
|
+
BLUESKY?: {
|
|
7987
|
+
text?: string | null;
|
|
7988
|
+
uploadIds?: Array<(string)> | null;
|
|
7989
|
+
/**
|
|
7990
|
+
* Extra hashtags (without #), up to 8.
|
|
7991
|
+
*/
|
|
7992
|
+
tags?: Array<(string)> | null;
|
|
7993
|
+
/**
|
|
7994
|
+
* Self-labels (content warnings) applied to the post.
|
|
7995
|
+
*/
|
|
7996
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
7997
|
+
/**
|
|
7998
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
7999
|
+
*/
|
|
8000
|
+
quoteUri?: string;
|
|
8001
|
+
/**
|
|
8002
|
+
* Target URL for the external link card
|
|
8003
|
+
*/
|
|
8004
|
+
externalUrl?: string | null;
|
|
8005
|
+
/**
|
|
8006
|
+
* Card title for the external link card
|
|
8007
|
+
*/
|
|
8008
|
+
externalTitle?: string | null;
|
|
8009
|
+
/**
|
|
8010
|
+
* Card description for the external link card
|
|
8011
|
+
*/
|
|
8012
|
+
externalDescription?: string | null;
|
|
8013
|
+
/**
|
|
8014
|
+
* Alt text for the video embed.
|
|
8015
|
+
*/
|
|
8016
|
+
videoAlt?: string | null;
|
|
8017
|
+
} | null;
|
|
8018
|
+
GOOGLE_BUSINESS?: {
|
|
8019
|
+
text?: string | null;
|
|
8020
|
+
/**
|
|
8021
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
8022
|
+
*/
|
|
8023
|
+
uploadIds?: Array<(string)> | null;
|
|
8024
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
8025
|
+
/**
|
|
8026
|
+
* Language tag like 'en' or 'en-US'.
|
|
8027
|
+
*/
|
|
8028
|
+
languageCode?: string | null;
|
|
8029
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
8030
|
+
callToActionUrl?: string | null;
|
|
8031
|
+
eventTitle?: string | null;
|
|
8032
|
+
eventStartDate?: string | null;
|
|
8033
|
+
eventEndDate?: string | null;
|
|
8034
|
+
offerCouponCode?: string | null;
|
|
8035
|
+
offerRedeemOnlineUrl?: string | null;
|
|
8036
|
+
offerTermsConditions?: string | null;
|
|
8037
|
+
/**
|
|
8038
|
+
* Alert type for ALERT posts.
|
|
8039
|
+
*/
|
|
8040
|
+
alertType?: 'COVID_19' | null;
|
|
8041
|
+
} | null;
|
|
7114
8042
|
};
|
|
7115
8043
|
error?: string | null;
|
|
7116
8044
|
errors?: {
|
|
@@ -7126,6 +8054,8 @@ type $OpenApiTs = {
|
|
|
7126
8054
|
YOUTUBE?: string | null;
|
|
7127
8055
|
MASTODON?: string | null;
|
|
7128
8056
|
THREADS?: string | null;
|
|
8057
|
+
BLUESKY?: string | null;
|
|
8058
|
+
GOOGLE_BUSINESS?: string | null;
|
|
7129
8059
|
} | null;
|
|
7130
8060
|
externalData?: {
|
|
7131
8061
|
TWITTER?: {
|
|
@@ -7142,12 +8072,12 @@ type $OpenApiTs = {
|
|
|
7142
8072
|
postId?: string | null;
|
|
7143
8073
|
videoId?: string | null;
|
|
7144
8074
|
permalink?: string | null;
|
|
7145
|
-
thumbnail?: string;
|
|
8075
|
+
thumbnail?: string | null;
|
|
7146
8076
|
} | null;
|
|
7147
8077
|
INSTAGRAM?: {
|
|
7148
8078
|
id?: string | null;
|
|
7149
8079
|
permalink?: string | null;
|
|
7150
|
-
thumbnail?: string;
|
|
8080
|
+
thumbnail?: string | null;
|
|
7151
8081
|
} | null;
|
|
7152
8082
|
TIKTOK?: {
|
|
7153
8083
|
id?: string | null;
|
|
@@ -7157,7 +8087,7 @@ type $OpenApiTs = {
|
|
|
7157
8087
|
id?: string | null;
|
|
7158
8088
|
activity?: string | null;
|
|
7159
8089
|
permalink?: string | null;
|
|
7160
|
-
thumbnail?: string;
|
|
8090
|
+
thumbnail?: string | null;
|
|
7161
8091
|
} | null;
|
|
7162
8092
|
REDDIT?: {
|
|
7163
8093
|
id?: string | null;
|
|
@@ -7188,6 +8118,29 @@ type $OpenApiTs = {
|
|
|
7188
8118
|
id?: string | null;
|
|
7189
8119
|
permalink?: string | null;
|
|
7190
8120
|
} | null;
|
|
8121
|
+
BLUESKY?: {
|
|
8122
|
+
id?: string | null;
|
|
8123
|
+
uri?: string | null;
|
|
8124
|
+
/**
|
|
8125
|
+
* Content ID of the created record
|
|
8126
|
+
*/
|
|
8127
|
+
cid?: string | null;
|
|
8128
|
+
permalink?: string | null;
|
|
8129
|
+
/**
|
|
8130
|
+
* Author DID (owner of the record)
|
|
8131
|
+
*/
|
|
8132
|
+
did?: string | null;
|
|
8133
|
+
} | null;
|
|
8134
|
+
GOOGLE_BUSINESS?: {
|
|
8135
|
+
/**
|
|
8136
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
8137
|
+
*/
|
|
8138
|
+
id?: string | null;
|
|
8139
|
+
/**
|
|
8140
|
+
* Public link to the post (searchUrl) when available.
|
|
8141
|
+
*/
|
|
8142
|
+
permalink?: string | null;
|
|
8143
|
+
} | null;
|
|
7191
8144
|
} | null;
|
|
7192
8145
|
createdAt: string | null;
|
|
7193
8146
|
updatedAt: string | null;
|
|
@@ -7455,9 +8408,65 @@ type $OpenApiTs = {
|
|
|
7455
8408
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
7456
8409
|
spoiler?: string | null;
|
|
7457
8410
|
} | null;
|
|
7458
|
-
|
|
7459
|
-
|
|
7460
|
-
|
|
8411
|
+
BLUESKY?: {
|
|
8412
|
+
text?: string | null;
|
|
8413
|
+
uploadIds?: Array<(string)> | null;
|
|
8414
|
+
/**
|
|
8415
|
+
* Extra hashtags (without #), up to 8.
|
|
8416
|
+
*/
|
|
8417
|
+
tags?: Array<(string)> | null;
|
|
8418
|
+
/**
|
|
8419
|
+
* Self-labels (content warnings) applied to the post.
|
|
8420
|
+
*/
|
|
8421
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
8422
|
+
/**
|
|
8423
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
8424
|
+
*/
|
|
8425
|
+
quoteUri?: string;
|
|
8426
|
+
/**
|
|
8427
|
+
* Target URL for the external link card
|
|
8428
|
+
*/
|
|
8429
|
+
externalUrl?: string | null;
|
|
8430
|
+
/**
|
|
8431
|
+
* Card title for the external link card
|
|
8432
|
+
*/
|
|
8433
|
+
externalTitle?: string | null;
|
|
8434
|
+
/**
|
|
8435
|
+
* Card description for the external link card
|
|
8436
|
+
*/
|
|
8437
|
+
externalDescription?: string | null;
|
|
8438
|
+
/**
|
|
8439
|
+
* Alt text for the video embed.
|
|
8440
|
+
*/
|
|
8441
|
+
videoAlt?: string | null;
|
|
8442
|
+
} | null;
|
|
8443
|
+
GOOGLE_BUSINESS?: {
|
|
8444
|
+
text?: string | null;
|
|
8445
|
+
/**
|
|
8446
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
8447
|
+
*/
|
|
8448
|
+
uploadIds?: Array<(string)> | null;
|
|
8449
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
8450
|
+
/**
|
|
8451
|
+
* Language tag like 'en' or 'en-US'.
|
|
8452
|
+
*/
|
|
8453
|
+
languageCode?: string | null;
|
|
8454
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
8455
|
+
callToActionUrl?: string | null;
|
|
8456
|
+
eventTitle?: string | null;
|
|
8457
|
+
eventStartDate?: string | null;
|
|
8458
|
+
eventEndDate?: string | null;
|
|
8459
|
+
offerCouponCode?: string | null;
|
|
8460
|
+
offerRedeemOnlineUrl?: string | null;
|
|
8461
|
+
offerTermsConditions?: string | null;
|
|
8462
|
+
/**
|
|
8463
|
+
* Alert type for ALERT posts.
|
|
8464
|
+
*/
|
|
8465
|
+
alertType?: 'COVID_19' | null;
|
|
8466
|
+
} | null;
|
|
8467
|
+
};
|
|
8468
|
+
error?: string | null;
|
|
8469
|
+
errors?: {
|
|
7461
8470
|
TWITTER?: string | null;
|
|
7462
8471
|
PINTEREST?: string | null;
|
|
7463
8472
|
FACEBOOK?: string | null;
|
|
@@ -7470,6 +8479,8 @@ type $OpenApiTs = {
|
|
|
7470
8479
|
YOUTUBE?: string | null;
|
|
7471
8480
|
MASTODON?: string | null;
|
|
7472
8481
|
THREADS?: string | null;
|
|
8482
|
+
BLUESKY?: string | null;
|
|
8483
|
+
GOOGLE_BUSINESS?: string | null;
|
|
7473
8484
|
} | null;
|
|
7474
8485
|
externalData?: {
|
|
7475
8486
|
TWITTER?: {
|
|
@@ -7486,12 +8497,12 @@ type $OpenApiTs = {
|
|
|
7486
8497
|
postId?: string | null;
|
|
7487
8498
|
videoId?: string | null;
|
|
7488
8499
|
permalink?: string | null;
|
|
7489
|
-
thumbnail?: string;
|
|
8500
|
+
thumbnail?: string | null;
|
|
7490
8501
|
} | null;
|
|
7491
8502
|
INSTAGRAM?: {
|
|
7492
8503
|
id?: string | null;
|
|
7493
8504
|
permalink?: string | null;
|
|
7494
|
-
thumbnail?: string;
|
|
8505
|
+
thumbnail?: string | null;
|
|
7495
8506
|
} | null;
|
|
7496
8507
|
TIKTOK?: {
|
|
7497
8508
|
id?: string | null;
|
|
@@ -7501,7 +8512,7 @@ type $OpenApiTs = {
|
|
|
7501
8512
|
id?: string | null;
|
|
7502
8513
|
activity?: string | null;
|
|
7503
8514
|
permalink?: string | null;
|
|
7504
|
-
thumbnail?: string;
|
|
8515
|
+
thumbnail?: string | null;
|
|
7505
8516
|
} | null;
|
|
7506
8517
|
REDDIT?: {
|
|
7507
8518
|
id?: string | null;
|
|
@@ -7532,6 +8543,29 @@ type $OpenApiTs = {
|
|
|
7532
8543
|
id?: string | null;
|
|
7533
8544
|
permalink?: string | null;
|
|
7534
8545
|
} | null;
|
|
8546
|
+
BLUESKY?: {
|
|
8547
|
+
id?: string | null;
|
|
8548
|
+
uri?: string | null;
|
|
8549
|
+
/**
|
|
8550
|
+
* Content ID of the created record
|
|
8551
|
+
*/
|
|
8552
|
+
cid?: string | null;
|
|
8553
|
+
permalink?: string | null;
|
|
8554
|
+
/**
|
|
8555
|
+
* Author DID (owner of the record)
|
|
8556
|
+
*/
|
|
8557
|
+
did?: string | null;
|
|
8558
|
+
} | null;
|
|
8559
|
+
GOOGLE_BUSINESS?: {
|
|
8560
|
+
/**
|
|
8561
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
8562
|
+
*/
|
|
8563
|
+
id?: string | null;
|
|
8564
|
+
/**
|
|
8565
|
+
* Public link to the post (searchUrl) when available.
|
|
8566
|
+
*/
|
|
8567
|
+
permalink?: string | null;
|
|
8568
|
+
} | null;
|
|
7535
8569
|
} | null;
|
|
7536
8570
|
createdAt: string | null;
|
|
7537
8571
|
updatedAt: string | null;
|
|
@@ -7802,6 +8836,62 @@ type $OpenApiTs = {
|
|
|
7802
8836
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
7803
8837
|
spoiler?: string | null;
|
|
7804
8838
|
} | null;
|
|
8839
|
+
BLUESKY?: {
|
|
8840
|
+
text?: string | null;
|
|
8841
|
+
uploadIds?: Array<(string)> | null;
|
|
8842
|
+
/**
|
|
8843
|
+
* Extra hashtags (without #), up to 8.
|
|
8844
|
+
*/
|
|
8845
|
+
tags?: Array<(string)> | null;
|
|
8846
|
+
/**
|
|
8847
|
+
* Self-labels (content warnings) applied to the post.
|
|
8848
|
+
*/
|
|
8849
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
8850
|
+
/**
|
|
8851
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
8852
|
+
*/
|
|
8853
|
+
quoteUri?: string;
|
|
8854
|
+
/**
|
|
8855
|
+
* Target URL for the external link card
|
|
8856
|
+
*/
|
|
8857
|
+
externalUrl?: string | null;
|
|
8858
|
+
/**
|
|
8859
|
+
* Card title for the external link card
|
|
8860
|
+
*/
|
|
8861
|
+
externalTitle?: string | null;
|
|
8862
|
+
/**
|
|
8863
|
+
* Card description for the external link card
|
|
8864
|
+
*/
|
|
8865
|
+
externalDescription?: string | null;
|
|
8866
|
+
/**
|
|
8867
|
+
* Alt text for the video embed.
|
|
8868
|
+
*/
|
|
8869
|
+
videoAlt?: string | null;
|
|
8870
|
+
} | null;
|
|
8871
|
+
GOOGLE_BUSINESS?: {
|
|
8872
|
+
text?: string | null;
|
|
8873
|
+
/**
|
|
8874
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
8875
|
+
*/
|
|
8876
|
+
uploadIds?: Array<(string)> | null;
|
|
8877
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
8878
|
+
/**
|
|
8879
|
+
* Language tag like 'en' or 'en-US'.
|
|
8880
|
+
*/
|
|
8881
|
+
languageCode?: string | null;
|
|
8882
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
8883
|
+
callToActionUrl?: string | null;
|
|
8884
|
+
eventTitle?: string | null;
|
|
8885
|
+
eventStartDate?: string | null;
|
|
8886
|
+
eventEndDate?: string | null;
|
|
8887
|
+
offerCouponCode?: string | null;
|
|
8888
|
+
offerRedeemOnlineUrl?: string | null;
|
|
8889
|
+
offerTermsConditions?: string | null;
|
|
8890
|
+
/**
|
|
8891
|
+
* Alert type for ALERT posts.
|
|
8892
|
+
*/
|
|
8893
|
+
alertType?: 'COVID_19' | null;
|
|
8894
|
+
} | null;
|
|
7805
8895
|
};
|
|
7806
8896
|
error?: string | null;
|
|
7807
8897
|
errors?: {
|
|
@@ -7817,6 +8907,8 @@ type $OpenApiTs = {
|
|
|
7817
8907
|
YOUTUBE?: string | null;
|
|
7818
8908
|
MASTODON?: string | null;
|
|
7819
8909
|
THREADS?: string | null;
|
|
8910
|
+
BLUESKY?: string | null;
|
|
8911
|
+
GOOGLE_BUSINESS?: string | null;
|
|
7820
8912
|
} | null;
|
|
7821
8913
|
externalData?: {
|
|
7822
8914
|
TWITTER?: {
|
|
@@ -7833,12 +8925,12 @@ type $OpenApiTs = {
|
|
|
7833
8925
|
postId?: string | null;
|
|
7834
8926
|
videoId?: string | null;
|
|
7835
8927
|
permalink?: string | null;
|
|
7836
|
-
thumbnail?: string;
|
|
8928
|
+
thumbnail?: string | null;
|
|
7837
8929
|
} | null;
|
|
7838
8930
|
INSTAGRAM?: {
|
|
7839
8931
|
id?: string | null;
|
|
7840
8932
|
permalink?: string | null;
|
|
7841
|
-
thumbnail?: string;
|
|
8933
|
+
thumbnail?: string | null;
|
|
7842
8934
|
} | null;
|
|
7843
8935
|
TIKTOK?: {
|
|
7844
8936
|
id?: string | null;
|
|
@@ -7848,7 +8940,7 @@ type $OpenApiTs = {
|
|
|
7848
8940
|
id?: string | null;
|
|
7849
8941
|
activity?: string | null;
|
|
7850
8942
|
permalink?: string | null;
|
|
7851
|
-
thumbnail?: string;
|
|
8943
|
+
thumbnail?: string | null;
|
|
7852
8944
|
} | null;
|
|
7853
8945
|
REDDIT?: {
|
|
7854
8946
|
id?: string | null;
|
|
@@ -7879,6 +8971,29 @@ type $OpenApiTs = {
|
|
|
7879
8971
|
id?: string | null;
|
|
7880
8972
|
permalink?: string | null;
|
|
7881
8973
|
} | null;
|
|
8974
|
+
BLUESKY?: {
|
|
8975
|
+
id?: string | null;
|
|
8976
|
+
uri?: string | null;
|
|
8977
|
+
/**
|
|
8978
|
+
* Content ID of the created record
|
|
8979
|
+
*/
|
|
8980
|
+
cid?: string | null;
|
|
8981
|
+
permalink?: string | null;
|
|
8982
|
+
/**
|
|
8983
|
+
* Author DID (owner of the record)
|
|
8984
|
+
*/
|
|
8985
|
+
did?: string | null;
|
|
8986
|
+
} | null;
|
|
8987
|
+
GOOGLE_BUSINESS?: {
|
|
8988
|
+
/**
|
|
8989
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
8990
|
+
*/
|
|
8991
|
+
id?: string | null;
|
|
8992
|
+
/**
|
|
8993
|
+
* Public link to the post (searchUrl) when available.
|
|
8994
|
+
*/
|
|
8995
|
+
permalink?: string | null;
|
|
8996
|
+
} | null;
|
|
7882
8997
|
} | null;
|
|
7883
8998
|
createdAt: string | null;
|
|
7884
8999
|
updatedAt: string | null;
|
|
@@ -7919,7 +9034,7 @@ type $OpenApiTs = {
|
|
|
7919
9034
|
deletedAt?: string | null;
|
|
7920
9035
|
socialAccount: {
|
|
7921
9036
|
id: string;
|
|
7922
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
9037
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
7923
9038
|
teamId: string;
|
|
7924
9039
|
username?: string | null;
|
|
7925
9040
|
displayName?: string | null;
|
|
@@ -8212,6 +9327,62 @@ type $OpenApiTs = {
|
|
|
8212
9327
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
8213
9328
|
spoiler?: string | null;
|
|
8214
9329
|
} | null;
|
|
9330
|
+
BLUESKY?: {
|
|
9331
|
+
text?: string | null;
|
|
9332
|
+
uploadIds?: Array<(string)> | null;
|
|
9333
|
+
/**
|
|
9334
|
+
* Extra hashtags (without #), up to 8.
|
|
9335
|
+
*/
|
|
9336
|
+
tags?: Array<(string)> | null;
|
|
9337
|
+
/**
|
|
9338
|
+
* Self-labels (content warnings) applied to the post.
|
|
9339
|
+
*/
|
|
9340
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
9341
|
+
/**
|
|
9342
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
9343
|
+
*/
|
|
9344
|
+
quoteUri?: string;
|
|
9345
|
+
/**
|
|
9346
|
+
* Target URL for the external link card
|
|
9347
|
+
*/
|
|
9348
|
+
externalUrl?: string | null;
|
|
9349
|
+
/**
|
|
9350
|
+
* Card title for the external link card
|
|
9351
|
+
*/
|
|
9352
|
+
externalTitle?: string | null;
|
|
9353
|
+
/**
|
|
9354
|
+
* Card description for the external link card
|
|
9355
|
+
*/
|
|
9356
|
+
externalDescription?: string | null;
|
|
9357
|
+
/**
|
|
9358
|
+
* Alt text for the video embed.
|
|
9359
|
+
*/
|
|
9360
|
+
videoAlt?: string | null;
|
|
9361
|
+
} | null;
|
|
9362
|
+
GOOGLE_BUSINESS?: {
|
|
9363
|
+
text?: string | null;
|
|
9364
|
+
/**
|
|
9365
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
9366
|
+
*/
|
|
9367
|
+
uploadIds?: Array<(string)> | null;
|
|
9368
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
9369
|
+
/**
|
|
9370
|
+
* Language tag like 'en' or 'en-US'.
|
|
9371
|
+
*/
|
|
9372
|
+
languageCode?: string | null;
|
|
9373
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
9374
|
+
callToActionUrl?: string | null;
|
|
9375
|
+
eventTitle?: string | null;
|
|
9376
|
+
eventStartDate?: string | null;
|
|
9377
|
+
eventEndDate?: string | null;
|
|
9378
|
+
offerCouponCode?: string | null;
|
|
9379
|
+
offerRedeemOnlineUrl?: string | null;
|
|
9380
|
+
offerTermsConditions?: string | null;
|
|
9381
|
+
/**
|
|
9382
|
+
* Alert type for ALERT posts.
|
|
9383
|
+
*/
|
|
9384
|
+
alertType?: 'COVID_19' | null;
|
|
9385
|
+
} | null;
|
|
8215
9386
|
};
|
|
8216
9387
|
error?: string | null;
|
|
8217
9388
|
errors?: {
|
|
@@ -8227,6 +9398,8 @@ type $OpenApiTs = {
|
|
|
8227
9398
|
YOUTUBE?: string | null;
|
|
8228
9399
|
MASTODON?: string | null;
|
|
8229
9400
|
THREADS?: string | null;
|
|
9401
|
+
BLUESKY?: string | null;
|
|
9402
|
+
GOOGLE_BUSINESS?: string | null;
|
|
8230
9403
|
} | null;
|
|
8231
9404
|
externalData?: {
|
|
8232
9405
|
TWITTER?: {
|
|
@@ -8243,12 +9416,12 @@ type $OpenApiTs = {
|
|
|
8243
9416
|
postId?: string | null;
|
|
8244
9417
|
videoId?: string | null;
|
|
8245
9418
|
permalink?: string | null;
|
|
8246
|
-
thumbnail?: string;
|
|
9419
|
+
thumbnail?: string | null;
|
|
8247
9420
|
} | null;
|
|
8248
9421
|
INSTAGRAM?: {
|
|
8249
9422
|
id?: string | null;
|
|
8250
9423
|
permalink?: string | null;
|
|
8251
|
-
thumbnail?: string;
|
|
9424
|
+
thumbnail?: string | null;
|
|
8252
9425
|
} | null;
|
|
8253
9426
|
TIKTOK?: {
|
|
8254
9427
|
id?: string | null;
|
|
@@ -8258,7 +9431,7 @@ type $OpenApiTs = {
|
|
|
8258
9431
|
id?: string | null;
|
|
8259
9432
|
activity?: string | null;
|
|
8260
9433
|
permalink?: string | null;
|
|
8261
|
-
thumbnail?: string;
|
|
9434
|
+
thumbnail?: string | null;
|
|
8262
9435
|
} | null;
|
|
8263
9436
|
REDDIT?: {
|
|
8264
9437
|
id?: string | null;
|
|
@@ -8289,6 +9462,29 @@ type $OpenApiTs = {
|
|
|
8289
9462
|
id?: string | null;
|
|
8290
9463
|
permalink?: string | null;
|
|
8291
9464
|
} | null;
|
|
9465
|
+
BLUESKY?: {
|
|
9466
|
+
id?: string | null;
|
|
9467
|
+
uri?: string | null;
|
|
9468
|
+
/**
|
|
9469
|
+
* Content ID of the created record
|
|
9470
|
+
*/
|
|
9471
|
+
cid?: string | null;
|
|
9472
|
+
permalink?: string | null;
|
|
9473
|
+
/**
|
|
9474
|
+
* Author DID (owner of the record)
|
|
9475
|
+
*/
|
|
9476
|
+
did?: string | null;
|
|
9477
|
+
} | null;
|
|
9478
|
+
GOOGLE_BUSINESS?: {
|
|
9479
|
+
/**
|
|
9480
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
9481
|
+
*/
|
|
9482
|
+
id?: string | null;
|
|
9483
|
+
/**
|
|
9484
|
+
* Public link to the post (searchUrl) when available.
|
|
9485
|
+
*/
|
|
9486
|
+
permalink?: string | null;
|
|
9487
|
+
} | null;
|
|
8292
9488
|
} | null;
|
|
8293
9489
|
createdAt: string | null;
|
|
8294
9490
|
updatedAt: string | null;
|
|
@@ -8347,7 +9543,7 @@ type $OpenApiTs = {
|
|
|
8347
9543
|
200: {
|
|
8348
9544
|
socialAccount: {
|
|
8349
9545
|
id: string;
|
|
8350
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
9546
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
8351
9547
|
teamId: string;
|
|
8352
9548
|
username?: string | null;
|
|
8353
9549
|
displayName?: string | null;
|
|
@@ -8656,6 +9852,62 @@ type $OpenApiTs = {
|
|
|
8656
9852
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
8657
9853
|
spoiler?: string | null;
|
|
8658
9854
|
} | null;
|
|
9855
|
+
BLUESKY?: {
|
|
9856
|
+
text?: string | null;
|
|
9857
|
+
uploadIds?: Array<(string)> | null;
|
|
9858
|
+
/**
|
|
9859
|
+
* Extra hashtags (without #), up to 8.
|
|
9860
|
+
*/
|
|
9861
|
+
tags?: Array<(string)> | null;
|
|
9862
|
+
/**
|
|
9863
|
+
* Self-labels (content warnings) applied to the post.
|
|
9864
|
+
*/
|
|
9865
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
9866
|
+
/**
|
|
9867
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
9868
|
+
*/
|
|
9869
|
+
quoteUri?: string;
|
|
9870
|
+
/**
|
|
9871
|
+
* Target URL for the external link card
|
|
9872
|
+
*/
|
|
9873
|
+
externalUrl?: string | null;
|
|
9874
|
+
/**
|
|
9875
|
+
* Card title for the external link card
|
|
9876
|
+
*/
|
|
9877
|
+
externalTitle?: string | null;
|
|
9878
|
+
/**
|
|
9879
|
+
* Card description for the external link card
|
|
9880
|
+
*/
|
|
9881
|
+
externalDescription?: string | null;
|
|
9882
|
+
/**
|
|
9883
|
+
* Alt text for the video embed.
|
|
9884
|
+
*/
|
|
9885
|
+
videoAlt?: string | null;
|
|
9886
|
+
} | null;
|
|
9887
|
+
GOOGLE_BUSINESS?: {
|
|
9888
|
+
text?: string | null;
|
|
9889
|
+
/**
|
|
9890
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
9891
|
+
*/
|
|
9892
|
+
uploadIds?: Array<(string)> | null;
|
|
9893
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
9894
|
+
/**
|
|
9895
|
+
* Language tag like 'en' or 'en-US'.
|
|
9896
|
+
*/
|
|
9897
|
+
languageCode?: string | null;
|
|
9898
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
9899
|
+
callToActionUrl?: string | null;
|
|
9900
|
+
eventTitle?: string | null;
|
|
9901
|
+
eventStartDate?: string | null;
|
|
9902
|
+
eventEndDate?: string | null;
|
|
9903
|
+
offerCouponCode?: string | null;
|
|
9904
|
+
offerRedeemOnlineUrl?: string | null;
|
|
9905
|
+
offerTermsConditions?: string | null;
|
|
9906
|
+
/**
|
|
9907
|
+
* Alert type for ALERT posts.
|
|
9908
|
+
*/
|
|
9909
|
+
alertType?: 'COVID_19' | null;
|
|
9910
|
+
} | null;
|
|
8659
9911
|
};
|
|
8660
9912
|
error?: string | null;
|
|
8661
9913
|
errors?: {
|
|
@@ -8671,6 +9923,8 @@ type $OpenApiTs = {
|
|
|
8671
9923
|
YOUTUBE?: string | null;
|
|
8672
9924
|
MASTODON?: string | null;
|
|
8673
9925
|
THREADS?: string | null;
|
|
9926
|
+
BLUESKY?: string | null;
|
|
9927
|
+
GOOGLE_BUSINESS?: string | null;
|
|
8674
9928
|
} | null;
|
|
8675
9929
|
externalData?: {
|
|
8676
9930
|
TWITTER?: {
|
|
@@ -8687,12 +9941,12 @@ type $OpenApiTs = {
|
|
|
8687
9941
|
postId?: string | null;
|
|
8688
9942
|
videoId?: string | null;
|
|
8689
9943
|
permalink?: string | null;
|
|
8690
|
-
thumbnail?: string;
|
|
9944
|
+
thumbnail?: string | null;
|
|
8691
9945
|
} | null;
|
|
8692
9946
|
INSTAGRAM?: {
|
|
8693
9947
|
id?: string | null;
|
|
8694
9948
|
permalink?: string | null;
|
|
8695
|
-
thumbnail?: string;
|
|
9949
|
+
thumbnail?: string | null;
|
|
8696
9950
|
} | null;
|
|
8697
9951
|
TIKTOK?: {
|
|
8698
9952
|
id?: string | null;
|
|
@@ -8702,7 +9956,7 @@ type $OpenApiTs = {
|
|
|
8702
9956
|
id?: string | null;
|
|
8703
9957
|
activity?: string | null;
|
|
8704
9958
|
permalink?: string | null;
|
|
8705
|
-
thumbnail?: string;
|
|
9959
|
+
thumbnail?: string | null;
|
|
8706
9960
|
} | null;
|
|
8707
9961
|
REDDIT?: {
|
|
8708
9962
|
id?: string | null;
|
|
@@ -8733,6 +9987,29 @@ type $OpenApiTs = {
|
|
|
8733
9987
|
id?: string | null;
|
|
8734
9988
|
permalink?: string | null;
|
|
8735
9989
|
} | null;
|
|
9990
|
+
BLUESKY?: {
|
|
9991
|
+
id?: string | null;
|
|
9992
|
+
uri?: string | null;
|
|
9993
|
+
/**
|
|
9994
|
+
* Content ID of the created record
|
|
9995
|
+
*/
|
|
9996
|
+
cid?: string | null;
|
|
9997
|
+
permalink?: string | null;
|
|
9998
|
+
/**
|
|
9999
|
+
* Author DID (owner of the record)
|
|
10000
|
+
*/
|
|
10001
|
+
did?: string | null;
|
|
10002
|
+
} | null;
|
|
10003
|
+
GOOGLE_BUSINESS?: {
|
|
10004
|
+
/**
|
|
10005
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
10006
|
+
*/
|
|
10007
|
+
id?: string | null;
|
|
10008
|
+
/**
|
|
10009
|
+
* Public link to the post (searchUrl) when available.
|
|
10010
|
+
*/
|
|
10011
|
+
permalink?: string | null;
|
|
10012
|
+
} | null;
|
|
8736
10013
|
} | null;
|
|
8737
10014
|
createdAt: string | null;
|
|
8738
10015
|
updatedAt: string | null;
|
|
@@ -8809,7 +10086,7 @@ type $OpenApiTs = {
|
|
|
8809
10086
|
200: {
|
|
8810
10087
|
socialAccount: {
|
|
8811
10088
|
id: string;
|
|
8812
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
10089
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
8813
10090
|
teamId: string;
|
|
8814
10091
|
username?: string | null;
|
|
8815
10092
|
displayName?: string | null;
|
|
@@ -9111,400 +10388,179 @@ type $OpenApiTs = {
|
|
|
9111
10388
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
9112
10389
|
spoiler?: string | null;
|
|
9113
10390
|
} | null;
|
|
9114
|
-
|
|
9115
|
-
|
|
9116
|
-
|
|
9117
|
-
|
|
9118
|
-
|
|
9119
|
-
|
|
9120
|
-
|
|
9121
|
-
|
|
9122
|
-
|
|
9123
|
-
|
|
9124
|
-
|
|
9125
|
-
|
|
9126
|
-
|
|
9127
|
-
|
|
9128
|
-
|
|
9129
|
-
|
|
9130
|
-
|
|
9131
|
-
|
|
9132
|
-
|
|
9133
|
-
|
|
9134
|
-
|
|
9135
|
-
|
|
9136
|
-
|
|
9137
|
-
|
|
9138
|
-
|
|
9139
|
-
|
|
9140
|
-
|
|
9141
|
-
|
|
9142
|
-
|
|
9143
|
-
|
|
9144
|
-
|
|
9145
|
-
|
|
9146
|
-
|
|
9147
|
-
|
|
9148
|
-
|
|
9149
|
-
|
|
9150
|
-
|
|
9151
|
-
|
|
9152
|
-
|
|
9153
|
-
|
|
9154
|
-
|
|
9155
|
-
|
|
9156
|
-
|
|
9157
|
-
|
|
9158
|
-
|
|
9159
|
-
|
|
9160
|
-
|
|
9161
|
-
|
|
9162
|
-
|
|
9163
|
-
|
|
9164
|
-
|
|
9165
|
-
|
|
9166
|
-
|
|
9167
|
-
|
|
9168
|
-
|
|
9169
|
-
|
|
9170
|
-
|
|
9171
|
-
|
|
9172
|
-
|
|
9173
|
-
|
|
9174
|
-
|
|
9175
|
-
|
|
9176
|
-
|
|
9177
|
-
|
|
9178
|
-
|
|
9179
|
-
|
|
9180
|
-
|
|
9181
|
-
|
|
9182
|
-
|
|
9183
|
-
|
|
9184
|
-
|
|
9185
|
-
|
|
9186
|
-
|
|
9187
|
-
|
|
9188
|
-
|
|
9189
|
-
|
|
9190
|
-
|
|
9191
|
-
|
|
9192
|
-
|
|
9193
|
-
|
|
9194
|
-
|
|
9195
|
-
|
|
9196
|
-
|
|
9197
|
-
|
|
9198
|
-
|
|
9199
|
-
|
|
9200
|
-
|
|
9201
|
-
|
|
9202
|
-
|
|
9203
|
-
|
|
9204
|
-
|
|
9205
|
-
|
|
9206
|
-
|
|
9207
|
-
|
|
9208
|
-
|
|
9209
|
-
|
|
9210
|
-
|
|
9211
|
-
|
|
9212
|
-
|
|
9213
|
-
|
|
9214
|
-
|
|
9215
|
-
|
|
9216
|
-
|
|
9217
|
-
|
|
9218
|
-
|
|
9219
|
-
|
|
9220
|
-
|
|
9221
|
-
|
|
9222
|
-
|
|
9223
|
-
|
|
9224
|
-
|
|
9225
|
-
|
|
9226
|
-
|
|
9227
|
-
|
|
9228
|
-
|
|
9229
|
-
|
|
9230
|
-
|
|
9231
|
-
|
|
9232
|
-
|
|
9233
|
-
|
|
9234
|
-
|
|
9235
|
-
|
|
9236
|
-
|
|
9237
|
-
|
|
9238
|
-
|
|
9239
|
-
|
|
9240
|
-
|
|
9241
|
-
|
|
9242
|
-
|
|
9243
|
-
|
|
9244
|
-
|
|
9245
|
-
|
|
9246
|
-
|
|
9247
|
-
|
|
9248
|
-
|
|
9249
|
-
|
|
9250
|
-
|
|
9251
|
-
|
|
9252
|
-
|
|
9253
|
-
|
|
9254
|
-
|
|
9255
|
-
|
|
9256
|
-
|
|
9257
|
-
|
|
9258
|
-
|
|
9259
|
-
|
|
9260
|
-
|
|
9261
|
-
|
|
9262
|
-
|
|
9263
|
-
|
|
9264
|
-
|
|
9265
|
-
|
|
9266
|
-
|
|
9267
|
-
|
|
9268
|
-
|
|
9269
|
-
|
|
9270
|
-
|
|
9271
|
-
|
|
9272
|
-
|
|
9273
|
-
|
|
9274
|
-
|
|
9275
|
-
|
|
9276
|
-
|
|
9277
|
-
|
|
9278
|
-
|
|
9279
|
-
|
|
9280
|
-
|
|
9281
|
-
|
|
9282
|
-
|
|
9283
|
-
|
|
9284
|
-
|
|
9285
|
-
|
|
9286
|
-
*/
|
|
9287
|
-
429: {
|
|
9288
|
-
message: string;
|
|
9289
|
-
};
|
|
9290
|
-
/**
|
|
9291
|
-
* 500
|
|
9292
|
-
*/
|
|
9293
|
-
500: {
|
|
9294
|
-
message: string;
|
|
9295
|
-
};
|
|
9296
|
-
};
|
|
9297
|
-
};
|
|
9298
|
-
};
|
|
9299
|
-
'/api/v1/analytics/profile-post': {
|
|
9300
|
-
get: {
|
|
9301
|
-
res: {
|
|
9302
|
-
/**
|
|
9303
|
-
* 200
|
|
9304
|
-
*/
|
|
9305
|
-
200: string;
|
|
9306
|
-
/**
|
|
9307
|
-
* 400
|
|
9308
|
-
*/
|
|
9309
|
-
400: {
|
|
9310
|
-
message: string;
|
|
9311
|
-
issues?: Array<{
|
|
9312
|
-
message: string;
|
|
9313
|
-
path?: Array<(string | number)> | null;
|
|
9314
|
-
}> | null;
|
|
9315
|
-
};
|
|
9316
|
-
/**
|
|
9317
|
-
* 401
|
|
9318
|
-
*/
|
|
9319
|
-
401: {
|
|
9320
|
-
message: string;
|
|
9321
|
-
};
|
|
9322
|
-
/**
|
|
9323
|
-
* 403
|
|
9324
|
-
*/
|
|
9325
|
-
403: {
|
|
9326
|
-
message: string;
|
|
9327
|
-
};
|
|
9328
|
-
/**
|
|
9329
|
-
* 404
|
|
9330
|
-
*/
|
|
9331
|
-
404: {
|
|
9332
|
-
message: string;
|
|
9333
|
-
};
|
|
9334
|
-
/**
|
|
9335
|
-
* 429
|
|
9336
|
-
*/
|
|
9337
|
-
429: {
|
|
9338
|
-
message: string;
|
|
9339
|
-
};
|
|
9340
|
-
/**
|
|
9341
|
-
* 500
|
|
9342
|
-
*/
|
|
9343
|
-
500: {
|
|
9344
|
-
message: string;
|
|
9345
|
-
};
|
|
9346
|
-
};
|
|
9347
|
-
};
|
|
9348
|
-
};
|
|
9349
|
-
'/api/v1/analytics/profile-post/{id}': {
|
|
9350
|
-
get: {
|
|
9351
|
-
req: AnalyticsGetProfilePostData;
|
|
9352
|
-
res: {
|
|
9353
|
-
/**
|
|
9354
|
-
* 200
|
|
9355
|
-
*/
|
|
9356
|
-
200: string;
|
|
9357
|
-
/**
|
|
9358
|
-
* 400
|
|
9359
|
-
*/
|
|
9360
|
-
400: {
|
|
9361
|
-
message: string;
|
|
9362
|
-
issues?: Array<{
|
|
9363
|
-
message: string;
|
|
9364
|
-
path?: Array<(string | number)> | null;
|
|
9365
|
-
}> | null;
|
|
9366
|
-
};
|
|
9367
|
-
/**
|
|
9368
|
-
* 401
|
|
9369
|
-
*/
|
|
9370
|
-
401: {
|
|
9371
|
-
message: string;
|
|
9372
|
-
};
|
|
9373
|
-
/**
|
|
9374
|
-
* 403
|
|
9375
|
-
*/
|
|
9376
|
-
403: {
|
|
9377
|
-
message: string;
|
|
9378
|
-
};
|
|
9379
|
-
/**
|
|
9380
|
-
* 404
|
|
9381
|
-
*/
|
|
9382
|
-
404: {
|
|
9383
|
-
message: string;
|
|
9384
|
-
};
|
|
9385
|
-
/**
|
|
9386
|
-
* 429
|
|
9387
|
-
*/
|
|
9388
|
-
429: {
|
|
9389
|
-
message: string;
|
|
9390
|
-
};
|
|
9391
|
-
/**
|
|
9392
|
-
* 500
|
|
9393
|
-
*/
|
|
9394
|
-
500: {
|
|
9395
|
-
message: string;
|
|
9396
|
-
};
|
|
9397
|
-
};
|
|
9398
|
-
};
|
|
9399
|
-
};
|
|
9400
|
-
'/api/v1/analytics/profile-post/post/{id}': {
|
|
9401
|
-
get: {
|
|
9402
|
-
req: AnalyticsGetProfilePostByPostIdData;
|
|
9403
|
-
res: {
|
|
9404
|
-
/**
|
|
9405
|
-
* 200
|
|
9406
|
-
*/
|
|
9407
|
-
200: string;
|
|
9408
|
-
/**
|
|
9409
|
-
* 400
|
|
9410
|
-
*/
|
|
9411
|
-
400: {
|
|
9412
|
-
message: string;
|
|
9413
|
-
issues?: Array<{
|
|
9414
|
-
message: string;
|
|
9415
|
-
path?: Array<(string | number)> | null;
|
|
9416
|
-
}> | null;
|
|
9417
|
-
};
|
|
9418
|
-
/**
|
|
9419
|
-
* 401
|
|
9420
|
-
*/
|
|
9421
|
-
401: {
|
|
9422
|
-
message: string;
|
|
9423
|
-
};
|
|
9424
|
-
/**
|
|
9425
|
-
* 403
|
|
9426
|
-
*/
|
|
9427
|
-
403: {
|
|
9428
|
-
message: string;
|
|
9429
|
-
};
|
|
9430
|
-
/**
|
|
9431
|
-
* 404
|
|
9432
|
-
*/
|
|
9433
|
-
404: {
|
|
9434
|
-
message: string;
|
|
9435
|
-
};
|
|
9436
|
-
/**
|
|
9437
|
-
* 429
|
|
9438
|
-
*/
|
|
9439
|
-
429: {
|
|
9440
|
-
message: string;
|
|
9441
|
-
};
|
|
9442
|
-
/**
|
|
9443
|
-
* 500
|
|
9444
|
-
*/
|
|
9445
|
-
500: {
|
|
9446
|
-
message: string;
|
|
9447
|
-
};
|
|
9448
|
-
};
|
|
9449
|
-
};
|
|
9450
|
-
};
|
|
9451
|
-
'/api/v1/analytics/raw-profile': {
|
|
9452
|
-
get: {
|
|
9453
|
-
res: {
|
|
9454
|
-
/**
|
|
9455
|
-
* 200
|
|
9456
|
-
*/
|
|
9457
|
-
200: string;
|
|
9458
|
-
/**
|
|
9459
|
-
* 400
|
|
9460
|
-
*/
|
|
9461
|
-
400: {
|
|
9462
|
-
message: string;
|
|
9463
|
-
issues?: Array<{
|
|
9464
|
-
message: string;
|
|
9465
|
-
path?: Array<(string | number)> | null;
|
|
9466
|
-
}> | null;
|
|
9467
|
-
};
|
|
9468
|
-
/**
|
|
9469
|
-
* 401
|
|
9470
|
-
*/
|
|
9471
|
-
401: {
|
|
9472
|
-
message: string;
|
|
9473
|
-
};
|
|
9474
|
-
/**
|
|
9475
|
-
* 403
|
|
9476
|
-
*/
|
|
9477
|
-
403: {
|
|
9478
|
-
message: string;
|
|
9479
|
-
};
|
|
9480
|
-
/**
|
|
9481
|
-
* 404
|
|
9482
|
-
*/
|
|
9483
|
-
404: {
|
|
9484
|
-
message: string;
|
|
9485
|
-
};
|
|
9486
|
-
/**
|
|
9487
|
-
* 429
|
|
9488
|
-
*/
|
|
9489
|
-
429: {
|
|
9490
|
-
message: string;
|
|
9491
|
-
};
|
|
9492
|
-
/**
|
|
9493
|
-
* 500
|
|
9494
|
-
*/
|
|
9495
|
-
500: {
|
|
9496
|
-
message: string;
|
|
10391
|
+
BLUESKY?: {
|
|
10392
|
+
text?: string | null;
|
|
10393
|
+
uploadIds?: Array<(string)> | null;
|
|
10394
|
+
/**
|
|
10395
|
+
* Extra hashtags (without #), up to 8.
|
|
10396
|
+
*/
|
|
10397
|
+
tags?: Array<(string)> | null;
|
|
10398
|
+
/**
|
|
10399
|
+
* Self-labels (content warnings) applied to the post.
|
|
10400
|
+
*/
|
|
10401
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
10402
|
+
/**
|
|
10403
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
10404
|
+
*/
|
|
10405
|
+
quoteUri?: string;
|
|
10406
|
+
/**
|
|
10407
|
+
* Target URL for the external link card
|
|
10408
|
+
*/
|
|
10409
|
+
externalUrl?: string | null;
|
|
10410
|
+
/**
|
|
10411
|
+
* Card title for the external link card
|
|
10412
|
+
*/
|
|
10413
|
+
externalTitle?: string | null;
|
|
10414
|
+
/**
|
|
10415
|
+
* Card description for the external link card
|
|
10416
|
+
*/
|
|
10417
|
+
externalDescription?: string | null;
|
|
10418
|
+
/**
|
|
10419
|
+
* Alt text for the video embed.
|
|
10420
|
+
*/
|
|
10421
|
+
videoAlt?: string | null;
|
|
10422
|
+
} | null;
|
|
10423
|
+
GOOGLE_BUSINESS?: {
|
|
10424
|
+
text?: string | null;
|
|
10425
|
+
/**
|
|
10426
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
10427
|
+
*/
|
|
10428
|
+
uploadIds?: Array<(string)> | null;
|
|
10429
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
10430
|
+
/**
|
|
10431
|
+
* Language tag like 'en' or 'en-US'.
|
|
10432
|
+
*/
|
|
10433
|
+
languageCode?: string | null;
|
|
10434
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
10435
|
+
callToActionUrl?: string | null;
|
|
10436
|
+
eventTitle?: string | null;
|
|
10437
|
+
eventStartDate?: string | null;
|
|
10438
|
+
eventEndDate?: string | null;
|
|
10439
|
+
offerCouponCode?: string | null;
|
|
10440
|
+
offerRedeemOnlineUrl?: string | null;
|
|
10441
|
+
offerTermsConditions?: string | null;
|
|
10442
|
+
/**
|
|
10443
|
+
* Alert type for ALERT posts.
|
|
10444
|
+
*/
|
|
10445
|
+
alertType?: 'COVID_19' | null;
|
|
10446
|
+
} | null;
|
|
10447
|
+
};
|
|
10448
|
+
error?: string | null;
|
|
10449
|
+
errors?: {
|
|
10450
|
+
TWITTER?: string | null;
|
|
10451
|
+
PINTEREST?: string | null;
|
|
10452
|
+
FACEBOOK?: string | null;
|
|
10453
|
+
INSTAGRAM?: string | null;
|
|
10454
|
+
TIKTOK?: string | null;
|
|
10455
|
+
LINKEDIN?: string | null;
|
|
10456
|
+
REDDIT?: string | null;
|
|
10457
|
+
DISCORD?: string | null;
|
|
10458
|
+
SLACK?: string | null;
|
|
10459
|
+
YOUTUBE?: string | null;
|
|
10460
|
+
MASTODON?: string | null;
|
|
10461
|
+
THREADS?: string | null;
|
|
10462
|
+
BLUESKY?: string | null;
|
|
10463
|
+
GOOGLE_BUSINESS?: string | null;
|
|
10464
|
+
} | null;
|
|
10465
|
+
externalData?: {
|
|
10466
|
+
TWITTER?: {
|
|
10467
|
+
id?: string | null;
|
|
10468
|
+
permalink?: string | null;
|
|
10469
|
+
} | null;
|
|
10470
|
+
PINTEREST?: {
|
|
10471
|
+
id?: string | null;
|
|
10472
|
+
permalink?: string | null;
|
|
10473
|
+
thumbnail?: string | null;
|
|
10474
|
+
} | null;
|
|
10475
|
+
FACEBOOK?: {
|
|
10476
|
+
id?: string | null;
|
|
10477
|
+
postId?: string | null;
|
|
10478
|
+
videoId?: string | null;
|
|
10479
|
+
permalink?: string | null;
|
|
10480
|
+
thumbnail?: string | null;
|
|
10481
|
+
} | null;
|
|
10482
|
+
INSTAGRAM?: {
|
|
10483
|
+
id?: string | null;
|
|
10484
|
+
permalink?: string | null;
|
|
10485
|
+
thumbnail?: string | null;
|
|
10486
|
+
} | null;
|
|
10487
|
+
TIKTOK?: {
|
|
10488
|
+
id?: string | null;
|
|
10489
|
+
permalink?: string | null;
|
|
10490
|
+
} | null;
|
|
10491
|
+
LINKEDIN?: {
|
|
10492
|
+
id?: string | null;
|
|
10493
|
+
activity?: string | null;
|
|
10494
|
+
permalink?: string | null;
|
|
10495
|
+
thumbnail?: string | null;
|
|
10496
|
+
} | null;
|
|
10497
|
+
REDDIT?: {
|
|
10498
|
+
id?: string | null;
|
|
10499
|
+
permalink?: string | null;
|
|
10500
|
+
subreddit_name?: string | null;
|
|
10501
|
+
} | null;
|
|
10502
|
+
DISCORD?: {
|
|
10503
|
+
id?: string | null;
|
|
10504
|
+
permalink?: string | null;
|
|
10505
|
+
channelId?: string | null;
|
|
10506
|
+
} | null;
|
|
10507
|
+
SLACK?: {
|
|
10508
|
+
id?: string | null;
|
|
10509
|
+
permalink?: string | null;
|
|
10510
|
+
channelId?: string | null;
|
|
10511
|
+
} | null;
|
|
10512
|
+
YOUTUBE?: {
|
|
10513
|
+
id?: string | null;
|
|
10514
|
+
permalink?: string | null;
|
|
10515
|
+
thumbnail?: string | null;
|
|
10516
|
+
} | null;
|
|
10517
|
+
MASTODON?: {
|
|
10518
|
+
id?: string | null;
|
|
10519
|
+
permalink?: string | null;
|
|
10520
|
+
thumbnail?: string | null;
|
|
10521
|
+
} | null;
|
|
10522
|
+
THREADS?: {
|
|
10523
|
+
id?: string | null;
|
|
10524
|
+
permalink?: string | null;
|
|
10525
|
+
} | null;
|
|
10526
|
+
BLUESKY?: {
|
|
10527
|
+
id?: string | null;
|
|
10528
|
+
uri?: string | null;
|
|
10529
|
+
/**
|
|
10530
|
+
* Content ID of the created record
|
|
10531
|
+
*/
|
|
10532
|
+
cid?: string | null;
|
|
10533
|
+
permalink?: string | null;
|
|
10534
|
+
/**
|
|
10535
|
+
* Author DID (owner of the record)
|
|
10536
|
+
*/
|
|
10537
|
+
did?: string | null;
|
|
10538
|
+
} | null;
|
|
10539
|
+
GOOGLE_BUSINESS?: {
|
|
10540
|
+
/**
|
|
10541
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
10542
|
+
*/
|
|
10543
|
+
id?: string | null;
|
|
10544
|
+
/**
|
|
10545
|
+
* Public link to the post (searchUrl) when available.
|
|
10546
|
+
*/
|
|
10547
|
+
permalink?: string | null;
|
|
10548
|
+
} | null;
|
|
10549
|
+
} | null;
|
|
10550
|
+
createdAt: string | null;
|
|
10551
|
+
updatedAt: string | null;
|
|
10552
|
+
deletedAt?: string | null;
|
|
10553
|
+
};
|
|
10554
|
+
items: Array<{
|
|
10555
|
+
id: string;
|
|
10556
|
+
profilePostId?: string | null;
|
|
10557
|
+
analyticsId?: string | null;
|
|
10558
|
+
raw?: unknown;
|
|
10559
|
+
createdAt: string | null;
|
|
10560
|
+
updatedAt: string | null;
|
|
10561
|
+
deletedAt?: string | null;
|
|
10562
|
+
}>;
|
|
9497
10563
|
};
|
|
9498
|
-
};
|
|
9499
|
-
};
|
|
9500
|
-
};
|
|
9501
|
-
'/api/v1/analytics/raw-post': {
|
|
9502
|
-
get: {
|
|
9503
|
-
res: {
|
|
9504
|
-
/**
|
|
9505
|
-
* 200
|
|
9506
|
-
*/
|
|
9507
|
-
200: string;
|
|
9508
10564
|
/**
|
|
9509
10565
|
* 400
|
|
9510
10566
|
*/
|
|
@@ -9596,6 +10652,9 @@ type $OpenApiTs = {
|
|
|
9596
10652
|
SLACK?: {
|
|
9597
10653
|
text?: string | null;
|
|
9598
10654
|
} | null;
|
|
10655
|
+
BLUESKY?: {
|
|
10656
|
+
text?: string | null;
|
|
10657
|
+
} | null;
|
|
9599
10658
|
};
|
|
9600
10659
|
error?: string | null;
|
|
9601
10660
|
errors?: {
|
|
@@ -9609,6 +10668,7 @@ type $OpenApiTs = {
|
|
|
9609
10668
|
THREADS?: string | null;
|
|
9610
10669
|
DISCORD?: string | null;
|
|
9611
10670
|
SLACK?: string | null;
|
|
10671
|
+
BLUESKY?: string | null;
|
|
9612
10672
|
} | null;
|
|
9613
10673
|
externalData?: {
|
|
9614
10674
|
FACEBOOK?: {
|
|
@@ -9652,6 +10712,19 @@ type $OpenApiTs = {
|
|
|
9652
10712
|
id?: string | null;
|
|
9653
10713
|
permalink?: string | null;
|
|
9654
10714
|
} | null;
|
|
10715
|
+
BLUESKY?: {
|
|
10716
|
+
id?: string | null;
|
|
10717
|
+
uri?: string | null;
|
|
10718
|
+
/**
|
|
10719
|
+
* Content ID of the created record
|
|
10720
|
+
*/
|
|
10721
|
+
cid?: string | null;
|
|
10722
|
+
permalink?: string | null;
|
|
10723
|
+
/**
|
|
10724
|
+
* Author DID (owner of the record)
|
|
10725
|
+
*/
|
|
10726
|
+
did?: string | null;
|
|
10727
|
+
} | null;
|
|
9655
10728
|
} | null;
|
|
9656
10729
|
createdAt: string | null;
|
|
9657
10730
|
updatedAt: string | null;
|
|
@@ -9746,6 +10819,9 @@ type $OpenApiTs = {
|
|
|
9746
10819
|
SLACK?: {
|
|
9747
10820
|
text?: string | null;
|
|
9748
10821
|
} | null;
|
|
10822
|
+
BLUESKY?: {
|
|
10823
|
+
text?: string | null;
|
|
10824
|
+
} | null;
|
|
9749
10825
|
};
|
|
9750
10826
|
error?: string | null;
|
|
9751
10827
|
errors?: {
|
|
@@ -9759,6 +10835,7 @@ type $OpenApiTs = {
|
|
|
9759
10835
|
THREADS?: string | null;
|
|
9760
10836
|
DISCORD?: string | null;
|
|
9761
10837
|
SLACK?: string | null;
|
|
10838
|
+
BLUESKY?: string | null;
|
|
9762
10839
|
} | null;
|
|
9763
10840
|
externalData?: {
|
|
9764
10841
|
FACEBOOK?: {
|
|
@@ -9802,6 +10879,19 @@ type $OpenApiTs = {
|
|
|
9802
10879
|
id?: string | null;
|
|
9803
10880
|
permalink?: string | null;
|
|
9804
10881
|
} | null;
|
|
10882
|
+
BLUESKY?: {
|
|
10883
|
+
id?: string | null;
|
|
10884
|
+
uri?: string | null;
|
|
10885
|
+
/**
|
|
10886
|
+
* Content ID of the created record
|
|
10887
|
+
*/
|
|
10888
|
+
cid?: string | null;
|
|
10889
|
+
permalink?: string | null;
|
|
10890
|
+
/**
|
|
10891
|
+
* Author DID (owner of the record)
|
|
10892
|
+
*/
|
|
10893
|
+
did?: string | null;
|
|
10894
|
+
} | null;
|
|
9805
10895
|
} | null;
|
|
9806
10896
|
createdAt: string | null;
|
|
9807
10897
|
updatedAt: string | null;
|
|
@@ -9896,6 +10986,9 @@ type $OpenApiTs = {
|
|
|
9896
10986
|
SLACK?: {
|
|
9897
10987
|
text?: string | null;
|
|
9898
10988
|
} | null;
|
|
10989
|
+
BLUESKY?: {
|
|
10990
|
+
text?: string | null;
|
|
10991
|
+
} | null;
|
|
9899
10992
|
};
|
|
9900
10993
|
error?: string | null;
|
|
9901
10994
|
errors?: {
|
|
@@ -9909,6 +11002,7 @@ type $OpenApiTs = {
|
|
|
9909
11002
|
THREADS?: string | null;
|
|
9910
11003
|
DISCORD?: string | null;
|
|
9911
11004
|
SLACK?: string | null;
|
|
11005
|
+
BLUESKY?: string | null;
|
|
9912
11006
|
} | null;
|
|
9913
11007
|
externalData?: {
|
|
9914
11008
|
FACEBOOK?: {
|
|
@@ -9952,6 +11046,19 @@ type $OpenApiTs = {
|
|
|
9952
11046
|
id?: string | null;
|
|
9953
11047
|
permalink?: string | null;
|
|
9954
11048
|
} | null;
|
|
11049
|
+
BLUESKY?: {
|
|
11050
|
+
id?: string | null;
|
|
11051
|
+
uri?: string | null;
|
|
11052
|
+
/**
|
|
11053
|
+
* Content ID of the created record
|
|
11054
|
+
*/
|
|
11055
|
+
cid?: string | null;
|
|
11056
|
+
permalink?: string | null;
|
|
11057
|
+
/**
|
|
11058
|
+
* Author DID (owner of the record)
|
|
11059
|
+
*/
|
|
11060
|
+
did?: string | null;
|
|
11061
|
+
} | null;
|
|
9955
11062
|
} | null;
|
|
9956
11063
|
createdAt: string | null;
|
|
9957
11064
|
updatedAt: string | null;
|
|
@@ -10049,6 +11156,9 @@ type $OpenApiTs = {
|
|
|
10049
11156
|
SLACK?: {
|
|
10050
11157
|
text?: string | null;
|
|
10051
11158
|
} | null;
|
|
11159
|
+
BLUESKY?: {
|
|
11160
|
+
text?: string | null;
|
|
11161
|
+
} | null;
|
|
10052
11162
|
};
|
|
10053
11163
|
error?: string | null;
|
|
10054
11164
|
errors?: {
|
|
@@ -10062,6 +11172,7 @@ type $OpenApiTs = {
|
|
|
10062
11172
|
THREADS?: string | null;
|
|
10063
11173
|
DISCORD?: string | null;
|
|
10064
11174
|
SLACK?: string | null;
|
|
11175
|
+
BLUESKY?: string | null;
|
|
10065
11176
|
} | null;
|
|
10066
11177
|
externalData?: {
|
|
10067
11178
|
FACEBOOK?: {
|
|
@@ -10105,6 +11216,19 @@ type $OpenApiTs = {
|
|
|
10105
11216
|
id?: string | null;
|
|
10106
11217
|
permalink?: string | null;
|
|
10107
11218
|
} | null;
|
|
11219
|
+
BLUESKY?: {
|
|
11220
|
+
id?: string | null;
|
|
11221
|
+
uri?: string | null;
|
|
11222
|
+
/**
|
|
11223
|
+
* Content ID of the created record
|
|
11224
|
+
*/
|
|
11225
|
+
cid?: string | null;
|
|
11226
|
+
permalink?: string | null;
|
|
11227
|
+
/**
|
|
11228
|
+
* Author DID (owner of the record)
|
|
11229
|
+
*/
|
|
11230
|
+
did?: string | null;
|
|
11231
|
+
} | null;
|
|
10108
11232
|
} | null;
|
|
10109
11233
|
createdAt: string | null;
|
|
10110
11234
|
updatedAt: string | null;
|
|
@@ -10201,6 +11325,9 @@ type $OpenApiTs = {
|
|
|
10201
11325
|
SLACK?: {
|
|
10202
11326
|
text?: string | null;
|
|
10203
11327
|
} | null;
|
|
11328
|
+
BLUESKY?: {
|
|
11329
|
+
text?: string | null;
|
|
11330
|
+
} | null;
|
|
10204
11331
|
};
|
|
10205
11332
|
error?: string | null;
|
|
10206
11333
|
errors?: {
|
|
@@ -10214,6 +11341,7 @@ type $OpenApiTs = {
|
|
|
10214
11341
|
THREADS?: string | null;
|
|
10215
11342
|
DISCORD?: string | null;
|
|
10216
11343
|
SLACK?: string | null;
|
|
11344
|
+
BLUESKY?: string | null;
|
|
10217
11345
|
} | null;
|
|
10218
11346
|
externalData?: {
|
|
10219
11347
|
FACEBOOK?: {
|
|
@@ -10257,6 +11385,19 @@ type $OpenApiTs = {
|
|
|
10257
11385
|
id?: string | null;
|
|
10258
11386
|
permalink?: string | null;
|
|
10259
11387
|
} | null;
|
|
11388
|
+
BLUESKY?: {
|
|
11389
|
+
id?: string | null;
|
|
11390
|
+
uri?: string | null;
|
|
11391
|
+
/**
|
|
11392
|
+
* Content ID of the created record
|
|
11393
|
+
*/
|
|
11394
|
+
cid?: string | null;
|
|
11395
|
+
permalink?: string | null;
|
|
11396
|
+
/**
|
|
11397
|
+
* Author DID (owner of the record)
|
|
11398
|
+
*/
|
|
11399
|
+
did?: string | null;
|
|
11400
|
+
} | null;
|
|
10260
11401
|
} | null;
|
|
10261
11402
|
createdAt: string | null;
|
|
10262
11403
|
updatedAt: string | null;
|
|
@@ -11118,6 +12259,65 @@ type $OpenApiTs = {
|
|
|
11118
12259
|
};
|
|
11119
12260
|
};
|
|
11120
12261
|
};
|
|
12262
|
+
'/api/v1/misc/google-business/media': {
|
|
12263
|
+
post: {
|
|
12264
|
+
req: MiscGoogleBusinessAddMediaData;
|
|
12265
|
+
res: {
|
|
12266
|
+
/**
|
|
12267
|
+
* 200
|
|
12268
|
+
*/
|
|
12269
|
+
200: {
|
|
12270
|
+
name?: string;
|
|
12271
|
+
googleUrl?: string;
|
|
12272
|
+
locationAssociation?: {
|
|
12273
|
+
category?: 'CATEGORY_UNSPECIFIED' | 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'PRODUCT' | 'AT_WORK' | 'FOOD_AND_DRINK' | 'MENU' | 'COMMON_AREA' | 'ROOMS' | 'TEAMS' | 'ADDITIONAL';
|
|
12274
|
+
priceListItemId?: string;
|
|
12275
|
+
};
|
|
12276
|
+
description?: string;
|
|
12277
|
+
};
|
|
12278
|
+
/**
|
|
12279
|
+
* 400
|
|
12280
|
+
*/
|
|
12281
|
+
400: {
|
|
12282
|
+
message: string;
|
|
12283
|
+
issues?: Array<{
|
|
12284
|
+
message: string;
|
|
12285
|
+
path?: Array<(string | number)> | null;
|
|
12286
|
+
}> | null;
|
|
12287
|
+
};
|
|
12288
|
+
/**
|
|
12289
|
+
* 401
|
|
12290
|
+
*/
|
|
12291
|
+
401: {
|
|
12292
|
+
message: string;
|
|
12293
|
+
};
|
|
12294
|
+
/**
|
|
12295
|
+
* 403
|
|
12296
|
+
*/
|
|
12297
|
+
403: {
|
|
12298
|
+
message: string;
|
|
12299
|
+
};
|
|
12300
|
+
/**
|
|
12301
|
+
* 404
|
|
12302
|
+
*/
|
|
12303
|
+
404: {
|
|
12304
|
+
message: string;
|
|
12305
|
+
};
|
|
12306
|
+
/**
|
|
12307
|
+
* 429
|
|
12308
|
+
*/
|
|
12309
|
+
429: {
|
|
12310
|
+
message: string;
|
|
12311
|
+
};
|
|
12312
|
+
/**
|
|
12313
|
+
* 500
|
|
12314
|
+
*/
|
|
12315
|
+
500: {
|
|
12316
|
+
message: string;
|
|
12317
|
+
};
|
|
12318
|
+
};
|
|
12319
|
+
};
|
|
12320
|
+
};
|
|
11121
12321
|
};
|
|
11122
12322
|
|
|
11123
12323
|
declare class AppService {
|
|
@@ -11399,52 +12599,6 @@ declare class AnalyticsService {
|
|
|
11399
12599
|
* @throws ApiError
|
|
11400
12600
|
*/
|
|
11401
12601
|
analyticsGetPostAnalyticsRaw(data: AnalyticsGetPostAnalyticsRawData): CancelablePromise<AnalyticsGetPostAnalyticsRawResponse>;
|
|
11402
|
-
/**
|
|
11403
|
-
* @deprecated
|
|
11404
|
-
* Get Profile Analytics
|
|
11405
|
-
* @returns string 200
|
|
11406
|
-
* @throws ApiError
|
|
11407
|
-
*/
|
|
11408
|
-
analyticsGetProfileAnalytics(): CancelablePromise<AnalyticsGetProfileAnalyticsResponse>;
|
|
11409
|
-
/**
|
|
11410
|
-
* @deprecated
|
|
11411
|
-
* Get Profile Post List - profile posts are basically external posts
|
|
11412
|
-
* @returns string 200
|
|
11413
|
-
* @throws ApiError
|
|
11414
|
-
*/
|
|
11415
|
-
analyticsGetProfilePosts(): CancelablePromise<AnalyticsGetProfilePostsResponse>;
|
|
11416
|
-
/**
|
|
11417
|
-
* @deprecated
|
|
11418
|
-
* Get Profile Post By Profile Post ID - profile posts are basically external posts
|
|
11419
|
-
* @param data The data for the request.
|
|
11420
|
-
* @param data.id
|
|
11421
|
-
* @returns string 200
|
|
11422
|
-
* @throws ApiError
|
|
11423
|
-
*/
|
|
11424
|
-
analyticsGetProfilePost(data: AnalyticsGetProfilePostData): CancelablePromise<AnalyticsGetProfilePostResponse>;
|
|
11425
|
-
/**
|
|
11426
|
-
* @deprecated
|
|
11427
|
-
* Get Profile Post By Post ID
|
|
11428
|
-
* @param data The data for the request.
|
|
11429
|
-
* @param data.id
|
|
11430
|
-
* @returns string 200
|
|
11431
|
-
* @throws ApiError
|
|
11432
|
-
*/
|
|
11433
|
-
analyticsGetProfilePostByPostId(data: AnalyticsGetProfilePostByPostIdData): CancelablePromise<AnalyticsGetProfilePostByPostIdResponse>;
|
|
11434
|
-
/**
|
|
11435
|
-
* @deprecated
|
|
11436
|
-
* Get Raw Profile Analytics In Last 24 Hours
|
|
11437
|
-
* @returns string 200
|
|
11438
|
-
* @throws ApiError
|
|
11439
|
-
*/
|
|
11440
|
-
analyticsGetRawSocialAccountAnalytics(): CancelablePromise<AnalyticsGetRawSocialAccountAnalyticsResponse>;
|
|
11441
|
-
/**
|
|
11442
|
-
* @deprecated
|
|
11443
|
-
* Get Raw Post Analytics In Last 24 Hours
|
|
11444
|
-
* @returns string 200
|
|
11445
|
-
* @throws ApiError
|
|
11446
|
-
*/
|
|
11447
|
-
analyticsGetRawPostsAnalytics(): CancelablePromise<AnalyticsGetRawPostsAnalyticsResponse>;
|
|
11448
12602
|
}
|
|
11449
12603
|
declare class CommentService {
|
|
11450
12604
|
readonly httpRequest: BaseHttpRequest;
|
|
@@ -11572,7 +12726,7 @@ declare class MiscService {
|
|
|
11572
12726
|
*/
|
|
11573
12727
|
miscYoutubeDeleteVideoFromPlaylist(data: MiscYoutubeDeleteVideoFromPlaylistData): CancelablePromise<MiscYoutubeDeleteVideoFromPlaylistResponse>;
|
|
11574
12728
|
/**
|
|
11575
|
-
* Get
|
|
12729
|
+
* Get Linkedin mentionable tags (people & organizations)
|
|
11576
12730
|
* @param data The data for the request.
|
|
11577
12731
|
* @param data.teamId
|
|
11578
12732
|
* @param data.q
|
|
@@ -11582,14 +12736,22 @@ declare class MiscService {
|
|
|
11582
12736
|
*/
|
|
11583
12737
|
miscLinkedinGetTags(data: MiscLinkedinGetTagsData): CancelablePromise<MiscLinkedinGetTagsResponse>;
|
|
11584
12738
|
/**
|
|
11585
|
-
* Build
|
|
11586
|
-
* If
|
|
12739
|
+
* Build Linkedin text, insert mentions at tag placeholders.
|
|
12740
|
+
* If tag already exists (case insensitive), mentions replace it; otherwise they’re appended to the end.
|
|
11587
12741
|
* @param data The data for the request.
|
|
11588
12742
|
* @param data.requestBody Body
|
|
11589
12743
|
* @returns unknown 200
|
|
11590
12744
|
* @throws ApiError
|
|
11591
12745
|
*/
|
|
11592
12746
|
miscLinkedinBuildCommentary(data?: MiscLinkedinBuildCommentaryData): CancelablePromise<MiscLinkedinBuildCommentaryResponse>;
|
|
12747
|
+
/**
|
|
12748
|
+
* Add a media item (photo/video) using uploadId and category
|
|
12749
|
+
* @param data The data for the request.
|
|
12750
|
+
* @param data.requestBody Body
|
|
12751
|
+
* @returns unknown 200
|
|
12752
|
+
* @throws ApiError
|
|
12753
|
+
*/
|
|
12754
|
+
miscGoogleBusinessAddMedia(data?: MiscGoogleBusinessAddMediaData): CancelablePromise<MiscGoogleBusinessAddMediaResponse>;
|
|
11593
12755
|
}
|
|
11594
12756
|
declare class YoutubeService {
|
|
11595
12757
|
readonly httpRequest: BaseHttpRequest;
|
|
@@ -11668,7 +12830,7 @@ declare class LinkedinService {
|
|
|
11668
12830
|
readonly httpRequest: BaseHttpRequest;
|
|
11669
12831
|
constructor(httpRequest: BaseHttpRequest);
|
|
11670
12832
|
/**
|
|
11671
|
-
* Get
|
|
12833
|
+
* Get Linkedin mentionable tags (people & organizations)
|
|
11672
12834
|
* @param data The data for the request.
|
|
11673
12835
|
* @param data.teamId
|
|
11674
12836
|
* @param data.q
|
|
@@ -11678,8 +12840,8 @@ declare class LinkedinService {
|
|
|
11678
12840
|
*/
|
|
11679
12841
|
miscLinkedinGetTags(data: MiscLinkedinGetTagsData): CancelablePromise<MiscLinkedinGetTagsResponse>;
|
|
11680
12842
|
/**
|
|
11681
|
-
* Build
|
|
11682
|
-
* If
|
|
12843
|
+
* Build Linkedin text, insert mentions at tag placeholders.
|
|
12844
|
+
* If tag already exists (case insensitive), mentions replace it; otherwise they’re appended to the end.
|
|
11683
12845
|
* @param data The data for the request.
|
|
11684
12846
|
* @param data.requestBody Body
|
|
11685
12847
|
* @returns unknown 200
|
|
@@ -11687,12 +12849,25 @@ declare class LinkedinService {
|
|
|
11687
12849
|
*/
|
|
11688
12850
|
miscLinkedinBuildCommentary(data?: MiscLinkedinBuildCommentaryData): CancelablePromise<MiscLinkedinBuildCommentaryResponse>;
|
|
11689
12851
|
}
|
|
12852
|
+
declare class GoogleBusinessService {
|
|
12853
|
+
readonly httpRequest: BaseHttpRequest;
|
|
12854
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
12855
|
+
/**
|
|
12856
|
+
* Add a media item (photo/video) using uploadId and category
|
|
12857
|
+
* @param data The data for the request.
|
|
12858
|
+
* @param data.requestBody Body
|
|
12859
|
+
* @returns unknown 200
|
|
12860
|
+
* @throws ApiError
|
|
12861
|
+
*/
|
|
12862
|
+
miscGoogleBusinessAddMedia(data?: MiscGoogleBusinessAddMediaData): CancelablePromise<MiscGoogleBusinessAddMediaResponse>;
|
|
12863
|
+
}
|
|
11690
12864
|
|
|
11691
12865
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
11692
12866
|
declare class Client {
|
|
11693
12867
|
readonly analytics: AnalyticsService;
|
|
11694
12868
|
readonly app: AppService;
|
|
11695
12869
|
readonly comment: CommentService;
|
|
12870
|
+
readonly googleBusiness: GoogleBusinessService;
|
|
11696
12871
|
readonly linkedin: LinkedinService;
|
|
11697
12872
|
readonly misc: MiscService;
|
|
11698
12873
|
readonly organization: OrganizationService;
|
|
@@ -11764,4 +12939,4 @@ declare class Bundlesocial extends Client {
|
|
|
11764
12939
|
constructor(apiKey: string, options?: OpenAPIConfig);
|
|
11765
12940
|
}
|
|
11766
12941
|
|
|
11767
|
-
export { $OpenApiTs, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse,
|
|
12942
|
+
export { $OpenApiTs, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentUpdateData, CommentUpdateResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, OpenAPI, OpenAPIConfig, OrganizationGetOrganizationResponse, PostCreateData, PostCreateResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };
|