bundlesocial 2.24.0 → 2.25.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 +1632 -98
- package/dist/index.d.ts +1632 -98
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
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;
|
|
@@ -721,12 +727,12 @@ type SocialAccountCopyData = {
|
|
|
721
727
|
* 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
728
|
*/
|
|
723
729
|
resetChannel?: boolean;
|
|
724
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
730
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
725
731
|
};
|
|
726
732
|
};
|
|
727
733
|
type SocialAccountCopyResponse = Array<{
|
|
728
734
|
id: string;
|
|
729
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
735
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
730
736
|
teamId: string;
|
|
731
737
|
username?: string | null;
|
|
732
738
|
displayName?: string | null;
|
|
@@ -1161,6 +1167,62 @@ type PostGetResponse = {
|
|
|
1161
1167
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
1162
1168
|
spoiler?: string | null;
|
|
1163
1169
|
} | null;
|
|
1170
|
+
BLUESKY?: {
|
|
1171
|
+
text?: string | null;
|
|
1172
|
+
uploadIds?: Array<(string)> | null;
|
|
1173
|
+
/**
|
|
1174
|
+
* Extra hashtags (without #), up to 8.
|
|
1175
|
+
*/
|
|
1176
|
+
tags?: Array<(string)> | null;
|
|
1177
|
+
/**
|
|
1178
|
+
* Self-labels (content warnings) applied to the post.
|
|
1179
|
+
*/
|
|
1180
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
1181
|
+
/**
|
|
1182
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
1183
|
+
*/
|
|
1184
|
+
quoteUri?: string;
|
|
1185
|
+
/**
|
|
1186
|
+
* Target URL for the external link card
|
|
1187
|
+
*/
|
|
1188
|
+
externalUrl?: string | null;
|
|
1189
|
+
/**
|
|
1190
|
+
* Card title for the external link card
|
|
1191
|
+
*/
|
|
1192
|
+
externalTitle?: string | null;
|
|
1193
|
+
/**
|
|
1194
|
+
* Card description for the external link card
|
|
1195
|
+
*/
|
|
1196
|
+
externalDescription?: string | null;
|
|
1197
|
+
/**
|
|
1198
|
+
* Alt text for the video embed.
|
|
1199
|
+
*/
|
|
1200
|
+
videoAlt?: string | null;
|
|
1201
|
+
} | null;
|
|
1202
|
+
GOOGLE_BUSINESS?: {
|
|
1203
|
+
text?: string | null;
|
|
1204
|
+
/**
|
|
1205
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
1206
|
+
*/
|
|
1207
|
+
uploadIds?: Array<(string)> | null;
|
|
1208
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
1209
|
+
/**
|
|
1210
|
+
* Language tag like 'en' or 'en-US'.
|
|
1211
|
+
*/
|
|
1212
|
+
languageCode?: string | null;
|
|
1213
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
1214
|
+
callToActionUrl?: string | null;
|
|
1215
|
+
eventTitle?: string | null;
|
|
1216
|
+
eventStartDate?: string | null;
|
|
1217
|
+
eventEndDate?: string | null;
|
|
1218
|
+
offerCouponCode?: string | null;
|
|
1219
|
+
offerRedeemOnlineUrl?: string | null;
|
|
1220
|
+
offerTermsConditions?: string | null;
|
|
1221
|
+
/**
|
|
1222
|
+
* Alert type for ALERT posts.
|
|
1223
|
+
*/
|
|
1224
|
+
alertType?: 'COVID_19' | null;
|
|
1225
|
+
} | null;
|
|
1164
1226
|
};
|
|
1165
1227
|
error?: string | null;
|
|
1166
1228
|
errors?: {
|
|
@@ -1176,6 +1238,8 @@ type PostGetResponse = {
|
|
|
1176
1238
|
YOUTUBE?: string | null;
|
|
1177
1239
|
MASTODON?: string | null;
|
|
1178
1240
|
THREADS?: string | null;
|
|
1241
|
+
BLUESKY?: string | null;
|
|
1242
|
+
GOOGLE_BUSINESS?: string | null;
|
|
1179
1243
|
} | null;
|
|
1180
1244
|
externalData?: {
|
|
1181
1245
|
TWITTER?: {
|
|
@@ -1192,12 +1256,12 @@ type PostGetResponse = {
|
|
|
1192
1256
|
postId?: string | null;
|
|
1193
1257
|
videoId?: string | null;
|
|
1194
1258
|
permalink?: string | null;
|
|
1195
|
-
thumbnail?: string;
|
|
1259
|
+
thumbnail?: string | null;
|
|
1196
1260
|
} | null;
|
|
1197
1261
|
INSTAGRAM?: {
|
|
1198
1262
|
id?: string | null;
|
|
1199
1263
|
permalink?: string | null;
|
|
1200
|
-
thumbnail?: string;
|
|
1264
|
+
thumbnail?: string | null;
|
|
1201
1265
|
} | null;
|
|
1202
1266
|
TIKTOK?: {
|
|
1203
1267
|
id?: string | null;
|
|
@@ -1207,7 +1271,7 @@ type PostGetResponse = {
|
|
|
1207
1271
|
id?: string | null;
|
|
1208
1272
|
activity?: string | null;
|
|
1209
1273
|
permalink?: string | null;
|
|
1210
|
-
thumbnail?: string;
|
|
1274
|
+
thumbnail?: string | null;
|
|
1211
1275
|
} | null;
|
|
1212
1276
|
REDDIT?: {
|
|
1213
1277
|
id?: string | null;
|
|
@@ -1238,6 +1302,29 @@ type PostGetResponse = {
|
|
|
1238
1302
|
id?: string | null;
|
|
1239
1303
|
permalink?: string | null;
|
|
1240
1304
|
} | null;
|
|
1305
|
+
BLUESKY?: {
|
|
1306
|
+
id?: string | null;
|
|
1307
|
+
uri?: string | null;
|
|
1308
|
+
/**
|
|
1309
|
+
* Content ID of the created record
|
|
1310
|
+
*/
|
|
1311
|
+
cid?: string | null;
|
|
1312
|
+
permalink?: string | null;
|
|
1313
|
+
/**
|
|
1314
|
+
* Author DID (owner of the record)
|
|
1315
|
+
*/
|
|
1316
|
+
did?: string | null;
|
|
1317
|
+
} | null;
|
|
1318
|
+
GOOGLE_BUSINESS?: {
|
|
1319
|
+
/**
|
|
1320
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
1321
|
+
*/
|
|
1322
|
+
id?: string | null;
|
|
1323
|
+
/**
|
|
1324
|
+
* Public link to the post (searchUrl) when available.
|
|
1325
|
+
*/
|
|
1326
|
+
permalink?: string | null;
|
|
1327
|
+
} | null;
|
|
1241
1328
|
} | null;
|
|
1242
1329
|
createdAt: string | null;
|
|
1243
1330
|
updatedAt: string | null;
|
|
@@ -1278,7 +1365,7 @@ type PostGetResponse = {
|
|
|
1278
1365
|
deletedAt?: string | null;
|
|
1279
1366
|
socialAccount: {
|
|
1280
1367
|
id: string;
|
|
1281
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
1368
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1282
1369
|
teamId: string;
|
|
1283
1370
|
username?: string | null;
|
|
1284
1371
|
displayName?: string | null;
|
|
@@ -1316,7 +1403,7 @@ type PostUpdateData = {
|
|
|
1316
1403
|
title?: string;
|
|
1317
1404
|
postDate?: string;
|
|
1318
1405
|
status?: 'DRAFT' | 'SCHEDULED';
|
|
1319
|
-
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
1406
|
+
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
1320
1407
|
data?: {
|
|
1321
1408
|
TWITTER?: {
|
|
1322
1409
|
text?: string | null;
|
|
@@ -1523,6 +1610,62 @@ type PostUpdateData = {
|
|
|
1523
1610
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
1524
1611
|
spoiler?: string | null;
|
|
1525
1612
|
} | null;
|
|
1613
|
+
BLUESKY?: {
|
|
1614
|
+
text?: string | null;
|
|
1615
|
+
uploadIds?: Array<(string)> | null;
|
|
1616
|
+
/**
|
|
1617
|
+
* Extra hashtags (without #), up to 8.
|
|
1618
|
+
*/
|
|
1619
|
+
tags?: Array<(string)> | null;
|
|
1620
|
+
/**
|
|
1621
|
+
* Self-labels (content warnings) applied to the post.
|
|
1622
|
+
*/
|
|
1623
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
1624
|
+
/**
|
|
1625
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
1626
|
+
*/
|
|
1627
|
+
quoteUri?: string;
|
|
1628
|
+
/**
|
|
1629
|
+
* Target URL for the external link card
|
|
1630
|
+
*/
|
|
1631
|
+
externalUrl?: string | null;
|
|
1632
|
+
/**
|
|
1633
|
+
* Card title for the external link card
|
|
1634
|
+
*/
|
|
1635
|
+
externalTitle?: string | null;
|
|
1636
|
+
/**
|
|
1637
|
+
* Card description for the external link card
|
|
1638
|
+
*/
|
|
1639
|
+
externalDescription?: string | null;
|
|
1640
|
+
/**
|
|
1641
|
+
* Alt text for the video embed.
|
|
1642
|
+
*/
|
|
1643
|
+
videoAlt?: string | null;
|
|
1644
|
+
} | null;
|
|
1645
|
+
GOOGLE_BUSINESS?: {
|
|
1646
|
+
text?: string | null;
|
|
1647
|
+
/**
|
|
1648
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
1649
|
+
*/
|
|
1650
|
+
uploadIds?: Array<(string)> | null;
|
|
1651
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
1652
|
+
/**
|
|
1653
|
+
* Language tag like 'en' or 'en-US'.
|
|
1654
|
+
*/
|
|
1655
|
+
languageCode?: string | null;
|
|
1656
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
1657
|
+
callToActionUrl?: string | null;
|
|
1658
|
+
eventTitle?: string | null;
|
|
1659
|
+
eventStartDate?: string | null;
|
|
1660
|
+
eventEndDate?: string | null;
|
|
1661
|
+
offerCouponCode?: string | null;
|
|
1662
|
+
offerRedeemOnlineUrl?: string | null;
|
|
1663
|
+
offerTermsConditions?: string | null;
|
|
1664
|
+
/**
|
|
1665
|
+
* Alert type for ALERT posts.
|
|
1666
|
+
*/
|
|
1667
|
+
alertType?: 'COVID_19' | null;
|
|
1668
|
+
} | null;
|
|
1526
1669
|
};
|
|
1527
1670
|
};
|
|
1528
1671
|
};
|
|
@@ -1740,6 +1883,62 @@ type PostUpdateResponse = {
|
|
|
1740
1883
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
1741
1884
|
spoiler?: string | null;
|
|
1742
1885
|
} | null;
|
|
1886
|
+
BLUESKY?: {
|
|
1887
|
+
text?: string | null;
|
|
1888
|
+
uploadIds?: Array<(string)> | null;
|
|
1889
|
+
/**
|
|
1890
|
+
* Extra hashtags (without #), up to 8.
|
|
1891
|
+
*/
|
|
1892
|
+
tags?: Array<(string)> | null;
|
|
1893
|
+
/**
|
|
1894
|
+
* Self-labels (content warnings) applied to the post.
|
|
1895
|
+
*/
|
|
1896
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
1897
|
+
/**
|
|
1898
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
1899
|
+
*/
|
|
1900
|
+
quoteUri?: string;
|
|
1901
|
+
/**
|
|
1902
|
+
* Target URL for the external link card
|
|
1903
|
+
*/
|
|
1904
|
+
externalUrl?: string | null;
|
|
1905
|
+
/**
|
|
1906
|
+
* Card title for the external link card
|
|
1907
|
+
*/
|
|
1908
|
+
externalTitle?: string | null;
|
|
1909
|
+
/**
|
|
1910
|
+
* Card description for the external link card
|
|
1911
|
+
*/
|
|
1912
|
+
externalDescription?: string | null;
|
|
1913
|
+
/**
|
|
1914
|
+
* Alt text for the video embed.
|
|
1915
|
+
*/
|
|
1916
|
+
videoAlt?: string | null;
|
|
1917
|
+
} | null;
|
|
1918
|
+
GOOGLE_BUSINESS?: {
|
|
1919
|
+
text?: string | null;
|
|
1920
|
+
/**
|
|
1921
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
1922
|
+
*/
|
|
1923
|
+
uploadIds?: Array<(string)> | null;
|
|
1924
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
1925
|
+
/**
|
|
1926
|
+
* Language tag like 'en' or 'en-US'.
|
|
1927
|
+
*/
|
|
1928
|
+
languageCode?: string | null;
|
|
1929
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
1930
|
+
callToActionUrl?: string | null;
|
|
1931
|
+
eventTitle?: string | null;
|
|
1932
|
+
eventStartDate?: string | null;
|
|
1933
|
+
eventEndDate?: string | null;
|
|
1934
|
+
offerCouponCode?: string | null;
|
|
1935
|
+
offerRedeemOnlineUrl?: string | null;
|
|
1936
|
+
offerTermsConditions?: string | null;
|
|
1937
|
+
/**
|
|
1938
|
+
* Alert type for ALERT posts.
|
|
1939
|
+
*/
|
|
1940
|
+
alertType?: 'COVID_19' | null;
|
|
1941
|
+
} | null;
|
|
1743
1942
|
};
|
|
1744
1943
|
error?: string | null;
|
|
1745
1944
|
errors?: {
|
|
@@ -1755,6 +1954,8 @@ type PostUpdateResponse = {
|
|
|
1755
1954
|
YOUTUBE?: string | null;
|
|
1756
1955
|
MASTODON?: string | null;
|
|
1757
1956
|
THREADS?: string | null;
|
|
1957
|
+
BLUESKY?: string | null;
|
|
1958
|
+
GOOGLE_BUSINESS?: string | null;
|
|
1758
1959
|
} | null;
|
|
1759
1960
|
externalData?: {
|
|
1760
1961
|
TWITTER?: {
|
|
@@ -1771,12 +1972,12 @@ type PostUpdateResponse = {
|
|
|
1771
1972
|
postId?: string | null;
|
|
1772
1973
|
videoId?: string | null;
|
|
1773
1974
|
permalink?: string | null;
|
|
1774
|
-
thumbnail?: string;
|
|
1975
|
+
thumbnail?: string | null;
|
|
1775
1976
|
} | null;
|
|
1776
1977
|
INSTAGRAM?: {
|
|
1777
1978
|
id?: string | null;
|
|
1778
1979
|
permalink?: string | null;
|
|
1779
|
-
thumbnail?: string;
|
|
1980
|
+
thumbnail?: string | null;
|
|
1780
1981
|
} | null;
|
|
1781
1982
|
TIKTOK?: {
|
|
1782
1983
|
id?: string | null;
|
|
@@ -1786,7 +1987,7 @@ type PostUpdateResponse = {
|
|
|
1786
1987
|
id?: string | null;
|
|
1787
1988
|
activity?: string | null;
|
|
1788
1989
|
permalink?: string | null;
|
|
1789
|
-
thumbnail?: string;
|
|
1990
|
+
thumbnail?: string | null;
|
|
1790
1991
|
} | null;
|
|
1791
1992
|
REDDIT?: {
|
|
1792
1993
|
id?: string | null;
|
|
@@ -1817,6 +2018,29 @@ type PostUpdateResponse = {
|
|
|
1817
2018
|
id?: string | null;
|
|
1818
2019
|
permalink?: string | null;
|
|
1819
2020
|
} | null;
|
|
2021
|
+
BLUESKY?: {
|
|
2022
|
+
id?: string | null;
|
|
2023
|
+
uri?: string | null;
|
|
2024
|
+
/**
|
|
2025
|
+
* Content ID of the created record
|
|
2026
|
+
*/
|
|
2027
|
+
cid?: string | null;
|
|
2028
|
+
permalink?: string | null;
|
|
2029
|
+
/**
|
|
2030
|
+
* Author DID (owner of the record)
|
|
2031
|
+
*/
|
|
2032
|
+
did?: string | null;
|
|
2033
|
+
} | null;
|
|
2034
|
+
GOOGLE_BUSINESS?: {
|
|
2035
|
+
/**
|
|
2036
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
2037
|
+
*/
|
|
2038
|
+
id?: string | null;
|
|
2039
|
+
/**
|
|
2040
|
+
* Public link to the post (searchUrl) when available.
|
|
2041
|
+
*/
|
|
2042
|
+
permalink?: string | null;
|
|
2043
|
+
} | null;
|
|
1820
2044
|
} | null;
|
|
1821
2045
|
createdAt: string | null;
|
|
1822
2046
|
updatedAt: string | null;
|
|
@@ -2039,6 +2263,62 @@ type PostDeleteResponse = {
|
|
|
2039
2263
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
2040
2264
|
spoiler?: string | null;
|
|
2041
2265
|
} | null;
|
|
2266
|
+
BLUESKY?: {
|
|
2267
|
+
text?: string | null;
|
|
2268
|
+
uploadIds?: Array<(string)> | null;
|
|
2269
|
+
/**
|
|
2270
|
+
* Extra hashtags (without #), up to 8.
|
|
2271
|
+
*/
|
|
2272
|
+
tags?: Array<(string)> | null;
|
|
2273
|
+
/**
|
|
2274
|
+
* Self-labels (content warnings) applied to the post.
|
|
2275
|
+
*/
|
|
2276
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
2277
|
+
/**
|
|
2278
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
2279
|
+
*/
|
|
2280
|
+
quoteUri?: string;
|
|
2281
|
+
/**
|
|
2282
|
+
* Target URL for the external link card
|
|
2283
|
+
*/
|
|
2284
|
+
externalUrl?: string | null;
|
|
2285
|
+
/**
|
|
2286
|
+
* Card title for the external link card
|
|
2287
|
+
*/
|
|
2288
|
+
externalTitle?: string | null;
|
|
2289
|
+
/**
|
|
2290
|
+
* Card description for the external link card
|
|
2291
|
+
*/
|
|
2292
|
+
externalDescription?: string | null;
|
|
2293
|
+
/**
|
|
2294
|
+
* Alt text for the video embed.
|
|
2295
|
+
*/
|
|
2296
|
+
videoAlt?: string | null;
|
|
2297
|
+
} | null;
|
|
2298
|
+
GOOGLE_BUSINESS?: {
|
|
2299
|
+
text?: string | null;
|
|
2300
|
+
/**
|
|
2301
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
2302
|
+
*/
|
|
2303
|
+
uploadIds?: Array<(string)> | null;
|
|
2304
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
2305
|
+
/**
|
|
2306
|
+
* Language tag like 'en' or 'en-US'.
|
|
2307
|
+
*/
|
|
2308
|
+
languageCode?: string | null;
|
|
2309
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
2310
|
+
callToActionUrl?: string | null;
|
|
2311
|
+
eventTitle?: string | null;
|
|
2312
|
+
eventStartDate?: string | null;
|
|
2313
|
+
eventEndDate?: string | null;
|
|
2314
|
+
offerCouponCode?: string | null;
|
|
2315
|
+
offerRedeemOnlineUrl?: string | null;
|
|
2316
|
+
offerTermsConditions?: string | null;
|
|
2317
|
+
/**
|
|
2318
|
+
* Alert type for ALERT posts.
|
|
2319
|
+
*/
|
|
2320
|
+
alertType?: 'COVID_19' | null;
|
|
2321
|
+
} | null;
|
|
2042
2322
|
};
|
|
2043
2323
|
error?: string | null;
|
|
2044
2324
|
errors?: {
|
|
@@ -2054,6 +2334,8 @@ type PostDeleteResponse = {
|
|
|
2054
2334
|
YOUTUBE?: string | null;
|
|
2055
2335
|
MASTODON?: string | null;
|
|
2056
2336
|
THREADS?: string | null;
|
|
2337
|
+
BLUESKY?: string | null;
|
|
2338
|
+
GOOGLE_BUSINESS?: string | null;
|
|
2057
2339
|
} | null;
|
|
2058
2340
|
externalData?: {
|
|
2059
2341
|
TWITTER?: {
|
|
@@ -2070,12 +2352,12 @@ type PostDeleteResponse = {
|
|
|
2070
2352
|
postId?: string | null;
|
|
2071
2353
|
videoId?: string | null;
|
|
2072
2354
|
permalink?: string | null;
|
|
2073
|
-
thumbnail?: string;
|
|
2355
|
+
thumbnail?: string | null;
|
|
2074
2356
|
} | null;
|
|
2075
2357
|
INSTAGRAM?: {
|
|
2076
2358
|
id?: string | null;
|
|
2077
2359
|
permalink?: string | null;
|
|
2078
|
-
thumbnail?: string;
|
|
2360
|
+
thumbnail?: string | null;
|
|
2079
2361
|
} | null;
|
|
2080
2362
|
TIKTOK?: {
|
|
2081
2363
|
id?: string | null;
|
|
@@ -2085,7 +2367,7 @@ type PostDeleteResponse = {
|
|
|
2085
2367
|
id?: string | null;
|
|
2086
2368
|
activity?: string | null;
|
|
2087
2369
|
permalink?: string | null;
|
|
2088
|
-
thumbnail?: string;
|
|
2370
|
+
thumbnail?: string | null;
|
|
2089
2371
|
} | null;
|
|
2090
2372
|
REDDIT?: {
|
|
2091
2373
|
id?: string | null;
|
|
@@ -2116,6 +2398,29 @@ type PostDeleteResponse = {
|
|
|
2116
2398
|
id?: string | null;
|
|
2117
2399
|
permalink?: string | null;
|
|
2118
2400
|
} | null;
|
|
2401
|
+
BLUESKY?: {
|
|
2402
|
+
id?: string | null;
|
|
2403
|
+
uri?: string | null;
|
|
2404
|
+
/**
|
|
2405
|
+
* Content ID of the created record
|
|
2406
|
+
*/
|
|
2407
|
+
cid?: string | null;
|
|
2408
|
+
permalink?: string | null;
|
|
2409
|
+
/**
|
|
2410
|
+
* Author DID (owner of the record)
|
|
2411
|
+
*/
|
|
2412
|
+
did?: string | null;
|
|
2413
|
+
} | null;
|
|
2414
|
+
GOOGLE_BUSINESS?: {
|
|
2415
|
+
/**
|
|
2416
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
2417
|
+
*/
|
|
2418
|
+
id?: string | null;
|
|
2419
|
+
/**
|
|
2420
|
+
* Public link to the post (searchUrl) when available.
|
|
2421
|
+
*/
|
|
2422
|
+
permalink?: string | null;
|
|
2423
|
+
} | null;
|
|
2119
2424
|
} | null;
|
|
2120
2425
|
createdAt: string | null;
|
|
2121
2426
|
updatedAt: string | null;
|
|
@@ -2126,7 +2431,7 @@ type PostGetListData = {
|
|
|
2126
2431
|
offset?: number | null;
|
|
2127
2432
|
order?: 'ASC' | 'DESC' | null;
|
|
2128
2433
|
orderBy?: 'createdAt' | 'updatedAt' | 'postDate' | 'postedDate' | 'deletedAt' | null;
|
|
2129
|
-
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')> | null;
|
|
2434
|
+
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')> | null;
|
|
2130
2435
|
q?: string | null;
|
|
2131
2436
|
status?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | null;
|
|
2132
2437
|
teamId: string;
|
|
@@ -2346,6 +2651,62 @@ type PostGetListResponse = {
|
|
|
2346
2651
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
2347
2652
|
spoiler?: string | null;
|
|
2348
2653
|
} | null;
|
|
2654
|
+
BLUESKY?: {
|
|
2655
|
+
text?: string | null;
|
|
2656
|
+
uploadIds?: Array<(string)> | null;
|
|
2657
|
+
/**
|
|
2658
|
+
* Extra hashtags (without #), up to 8.
|
|
2659
|
+
*/
|
|
2660
|
+
tags?: Array<(string)> | null;
|
|
2661
|
+
/**
|
|
2662
|
+
* Self-labels (content warnings) applied to the post.
|
|
2663
|
+
*/
|
|
2664
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
2665
|
+
/**
|
|
2666
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
2667
|
+
*/
|
|
2668
|
+
quoteUri?: string;
|
|
2669
|
+
/**
|
|
2670
|
+
* Target URL for the external link card
|
|
2671
|
+
*/
|
|
2672
|
+
externalUrl?: string | null;
|
|
2673
|
+
/**
|
|
2674
|
+
* Card title for the external link card
|
|
2675
|
+
*/
|
|
2676
|
+
externalTitle?: string | null;
|
|
2677
|
+
/**
|
|
2678
|
+
* Card description for the external link card
|
|
2679
|
+
*/
|
|
2680
|
+
externalDescription?: string | null;
|
|
2681
|
+
/**
|
|
2682
|
+
* Alt text for the video embed.
|
|
2683
|
+
*/
|
|
2684
|
+
videoAlt?: string | null;
|
|
2685
|
+
} | null;
|
|
2686
|
+
GOOGLE_BUSINESS?: {
|
|
2687
|
+
text?: string | null;
|
|
2688
|
+
/**
|
|
2689
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
2690
|
+
*/
|
|
2691
|
+
uploadIds?: Array<(string)> | null;
|
|
2692
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
2693
|
+
/**
|
|
2694
|
+
* Language tag like 'en' or 'en-US'.
|
|
2695
|
+
*/
|
|
2696
|
+
languageCode?: string | null;
|
|
2697
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
2698
|
+
callToActionUrl?: string | null;
|
|
2699
|
+
eventTitle?: string | null;
|
|
2700
|
+
eventStartDate?: string | null;
|
|
2701
|
+
eventEndDate?: string | null;
|
|
2702
|
+
offerCouponCode?: string | null;
|
|
2703
|
+
offerRedeemOnlineUrl?: string | null;
|
|
2704
|
+
offerTermsConditions?: string | null;
|
|
2705
|
+
/**
|
|
2706
|
+
* Alert type for ALERT posts.
|
|
2707
|
+
*/
|
|
2708
|
+
alertType?: 'COVID_19' | null;
|
|
2709
|
+
} | null;
|
|
2349
2710
|
};
|
|
2350
2711
|
error?: string | null;
|
|
2351
2712
|
errors?: {
|
|
@@ -2361,6 +2722,8 @@ type PostGetListResponse = {
|
|
|
2361
2722
|
YOUTUBE?: string | null;
|
|
2362
2723
|
MASTODON?: string | null;
|
|
2363
2724
|
THREADS?: string | null;
|
|
2725
|
+
BLUESKY?: string | null;
|
|
2726
|
+
GOOGLE_BUSINESS?: string | null;
|
|
2364
2727
|
} | null;
|
|
2365
2728
|
externalData?: {
|
|
2366
2729
|
TWITTER?: {
|
|
@@ -2377,12 +2740,12 @@ type PostGetListResponse = {
|
|
|
2377
2740
|
postId?: string | null;
|
|
2378
2741
|
videoId?: string | null;
|
|
2379
2742
|
permalink?: string | null;
|
|
2380
|
-
thumbnail?: string;
|
|
2743
|
+
thumbnail?: string | null;
|
|
2381
2744
|
} | null;
|
|
2382
2745
|
INSTAGRAM?: {
|
|
2383
2746
|
id?: string | null;
|
|
2384
2747
|
permalink?: string | null;
|
|
2385
|
-
thumbnail?: string;
|
|
2748
|
+
thumbnail?: string | null;
|
|
2386
2749
|
} | null;
|
|
2387
2750
|
TIKTOK?: {
|
|
2388
2751
|
id?: string | null;
|
|
@@ -2392,7 +2755,7 @@ type PostGetListResponse = {
|
|
|
2392
2755
|
id?: string | null;
|
|
2393
2756
|
activity?: string | null;
|
|
2394
2757
|
permalink?: string | null;
|
|
2395
|
-
thumbnail?: string;
|
|
2758
|
+
thumbnail?: string | null;
|
|
2396
2759
|
} | null;
|
|
2397
2760
|
REDDIT?: {
|
|
2398
2761
|
id?: string | null;
|
|
@@ -2423,6 +2786,29 @@ type PostGetListResponse = {
|
|
|
2423
2786
|
id?: string | null;
|
|
2424
2787
|
permalink?: string | null;
|
|
2425
2788
|
} | null;
|
|
2789
|
+
BLUESKY?: {
|
|
2790
|
+
id?: string | null;
|
|
2791
|
+
uri?: string | null;
|
|
2792
|
+
/**
|
|
2793
|
+
* Content ID of the created record
|
|
2794
|
+
*/
|
|
2795
|
+
cid?: string | null;
|
|
2796
|
+
permalink?: string | null;
|
|
2797
|
+
/**
|
|
2798
|
+
* Author DID (owner of the record)
|
|
2799
|
+
*/
|
|
2800
|
+
did?: string | null;
|
|
2801
|
+
} | null;
|
|
2802
|
+
GOOGLE_BUSINESS?: {
|
|
2803
|
+
/**
|
|
2804
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
2805
|
+
*/
|
|
2806
|
+
id?: string | null;
|
|
2807
|
+
/**
|
|
2808
|
+
* Public link to the post (searchUrl) when available.
|
|
2809
|
+
*/
|
|
2810
|
+
permalink?: string | null;
|
|
2811
|
+
} | null;
|
|
2426
2812
|
} | null;
|
|
2427
2813
|
createdAt: string | null;
|
|
2428
2814
|
updatedAt: string | null;
|
|
@@ -2463,7 +2849,7 @@ type PostGetListResponse = {
|
|
|
2463
2849
|
deletedAt?: string | null;
|
|
2464
2850
|
socialAccount: {
|
|
2465
2851
|
id: string;
|
|
2466
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
2852
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
2467
2853
|
teamId: string;
|
|
2468
2854
|
username?: string | null;
|
|
2469
2855
|
displayName?: string | null;
|
|
@@ -2503,7 +2889,7 @@ type PostCreateData = {
|
|
|
2503
2889
|
title: string;
|
|
2504
2890
|
postDate: string;
|
|
2505
2891
|
status: 'DRAFT' | 'SCHEDULED';
|
|
2506
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
2892
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
2507
2893
|
data: {
|
|
2508
2894
|
TWITTER?: {
|
|
2509
2895
|
text?: string | null;
|
|
@@ -2710,6 +3096,62 @@ type PostCreateData = {
|
|
|
2710
3096
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
2711
3097
|
spoiler?: string | null;
|
|
2712
3098
|
} | null;
|
|
3099
|
+
BLUESKY?: {
|
|
3100
|
+
text?: string | null;
|
|
3101
|
+
uploadIds?: Array<(string)> | null;
|
|
3102
|
+
/**
|
|
3103
|
+
* Extra hashtags (without #), up to 8.
|
|
3104
|
+
*/
|
|
3105
|
+
tags?: Array<(string)> | null;
|
|
3106
|
+
/**
|
|
3107
|
+
* Self-labels (content warnings) applied to the post.
|
|
3108
|
+
*/
|
|
3109
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
3110
|
+
/**
|
|
3111
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
3112
|
+
*/
|
|
3113
|
+
quoteUri?: string;
|
|
3114
|
+
/**
|
|
3115
|
+
* Target URL for the external link card
|
|
3116
|
+
*/
|
|
3117
|
+
externalUrl?: string | null;
|
|
3118
|
+
/**
|
|
3119
|
+
* Card title for the external link card
|
|
3120
|
+
*/
|
|
3121
|
+
externalTitle?: string | null;
|
|
3122
|
+
/**
|
|
3123
|
+
* Card description for the external link card
|
|
3124
|
+
*/
|
|
3125
|
+
externalDescription?: string | null;
|
|
3126
|
+
/**
|
|
3127
|
+
* Alt text for the video embed.
|
|
3128
|
+
*/
|
|
3129
|
+
videoAlt?: string | null;
|
|
3130
|
+
} | null;
|
|
3131
|
+
GOOGLE_BUSINESS?: {
|
|
3132
|
+
text?: string | null;
|
|
3133
|
+
/**
|
|
3134
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
3135
|
+
*/
|
|
3136
|
+
uploadIds?: Array<(string)> | null;
|
|
3137
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
3138
|
+
/**
|
|
3139
|
+
* Language tag like 'en' or 'en-US'.
|
|
3140
|
+
*/
|
|
3141
|
+
languageCode?: string | null;
|
|
3142
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
3143
|
+
callToActionUrl?: string | null;
|
|
3144
|
+
eventTitle?: string | null;
|
|
3145
|
+
eventStartDate?: string | null;
|
|
3146
|
+
eventEndDate?: string | null;
|
|
3147
|
+
offerCouponCode?: string | null;
|
|
3148
|
+
offerRedeemOnlineUrl?: string | null;
|
|
3149
|
+
offerTermsConditions?: string | null;
|
|
3150
|
+
/**
|
|
3151
|
+
* Alert type for ALERT posts.
|
|
3152
|
+
*/
|
|
3153
|
+
alertType?: 'COVID_19' | null;
|
|
3154
|
+
} | null;
|
|
2713
3155
|
};
|
|
2714
3156
|
};
|
|
2715
3157
|
};
|
|
@@ -2927,6 +3369,62 @@ type PostCreateResponse = {
|
|
|
2927
3369
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
2928
3370
|
spoiler?: string | null;
|
|
2929
3371
|
} | null;
|
|
3372
|
+
BLUESKY?: {
|
|
3373
|
+
text?: string | null;
|
|
3374
|
+
uploadIds?: Array<(string)> | null;
|
|
3375
|
+
/**
|
|
3376
|
+
* Extra hashtags (without #), up to 8.
|
|
3377
|
+
*/
|
|
3378
|
+
tags?: Array<(string)> | null;
|
|
3379
|
+
/**
|
|
3380
|
+
* Self-labels (content warnings) applied to the post.
|
|
3381
|
+
*/
|
|
3382
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
3383
|
+
/**
|
|
3384
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
3385
|
+
*/
|
|
3386
|
+
quoteUri?: string;
|
|
3387
|
+
/**
|
|
3388
|
+
* Target URL for the external link card
|
|
3389
|
+
*/
|
|
3390
|
+
externalUrl?: string | null;
|
|
3391
|
+
/**
|
|
3392
|
+
* Card title for the external link card
|
|
3393
|
+
*/
|
|
3394
|
+
externalTitle?: string | null;
|
|
3395
|
+
/**
|
|
3396
|
+
* Card description for the external link card
|
|
3397
|
+
*/
|
|
3398
|
+
externalDescription?: string | null;
|
|
3399
|
+
/**
|
|
3400
|
+
* Alt text for the video embed.
|
|
3401
|
+
*/
|
|
3402
|
+
videoAlt?: string | null;
|
|
3403
|
+
} | null;
|
|
3404
|
+
GOOGLE_BUSINESS?: {
|
|
3405
|
+
text?: string | null;
|
|
3406
|
+
/**
|
|
3407
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
3408
|
+
*/
|
|
3409
|
+
uploadIds?: Array<(string)> | null;
|
|
3410
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
3411
|
+
/**
|
|
3412
|
+
* Language tag like 'en' or 'en-US'.
|
|
3413
|
+
*/
|
|
3414
|
+
languageCode?: string | null;
|
|
3415
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
3416
|
+
callToActionUrl?: string | null;
|
|
3417
|
+
eventTitle?: string | null;
|
|
3418
|
+
eventStartDate?: string | null;
|
|
3419
|
+
eventEndDate?: string | null;
|
|
3420
|
+
offerCouponCode?: string | null;
|
|
3421
|
+
offerRedeemOnlineUrl?: string | null;
|
|
3422
|
+
offerTermsConditions?: string | null;
|
|
3423
|
+
/**
|
|
3424
|
+
* Alert type for ALERT posts.
|
|
3425
|
+
*/
|
|
3426
|
+
alertType?: 'COVID_19' | null;
|
|
3427
|
+
} | null;
|
|
2930
3428
|
};
|
|
2931
3429
|
error?: string | null;
|
|
2932
3430
|
errors?: {
|
|
@@ -2942,6 +3440,8 @@ type PostCreateResponse = {
|
|
|
2942
3440
|
YOUTUBE?: string | null;
|
|
2943
3441
|
MASTODON?: string | null;
|
|
2944
3442
|
THREADS?: string | null;
|
|
3443
|
+
BLUESKY?: string | null;
|
|
3444
|
+
GOOGLE_BUSINESS?: string | null;
|
|
2945
3445
|
} | null;
|
|
2946
3446
|
externalData?: {
|
|
2947
3447
|
TWITTER?: {
|
|
@@ -2958,12 +3458,12 @@ type PostCreateResponse = {
|
|
|
2958
3458
|
postId?: string | null;
|
|
2959
3459
|
videoId?: string | null;
|
|
2960
3460
|
permalink?: string | null;
|
|
2961
|
-
thumbnail?: string;
|
|
3461
|
+
thumbnail?: string | null;
|
|
2962
3462
|
} | null;
|
|
2963
3463
|
INSTAGRAM?: {
|
|
2964
3464
|
id?: string | null;
|
|
2965
3465
|
permalink?: string | null;
|
|
2966
|
-
thumbnail?: string;
|
|
3466
|
+
thumbnail?: string | null;
|
|
2967
3467
|
} | null;
|
|
2968
3468
|
TIKTOK?: {
|
|
2969
3469
|
id?: string | null;
|
|
@@ -2973,7 +3473,7 @@ type PostCreateResponse = {
|
|
|
2973
3473
|
id?: string | null;
|
|
2974
3474
|
activity?: string | null;
|
|
2975
3475
|
permalink?: string | null;
|
|
2976
|
-
thumbnail?: string;
|
|
3476
|
+
thumbnail?: string | null;
|
|
2977
3477
|
} | null;
|
|
2978
3478
|
REDDIT?: {
|
|
2979
3479
|
id?: string | null;
|
|
@@ -3004,19 +3504,42 @@ type PostCreateResponse = {
|
|
|
3004
3504
|
id?: string | null;
|
|
3005
3505
|
permalink?: string | null;
|
|
3006
3506
|
} | null;
|
|
3507
|
+
BLUESKY?: {
|
|
3508
|
+
id?: string | null;
|
|
3509
|
+
uri?: string | null;
|
|
3510
|
+
/**
|
|
3511
|
+
* Content ID of the created record
|
|
3512
|
+
*/
|
|
3513
|
+
cid?: string | null;
|
|
3514
|
+
permalink?: string | null;
|
|
3515
|
+
/**
|
|
3516
|
+
* Author DID (owner of the record)
|
|
3517
|
+
*/
|
|
3518
|
+
did?: string | null;
|
|
3519
|
+
} | null;
|
|
3520
|
+
GOOGLE_BUSINESS?: {
|
|
3521
|
+
/**
|
|
3522
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
3523
|
+
*/
|
|
3524
|
+
id?: string | null;
|
|
3525
|
+
/**
|
|
3526
|
+
* Public link to the post (searchUrl) when available.
|
|
3527
|
+
*/
|
|
3528
|
+
permalink?: string | null;
|
|
3529
|
+
} | null;
|
|
3007
3530
|
} | null;
|
|
3008
3531
|
createdAt: string | null;
|
|
3009
3532
|
updatedAt: string | null;
|
|
3010
3533
|
deletedAt?: string | null;
|
|
3011
3534
|
};
|
|
3012
3535
|
type AnalyticsGetSocialAccountAnalyticsData = {
|
|
3013
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
|
|
3536
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3014
3537
|
teamId: string;
|
|
3015
3538
|
};
|
|
3016
3539
|
type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
3017
3540
|
socialAccount: {
|
|
3018
3541
|
id: string;
|
|
3019
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
3542
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3020
3543
|
teamId: string;
|
|
3021
3544
|
username?: string | null;
|
|
3022
3545
|
displayName?: string | null;
|
|
@@ -3061,7 +3584,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
|
3061
3584
|
}>;
|
|
3062
3585
|
};
|
|
3063
3586
|
type AnalyticsGetPostAnalyticsData = {
|
|
3064
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
|
|
3587
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3065
3588
|
postId: string;
|
|
3066
3589
|
};
|
|
3067
3590
|
type AnalyticsGetPostAnalyticsResponse = {
|
|
@@ -3279,6 +3802,62 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3279
3802
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
3280
3803
|
spoiler?: string | null;
|
|
3281
3804
|
} | null;
|
|
3805
|
+
BLUESKY?: {
|
|
3806
|
+
text?: string | null;
|
|
3807
|
+
uploadIds?: Array<(string)> | null;
|
|
3808
|
+
/**
|
|
3809
|
+
* Extra hashtags (without #), up to 8.
|
|
3810
|
+
*/
|
|
3811
|
+
tags?: Array<(string)> | null;
|
|
3812
|
+
/**
|
|
3813
|
+
* Self-labels (content warnings) applied to the post.
|
|
3814
|
+
*/
|
|
3815
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
3816
|
+
/**
|
|
3817
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
3818
|
+
*/
|
|
3819
|
+
quoteUri?: string;
|
|
3820
|
+
/**
|
|
3821
|
+
* Target URL for the external link card
|
|
3822
|
+
*/
|
|
3823
|
+
externalUrl?: string | null;
|
|
3824
|
+
/**
|
|
3825
|
+
* Card title for the external link card
|
|
3826
|
+
*/
|
|
3827
|
+
externalTitle?: string | null;
|
|
3828
|
+
/**
|
|
3829
|
+
* Card description for the external link card
|
|
3830
|
+
*/
|
|
3831
|
+
externalDescription?: string | null;
|
|
3832
|
+
/**
|
|
3833
|
+
* Alt text for the video embed.
|
|
3834
|
+
*/
|
|
3835
|
+
videoAlt?: string | null;
|
|
3836
|
+
} | null;
|
|
3837
|
+
GOOGLE_BUSINESS?: {
|
|
3838
|
+
text?: string | null;
|
|
3839
|
+
/**
|
|
3840
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
3841
|
+
*/
|
|
3842
|
+
uploadIds?: Array<(string)> | null;
|
|
3843
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
3844
|
+
/**
|
|
3845
|
+
* Language tag like 'en' or 'en-US'.
|
|
3846
|
+
*/
|
|
3847
|
+
languageCode?: string | null;
|
|
3848
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
3849
|
+
callToActionUrl?: string | null;
|
|
3850
|
+
eventTitle?: string | null;
|
|
3851
|
+
eventStartDate?: string | null;
|
|
3852
|
+
eventEndDate?: string | null;
|
|
3853
|
+
offerCouponCode?: string | null;
|
|
3854
|
+
offerRedeemOnlineUrl?: string | null;
|
|
3855
|
+
offerTermsConditions?: string | null;
|
|
3856
|
+
/**
|
|
3857
|
+
* Alert type for ALERT posts.
|
|
3858
|
+
*/
|
|
3859
|
+
alertType?: 'COVID_19' | null;
|
|
3860
|
+
} | null;
|
|
3282
3861
|
};
|
|
3283
3862
|
error?: string | null;
|
|
3284
3863
|
errors?: {
|
|
@@ -3294,6 +3873,8 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3294
3873
|
YOUTUBE?: string | null;
|
|
3295
3874
|
MASTODON?: string | null;
|
|
3296
3875
|
THREADS?: string | null;
|
|
3876
|
+
BLUESKY?: string | null;
|
|
3877
|
+
GOOGLE_BUSINESS?: string | null;
|
|
3297
3878
|
} | null;
|
|
3298
3879
|
externalData?: {
|
|
3299
3880
|
TWITTER?: {
|
|
@@ -3310,12 +3891,12 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3310
3891
|
postId?: string | null;
|
|
3311
3892
|
videoId?: string | null;
|
|
3312
3893
|
permalink?: string | null;
|
|
3313
|
-
thumbnail?: string;
|
|
3894
|
+
thumbnail?: string | null;
|
|
3314
3895
|
} | null;
|
|
3315
3896
|
INSTAGRAM?: {
|
|
3316
3897
|
id?: string | null;
|
|
3317
3898
|
permalink?: string | null;
|
|
3318
|
-
thumbnail?: string;
|
|
3899
|
+
thumbnail?: string | null;
|
|
3319
3900
|
} | null;
|
|
3320
3901
|
TIKTOK?: {
|
|
3321
3902
|
id?: string | null;
|
|
@@ -3325,7 +3906,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3325
3906
|
id?: string | null;
|
|
3326
3907
|
activity?: string | null;
|
|
3327
3908
|
permalink?: string | null;
|
|
3328
|
-
thumbnail?: string;
|
|
3909
|
+
thumbnail?: string | null;
|
|
3329
3910
|
} | null;
|
|
3330
3911
|
REDDIT?: {
|
|
3331
3912
|
id?: string | null;
|
|
@@ -3356,6 +3937,29 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3356
3937
|
id?: string | null;
|
|
3357
3938
|
permalink?: string | null;
|
|
3358
3939
|
} | null;
|
|
3940
|
+
BLUESKY?: {
|
|
3941
|
+
id?: string | null;
|
|
3942
|
+
uri?: string | null;
|
|
3943
|
+
/**
|
|
3944
|
+
* Content ID of the created record
|
|
3945
|
+
*/
|
|
3946
|
+
cid?: string | null;
|
|
3947
|
+
permalink?: string | null;
|
|
3948
|
+
/**
|
|
3949
|
+
* Author DID (owner of the record)
|
|
3950
|
+
*/
|
|
3951
|
+
did?: string | null;
|
|
3952
|
+
} | null;
|
|
3953
|
+
GOOGLE_BUSINESS?: {
|
|
3954
|
+
/**
|
|
3955
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
3956
|
+
*/
|
|
3957
|
+
id?: string | null;
|
|
3958
|
+
/**
|
|
3959
|
+
* Public link to the post (searchUrl) when available.
|
|
3960
|
+
*/
|
|
3961
|
+
permalink?: string | null;
|
|
3962
|
+
} | null;
|
|
3359
3963
|
} | null;
|
|
3360
3964
|
createdAt: string | null;
|
|
3361
3965
|
updatedAt: string | null;
|
|
@@ -3380,13 +3984,13 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3380
3984
|
}>;
|
|
3381
3985
|
};
|
|
3382
3986
|
type AnalyticsGetSocialAccountAnalyticsRawData = {
|
|
3383
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
|
|
3987
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3384
3988
|
teamId: string;
|
|
3385
3989
|
};
|
|
3386
3990
|
type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
3387
3991
|
socialAccount: {
|
|
3388
3992
|
id: string;
|
|
3389
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
3993
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3390
3994
|
teamId: string;
|
|
3391
3995
|
username?: string | null;
|
|
3392
3996
|
displayName?: string | null;
|
|
@@ -3424,7 +4028,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
|
3424
4028
|
}>;
|
|
3425
4029
|
};
|
|
3426
4030
|
type AnalyticsGetPostAnalyticsRawData = {
|
|
3427
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
|
|
4031
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3428
4032
|
postId: string;
|
|
3429
4033
|
};
|
|
3430
4034
|
type AnalyticsGetPostAnalyticsRawResponse = {
|
|
@@ -3611,36 +4215,92 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3611
4215
|
text?: string | null;
|
|
3612
4216
|
uploadIds?: Array<(string)> | null;
|
|
3613
4217
|
/**
|
|
3614
|
-
* The username to display as the author of the message.
|
|
4218
|
+
* The username to display as the author of the message.
|
|
4219
|
+
*/
|
|
4220
|
+
username?: string | null;
|
|
4221
|
+
/**
|
|
4222
|
+
* Avatar url to display as the author of the message.
|
|
4223
|
+
*/
|
|
4224
|
+
avatarUrl?: string | null;
|
|
4225
|
+
} | null;
|
|
4226
|
+
SLACK?: {
|
|
4227
|
+
channelId: string;
|
|
4228
|
+
text?: string | null;
|
|
4229
|
+
uploadIds?: Array<(string)> | null;
|
|
4230
|
+
/**
|
|
4231
|
+
* The username to display as the author of the message.
|
|
4232
|
+
*/
|
|
4233
|
+
username?: string | null;
|
|
4234
|
+
/**
|
|
4235
|
+
* Avatar url to display as the author of the message.
|
|
4236
|
+
*/
|
|
4237
|
+
avatarUrl?: string | null;
|
|
4238
|
+
} | null;
|
|
4239
|
+
MASTODON?: {
|
|
4240
|
+
text?: string | null;
|
|
4241
|
+
uploadIds?: Array<(string)> | null;
|
|
4242
|
+
/**
|
|
4243
|
+
* The URL to image uploaded on bundle.social.
|
|
4244
|
+
*/
|
|
4245
|
+
thumbnail?: string | null;
|
|
4246
|
+
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
4247
|
+
spoiler?: string | null;
|
|
4248
|
+
} | null;
|
|
4249
|
+
BLUESKY?: {
|
|
4250
|
+
text?: string | null;
|
|
4251
|
+
uploadIds?: Array<(string)> | null;
|
|
4252
|
+
/**
|
|
4253
|
+
* Extra hashtags (without #), up to 8.
|
|
4254
|
+
*/
|
|
4255
|
+
tags?: Array<(string)> | null;
|
|
4256
|
+
/**
|
|
4257
|
+
* Self-labels (content warnings) applied to the post.
|
|
4258
|
+
*/
|
|
4259
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
4260
|
+
/**
|
|
4261
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
4262
|
+
*/
|
|
4263
|
+
quoteUri?: string;
|
|
4264
|
+
/**
|
|
4265
|
+
* Target URL for the external link card
|
|
3615
4266
|
*/
|
|
3616
|
-
|
|
4267
|
+
externalUrl?: string | null;
|
|
3617
4268
|
/**
|
|
3618
|
-
*
|
|
4269
|
+
* Card title for the external link card
|
|
3619
4270
|
*/
|
|
3620
|
-
|
|
3621
|
-
} | null;
|
|
3622
|
-
SLACK?: {
|
|
3623
|
-
channelId: string;
|
|
3624
|
-
text?: string | null;
|
|
3625
|
-
uploadIds?: Array<(string)> | null;
|
|
4271
|
+
externalTitle?: string | null;
|
|
3626
4272
|
/**
|
|
3627
|
-
*
|
|
4273
|
+
* Card description for the external link card
|
|
3628
4274
|
*/
|
|
3629
|
-
|
|
4275
|
+
externalDescription?: string | null;
|
|
3630
4276
|
/**
|
|
3631
|
-
*
|
|
4277
|
+
* Alt text for the video embed.
|
|
3632
4278
|
*/
|
|
3633
|
-
|
|
4279
|
+
videoAlt?: string | null;
|
|
3634
4280
|
} | null;
|
|
3635
|
-
|
|
4281
|
+
GOOGLE_BUSINESS?: {
|
|
3636
4282
|
text?: string | null;
|
|
4283
|
+
/**
|
|
4284
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
4285
|
+
*/
|
|
3637
4286
|
uploadIds?: Array<(string)> | null;
|
|
4287
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
3638
4288
|
/**
|
|
3639
|
-
*
|
|
4289
|
+
* Language tag like 'en' or 'en-US'.
|
|
3640
4290
|
*/
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
4291
|
+
languageCode?: string | null;
|
|
4292
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
4293
|
+
callToActionUrl?: string | null;
|
|
4294
|
+
eventTitle?: string | null;
|
|
4295
|
+
eventStartDate?: string | null;
|
|
4296
|
+
eventEndDate?: string | null;
|
|
4297
|
+
offerCouponCode?: string | null;
|
|
4298
|
+
offerRedeemOnlineUrl?: string | null;
|
|
4299
|
+
offerTermsConditions?: string | null;
|
|
4300
|
+
/**
|
|
4301
|
+
* Alert type for ALERT posts.
|
|
4302
|
+
*/
|
|
4303
|
+
alertType?: 'COVID_19' | null;
|
|
3644
4304
|
} | null;
|
|
3645
4305
|
};
|
|
3646
4306
|
error?: string | null;
|
|
@@ -3657,6 +4317,8 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3657
4317
|
YOUTUBE?: string | null;
|
|
3658
4318
|
MASTODON?: string | null;
|
|
3659
4319
|
THREADS?: string | null;
|
|
4320
|
+
BLUESKY?: string | null;
|
|
4321
|
+
GOOGLE_BUSINESS?: string | null;
|
|
3660
4322
|
} | null;
|
|
3661
4323
|
externalData?: {
|
|
3662
4324
|
TWITTER?: {
|
|
@@ -3673,12 +4335,12 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3673
4335
|
postId?: string | null;
|
|
3674
4336
|
videoId?: string | null;
|
|
3675
4337
|
permalink?: string | null;
|
|
3676
|
-
thumbnail?: string;
|
|
4338
|
+
thumbnail?: string | null;
|
|
3677
4339
|
} | null;
|
|
3678
4340
|
INSTAGRAM?: {
|
|
3679
4341
|
id?: string | null;
|
|
3680
4342
|
permalink?: string | null;
|
|
3681
|
-
thumbnail?: string;
|
|
4343
|
+
thumbnail?: string | null;
|
|
3682
4344
|
} | null;
|
|
3683
4345
|
TIKTOK?: {
|
|
3684
4346
|
id?: string | null;
|
|
@@ -3688,7 +4350,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3688
4350
|
id?: string | null;
|
|
3689
4351
|
activity?: string | null;
|
|
3690
4352
|
permalink?: string | null;
|
|
3691
|
-
thumbnail?: string;
|
|
4353
|
+
thumbnail?: string | null;
|
|
3692
4354
|
} | null;
|
|
3693
4355
|
REDDIT?: {
|
|
3694
4356
|
id?: string | null;
|
|
@@ -3719,6 +4381,29 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3719
4381
|
id?: string | null;
|
|
3720
4382
|
permalink?: string | null;
|
|
3721
4383
|
} | null;
|
|
4384
|
+
BLUESKY?: {
|
|
4385
|
+
id?: string | null;
|
|
4386
|
+
uri?: string | null;
|
|
4387
|
+
/**
|
|
4388
|
+
* Content ID of the created record
|
|
4389
|
+
*/
|
|
4390
|
+
cid?: string | null;
|
|
4391
|
+
permalink?: string | null;
|
|
4392
|
+
/**
|
|
4393
|
+
* Author DID (owner of the record)
|
|
4394
|
+
*/
|
|
4395
|
+
did?: string | null;
|
|
4396
|
+
} | null;
|
|
4397
|
+
GOOGLE_BUSINESS?: {
|
|
4398
|
+
/**
|
|
4399
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
4400
|
+
*/
|
|
4401
|
+
id?: string | null;
|
|
4402
|
+
/**
|
|
4403
|
+
* Public link to the post (searchUrl) when available.
|
|
4404
|
+
*/
|
|
4405
|
+
permalink?: string | null;
|
|
4406
|
+
} | null;
|
|
3722
4407
|
} | null;
|
|
3723
4408
|
createdAt: string | null;
|
|
3724
4409
|
updatedAt: string | null;
|
|
@@ -3790,6 +4475,9 @@ type CommentGetResponse = {
|
|
|
3790
4475
|
SLACK?: {
|
|
3791
4476
|
text?: string | null;
|
|
3792
4477
|
} | null;
|
|
4478
|
+
BLUESKY?: {
|
|
4479
|
+
text?: string | null;
|
|
4480
|
+
} | null;
|
|
3793
4481
|
};
|
|
3794
4482
|
error?: string | null;
|
|
3795
4483
|
errors?: {
|
|
@@ -3803,6 +4491,7 @@ type CommentGetResponse = {
|
|
|
3803
4491
|
THREADS?: string | null;
|
|
3804
4492
|
DISCORD?: string | null;
|
|
3805
4493
|
SLACK?: string | null;
|
|
4494
|
+
BLUESKY?: string | null;
|
|
3806
4495
|
} | null;
|
|
3807
4496
|
externalData?: {
|
|
3808
4497
|
FACEBOOK?: {
|
|
@@ -3846,6 +4535,19 @@ type CommentGetResponse = {
|
|
|
3846
4535
|
id?: string | null;
|
|
3847
4536
|
permalink?: string | null;
|
|
3848
4537
|
} | null;
|
|
4538
|
+
BLUESKY?: {
|
|
4539
|
+
id?: string | null;
|
|
4540
|
+
uri?: string | null;
|
|
4541
|
+
/**
|
|
4542
|
+
* Content ID of the created record
|
|
4543
|
+
*/
|
|
4544
|
+
cid?: string | null;
|
|
4545
|
+
permalink?: string | null;
|
|
4546
|
+
/**
|
|
4547
|
+
* Author DID (owner of the record)
|
|
4548
|
+
*/
|
|
4549
|
+
did?: string | null;
|
|
4550
|
+
} | null;
|
|
3849
4551
|
} | null;
|
|
3850
4552
|
createdAt: string | null;
|
|
3851
4553
|
updatedAt: string | null;
|
|
@@ -3862,7 +4564,7 @@ type CommentUpdateData = {
|
|
|
3862
4564
|
internalParentCommentId?: string | null;
|
|
3863
4565
|
postDate?: string;
|
|
3864
4566
|
status?: 'DRAFT' | 'SCHEDULED';
|
|
3865
|
-
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
4567
|
+
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY')>;
|
|
3866
4568
|
data?: {
|
|
3867
4569
|
FACEBOOK?: {
|
|
3868
4570
|
text?: string | null;
|
|
@@ -3894,6 +4596,9 @@ type CommentUpdateData = {
|
|
|
3894
4596
|
SLACK?: {
|
|
3895
4597
|
text?: string | null;
|
|
3896
4598
|
} | null;
|
|
4599
|
+
BLUESKY?: {
|
|
4600
|
+
text?: string | null;
|
|
4601
|
+
} | null;
|
|
3897
4602
|
};
|
|
3898
4603
|
};
|
|
3899
4604
|
};
|
|
@@ -3938,6 +4643,9 @@ type CommentUpdateResponse = {
|
|
|
3938
4643
|
SLACK?: {
|
|
3939
4644
|
text?: string | null;
|
|
3940
4645
|
} | null;
|
|
4646
|
+
BLUESKY?: {
|
|
4647
|
+
text?: string | null;
|
|
4648
|
+
} | null;
|
|
3941
4649
|
};
|
|
3942
4650
|
error?: string | null;
|
|
3943
4651
|
errors?: {
|
|
@@ -3951,6 +4659,7 @@ type CommentUpdateResponse = {
|
|
|
3951
4659
|
THREADS?: string | null;
|
|
3952
4660
|
DISCORD?: string | null;
|
|
3953
4661
|
SLACK?: string | null;
|
|
4662
|
+
BLUESKY?: string | null;
|
|
3954
4663
|
} | null;
|
|
3955
4664
|
externalData?: {
|
|
3956
4665
|
FACEBOOK?: {
|
|
@@ -3994,6 +4703,19 @@ type CommentUpdateResponse = {
|
|
|
3994
4703
|
id?: string | null;
|
|
3995
4704
|
permalink?: string | null;
|
|
3996
4705
|
} | null;
|
|
4706
|
+
BLUESKY?: {
|
|
4707
|
+
id?: string | null;
|
|
4708
|
+
uri?: string | null;
|
|
4709
|
+
/**
|
|
4710
|
+
* Content ID of the created record
|
|
4711
|
+
*/
|
|
4712
|
+
cid?: string | null;
|
|
4713
|
+
permalink?: string | null;
|
|
4714
|
+
/**
|
|
4715
|
+
* Author DID (owner of the record)
|
|
4716
|
+
*/
|
|
4717
|
+
did?: string | null;
|
|
4718
|
+
} | null;
|
|
3997
4719
|
} | null;
|
|
3998
4720
|
createdAt: string | null;
|
|
3999
4721
|
updatedAt: string | null;
|
|
@@ -4043,6 +4765,9 @@ type CommentDeleteResponse = {
|
|
|
4043
4765
|
SLACK?: {
|
|
4044
4766
|
text?: string | null;
|
|
4045
4767
|
} | null;
|
|
4768
|
+
BLUESKY?: {
|
|
4769
|
+
text?: string | null;
|
|
4770
|
+
} | null;
|
|
4046
4771
|
};
|
|
4047
4772
|
error?: string | null;
|
|
4048
4773
|
errors?: {
|
|
@@ -4056,6 +4781,7 @@ type CommentDeleteResponse = {
|
|
|
4056
4781
|
THREADS?: string | null;
|
|
4057
4782
|
DISCORD?: string | null;
|
|
4058
4783
|
SLACK?: string | null;
|
|
4784
|
+
BLUESKY?: string | null;
|
|
4059
4785
|
} | null;
|
|
4060
4786
|
externalData?: {
|
|
4061
4787
|
FACEBOOK?: {
|
|
@@ -4099,6 +4825,19 @@ type CommentDeleteResponse = {
|
|
|
4099
4825
|
id?: string | null;
|
|
4100
4826
|
permalink?: string | null;
|
|
4101
4827
|
} | null;
|
|
4828
|
+
BLUESKY?: {
|
|
4829
|
+
id?: string | null;
|
|
4830
|
+
uri?: string | null;
|
|
4831
|
+
/**
|
|
4832
|
+
* Content ID of the created record
|
|
4833
|
+
*/
|
|
4834
|
+
cid?: string | null;
|
|
4835
|
+
permalink?: string | null;
|
|
4836
|
+
/**
|
|
4837
|
+
* Author DID (owner of the record)
|
|
4838
|
+
*/
|
|
4839
|
+
did?: string | null;
|
|
4840
|
+
} | null;
|
|
4102
4841
|
} | null;
|
|
4103
4842
|
createdAt: string | null;
|
|
4104
4843
|
updatedAt: string | null;
|
|
@@ -4109,7 +4848,7 @@ type CommentGetListData = {
|
|
|
4109
4848
|
offset?: number | null;
|
|
4110
4849
|
order?: 'ASC' | 'DESC';
|
|
4111
4850
|
orderBy?: 'createdAt' | 'updatedAt' | 'deletedAt';
|
|
4112
|
-
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
4851
|
+
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY')>;
|
|
4113
4852
|
postId?: string;
|
|
4114
4853
|
q?: string;
|
|
4115
4854
|
status?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
|
|
@@ -4157,6 +4896,9 @@ type CommentGetListResponse = {
|
|
|
4157
4896
|
SLACK?: {
|
|
4158
4897
|
text?: string | null;
|
|
4159
4898
|
} | null;
|
|
4899
|
+
BLUESKY?: {
|
|
4900
|
+
text?: string | null;
|
|
4901
|
+
} | null;
|
|
4160
4902
|
};
|
|
4161
4903
|
error?: string | null;
|
|
4162
4904
|
errors?: {
|
|
@@ -4170,6 +4912,7 @@ type CommentGetListResponse = {
|
|
|
4170
4912
|
THREADS?: string | null;
|
|
4171
4913
|
DISCORD?: string | null;
|
|
4172
4914
|
SLACK?: string | null;
|
|
4915
|
+
BLUESKY?: string | null;
|
|
4173
4916
|
} | null;
|
|
4174
4917
|
externalData?: {
|
|
4175
4918
|
FACEBOOK?: {
|
|
@@ -4213,6 +4956,19 @@ type CommentGetListResponse = {
|
|
|
4213
4956
|
id?: string | null;
|
|
4214
4957
|
permalink?: string | null;
|
|
4215
4958
|
} | null;
|
|
4959
|
+
BLUESKY?: {
|
|
4960
|
+
id?: string | null;
|
|
4961
|
+
uri?: string | null;
|
|
4962
|
+
/**
|
|
4963
|
+
* Content ID of the created record
|
|
4964
|
+
*/
|
|
4965
|
+
cid?: string | null;
|
|
4966
|
+
permalink?: string | null;
|
|
4967
|
+
/**
|
|
4968
|
+
* Author DID (owner of the record)
|
|
4969
|
+
*/
|
|
4970
|
+
did?: string | null;
|
|
4971
|
+
} | null;
|
|
4216
4972
|
} | null;
|
|
4217
4973
|
createdAt: string | null;
|
|
4218
4974
|
updatedAt: string | null;
|
|
@@ -4231,7 +4987,7 @@ type CommentCreateData = {
|
|
|
4231
4987
|
internalParentCommentId?: string | null;
|
|
4232
4988
|
postDate: string;
|
|
4233
4989
|
status: 'DRAFT' | 'SCHEDULED';
|
|
4234
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
4990
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY')>;
|
|
4235
4991
|
data: {
|
|
4236
4992
|
FACEBOOK?: {
|
|
4237
4993
|
text?: string | null;
|
|
@@ -4263,6 +5019,9 @@ type CommentCreateData = {
|
|
|
4263
5019
|
SLACK?: {
|
|
4264
5020
|
text?: string | null;
|
|
4265
5021
|
} | null;
|
|
5022
|
+
BLUESKY?: {
|
|
5023
|
+
text?: string | null;
|
|
5024
|
+
} | null;
|
|
4266
5025
|
};
|
|
4267
5026
|
};
|
|
4268
5027
|
};
|
|
@@ -4307,6 +5066,9 @@ type CommentCreateResponse = {
|
|
|
4307
5066
|
SLACK?: {
|
|
4308
5067
|
text?: string | null;
|
|
4309
5068
|
} | null;
|
|
5069
|
+
BLUESKY?: {
|
|
5070
|
+
text?: string | null;
|
|
5071
|
+
} | null;
|
|
4310
5072
|
};
|
|
4311
5073
|
error?: string | null;
|
|
4312
5074
|
errors?: {
|
|
@@ -4320,6 +5082,7 @@ type CommentCreateResponse = {
|
|
|
4320
5082
|
THREADS?: string | null;
|
|
4321
5083
|
DISCORD?: string | null;
|
|
4322
5084
|
SLACK?: string | null;
|
|
5085
|
+
BLUESKY?: string | null;
|
|
4323
5086
|
} | null;
|
|
4324
5087
|
externalData?: {
|
|
4325
5088
|
FACEBOOK?: {
|
|
@@ -4363,6 +5126,19 @@ type CommentCreateResponse = {
|
|
|
4363
5126
|
id?: string | null;
|
|
4364
5127
|
permalink?: string | null;
|
|
4365
5128
|
} | null;
|
|
5129
|
+
BLUESKY?: {
|
|
5130
|
+
id?: string | null;
|
|
5131
|
+
uri?: string | null;
|
|
5132
|
+
/**
|
|
5133
|
+
* Content ID of the created record
|
|
5134
|
+
*/
|
|
5135
|
+
cid?: string | null;
|
|
5136
|
+
permalink?: string | null;
|
|
5137
|
+
/**
|
|
5138
|
+
* Author DID (owner of the record)
|
|
5139
|
+
*/
|
|
5140
|
+
did?: string | null;
|
|
5141
|
+
} | null;
|
|
4366
5142
|
} | null;
|
|
4367
5143
|
createdAt: string | null;
|
|
4368
5144
|
updatedAt: string | null;
|
|
@@ -4780,6 +5556,26 @@ type MiscLinkedinBuildCommentaryData = {
|
|
|
4780
5556
|
type MiscLinkedinBuildCommentaryResponse = {
|
|
4781
5557
|
commentary: string;
|
|
4782
5558
|
};
|
|
5559
|
+
type MiscGoogleBusinessAddMediaData = {
|
|
5560
|
+
/**
|
|
5561
|
+
* Body
|
|
5562
|
+
*/
|
|
5563
|
+
requestBody?: {
|
|
5564
|
+
teamId: string;
|
|
5565
|
+
uploadId: string;
|
|
5566
|
+
category?: 'CATEGORY_UNSPECIFIED' | 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'PRODUCT' | 'AT_WORK' | 'FOOD_AND_DRINK' | 'MENU' | 'COMMON_AREA' | 'ROOMS' | 'TEAMS' | 'ADDITIONAL';
|
|
5567
|
+
description?: string;
|
|
5568
|
+
};
|
|
5569
|
+
};
|
|
5570
|
+
type MiscGoogleBusinessAddMediaResponse = {
|
|
5571
|
+
name?: string;
|
|
5572
|
+
googleUrl?: string;
|
|
5573
|
+
locationAssociation?: {
|
|
5574
|
+
category?: 'CATEGORY_UNSPECIFIED' | 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'PRODUCT' | 'AT_WORK' | 'FOOD_AND_DRINK' | 'MENU' | 'COMMON_AREA' | 'ROOMS' | 'TEAMS' | 'ADDITIONAL';
|
|
5575
|
+
priceListItemId?: string;
|
|
5576
|
+
};
|
|
5577
|
+
description?: string;
|
|
5578
|
+
};
|
|
4783
5579
|
type $OpenApiTs = {
|
|
4784
5580
|
'/api/v1/': {
|
|
4785
5581
|
get: {
|
|
@@ -4860,6 +5656,8 @@ type $OpenApiTs = {
|
|
|
4860
5656
|
DISCORD?: number;
|
|
4861
5657
|
SLACK?: number;
|
|
4862
5658
|
MASTODON?: number;
|
|
5659
|
+
BLUESKY?: number;
|
|
5660
|
+
GOOGLE_BUSINESS?: number;
|
|
4863
5661
|
} | null;
|
|
4864
5662
|
apiAccess?: boolean;
|
|
4865
5663
|
analyticsDisabled?: boolean;
|
|
@@ -5076,6 +5874,8 @@ type $OpenApiTs = {
|
|
|
5076
5874
|
DISCORD?: number;
|
|
5077
5875
|
SLACK?: number;
|
|
5078
5876
|
MASTODON?: number;
|
|
5877
|
+
BLUESKY?: number;
|
|
5878
|
+
GOOGLE_BUSINESS?: number;
|
|
5079
5879
|
} | null;
|
|
5080
5880
|
apiAccess?: boolean;
|
|
5081
5881
|
analyticsDisabled?: boolean;
|
|
@@ -5108,7 +5908,7 @@ type $OpenApiTs = {
|
|
|
5108
5908
|
}>;
|
|
5109
5909
|
socialAccounts: Array<{
|
|
5110
5910
|
id: string;
|
|
5111
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
5911
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5112
5912
|
teamId: string;
|
|
5113
5913
|
username?: string | null;
|
|
5114
5914
|
displayName?: string | null;
|
|
@@ -5369,6 +6169,8 @@ type $OpenApiTs = {
|
|
|
5369
6169
|
DISCORD?: number;
|
|
5370
6170
|
SLACK?: number;
|
|
5371
6171
|
MASTODON?: number;
|
|
6172
|
+
BLUESKY?: number;
|
|
6173
|
+
GOOGLE_BUSINESS?: number;
|
|
5372
6174
|
} | null;
|
|
5373
6175
|
apiAccess?: boolean;
|
|
5374
6176
|
analyticsDisabled?: boolean;
|
|
@@ -5401,7 +6203,7 @@ type $OpenApiTs = {
|
|
|
5401
6203
|
}>;
|
|
5402
6204
|
socialAccounts: Array<{
|
|
5403
6205
|
id: string;
|
|
5404
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
6206
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5405
6207
|
teamId: string;
|
|
5406
6208
|
username?: string | null;
|
|
5407
6209
|
displayName?: string | null;
|
|
@@ -5634,7 +6436,7 @@ type $OpenApiTs = {
|
|
|
5634
6436
|
*/
|
|
5635
6437
|
200: {
|
|
5636
6438
|
id: string;
|
|
5637
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
6439
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5638
6440
|
teamId: string;
|
|
5639
6441
|
username?: string | null;
|
|
5640
6442
|
displayName?: string | null;
|
|
@@ -5713,7 +6515,7 @@ type $OpenApiTs = {
|
|
|
5713
6515
|
*/
|
|
5714
6516
|
200: {
|
|
5715
6517
|
id: string;
|
|
5716
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
6518
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5717
6519
|
teamId: string;
|
|
5718
6520
|
username?: string | null;
|
|
5719
6521
|
displayName?: string | null;
|
|
@@ -5792,7 +6594,7 @@ type $OpenApiTs = {
|
|
|
5792
6594
|
*/
|
|
5793
6595
|
200: {
|
|
5794
6596
|
id: string;
|
|
5795
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
6597
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5796
6598
|
teamId: string;
|
|
5797
6599
|
username?: string | null;
|
|
5798
6600
|
displayName?: string | null;
|
|
@@ -5924,7 +6726,7 @@ type $OpenApiTs = {
|
|
|
5924
6726
|
*/
|
|
5925
6727
|
200: Array<{
|
|
5926
6728
|
id: string;
|
|
5927
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
6729
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5928
6730
|
teamId: string;
|
|
5929
6731
|
username?: string | null;
|
|
5930
6732
|
displayName?: string | null;
|
|
@@ -6703,6 +7505,62 @@ type $OpenApiTs = {
|
|
|
6703
7505
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
6704
7506
|
spoiler?: string | null;
|
|
6705
7507
|
} | null;
|
|
7508
|
+
BLUESKY?: {
|
|
7509
|
+
text?: string | null;
|
|
7510
|
+
uploadIds?: Array<(string)> | null;
|
|
7511
|
+
/**
|
|
7512
|
+
* Extra hashtags (without #), up to 8.
|
|
7513
|
+
*/
|
|
7514
|
+
tags?: Array<(string)> | null;
|
|
7515
|
+
/**
|
|
7516
|
+
* Self-labels (content warnings) applied to the post.
|
|
7517
|
+
*/
|
|
7518
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
7519
|
+
/**
|
|
7520
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
7521
|
+
*/
|
|
7522
|
+
quoteUri?: string;
|
|
7523
|
+
/**
|
|
7524
|
+
* Target URL for the external link card
|
|
7525
|
+
*/
|
|
7526
|
+
externalUrl?: string | null;
|
|
7527
|
+
/**
|
|
7528
|
+
* Card title for the external link card
|
|
7529
|
+
*/
|
|
7530
|
+
externalTitle?: string | null;
|
|
7531
|
+
/**
|
|
7532
|
+
* Card description for the external link card
|
|
7533
|
+
*/
|
|
7534
|
+
externalDescription?: string | null;
|
|
7535
|
+
/**
|
|
7536
|
+
* Alt text for the video embed.
|
|
7537
|
+
*/
|
|
7538
|
+
videoAlt?: string | null;
|
|
7539
|
+
} | null;
|
|
7540
|
+
GOOGLE_BUSINESS?: {
|
|
7541
|
+
text?: string | null;
|
|
7542
|
+
/**
|
|
7543
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
7544
|
+
*/
|
|
7545
|
+
uploadIds?: Array<(string)> | null;
|
|
7546
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
7547
|
+
/**
|
|
7548
|
+
* Language tag like 'en' or 'en-US'.
|
|
7549
|
+
*/
|
|
7550
|
+
languageCode?: string | null;
|
|
7551
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
7552
|
+
callToActionUrl?: string | null;
|
|
7553
|
+
eventTitle?: string | null;
|
|
7554
|
+
eventStartDate?: string | null;
|
|
7555
|
+
eventEndDate?: string | null;
|
|
7556
|
+
offerCouponCode?: string | null;
|
|
7557
|
+
offerRedeemOnlineUrl?: string | null;
|
|
7558
|
+
offerTermsConditions?: string | null;
|
|
7559
|
+
/**
|
|
7560
|
+
* Alert type for ALERT posts.
|
|
7561
|
+
*/
|
|
7562
|
+
alertType?: 'COVID_19' | null;
|
|
7563
|
+
} | null;
|
|
6706
7564
|
};
|
|
6707
7565
|
error?: string | null;
|
|
6708
7566
|
errors?: {
|
|
@@ -6718,6 +7576,8 @@ type $OpenApiTs = {
|
|
|
6718
7576
|
YOUTUBE?: string | null;
|
|
6719
7577
|
MASTODON?: string | null;
|
|
6720
7578
|
THREADS?: string | null;
|
|
7579
|
+
BLUESKY?: string | null;
|
|
7580
|
+
GOOGLE_BUSINESS?: string | null;
|
|
6721
7581
|
} | null;
|
|
6722
7582
|
externalData?: {
|
|
6723
7583
|
TWITTER?: {
|
|
@@ -6734,12 +7594,12 @@ type $OpenApiTs = {
|
|
|
6734
7594
|
postId?: string | null;
|
|
6735
7595
|
videoId?: string | null;
|
|
6736
7596
|
permalink?: string | null;
|
|
6737
|
-
thumbnail?: string;
|
|
7597
|
+
thumbnail?: string | null;
|
|
6738
7598
|
} | null;
|
|
6739
7599
|
INSTAGRAM?: {
|
|
6740
7600
|
id?: string | null;
|
|
6741
7601
|
permalink?: string | null;
|
|
6742
|
-
thumbnail?: string;
|
|
7602
|
+
thumbnail?: string | null;
|
|
6743
7603
|
} | null;
|
|
6744
7604
|
TIKTOK?: {
|
|
6745
7605
|
id?: string | null;
|
|
@@ -6749,7 +7609,7 @@ type $OpenApiTs = {
|
|
|
6749
7609
|
id?: string | null;
|
|
6750
7610
|
activity?: string | null;
|
|
6751
7611
|
permalink?: string | null;
|
|
6752
|
-
thumbnail?: string;
|
|
7612
|
+
thumbnail?: string | null;
|
|
6753
7613
|
} | null;
|
|
6754
7614
|
REDDIT?: {
|
|
6755
7615
|
id?: string | null;
|
|
@@ -6780,6 +7640,29 @@ type $OpenApiTs = {
|
|
|
6780
7640
|
id?: string | null;
|
|
6781
7641
|
permalink?: string | null;
|
|
6782
7642
|
} | null;
|
|
7643
|
+
BLUESKY?: {
|
|
7644
|
+
id?: string | null;
|
|
7645
|
+
uri?: string | null;
|
|
7646
|
+
/**
|
|
7647
|
+
* Content ID of the created record
|
|
7648
|
+
*/
|
|
7649
|
+
cid?: string | null;
|
|
7650
|
+
permalink?: string | null;
|
|
7651
|
+
/**
|
|
7652
|
+
* Author DID (owner of the record)
|
|
7653
|
+
*/
|
|
7654
|
+
did?: string | null;
|
|
7655
|
+
} | null;
|
|
7656
|
+
GOOGLE_BUSINESS?: {
|
|
7657
|
+
/**
|
|
7658
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
7659
|
+
*/
|
|
7660
|
+
id?: string | null;
|
|
7661
|
+
/**
|
|
7662
|
+
* Public link to the post (searchUrl) when available.
|
|
7663
|
+
*/
|
|
7664
|
+
permalink?: string | null;
|
|
7665
|
+
} | null;
|
|
6783
7666
|
} | null;
|
|
6784
7667
|
createdAt: string | null;
|
|
6785
7668
|
updatedAt: string | null;
|
|
@@ -6820,7 +7703,7 @@ type $OpenApiTs = {
|
|
|
6820
7703
|
deletedAt?: string | null;
|
|
6821
7704
|
socialAccount: {
|
|
6822
7705
|
id: string;
|
|
6823
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
7706
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
6824
7707
|
teamId: string;
|
|
6825
7708
|
username?: string | null;
|
|
6826
7709
|
displayName?: string | null;
|
|
@@ -7111,6 +7994,62 @@ type $OpenApiTs = {
|
|
|
7111
7994
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
7112
7995
|
spoiler?: string | null;
|
|
7113
7996
|
} | null;
|
|
7997
|
+
BLUESKY?: {
|
|
7998
|
+
text?: string | null;
|
|
7999
|
+
uploadIds?: Array<(string)> | null;
|
|
8000
|
+
/**
|
|
8001
|
+
* Extra hashtags (without #), up to 8.
|
|
8002
|
+
*/
|
|
8003
|
+
tags?: Array<(string)> | null;
|
|
8004
|
+
/**
|
|
8005
|
+
* Self-labels (content warnings) applied to the post.
|
|
8006
|
+
*/
|
|
8007
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
8008
|
+
/**
|
|
8009
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
8010
|
+
*/
|
|
8011
|
+
quoteUri?: string;
|
|
8012
|
+
/**
|
|
8013
|
+
* Target URL for the external link card
|
|
8014
|
+
*/
|
|
8015
|
+
externalUrl?: string | null;
|
|
8016
|
+
/**
|
|
8017
|
+
* Card title for the external link card
|
|
8018
|
+
*/
|
|
8019
|
+
externalTitle?: string | null;
|
|
8020
|
+
/**
|
|
8021
|
+
* Card description for the external link card
|
|
8022
|
+
*/
|
|
8023
|
+
externalDescription?: string | null;
|
|
8024
|
+
/**
|
|
8025
|
+
* Alt text for the video embed.
|
|
8026
|
+
*/
|
|
8027
|
+
videoAlt?: string | null;
|
|
8028
|
+
} | null;
|
|
8029
|
+
GOOGLE_BUSINESS?: {
|
|
8030
|
+
text?: string | null;
|
|
8031
|
+
/**
|
|
8032
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
8033
|
+
*/
|
|
8034
|
+
uploadIds?: Array<(string)> | null;
|
|
8035
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
8036
|
+
/**
|
|
8037
|
+
* Language tag like 'en' or 'en-US'.
|
|
8038
|
+
*/
|
|
8039
|
+
languageCode?: string | null;
|
|
8040
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
8041
|
+
callToActionUrl?: string | null;
|
|
8042
|
+
eventTitle?: string | null;
|
|
8043
|
+
eventStartDate?: string | null;
|
|
8044
|
+
eventEndDate?: string | null;
|
|
8045
|
+
offerCouponCode?: string | null;
|
|
8046
|
+
offerRedeemOnlineUrl?: string | null;
|
|
8047
|
+
offerTermsConditions?: string | null;
|
|
8048
|
+
/**
|
|
8049
|
+
* Alert type for ALERT posts.
|
|
8050
|
+
*/
|
|
8051
|
+
alertType?: 'COVID_19' | null;
|
|
8052
|
+
} | null;
|
|
7114
8053
|
};
|
|
7115
8054
|
error?: string | null;
|
|
7116
8055
|
errors?: {
|
|
@@ -7126,6 +8065,8 @@ type $OpenApiTs = {
|
|
|
7126
8065
|
YOUTUBE?: string | null;
|
|
7127
8066
|
MASTODON?: string | null;
|
|
7128
8067
|
THREADS?: string | null;
|
|
8068
|
+
BLUESKY?: string | null;
|
|
8069
|
+
GOOGLE_BUSINESS?: string | null;
|
|
7129
8070
|
} | null;
|
|
7130
8071
|
externalData?: {
|
|
7131
8072
|
TWITTER?: {
|
|
@@ -7142,12 +8083,12 @@ type $OpenApiTs = {
|
|
|
7142
8083
|
postId?: string | null;
|
|
7143
8084
|
videoId?: string | null;
|
|
7144
8085
|
permalink?: string | null;
|
|
7145
|
-
thumbnail?: string;
|
|
8086
|
+
thumbnail?: string | null;
|
|
7146
8087
|
} | null;
|
|
7147
8088
|
INSTAGRAM?: {
|
|
7148
8089
|
id?: string | null;
|
|
7149
8090
|
permalink?: string | null;
|
|
7150
|
-
thumbnail?: string;
|
|
8091
|
+
thumbnail?: string | null;
|
|
7151
8092
|
} | null;
|
|
7152
8093
|
TIKTOK?: {
|
|
7153
8094
|
id?: string | null;
|
|
@@ -7157,7 +8098,7 @@ type $OpenApiTs = {
|
|
|
7157
8098
|
id?: string | null;
|
|
7158
8099
|
activity?: string | null;
|
|
7159
8100
|
permalink?: string | null;
|
|
7160
|
-
thumbnail?: string;
|
|
8101
|
+
thumbnail?: string | null;
|
|
7161
8102
|
} | null;
|
|
7162
8103
|
REDDIT?: {
|
|
7163
8104
|
id?: string | null;
|
|
@@ -7188,6 +8129,29 @@ type $OpenApiTs = {
|
|
|
7188
8129
|
id?: string | null;
|
|
7189
8130
|
permalink?: string | null;
|
|
7190
8131
|
} | null;
|
|
8132
|
+
BLUESKY?: {
|
|
8133
|
+
id?: string | null;
|
|
8134
|
+
uri?: string | null;
|
|
8135
|
+
/**
|
|
8136
|
+
* Content ID of the created record
|
|
8137
|
+
*/
|
|
8138
|
+
cid?: string | null;
|
|
8139
|
+
permalink?: string | null;
|
|
8140
|
+
/**
|
|
8141
|
+
* Author DID (owner of the record)
|
|
8142
|
+
*/
|
|
8143
|
+
did?: string | null;
|
|
8144
|
+
} | null;
|
|
8145
|
+
GOOGLE_BUSINESS?: {
|
|
8146
|
+
/**
|
|
8147
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
8148
|
+
*/
|
|
8149
|
+
id?: string | null;
|
|
8150
|
+
/**
|
|
8151
|
+
* Public link to the post (searchUrl) when available.
|
|
8152
|
+
*/
|
|
8153
|
+
permalink?: string | null;
|
|
8154
|
+
} | null;
|
|
7191
8155
|
} | null;
|
|
7192
8156
|
createdAt: string | null;
|
|
7193
8157
|
updatedAt: string | null;
|
|
@@ -7455,6 +8419,62 @@ type $OpenApiTs = {
|
|
|
7455
8419
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
7456
8420
|
spoiler?: string | null;
|
|
7457
8421
|
} | null;
|
|
8422
|
+
BLUESKY?: {
|
|
8423
|
+
text?: string | null;
|
|
8424
|
+
uploadIds?: Array<(string)> | null;
|
|
8425
|
+
/**
|
|
8426
|
+
* Extra hashtags (without #), up to 8.
|
|
8427
|
+
*/
|
|
8428
|
+
tags?: Array<(string)> | null;
|
|
8429
|
+
/**
|
|
8430
|
+
* Self-labels (content warnings) applied to the post.
|
|
8431
|
+
*/
|
|
8432
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
8433
|
+
/**
|
|
8434
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
8435
|
+
*/
|
|
8436
|
+
quoteUri?: string;
|
|
8437
|
+
/**
|
|
8438
|
+
* Target URL for the external link card
|
|
8439
|
+
*/
|
|
8440
|
+
externalUrl?: string | null;
|
|
8441
|
+
/**
|
|
8442
|
+
* Card title for the external link card
|
|
8443
|
+
*/
|
|
8444
|
+
externalTitle?: string | null;
|
|
8445
|
+
/**
|
|
8446
|
+
* Card description for the external link card
|
|
8447
|
+
*/
|
|
8448
|
+
externalDescription?: string | null;
|
|
8449
|
+
/**
|
|
8450
|
+
* Alt text for the video embed.
|
|
8451
|
+
*/
|
|
8452
|
+
videoAlt?: string | null;
|
|
8453
|
+
} | null;
|
|
8454
|
+
GOOGLE_BUSINESS?: {
|
|
8455
|
+
text?: string | null;
|
|
8456
|
+
/**
|
|
8457
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
8458
|
+
*/
|
|
8459
|
+
uploadIds?: Array<(string)> | null;
|
|
8460
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
8461
|
+
/**
|
|
8462
|
+
* Language tag like 'en' or 'en-US'.
|
|
8463
|
+
*/
|
|
8464
|
+
languageCode?: string | null;
|
|
8465
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
8466
|
+
callToActionUrl?: string | null;
|
|
8467
|
+
eventTitle?: string | null;
|
|
8468
|
+
eventStartDate?: string | null;
|
|
8469
|
+
eventEndDate?: string | null;
|
|
8470
|
+
offerCouponCode?: string | null;
|
|
8471
|
+
offerRedeemOnlineUrl?: string | null;
|
|
8472
|
+
offerTermsConditions?: string | null;
|
|
8473
|
+
/**
|
|
8474
|
+
* Alert type for ALERT posts.
|
|
8475
|
+
*/
|
|
8476
|
+
alertType?: 'COVID_19' | null;
|
|
8477
|
+
} | null;
|
|
7458
8478
|
};
|
|
7459
8479
|
error?: string | null;
|
|
7460
8480
|
errors?: {
|
|
@@ -7470,6 +8490,8 @@ type $OpenApiTs = {
|
|
|
7470
8490
|
YOUTUBE?: string | null;
|
|
7471
8491
|
MASTODON?: string | null;
|
|
7472
8492
|
THREADS?: string | null;
|
|
8493
|
+
BLUESKY?: string | null;
|
|
8494
|
+
GOOGLE_BUSINESS?: string | null;
|
|
7473
8495
|
} | null;
|
|
7474
8496
|
externalData?: {
|
|
7475
8497
|
TWITTER?: {
|
|
@@ -7486,12 +8508,12 @@ type $OpenApiTs = {
|
|
|
7486
8508
|
postId?: string | null;
|
|
7487
8509
|
videoId?: string | null;
|
|
7488
8510
|
permalink?: string | null;
|
|
7489
|
-
thumbnail?: string;
|
|
8511
|
+
thumbnail?: string | null;
|
|
7490
8512
|
} | null;
|
|
7491
8513
|
INSTAGRAM?: {
|
|
7492
8514
|
id?: string | null;
|
|
7493
8515
|
permalink?: string | null;
|
|
7494
|
-
thumbnail?: string;
|
|
8516
|
+
thumbnail?: string | null;
|
|
7495
8517
|
} | null;
|
|
7496
8518
|
TIKTOK?: {
|
|
7497
8519
|
id?: string | null;
|
|
@@ -7501,7 +8523,7 @@ type $OpenApiTs = {
|
|
|
7501
8523
|
id?: string | null;
|
|
7502
8524
|
activity?: string | null;
|
|
7503
8525
|
permalink?: string | null;
|
|
7504
|
-
thumbnail?: string;
|
|
8526
|
+
thumbnail?: string | null;
|
|
7505
8527
|
} | null;
|
|
7506
8528
|
REDDIT?: {
|
|
7507
8529
|
id?: string | null;
|
|
@@ -7532,6 +8554,29 @@ type $OpenApiTs = {
|
|
|
7532
8554
|
id?: string | null;
|
|
7533
8555
|
permalink?: string | null;
|
|
7534
8556
|
} | null;
|
|
8557
|
+
BLUESKY?: {
|
|
8558
|
+
id?: string | null;
|
|
8559
|
+
uri?: string | null;
|
|
8560
|
+
/**
|
|
8561
|
+
* Content ID of the created record
|
|
8562
|
+
*/
|
|
8563
|
+
cid?: string | null;
|
|
8564
|
+
permalink?: string | null;
|
|
8565
|
+
/**
|
|
8566
|
+
* Author DID (owner of the record)
|
|
8567
|
+
*/
|
|
8568
|
+
did?: string | null;
|
|
8569
|
+
} | null;
|
|
8570
|
+
GOOGLE_BUSINESS?: {
|
|
8571
|
+
/**
|
|
8572
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
8573
|
+
*/
|
|
8574
|
+
id?: string | null;
|
|
8575
|
+
/**
|
|
8576
|
+
* Public link to the post (searchUrl) when available.
|
|
8577
|
+
*/
|
|
8578
|
+
permalink?: string | null;
|
|
8579
|
+
} | null;
|
|
7535
8580
|
} | null;
|
|
7536
8581
|
createdAt: string | null;
|
|
7537
8582
|
updatedAt: string | null;
|
|
@@ -7802,6 +8847,62 @@ type $OpenApiTs = {
|
|
|
7802
8847
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
7803
8848
|
spoiler?: string | null;
|
|
7804
8849
|
} | null;
|
|
8850
|
+
BLUESKY?: {
|
|
8851
|
+
text?: string | null;
|
|
8852
|
+
uploadIds?: Array<(string)> | null;
|
|
8853
|
+
/**
|
|
8854
|
+
* Extra hashtags (without #), up to 8.
|
|
8855
|
+
*/
|
|
8856
|
+
tags?: Array<(string)> | null;
|
|
8857
|
+
/**
|
|
8858
|
+
* Self-labels (content warnings) applied to the post.
|
|
8859
|
+
*/
|
|
8860
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
8861
|
+
/**
|
|
8862
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
8863
|
+
*/
|
|
8864
|
+
quoteUri?: string;
|
|
8865
|
+
/**
|
|
8866
|
+
* Target URL for the external link card
|
|
8867
|
+
*/
|
|
8868
|
+
externalUrl?: string | null;
|
|
8869
|
+
/**
|
|
8870
|
+
* Card title for the external link card
|
|
8871
|
+
*/
|
|
8872
|
+
externalTitle?: string | null;
|
|
8873
|
+
/**
|
|
8874
|
+
* Card description for the external link card
|
|
8875
|
+
*/
|
|
8876
|
+
externalDescription?: string | null;
|
|
8877
|
+
/**
|
|
8878
|
+
* Alt text for the video embed.
|
|
8879
|
+
*/
|
|
8880
|
+
videoAlt?: string | null;
|
|
8881
|
+
} | null;
|
|
8882
|
+
GOOGLE_BUSINESS?: {
|
|
8883
|
+
text?: string | null;
|
|
8884
|
+
/**
|
|
8885
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
8886
|
+
*/
|
|
8887
|
+
uploadIds?: Array<(string)> | null;
|
|
8888
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
8889
|
+
/**
|
|
8890
|
+
* Language tag like 'en' or 'en-US'.
|
|
8891
|
+
*/
|
|
8892
|
+
languageCode?: string | null;
|
|
8893
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
8894
|
+
callToActionUrl?: string | null;
|
|
8895
|
+
eventTitle?: string | null;
|
|
8896
|
+
eventStartDate?: string | null;
|
|
8897
|
+
eventEndDate?: string | null;
|
|
8898
|
+
offerCouponCode?: string | null;
|
|
8899
|
+
offerRedeemOnlineUrl?: string | null;
|
|
8900
|
+
offerTermsConditions?: string | null;
|
|
8901
|
+
/**
|
|
8902
|
+
* Alert type for ALERT posts.
|
|
8903
|
+
*/
|
|
8904
|
+
alertType?: 'COVID_19' | null;
|
|
8905
|
+
} | null;
|
|
7805
8906
|
};
|
|
7806
8907
|
error?: string | null;
|
|
7807
8908
|
errors?: {
|
|
@@ -7817,6 +8918,8 @@ type $OpenApiTs = {
|
|
|
7817
8918
|
YOUTUBE?: string | null;
|
|
7818
8919
|
MASTODON?: string | null;
|
|
7819
8920
|
THREADS?: string | null;
|
|
8921
|
+
BLUESKY?: string | null;
|
|
8922
|
+
GOOGLE_BUSINESS?: string | null;
|
|
7820
8923
|
} | null;
|
|
7821
8924
|
externalData?: {
|
|
7822
8925
|
TWITTER?: {
|
|
@@ -7833,12 +8936,12 @@ type $OpenApiTs = {
|
|
|
7833
8936
|
postId?: string | null;
|
|
7834
8937
|
videoId?: string | null;
|
|
7835
8938
|
permalink?: string | null;
|
|
7836
|
-
thumbnail?: string;
|
|
8939
|
+
thumbnail?: string | null;
|
|
7837
8940
|
} | null;
|
|
7838
8941
|
INSTAGRAM?: {
|
|
7839
8942
|
id?: string | null;
|
|
7840
8943
|
permalink?: string | null;
|
|
7841
|
-
thumbnail?: string;
|
|
8944
|
+
thumbnail?: string | null;
|
|
7842
8945
|
} | null;
|
|
7843
8946
|
TIKTOK?: {
|
|
7844
8947
|
id?: string | null;
|
|
@@ -7848,7 +8951,7 @@ type $OpenApiTs = {
|
|
|
7848
8951
|
id?: string | null;
|
|
7849
8952
|
activity?: string | null;
|
|
7850
8953
|
permalink?: string | null;
|
|
7851
|
-
thumbnail?: string;
|
|
8954
|
+
thumbnail?: string | null;
|
|
7852
8955
|
} | null;
|
|
7853
8956
|
REDDIT?: {
|
|
7854
8957
|
id?: string | null;
|
|
@@ -7879,6 +8982,29 @@ type $OpenApiTs = {
|
|
|
7879
8982
|
id?: string | null;
|
|
7880
8983
|
permalink?: string | null;
|
|
7881
8984
|
} | null;
|
|
8985
|
+
BLUESKY?: {
|
|
8986
|
+
id?: string | null;
|
|
8987
|
+
uri?: string | null;
|
|
8988
|
+
/**
|
|
8989
|
+
* Content ID of the created record
|
|
8990
|
+
*/
|
|
8991
|
+
cid?: string | null;
|
|
8992
|
+
permalink?: string | null;
|
|
8993
|
+
/**
|
|
8994
|
+
* Author DID (owner of the record)
|
|
8995
|
+
*/
|
|
8996
|
+
did?: string | null;
|
|
8997
|
+
} | null;
|
|
8998
|
+
GOOGLE_BUSINESS?: {
|
|
8999
|
+
/**
|
|
9000
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
9001
|
+
*/
|
|
9002
|
+
id?: string | null;
|
|
9003
|
+
/**
|
|
9004
|
+
* Public link to the post (searchUrl) when available.
|
|
9005
|
+
*/
|
|
9006
|
+
permalink?: string | null;
|
|
9007
|
+
} | null;
|
|
7882
9008
|
} | null;
|
|
7883
9009
|
createdAt: string | null;
|
|
7884
9010
|
updatedAt: string | null;
|
|
@@ -7919,7 +9045,7 @@ type $OpenApiTs = {
|
|
|
7919
9045
|
deletedAt?: string | null;
|
|
7920
9046
|
socialAccount: {
|
|
7921
9047
|
id: string;
|
|
7922
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
9048
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
7923
9049
|
teamId: string;
|
|
7924
9050
|
username?: string | null;
|
|
7925
9051
|
displayName?: string | null;
|
|
@@ -8212,6 +9338,62 @@ type $OpenApiTs = {
|
|
|
8212
9338
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
8213
9339
|
spoiler?: string | null;
|
|
8214
9340
|
} | null;
|
|
9341
|
+
BLUESKY?: {
|
|
9342
|
+
text?: string | null;
|
|
9343
|
+
uploadIds?: Array<(string)> | null;
|
|
9344
|
+
/**
|
|
9345
|
+
* Extra hashtags (without #), up to 8.
|
|
9346
|
+
*/
|
|
9347
|
+
tags?: Array<(string)> | null;
|
|
9348
|
+
/**
|
|
9349
|
+
* Self-labels (content warnings) applied to the post.
|
|
9350
|
+
*/
|
|
9351
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
9352
|
+
/**
|
|
9353
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
9354
|
+
*/
|
|
9355
|
+
quoteUri?: string;
|
|
9356
|
+
/**
|
|
9357
|
+
* Target URL for the external link card
|
|
9358
|
+
*/
|
|
9359
|
+
externalUrl?: string | null;
|
|
9360
|
+
/**
|
|
9361
|
+
* Card title for the external link card
|
|
9362
|
+
*/
|
|
9363
|
+
externalTitle?: string | null;
|
|
9364
|
+
/**
|
|
9365
|
+
* Card description for the external link card
|
|
9366
|
+
*/
|
|
9367
|
+
externalDescription?: string | null;
|
|
9368
|
+
/**
|
|
9369
|
+
* Alt text for the video embed.
|
|
9370
|
+
*/
|
|
9371
|
+
videoAlt?: string | null;
|
|
9372
|
+
} | null;
|
|
9373
|
+
GOOGLE_BUSINESS?: {
|
|
9374
|
+
text?: string | null;
|
|
9375
|
+
/**
|
|
9376
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
9377
|
+
*/
|
|
9378
|
+
uploadIds?: Array<(string)> | null;
|
|
9379
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
9380
|
+
/**
|
|
9381
|
+
* Language tag like 'en' or 'en-US'.
|
|
9382
|
+
*/
|
|
9383
|
+
languageCode?: string | null;
|
|
9384
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
9385
|
+
callToActionUrl?: string | null;
|
|
9386
|
+
eventTitle?: string | null;
|
|
9387
|
+
eventStartDate?: string | null;
|
|
9388
|
+
eventEndDate?: string | null;
|
|
9389
|
+
offerCouponCode?: string | null;
|
|
9390
|
+
offerRedeemOnlineUrl?: string | null;
|
|
9391
|
+
offerTermsConditions?: string | null;
|
|
9392
|
+
/**
|
|
9393
|
+
* Alert type for ALERT posts.
|
|
9394
|
+
*/
|
|
9395
|
+
alertType?: 'COVID_19' | null;
|
|
9396
|
+
} | null;
|
|
8215
9397
|
};
|
|
8216
9398
|
error?: string | null;
|
|
8217
9399
|
errors?: {
|
|
@@ -8227,6 +9409,8 @@ type $OpenApiTs = {
|
|
|
8227
9409
|
YOUTUBE?: string | null;
|
|
8228
9410
|
MASTODON?: string | null;
|
|
8229
9411
|
THREADS?: string | null;
|
|
9412
|
+
BLUESKY?: string | null;
|
|
9413
|
+
GOOGLE_BUSINESS?: string | null;
|
|
8230
9414
|
} | null;
|
|
8231
9415
|
externalData?: {
|
|
8232
9416
|
TWITTER?: {
|
|
@@ -8243,12 +9427,12 @@ type $OpenApiTs = {
|
|
|
8243
9427
|
postId?: string | null;
|
|
8244
9428
|
videoId?: string | null;
|
|
8245
9429
|
permalink?: string | null;
|
|
8246
|
-
thumbnail?: string;
|
|
9430
|
+
thumbnail?: string | null;
|
|
8247
9431
|
} | null;
|
|
8248
9432
|
INSTAGRAM?: {
|
|
8249
9433
|
id?: string | null;
|
|
8250
9434
|
permalink?: string | null;
|
|
8251
|
-
thumbnail?: string;
|
|
9435
|
+
thumbnail?: string | null;
|
|
8252
9436
|
} | null;
|
|
8253
9437
|
TIKTOK?: {
|
|
8254
9438
|
id?: string | null;
|
|
@@ -8258,7 +9442,7 @@ type $OpenApiTs = {
|
|
|
8258
9442
|
id?: string | null;
|
|
8259
9443
|
activity?: string | null;
|
|
8260
9444
|
permalink?: string | null;
|
|
8261
|
-
thumbnail?: string;
|
|
9445
|
+
thumbnail?: string | null;
|
|
8262
9446
|
} | null;
|
|
8263
9447
|
REDDIT?: {
|
|
8264
9448
|
id?: string | null;
|
|
@@ -8289,6 +9473,29 @@ type $OpenApiTs = {
|
|
|
8289
9473
|
id?: string | null;
|
|
8290
9474
|
permalink?: string | null;
|
|
8291
9475
|
} | null;
|
|
9476
|
+
BLUESKY?: {
|
|
9477
|
+
id?: string | null;
|
|
9478
|
+
uri?: string | null;
|
|
9479
|
+
/**
|
|
9480
|
+
* Content ID of the created record
|
|
9481
|
+
*/
|
|
9482
|
+
cid?: string | null;
|
|
9483
|
+
permalink?: string | null;
|
|
9484
|
+
/**
|
|
9485
|
+
* Author DID (owner of the record)
|
|
9486
|
+
*/
|
|
9487
|
+
did?: string | null;
|
|
9488
|
+
} | null;
|
|
9489
|
+
GOOGLE_BUSINESS?: {
|
|
9490
|
+
/**
|
|
9491
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
9492
|
+
*/
|
|
9493
|
+
id?: string | null;
|
|
9494
|
+
/**
|
|
9495
|
+
* Public link to the post (searchUrl) when available.
|
|
9496
|
+
*/
|
|
9497
|
+
permalink?: string | null;
|
|
9498
|
+
} | null;
|
|
8292
9499
|
} | null;
|
|
8293
9500
|
createdAt: string | null;
|
|
8294
9501
|
updatedAt: string | null;
|
|
@@ -8347,7 +9554,7 @@ type $OpenApiTs = {
|
|
|
8347
9554
|
200: {
|
|
8348
9555
|
socialAccount: {
|
|
8349
9556
|
id: string;
|
|
8350
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
9557
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
8351
9558
|
teamId: string;
|
|
8352
9559
|
username?: string | null;
|
|
8353
9560
|
displayName?: string | null;
|
|
@@ -8656,6 +9863,62 @@ type $OpenApiTs = {
|
|
|
8656
9863
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
8657
9864
|
spoiler?: string | null;
|
|
8658
9865
|
} | null;
|
|
9866
|
+
BLUESKY?: {
|
|
9867
|
+
text?: string | null;
|
|
9868
|
+
uploadIds?: Array<(string)> | null;
|
|
9869
|
+
/**
|
|
9870
|
+
* Extra hashtags (without #), up to 8.
|
|
9871
|
+
*/
|
|
9872
|
+
tags?: Array<(string)> | null;
|
|
9873
|
+
/**
|
|
9874
|
+
* Self-labels (content warnings) applied to the post.
|
|
9875
|
+
*/
|
|
9876
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
9877
|
+
/**
|
|
9878
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
9879
|
+
*/
|
|
9880
|
+
quoteUri?: string;
|
|
9881
|
+
/**
|
|
9882
|
+
* Target URL for the external link card
|
|
9883
|
+
*/
|
|
9884
|
+
externalUrl?: string | null;
|
|
9885
|
+
/**
|
|
9886
|
+
* Card title for the external link card
|
|
9887
|
+
*/
|
|
9888
|
+
externalTitle?: string | null;
|
|
9889
|
+
/**
|
|
9890
|
+
* Card description for the external link card
|
|
9891
|
+
*/
|
|
9892
|
+
externalDescription?: string | null;
|
|
9893
|
+
/**
|
|
9894
|
+
* Alt text for the video embed.
|
|
9895
|
+
*/
|
|
9896
|
+
videoAlt?: string | null;
|
|
9897
|
+
} | null;
|
|
9898
|
+
GOOGLE_BUSINESS?: {
|
|
9899
|
+
text?: string | null;
|
|
9900
|
+
/**
|
|
9901
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
9902
|
+
*/
|
|
9903
|
+
uploadIds?: Array<(string)> | null;
|
|
9904
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
9905
|
+
/**
|
|
9906
|
+
* Language tag like 'en' or 'en-US'.
|
|
9907
|
+
*/
|
|
9908
|
+
languageCode?: string | null;
|
|
9909
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
9910
|
+
callToActionUrl?: string | null;
|
|
9911
|
+
eventTitle?: string | null;
|
|
9912
|
+
eventStartDate?: string | null;
|
|
9913
|
+
eventEndDate?: string | null;
|
|
9914
|
+
offerCouponCode?: string | null;
|
|
9915
|
+
offerRedeemOnlineUrl?: string | null;
|
|
9916
|
+
offerTermsConditions?: string | null;
|
|
9917
|
+
/**
|
|
9918
|
+
* Alert type for ALERT posts.
|
|
9919
|
+
*/
|
|
9920
|
+
alertType?: 'COVID_19' | null;
|
|
9921
|
+
} | null;
|
|
8659
9922
|
};
|
|
8660
9923
|
error?: string | null;
|
|
8661
9924
|
errors?: {
|
|
@@ -8671,6 +9934,8 @@ type $OpenApiTs = {
|
|
|
8671
9934
|
YOUTUBE?: string | null;
|
|
8672
9935
|
MASTODON?: string | null;
|
|
8673
9936
|
THREADS?: string | null;
|
|
9937
|
+
BLUESKY?: string | null;
|
|
9938
|
+
GOOGLE_BUSINESS?: string | null;
|
|
8674
9939
|
} | null;
|
|
8675
9940
|
externalData?: {
|
|
8676
9941
|
TWITTER?: {
|
|
@@ -8687,12 +9952,12 @@ type $OpenApiTs = {
|
|
|
8687
9952
|
postId?: string | null;
|
|
8688
9953
|
videoId?: string | null;
|
|
8689
9954
|
permalink?: string | null;
|
|
8690
|
-
thumbnail?: string;
|
|
9955
|
+
thumbnail?: string | null;
|
|
8691
9956
|
} | null;
|
|
8692
9957
|
INSTAGRAM?: {
|
|
8693
9958
|
id?: string | null;
|
|
8694
9959
|
permalink?: string | null;
|
|
8695
|
-
thumbnail?: string;
|
|
9960
|
+
thumbnail?: string | null;
|
|
8696
9961
|
} | null;
|
|
8697
9962
|
TIKTOK?: {
|
|
8698
9963
|
id?: string | null;
|
|
@@ -8702,7 +9967,7 @@ type $OpenApiTs = {
|
|
|
8702
9967
|
id?: string | null;
|
|
8703
9968
|
activity?: string | null;
|
|
8704
9969
|
permalink?: string | null;
|
|
8705
|
-
thumbnail?: string;
|
|
9970
|
+
thumbnail?: string | null;
|
|
8706
9971
|
} | null;
|
|
8707
9972
|
REDDIT?: {
|
|
8708
9973
|
id?: string | null;
|
|
@@ -8733,6 +9998,29 @@ type $OpenApiTs = {
|
|
|
8733
9998
|
id?: string | null;
|
|
8734
9999
|
permalink?: string | null;
|
|
8735
10000
|
} | null;
|
|
10001
|
+
BLUESKY?: {
|
|
10002
|
+
id?: string | null;
|
|
10003
|
+
uri?: string | null;
|
|
10004
|
+
/**
|
|
10005
|
+
* Content ID of the created record
|
|
10006
|
+
*/
|
|
10007
|
+
cid?: string | null;
|
|
10008
|
+
permalink?: string | null;
|
|
10009
|
+
/**
|
|
10010
|
+
* Author DID (owner of the record)
|
|
10011
|
+
*/
|
|
10012
|
+
did?: string | null;
|
|
10013
|
+
} | null;
|
|
10014
|
+
GOOGLE_BUSINESS?: {
|
|
10015
|
+
/**
|
|
10016
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
10017
|
+
*/
|
|
10018
|
+
id?: string | null;
|
|
10019
|
+
/**
|
|
10020
|
+
* Public link to the post (searchUrl) when available.
|
|
10021
|
+
*/
|
|
10022
|
+
permalink?: string | null;
|
|
10023
|
+
} | null;
|
|
8736
10024
|
} | null;
|
|
8737
10025
|
createdAt: string | null;
|
|
8738
10026
|
updatedAt: string | null;
|
|
@@ -8809,7 +10097,7 @@ type $OpenApiTs = {
|
|
|
8809
10097
|
200: {
|
|
8810
10098
|
socialAccount: {
|
|
8811
10099
|
id: string;
|
|
8812
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
10100
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
8813
10101
|
teamId: string;
|
|
8814
10102
|
username?: string | null;
|
|
8815
10103
|
displayName?: string | null;
|
|
@@ -9111,6 +10399,62 @@ type $OpenApiTs = {
|
|
|
9111
10399
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
9112
10400
|
spoiler?: string | null;
|
|
9113
10401
|
} | null;
|
|
10402
|
+
BLUESKY?: {
|
|
10403
|
+
text?: string | null;
|
|
10404
|
+
uploadIds?: Array<(string)> | null;
|
|
10405
|
+
/**
|
|
10406
|
+
* Extra hashtags (without #), up to 8.
|
|
10407
|
+
*/
|
|
10408
|
+
tags?: Array<(string)> | null;
|
|
10409
|
+
/**
|
|
10410
|
+
* Self-labels (content warnings) applied to the post.
|
|
10411
|
+
*/
|
|
10412
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
10413
|
+
/**
|
|
10414
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
10415
|
+
*/
|
|
10416
|
+
quoteUri?: string;
|
|
10417
|
+
/**
|
|
10418
|
+
* Target URL for the external link card
|
|
10419
|
+
*/
|
|
10420
|
+
externalUrl?: string | null;
|
|
10421
|
+
/**
|
|
10422
|
+
* Card title for the external link card
|
|
10423
|
+
*/
|
|
10424
|
+
externalTitle?: string | null;
|
|
10425
|
+
/**
|
|
10426
|
+
* Card description for the external link card
|
|
10427
|
+
*/
|
|
10428
|
+
externalDescription?: string | null;
|
|
10429
|
+
/**
|
|
10430
|
+
* Alt text for the video embed.
|
|
10431
|
+
*/
|
|
10432
|
+
videoAlt?: string | null;
|
|
10433
|
+
} | null;
|
|
10434
|
+
GOOGLE_BUSINESS?: {
|
|
10435
|
+
text?: string | null;
|
|
10436
|
+
/**
|
|
10437
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
10438
|
+
*/
|
|
10439
|
+
uploadIds?: Array<(string)> | null;
|
|
10440
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
10441
|
+
/**
|
|
10442
|
+
* Language tag like 'en' or 'en-US'.
|
|
10443
|
+
*/
|
|
10444
|
+
languageCode?: string | null;
|
|
10445
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
10446
|
+
callToActionUrl?: string | null;
|
|
10447
|
+
eventTitle?: string | null;
|
|
10448
|
+
eventStartDate?: string | null;
|
|
10449
|
+
eventEndDate?: string | null;
|
|
10450
|
+
offerCouponCode?: string | null;
|
|
10451
|
+
offerRedeemOnlineUrl?: string | null;
|
|
10452
|
+
offerTermsConditions?: string | null;
|
|
10453
|
+
/**
|
|
10454
|
+
* Alert type for ALERT posts.
|
|
10455
|
+
*/
|
|
10456
|
+
alertType?: 'COVID_19' | null;
|
|
10457
|
+
} | null;
|
|
9114
10458
|
};
|
|
9115
10459
|
error?: string | null;
|
|
9116
10460
|
errors?: {
|
|
@@ -9126,6 +10470,8 @@ type $OpenApiTs = {
|
|
|
9126
10470
|
YOUTUBE?: string | null;
|
|
9127
10471
|
MASTODON?: string | null;
|
|
9128
10472
|
THREADS?: string | null;
|
|
10473
|
+
BLUESKY?: string | null;
|
|
10474
|
+
GOOGLE_BUSINESS?: string | null;
|
|
9129
10475
|
} | null;
|
|
9130
10476
|
externalData?: {
|
|
9131
10477
|
TWITTER?: {
|
|
@@ -9142,12 +10488,12 @@ type $OpenApiTs = {
|
|
|
9142
10488
|
postId?: string | null;
|
|
9143
10489
|
videoId?: string | null;
|
|
9144
10490
|
permalink?: string | null;
|
|
9145
|
-
thumbnail?: string;
|
|
10491
|
+
thumbnail?: string | null;
|
|
9146
10492
|
} | null;
|
|
9147
10493
|
INSTAGRAM?: {
|
|
9148
10494
|
id?: string | null;
|
|
9149
10495
|
permalink?: string | null;
|
|
9150
|
-
thumbnail?: string;
|
|
10496
|
+
thumbnail?: string | null;
|
|
9151
10497
|
} | null;
|
|
9152
10498
|
TIKTOK?: {
|
|
9153
10499
|
id?: string | null;
|
|
@@ -9157,7 +10503,7 @@ type $OpenApiTs = {
|
|
|
9157
10503
|
id?: string | null;
|
|
9158
10504
|
activity?: string | null;
|
|
9159
10505
|
permalink?: string | null;
|
|
9160
|
-
thumbnail?: string;
|
|
10506
|
+
thumbnail?: string | null;
|
|
9161
10507
|
} | null;
|
|
9162
10508
|
REDDIT?: {
|
|
9163
10509
|
id?: string | null;
|
|
@@ -9188,6 +10534,29 @@ type $OpenApiTs = {
|
|
|
9188
10534
|
id?: string | null;
|
|
9189
10535
|
permalink?: string | null;
|
|
9190
10536
|
} | null;
|
|
10537
|
+
BLUESKY?: {
|
|
10538
|
+
id?: string | null;
|
|
10539
|
+
uri?: string | null;
|
|
10540
|
+
/**
|
|
10541
|
+
* Content ID of the created record
|
|
10542
|
+
*/
|
|
10543
|
+
cid?: string | null;
|
|
10544
|
+
permalink?: string | null;
|
|
10545
|
+
/**
|
|
10546
|
+
* Author DID (owner of the record)
|
|
10547
|
+
*/
|
|
10548
|
+
did?: string | null;
|
|
10549
|
+
} | null;
|
|
10550
|
+
GOOGLE_BUSINESS?: {
|
|
10551
|
+
/**
|
|
10552
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
10553
|
+
*/
|
|
10554
|
+
id?: string | null;
|
|
10555
|
+
/**
|
|
10556
|
+
* Public link to the post (searchUrl) when available.
|
|
10557
|
+
*/
|
|
10558
|
+
permalink?: string | null;
|
|
10559
|
+
} | null;
|
|
9191
10560
|
} | null;
|
|
9192
10561
|
createdAt: string | null;
|
|
9193
10562
|
updatedAt: string | null;
|
|
@@ -9596,6 +10965,9 @@ type $OpenApiTs = {
|
|
|
9596
10965
|
SLACK?: {
|
|
9597
10966
|
text?: string | null;
|
|
9598
10967
|
} | null;
|
|
10968
|
+
BLUESKY?: {
|
|
10969
|
+
text?: string | null;
|
|
10970
|
+
} | null;
|
|
9599
10971
|
};
|
|
9600
10972
|
error?: string | null;
|
|
9601
10973
|
errors?: {
|
|
@@ -9609,6 +10981,7 @@ type $OpenApiTs = {
|
|
|
9609
10981
|
THREADS?: string | null;
|
|
9610
10982
|
DISCORD?: string | null;
|
|
9611
10983
|
SLACK?: string | null;
|
|
10984
|
+
BLUESKY?: string | null;
|
|
9612
10985
|
} | null;
|
|
9613
10986
|
externalData?: {
|
|
9614
10987
|
FACEBOOK?: {
|
|
@@ -9652,6 +11025,19 @@ type $OpenApiTs = {
|
|
|
9652
11025
|
id?: string | null;
|
|
9653
11026
|
permalink?: string | null;
|
|
9654
11027
|
} | null;
|
|
11028
|
+
BLUESKY?: {
|
|
11029
|
+
id?: string | null;
|
|
11030
|
+
uri?: string | null;
|
|
11031
|
+
/**
|
|
11032
|
+
* Content ID of the created record
|
|
11033
|
+
*/
|
|
11034
|
+
cid?: string | null;
|
|
11035
|
+
permalink?: string | null;
|
|
11036
|
+
/**
|
|
11037
|
+
* Author DID (owner of the record)
|
|
11038
|
+
*/
|
|
11039
|
+
did?: string | null;
|
|
11040
|
+
} | null;
|
|
9655
11041
|
} | null;
|
|
9656
11042
|
createdAt: string | null;
|
|
9657
11043
|
updatedAt: string | null;
|
|
@@ -9746,6 +11132,9 @@ type $OpenApiTs = {
|
|
|
9746
11132
|
SLACK?: {
|
|
9747
11133
|
text?: string | null;
|
|
9748
11134
|
} | null;
|
|
11135
|
+
BLUESKY?: {
|
|
11136
|
+
text?: string | null;
|
|
11137
|
+
} | null;
|
|
9749
11138
|
};
|
|
9750
11139
|
error?: string | null;
|
|
9751
11140
|
errors?: {
|
|
@@ -9759,6 +11148,7 @@ type $OpenApiTs = {
|
|
|
9759
11148
|
THREADS?: string | null;
|
|
9760
11149
|
DISCORD?: string | null;
|
|
9761
11150
|
SLACK?: string | null;
|
|
11151
|
+
BLUESKY?: string | null;
|
|
9762
11152
|
} | null;
|
|
9763
11153
|
externalData?: {
|
|
9764
11154
|
FACEBOOK?: {
|
|
@@ -9802,6 +11192,19 @@ type $OpenApiTs = {
|
|
|
9802
11192
|
id?: string | null;
|
|
9803
11193
|
permalink?: string | null;
|
|
9804
11194
|
} | null;
|
|
11195
|
+
BLUESKY?: {
|
|
11196
|
+
id?: string | null;
|
|
11197
|
+
uri?: string | null;
|
|
11198
|
+
/**
|
|
11199
|
+
* Content ID of the created record
|
|
11200
|
+
*/
|
|
11201
|
+
cid?: string | null;
|
|
11202
|
+
permalink?: string | null;
|
|
11203
|
+
/**
|
|
11204
|
+
* Author DID (owner of the record)
|
|
11205
|
+
*/
|
|
11206
|
+
did?: string | null;
|
|
11207
|
+
} | null;
|
|
9805
11208
|
} | null;
|
|
9806
11209
|
createdAt: string | null;
|
|
9807
11210
|
updatedAt: string | null;
|
|
@@ -9896,6 +11299,9 @@ type $OpenApiTs = {
|
|
|
9896
11299
|
SLACK?: {
|
|
9897
11300
|
text?: string | null;
|
|
9898
11301
|
} | null;
|
|
11302
|
+
BLUESKY?: {
|
|
11303
|
+
text?: string | null;
|
|
11304
|
+
} | null;
|
|
9899
11305
|
};
|
|
9900
11306
|
error?: string | null;
|
|
9901
11307
|
errors?: {
|
|
@@ -9909,6 +11315,7 @@ type $OpenApiTs = {
|
|
|
9909
11315
|
THREADS?: string | null;
|
|
9910
11316
|
DISCORD?: string | null;
|
|
9911
11317
|
SLACK?: string | null;
|
|
11318
|
+
BLUESKY?: string | null;
|
|
9912
11319
|
} | null;
|
|
9913
11320
|
externalData?: {
|
|
9914
11321
|
FACEBOOK?: {
|
|
@@ -9952,6 +11359,19 @@ type $OpenApiTs = {
|
|
|
9952
11359
|
id?: string | null;
|
|
9953
11360
|
permalink?: string | null;
|
|
9954
11361
|
} | null;
|
|
11362
|
+
BLUESKY?: {
|
|
11363
|
+
id?: string | null;
|
|
11364
|
+
uri?: string | null;
|
|
11365
|
+
/**
|
|
11366
|
+
* Content ID of the created record
|
|
11367
|
+
*/
|
|
11368
|
+
cid?: string | null;
|
|
11369
|
+
permalink?: string | null;
|
|
11370
|
+
/**
|
|
11371
|
+
* Author DID (owner of the record)
|
|
11372
|
+
*/
|
|
11373
|
+
did?: string | null;
|
|
11374
|
+
} | null;
|
|
9955
11375
|
} | null;
|
|
9956
11376
|
createdAt: string | null;
|
|
9957
11377
|
updatedAt: string | null;
|
|
@@ -10049,6 +11469,9 @@ type $OpenApiTs = {
|
|
|
10049
11469
|
SLACK?: {
|
|
10050
11470
|
text?: string | null;
|
|
10051
11471
|
} | null;
|
|
11472
|
+
BLUESKY?: {
|
|
11473
|
+
text?: string | null;
|
|
11474
|
+
} | null;
|
|
10052
11475
|
};
|
|
10053
11476
|
error?: string | null;
|
|
10054
11477
|
errors?: {
|
|
@@ -10062,6 +11485,7 @@ type $OpenApiTs = {
|
|
|
10062
11485
|
THREADS?: string | null;
|
|
10063
11486
|
DISCORD?: string | null;
|
|
10064
11487
|
SLACK?: string | null;
|
|
11488
|
+
BLUESKY?: string | null;
|
|
10065
11489
|
} | null;
|
|
10066
11490
|
externalData?: {
|
|
10067
11491
|
FACEBOOK?: {
|
|
@@ -10105,6 +11529,19 @@ type $OpenApiTs = {
|
|
|
10105
11529
|
id?: string | null;
|
|
10106
11530
|
permalink?: string | null;
|
|
10107
11531
|
} | null;
|
|
11532
|
+
BLUESKY?: {
|
|
11533
|
+
id?: string | null;
|
|
11534
|
+
uri?: string | null;
|
|
11535
|
+
/**
|
|
11536
|
+
* Content ID of the created record
|
|
11537
|
+
*/
|
|
11538
|
+
cid?: string | null;
|
|
11539
|
+
permalink?: string | null;
|
|
11540
|
+
/**
|
|
11541
|
+
* Author DID (owner of the record)
|
|
11542
|
+
*/
|
|
11543
|
+
did?: string | null;
|
|
11544
|
+
} | null;
|
|
10108
11545
|
} | null;
|
|
10109
11546
|
createdAt: string | null;
|
|
10110
11547
|
updatedAt: string | null;
|
|
@@ -10201,6 +11638,9 @@ type $OpenApiTs = {
|
|
|
10201
11638
|
SLACK?: {
|
|
10202
11639
|
text?: string | null;
|
|
10203
11640
|
} | null;
|
|
11641
|
+
BLUESKY?: {
|
|
11642
|
+
text?: string | null;
|
|
11643
|
+
} | null;
|
|
10204
11644
|
};
|
|
10205
11645
|
error?: string | null;
|
|
10206
11646
|
errors?: {
|
|
@@ -10214,6 +11654,7 @@ type $OpenApiTs = {
|
|
|
10214
11654
|
THREADS?: string | null;
|
|
10215
11655
|
DISCORD?: string | null;
|
|
10216
11656
|
SLACK?: string | null;
|
|
11657
|
+
BLUESKY?: string | null;
|
|
10217
11658
|
} | null;
|
|
10218
11659
|
externalData?: {
|
|
10219
11660
|
FACEBOOK?: {
|
|
@@ -10257,6 +11698,19 @@ type $OpenApiTs = {
|
|
|
10257
11698
|
id?: string | null;
|
|
10258
11699
|
permalink?: string | null;
|
|
10259
11700
|
} | null;
|
|
11701
|
+
BLUESKY?: {
|
|
11702
|
+
id?: string | null;
|
|
11703
|
+
uri?: string | null;
|
|
11704
|
+
/**
|
|
11705
|
+
* Content ID of the created record
|
|
11706
|
+
*/
|
|
11707
|
+
cid?: string | null;
|
|
11708
|
+
permalink?: string | null;
|
|
11709
|
+
/**
|
|
11710
|
+
* Author DID (owner of the record)
|
|
11711
|
+
*/
|
|
11712
|
+
did?: string | null;
|
|
11713
|
+
} | null;
|
|
10260
11714
|
} | null;
|
|
10261
11715
|
createdAt: string | null;
|
|
10262
11716
|
updatedAt: string | null;
|
|
@@ -11118,6 +12572,65 @@ type $OpenApiTs = {
|
|
|
11118
12572
|
};
|
|
11119
12573
|
};
|
|
11120
12574
|
};
|
|
12575
|
+
'/api/v1/misc/google-business/media': {
|
|
12576
|
+
post: {
|
|
12577
|
+
req: MiscGoogleBusinessAddMediaData;
|
|
12578
|
+
res: {
|
|
12579
|
+
/**
|
|
12580
|
+
* 200
|
|
12581
|
+
*/
|
|
12582
|
+
200: {
|
|
12583
|
+
name?: string;
|
|
12584
|
+
googleUrl?: string;
|
|
12585
|
+
locationAssociation?: {
|
|
12586
|
+
category?: 'CATEGORY_UNSPECIFIED' | 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'PRODUCT' | 'AT_WORK' | 'FOOD_AND_DRINK' | 'MENU' | 'COMMON_AREA' | 'ROOMS' | 'TEAMS' | 'ADDITIONAL';
|
|
12587
|
+
priceListItemId?: string;
|
|
12588
|
+
};
|
|
12589
|
+
description?: string;
|
|
12590
|
+
};
|
|
12591
|
+
/**
|
|
12592
|
+
* 400
|
|
12593
|
+
*/
|
|
12594
|
+
400: {
|
|
12595
|
+
message: string;
|
|
12596
|
+
issues?: Array<{
|
|
12597
|
+
message: string;
|
|
12598
|
+
path?: Array<(string | number)> | null;
|
|
12599
|
+
}> | null;
|
|
12600
|
+
};
|
|
12601
|
+
/**
|
|
12602
|
+
* 401
|
|
12603
|
+
*/
|
|
12604
|
+
401: {
|
|
12605
|
+
message: string;
|
|
12606
|
+
};
|
|
12607
|
+
/**
|
|
12608
|
+
* 403
|
|
12609
|
+
*/
|
|
12610
|
+
403: {
|
|
12611
|
+
message: string;
|
|
12612
|
+
};
|
|
12613
|
+
/**
|
|
12614
|
+
* 404
|
|
12615
|
+
*/
|
|
12616
|
+
404: {
|
|
12617
|
+
message: string;
|
|
12618
|
+
};
|
|
12619
|
+
/**
|
|
12620
|
+
* 429
|
|
12621
|
+
*/
|
|
12622
|
+
429: {
|
|
12623
|
+
message: string;
|
|
12624
|
+
};
|
|
12625
|
+
/**
|
|
12626
|
+
* 500
|
|
12627
|
+
*/
|
|
12628
|
+
500: {
|
|
12629
|
+
message: string;
|
|
12630
|
+
};
|
|
12631
|
+
};
|
|
12632
|
+
};
|
|
12633
|
+
};
|
|
11121
12634
|
};
|
|
11122
12635
|
|
|
11123
12636
|
declare class AppService {
|
|
@@ -11590,6 +13103,14 @@ declare class MiscService {
|
|
|
11590
13103
|
* @throws ApiError
|
|
11591
13104
|
*/
|
|
11592
13105
|
miscLinkedinBuildCommentary(data?: MiscLinkedinBuildCommentaryData): CancelablePromise<MiscLinkedinBuildCommentaryResponse>;
|
|
13106
|
+
/**
|
|
13107
|
+
* Add a media item (photo/video) using uploadId and category
|
|
13108
|
+
* @param data The data for the request.
|
|
13109
|
+
* @param data.requestBody Body
|
|
13110
|
+
* @returns unknown 200
|
|
13111
|
+
* @throws ApiError
|
|
13112
|
+
*/
|
|
13113
|
+
miscGoogleBusinessAddMedia(data?: MiscGoogleBusinessAddMediaData): CancelablePromise<MiscGoogleBusinessAddMediaResponse>;
|
|
11593
13114
|
}
|
|
11594
13115
|
declare class YoutubeService {
|
|
11595
13116
|
readonly httpRequest: BaseHttpRequest;
|
|
@@ -11687,12 +13208,25 @@ declare class LinkedinService {
|
|
|
11687
13208
|
*/
|
|
11688
13209
|
miscLinkedinBuildCommentary(data?: MiscLinkedinBuildCommentaryData): CancelablePromise<MiscLinkedinBuildCommentaryResponse>;
|
|
11689
13210
|
}
|
|
13211
|
+
declare class GoogleBusinessService {
|
|
13212
|
+
readonly httpRequest: BaseHttpRequest;
|
|
13213
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
13214
|
+
/**
|
|
13215
|
+
* Add a media item (photo/video) using uploadId and category
|
|
13216
|
+
* @param data The data for the request.
|
|
13217
|
+
* @param data.requestBody Body
|
|
13218
|
+
* @returns unknown 200
|
|
13219
|
+
* @throws ApiError
|
|
13220
|
+
*/
|
|
13221
|
+
miscGoogleBusinessAddMedia(data?: MiscGoogleBusinessAddMediaData): CancelablePromise<MiscGoogleBusinessAddMediaResponse>;
|
|
13222
|
+
}
|
|
11690
13223
|
|
|
11691
13224
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
11692
13225
|
declare class Client {
|
|
11693
13226
|
readonly analytics: AnalyticsService;
|
|
11694
13227
|
readonly app: AppService;
|
|
11695
13228
|
readonly comment: CommentService;
|
|
13229
|
+
readonly googleBusiness: GoogleBusinessService;
|
|
11696
13230
|
readonly linkedin: LinkedinService;
|
|
11697
13231
|
readonly misc: MiscService;
|
|
11698
13232
|
readonly organization: OrganizationService;
|
|
@@ -11764,4 +13298,4 @@ declare class Bundlesocial extends Client {
|
|
|
11764
13298
|
constructor(apiKey: string, options?: OpenAPIConfig);
|
|
11765
13299
|
}
|
|
11766
13300
|
|
|
11767
|
-
export { $OpenApiTs, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetProfileAnalyticsResponse, AnalyticsGetProfilePostByPostIdData, AnalyticsGetProfilePostByPostIdResponse, AnalyticsGetProfilePostData, AnalyticsGetProfilePostResponse, AnalyticsGetProfilePostsResponse, AnalyticsGetRawPostsAnalyticsResponse, AnalyticsGetRawSocialAccountAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentUpdateData, CommentUpdateResponse, 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 };
|
|
13301
|
+
export { $OpenApiTs, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetProfileAnalyticsResponse, AnalyticsGetProfilePostByPostIdData, AnalyticsGetProfilePostByPostIdResponse, AnalyticsGetProfilePostData, AnalyticsGetProfilePostResponse, AnalyticsGetProfilePostsResponse, AnalyticsGetRawPostsAnalyticsResponse, AnalyticsGetRawSocialAccountAnalyticsResponse, 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 };
|