bundlesocial 2.56.1 → 2.58.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 +1141 -55
- package/dist/index.d.ts +1141 -55
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -132,6 +132,10 @@ type AppGetHealthResponse = {
|
|
|
132
132
|
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
133
133
|
note: string;
|
|
134
134
|
};
|
|
135
|
+
SNAPCHAT: {
|
|
136
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
137
|
+
note: string;
|
|
138
|
+
};
|
|
135
139
|
};
|
|
136
140
|
};
|
|
137
141
|
type OrganizationGetOrganizationResponse = {
|
|
@@ -156,6 +160,7 @@ type OrganizationGetOrganizationResponse = {
|
|
|
156
160
|
MASTODON?: number;
|
|
157
161
|
BLUESKY?: number;
|
|
158
162
|
GOOGLE_BUSINESS?: number;
|
|
163
|
+
SNAPCHAT?: number;
|
|
159
164
|
} | null;
|
|
160
165
|
dailyCommentLimit?: {
|
|
161
166
|
TWITTER?: number;
|
|
@@ -172,6 +177,7 @@ type OrganizationGetOrganizationResponse = {
|
|
|
172
177
|
MASTODON?: number;
|
|
173
178
|
BLUESKY?: number;
|
|
174
179
|
GOOGLE_BUSINESS?: number;
|
|
180
|
+
SNAPCHAT?: number;
|
|
175
181
|
} | null;
|
|
176
182
|
monthlyImportLimitPerAccount?: number | null;
|
|
177
183
|
commentImportLimitPerPost?: number | null;
|
|
@@ -309,7 +315,7 @@ type OrganizationGetDailyLimitsUsageData = {
|
|
|
309
315
|
type OrganizationGetDailyLimitsUsageResponse = {
|
|
310
316
|
date: string;
|
|
311
317
|
socialAccountId: string;
|
|
312
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
318
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
313
319
|
posts: {
|
|
314
320
|
used: number;
|
|
315
321
|
limit: number;
|
|
@@ -325,7 +331,7 @@ type OrganizationGetImportsUsageData = {
|
|
|
325
331
|
page?: number;
|
|
326
332
|
pageSize?: number;
|
|
327
333
|
socialAccountId?: string;
|
|
328
|
-
socialAccountType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
334
|
+
socialAccountType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
329
335
|
teamId?: string;
|
|
330
336
|
};
|
|
331
337
|
type OrganizationGetImportsUsageResponse = {
|
|
@@ -380,6 +386,7 @@ type TeamGetTeamResponse = {
|
|
|
380
386
|
MASTODON?: number;
|
|
381
387
|
BLUESKY?: number;
|
|
382
388
|
GOOGLE_BUSINESS?: number;
|
|
389
|
+
SNAPCHAT?: number;
|
|
383
390
|
} | null;
|
|
384
391
|
dailyCommentLimit?: {
|
|
385
392
|
TWITTER?: number;
|
|
@@ -396,6 +403,7 @@ type TeamGetTeamResponse = {
|
|
|
396
403
|
MASTODON?: number;
|
|
397
404
|
BLUESKY?: number;
|
|
398
405
|
GOOGLE_BUSINESS?: number;
|
|
406
|
+
SNAPCHAT?: number;
|
|
399
407
|
} | null;
|
|
400
408
|
monthlyImportLimitPerAccount?: number | null;
|
|
401
409
|
commentImportLimitPerPost?: number | null;
|
|
@@ -439,10 +447,11 @@ type TeamGetTeamResponse = {
|
|
|
439
447
|
}>;
|
|
440
448
|
socialAccounts: Array<{
|
|
441
449
|
id: string;
|
|
442
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
450
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
443
451
|
teamId: string;
|
|
444
452
|
username?: string | null;
|
|
445
453
|
displayName?: string | null;
|
|
454
|
+
bio?: string | null;
|
|
446
455
|
avatarUrl?: string | null;
|
|
447
456
|
externalId?: string | null;
|
|
448
457
|
userUsername?: string | null;
|
|
@@ -585,6 +594,7 @@ type TeamGetListResponse = {
|
|
|
585
594
|
MASTODON?: number;
|
|
586
595
|
BLUESKY?: number;
|
|
587
596
|
GOOGLE_BUSINESS?: number;
|
|
597
|
+
SNAPCHAT?: number;
|
|
588
598
|
} | null;
|
|
589
599
|
dailyCommentLimit?: {
|
|
590
600
|
TWITTER?: number;
|
|
@@ -601,6 +611,7 @@ type TeamGetListResponse = {
|
|
|
601
611
|
MASTODON?: number;
|
|
602
612
|
BLUESKY?: number;
|
|
603
613
|
GOOGLE_BUSINESS?: number;
|
|
614
|
+
SNAPCHAT?: number;
|
|
604
615
|
} | null;
|
|
605
616
|
monthlyImportLimitPerAccount?: number | null;
|
|
606
617
|
commentImportLimitPerPost?: number | null;
|
|
@@ -644,10 +655,11 @@ type TeamGetListResponse = {
|
|
|
644
655
|
}>;
|
|
645
656
|
socialAccounts: Array<{
|
|
646
657
|
id: string;
|
|
647
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
658
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
648
659
|
teamId: string;
|
|
649
660
|
username?: string | null;
|
|
650
661
|
displayName?: string | null;
|
|
662
|
+
bio?: string | null;
|
|
651
663
|
avatarUrl?: string | null;
|
|
652
664
|
externalId?: string | null;
|
|
653
665
|
userUsername?: string | null;
|
|
@@ -747,7 +759,7 @@ type SocialAccountConnectData = {
|
|
|
747
759
|
* Body
|
|
748
760
|
*/
|
|
749
761
|
requestBody?: {
|
|
750
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
762
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
751
763
|
teamId: string;
|
|
752
764
|
/**
|
|
753
765
|
* Client-provided return URL. After the OAuth flow completes (success or error), the user will be redirected here with success/error query params appended. Must be a well-formed http/https URL.
|
|
@@ -761,6 +773,10 @@ type SocialAccountConnectData = {
|
|
|
761
773
|
* Optional. When true, adds provider-specific flags to avoid automatic login/auto-approval where supported.
|
|
762
774
|
*/
|
|
763
775
|
disableAutoLogin?: boolean;
|
|
776
|
+
/**
|
|
777
|
+
* Optional and experimental. TikTok only. When true, routes authorization through TikTok logout to request a fresh login session.
|
|
778
|
+
*/
|
|
779
|
+
tiktokForceLogin?: boolean;
|
|
764
780
|
/**
|
|
765
781
|
* Optional. Instagram only. When true, direct Instagram connections on phones will try to force browser login to avoid the Instagram iOS app deep-link bug.
|
|
766
782
|
*/
|
|
@@ -770,7 +786,7 @@ type SocialAccountConnectData = {
|
|
|
770
786
|
*/
|
|
771
787
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM';
|
|
772
788
|
/**
|
|
773
|
-
* Facebook and Instagram
|
|
789
|
+
* Facebook and Instagram: include business_management, ads_management, ads_read scopes. YouTube: include the monetary analytics scope (enables revenue/monetization data).
|
|
774
790
|
*/
|
|
775
791
|
withBusinessScope?: boolean;
|
|
776
792
|
};
|
|
@@ -786,16 +802,17 @@ type SocialAccountDisconnectData = {
|
|
|
786
802
|
* Body
|
|
787
803
|
*/
|
|
788
804
|
requestBody?: {
|
|
789
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
805
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
790
806
|
teamId: string;
|
|
791
807
|
};
|
|
792
808
|
};
|
|
793
809
|
type SocialAccountDisconnectResponse = {
|
|
794
810
|
id: string;
|
|
795
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
811
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
796
812
|
teamId: string;
|
|
797
813
|
username?: string | null;
|
|
798
814
|
displayName?: string | null;
|
|
815
|
+
bio?: string | null;
|
|
799
816
|
avatarUrl?: string | null;
|
|
800
817
|
externalId?: string | null;
|
|
801
818
|
userUsername?: string | null;
|
|
@@ -842,10 +859,11 @@ type SocialAccountSetChannelData = {
|
|
|
842
859
|
};
|
|
843
860
|
type SocialAccountSetChannelResponse = {
|
|
844
861
|
id: string;
|
|
845
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
862
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
846
863
|
teamId: string;
|
|
847
864
|
username?: string | null;
|
|
848
865
|
displayName?: string | null;
|
|
866
|
+
bio?: string | null;
|
|
849
867
|
avatarUrl?: string | null;
|
|
850
868
|
externalId?: string | null;
|
|
851
869
|
userUsername?: string | null;
|
|
@@ -891,10 +909,11 @@ type SocialAccountUnsetChannelData = {
|
|
|
891
909
|
};
|
|
892
910
|
type SocialAccountUnsetChannelResponse = {
|
|
893
911
|
id: string;
|
|
894
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
912
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
895
913
|
teamId: string;
|
|
896
914
|
username?: string | null;
|
|
897
915
|
displayName?: string | null;
|
|
916
|
+
bio?: string | null;
|
|
898
917
|
avatarUrl?: string | null;
|
|
899
918
|
externalId?: string | null;
|
|
900
919
|
userUsername?: string | null;
|
|
@@ -940,10 +959,11 @@ type SocialAccountRefreshChannelsData = {
|
|
|
940
959
|
};
|
|
941
960
|
type SocialAccountRefreshChannelsResponse = {
|
|
942
961
|
id: string;
|
|
943
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
962
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
944
963
|
teamId: string;
|
|
945
964
|
username?: string | null;
|
|
946
965
|
displayName?: string | null;
|
|
966
|
+
bio?: string | null;
|
|
947
967
|
avatarUrl?: string | null;
|
|
948
968
|
externalId?: string | null;
|
|
949
969
|
userUsername?: string | null;
|
|
@@ -985,7 +1005,7 @@ type SocialAccountCreatePortalLinkData = {
|
|
|
985
1005
|
requestBody?: {
|
|
986
1006
|
teamId: string;
|
|
987
1007
|
redirectUrl?: string;
|
|
988
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
1008
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT')>;
|
|
989
1009
|
/**
|
|
990
1010
|
* Mastodon or Bluesky only
|
|
991
1011
|
*/
|
|
@@ -994,6 +1014,10 @@ type SocialAccountCreatePortalLinkData = {
|
|
|
994
1014
|
* Optional. If true, portal will request provider-specific anti-auto-login behavior where supported.
|
|
995
1015
|
*/
|
|
996
1016
|
disableAutoLogin?: boolean;
|
|
1017
|
+
/**
|
|
1018
|
+
* Optional and experimental. TikTok only. When true, portal routes TikTok authorization through logout to request a fresh login session.
|
|
1019
|
+
*/
|
|
1020
|
+
tiktokForceLogin?: boolean;
|
|
997
1021
|
/**
|
|
998
1022
|
* Optional. Instagram only. When true, direct Instagram connections on phones will try to force browser login to avoid the Instagram iOS app deep-link bug.
|
|
999
1023
|
*/
|
|
@@ -1032,7 +1056,7 @@ type SocialAccountConnectionCheckData = {
|
|
|
1032
1056
|
* Body
|
|
1033
1057
|
*/
|
|
1034
1058
|
requestBody?: {
|
|
1035
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1059
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
1036
1060
|
teamId: string;
|
|
1037
1061
|
};
|
|
1038
1062
|
};
|
|
@@ -1051,7 +1075,7 @@ type SocialAccountProfileRefreshData = {
|
|
|
1051
1075
|
* Body
|
|
1052
1076
|
*/
|
|
1053
1077
|
requestBody?: {
|
|
1054
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1078
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
1055
1079
|
teamId: string;
|
|
1056
1080
|
};
|
|
1057
1081
|
};
|
|
@@ -1061,10 +1085,11 @@ type SocialAccountProfileRefreshResponse = {
|
|
|
1061
1085
|
socialAccountId: string;
|
|
1062
1086
|
socialAccount: {
|
|
1063
1087
|
id: string;
|
|
1064
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1088
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
1065
1089
|
teamId: string;
|
|
1066
1090
|
username?: string | null;
|
|
1067
1091
|
displayName?: string | null;
|
|
1092
|
+
bio?: string | null;
|
|
1068
1093
|
avatarUrl?: string | null;
|
|
1069
1094
|
externalId?: string | null;
|
|
1070
1095
|
userUsername?: string | null;
|
|
@@ -1107,14 +1132,15 @@ type SocialAccountProfileRefreshResponse = {
|
|
|
1107
1132
|
};
|
|
1108
1133
|
type SocialAccountGetByTypeData = {
|
|
1109
1134
|
teamId: string;
|
|
1110
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1135
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
1111
1136
|
};
|
|
1112
1137
|
type SocialAccountGetByTypeResponse = {
|
|
1113
1138
|
id: string;
|
|
1114
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1139
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
1115
1140
|
teamId: string;
|
|
1116
1141
|
username?: string | null;
|
|
1117
1142
|
displayName?: string | null;
|
|
1143
|
+
bio?: string | null;
|
|
1118
1144
|
avatarUrl?: string | null;
|
|
1119
1145
|
externalId?: string | null;
|
|
1120
1146
|
userUsername?: string | null;
|
|
@@ -1160,15 +1186,16 @@ type SocialAccountCopyData = {
|
|
|
1160
1186
|
* 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.
|
|
1161
1187
|
*/
|
|
1162
1188
|
resetChannel?: boolean;
|
|
1163
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
1189
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT')>;
|
|
1164
1190
|
};
|
|
1165
1191
|
};
|
|
1166
1192
|
type SocialAccountCopyResponse = Array<{
|
|
1167
1193
|
id: string;
|
|
1168
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1194
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
1169
1195
|
teamId: string;
|
|
1170
1196
|
username?: string | null;
|
|
1171
1197
|
displayName?: string | null;
|
|
1198
|
+
bio?: string | null;
|
|
1172
1199
|
avatarUrl?: string | null;
|
|
1173
1200
|
externalId?: string | null;
|
|
1174
1201
|
userUsername?: string | null;
|
|
@@ -1210,10 +1237,11 @@ type SocialAccountGetAccountsToDeleteData = {
|
|
|
1210
1237
|
type SocialAccountGetAccountsToDeleteResponse = {
|
|
1211
1238
|
items: Array<{
|
|
1212
1239
|
id: string;
|
|
1213
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1240
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
1214
1241
|
teamId: string;
|
|
1215
1242
|
username?: string | null;
|
|
1216
1243
|
displayName?: string | null;
|
|
1244
|
+
bio?: string | null;
|
|
1217
1245
|
avatarUrl?: string | null;
|
|
1218
1246
|
externalId?: string | null;
|
|
1219
1247
|
userUsername?: string | null;
|
|
@@ -1480,7 +1508,7 @@ type PostGetReconnectSocialAccountCandidatesData = {
|
|
|
1480
1508
|
limit?: number | null;
|
|
1481
1509
|
offset?: number | null;
|
|
1482
1510
|
teamId: string;
|
|
1483
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1511
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
1484
1512
|
};
|
|
1485
1513
|
type PostGetReconnectSocialAccountCandidatesResponse = {
|
|
1486
1514
|
items: Array<{
|
|
@@ -1499,7 +1527,7 @@ type PostReconnectSocialAccountData = {
|
|
|
1499
1527
|
*/
|
|
1500
1528
|
requestBody?: {
|
|
1501
1529
|
teamId: string;
|
|
1502
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1530
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
1503
1531
|
postIds?: Array<(string)>;
|
|
1504
1532
|
};
|
|
1505
1533
|
};
|
|
@@ -1654,6 +1682,22 @@ type PostGetByReferenceKeyResponse = {
|
|
|
1654
1682
|
uploadId: string;
|
|
1655
1683
|
altText?: string | null;
|
|
1656
1684
|
}> | null;
|
|
1685
|
+
topicTag?: string | null;
|
|
1686
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
1687
|
+
linkAttachment?: string | null;
|
|
1688
|
+
poll?: {
|
|
1689
|
+
optionA: string;
|
|
1690
|
+
optionB: string;
|
|
1691
|
+
optionC?: string | null;
|
|
1692
|
+
optionD?: string | null;
|
|
1693
|
+
} | null;
|
|
1694
|
+
gif?: {
|
|
1695
|
+
gifId: string;
|
|
1696
|
+
provider?: 'GIPHY';
|
|
1697
|
+
} | null;
|
|
1698
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
1699
|
+
crosspostToInstagramStory?: boolean | null;
|
|
1700
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
1657
1701
|
} | null;
|
|
1658
1702
|
TIKTOK?: {
|
|
1659
1703
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -1901,6 +1945,14 @@ type PostGetByReferenceKeyResponse = {
|
|
|
1901
1945
|
*/
|
|
1902
1946
|
alertType?: 'COVID_19' | null;
|
|
1903
1947
|
} | null;
|
|
1948
|
+
SNAPCHAT?: {
|
|
1949
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
1950
|
+
uploadIds?: Array<(string)> | null;
|
|
1951
|
+
text?: string | null;
|
|
1952
|
+
description?: string | null;
|
|
1953
|
+
locale?: string | null;
|
|
1954
|
+
skipSaveToProfile?: boolean | null;
|
|
1955
|
+
} | null;
|
|
1904
1956
|
};
|
|
1905
1957
|
error?: string | null;
|
|
1906
1958
|
errors?: {
|
|
@@ -1918,6 +1970,7 @@ type PostGetByReferenceKeyResponse = {
|
|
|
1918
1970
|
THREADS?: string | null;
|
|
1919
1971
|
BLUESKY?: string | null;
|
|
1920
1972
|
GOOGLE_BUSINESS?: string | null;
|
|
1973
|
+
SNAPCHAT?: string | null;
|
|
1921
1974
|
} | null;
|
|
1922
1975
|
errorsVerbose?: {
|
|
1923
1976
|
TWITTER?: {
|
|
@@ -2046,6 +2099,15 @@ type PostGetByReferenceKeyResponse = {
|
|
|
2046
2099
|
meta?: unknown;
|
|
2047
2100
|
userFacingMessage?: string | null;
|
|
2048
2101
|
} | null;
|
|
2102
|
+
SNAPCHAT?: {
|
|
2103
|
+
code?: string | null;
|
|
2104
|
+
errorMessage?: string | null;
|
|
2105
|
+
isTransient?: boolean | null;
|
|
2106
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2107
|
+
httpStatus?: number | null;
|
|
2108
|
+
meta?: unknown;
|
|
2109
|
+
userFacingMessage?: string | null;
|
|
2110
|
+
} | null;
|
|
2049
2111
|
} | null;
|
|
2050
2112
|
externalData?: {
|
|
2051
2113
|
TWITTER?: {
|
|
@@ -2068,6 +2130,10 @@ type PostGetByReferenceKeyResponse = {
|
|
|
2068
2130
|
id?: string | null;
|
|
2069
2131
|
permalink?: string | null;
|
|
2070
2132
|
thumbnail?: string | null;
|
|
2133
|
+
/**
|
|
2134
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
2135
|
+
*/
|
|
2136
|
+
creationId?: string | null;
|
|
2071
2137
|
} | null;
|
|
2072
2138
|
TIKTOK?: {
|
|
2073
2139
|
id?: string | null;
|
|
@@ -2114,6 +2180,10 @@ type PostGetByReferenceKeyResponse = {
|
|
|
2114
2180
|
THREADS?: {
|
|
2115
2181
|
id?: string | null;
|
|
2116
2182
|
permalink?: string | null;
|
|
2183
|
+
/**
|
|
2184
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
2185
|
+
*/
|
|
2186
|
+
creationId?: string | null;
|
|
2117
2187
|
} | null;
|
|
2118
2188
|
BLUESKY?: {
|
|
2119
2189
|
id?: string | null;
|
|
@@ -2138,6 +2208,15 @@ type PostGetByReferenceKeyResponse = {
|
|
|
2138
2208
|
*/
|
|
2139
2209
|
permalink?: string | null;
|
|
2140
2210
|
} | null;
|
|
2211
|
+
SNAPCHAT?: {
|
|
2212
|
+
id?: string | null;
|
|
2213
|
+
mediaId?: string | null;
|
|
2214
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
2215
|
+
profileId?: string | null;
|
|
2216
|
+
sourceUploadId?: string | null;
|
|
2217
|
+
permalink?: string | null;
|
|
2218
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
2219
|
+
} | null;
|
|
2141
2220
|
} | null;
|
|
2142
2221
|
retryCount: number;
|
|
2143
2222
|
createdAt: string | null;
|
|
@@ -2179,10 +2258,11 @@ type PostGetByReferenceKeyResponse = {
|
|
|
2179
2258
|
deletedAt?: string | null;
|
|
2180
2259
|
socialAccount: {
|
|
2181
2260
|
id: string;
|
|
2182
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
2261
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
2183
2262
|
teamId: string;
|
|
2184
2263
|
username?: string | null;
|
|
2185
2264
|
displayName?: string | null;
|
|
2265
|
+
bio?: string | null;
|
|
2186
2266
|
avatarUrl?: string | null;
|
|
2187
2267
|
externalId?: string | null;
|
|
2188
2268
|
userUsername?: string | null;
|
|
@@ -2357,6 +2437,22 @@ type PostGetResponse = {
|
|
|
2357
2437
|
uploadId: string;
|
|
2358
2438
|
altText?: string | null;
|
|
2359
2439
|
}> | null;
|
|
2440
|
+
topicTag?: string | null;
|
|
2441
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
2442
|
+
linkAttachment?: string | null;
|
|
2443
|
+
poll?: {
|
|
2444
|
+
optionA: string;
|
|
2445
|
+
optionB: string;
|
|
2446
|
+
optionC?: string | null;
|
|
2447
|
+
optionD?: string | null;
|
|
2448
|
+
} | null;
|
|
2449
|
+
gif?: {
|
|
2450
|
+
gifId: string;
|
|
2451
|
+
provider?: 'GIPHY';
|
|
2452
|
+
} | null;
|
|
2453
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
2454
|
+
crosspostToInstagramStory?: boolean | null;
|
|
2455
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
2360
2456
|
} | null;
|
|
2361
2457
|
TIKTOK?: {
|
|
2362
2458
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -2604,6 +2700,14 @@ type PostGetResponse = {
|
|
|
2604
2700
|
*/
|
|
2605
2701
|
alertType?: 'COVID_19' | null;
|
|
2606
2702
|
} | null;
|
|
2703
|
+
SNAPCHAT?: {
|
|
2704
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
2705
|
+
uploadIds?: Array<(string)> | null;
|
|
2706
|
+
text?: string | null;
|
|
2707
|
+
description?: string | null;
|
|
2708
|
+
locale?: string | null;
|
|
2709
|
+
skipSaveToProfile?: boolean | null;
|
|
2710
|
+
} | null;
|
|
2607
2711
|
};
|
|
2608
2712
|
error?: string | null;
|
|
2609
2713
|
errors?: {
|
|
@@ -2621,6 +2725,7 @@ type PostGetResponse = {
|
|
|
2621
2725
|
THREADS?: string | null;
|
|
2622
2726
|
BLUESKY?: string | null;
|
|
2623
2727
|
GOOGLE_BUSINESS?: string | null;
|
|
2728
|
+
SNAPCHAT?: string | null;
|
|
2624
2729
|
} | null;
|
|
2625
2730
|
errorsVerbose?: {
|
|
2626
2731
|
TWITTER?: {
|
|
@@ -2749,6 +2854,15 @@ type PostGetResponse = {
|
|
|
2749
2854
|
meta?: unknown;
|
|
2750
2855
|
userFacingMessage?: string | null;
|
|
2751
2856
|
} | null;
|
|
2857
|
+
SNAPCHAT?: {
|
|
2858
|
+
code?: string | null;
|
|
2859
|
+
errorMessage?: string | null;
|
|
2860
|
+
isTransient?: boolean | null;
|
|
2861
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2862
|
+
httpStatus?: number | null;
|
|
2863
|
+
meta?: unknown;
|
|
2864
|
+
userFacingMessage?: string | null;
|
|
2865
|
+
} | null;
|
|
2752
2866
|
} | null;
|
|
2753
2867
|
externalData?: {
|
|
2754
2868
|
TWITTER?: {
|
|
@@ -2771,6 +2885,10 @@ type PostGetResponse = {
|
|
|
2771
2885
|
id?: string | null;
|
|
2772
2886
|
permalink?: string | null;
|
|
2773
2887
|
thumbnail?: string | null;
|
|
2888
|
+
/**
|
|
2889
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
2890
|
+
*/
|
|
2891
|
+
creationId?: string | null;
|
|
2774
2892
|
} | null;
|
|
2775
2893
|
TIKTOK?: {
|
|
2776
2894
|
id?: string | null;
|
|
@@ -2817,6 +2935,10 @@ type PostGetResponse = {
|
|
|
2817
2935
|
THREADS?: {
|
|
2818
2936
|
id?: string | null;
|
|
2819
2937
|
permalink?: string | null;
|
|
2938
|
+
/**
|
|
2939
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
2940
|
+
*/
|
|
2941
|
+
creationId?: string | null;
|
|
2820
2942
|
} | null;
|
|
2821
2943
|
BLUESKY?: {
|
|
2822
2944
|
id?: string | null;
|
|
@@ -2841,6 +2963,15 @@ type PostGetResponse = {
|
|
|
2841
2963
|
*/
|
|
2842
2964
|
permalink?: string | null;
|
|
2843
2965
|
} | null;
|
|
2966
|
+
SNAPCHAT?: {
|
|
2967
|
+
id?: string | null;
|
|
2968
|
+
mediaId?: string | null;
|
|
2969
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
2970
|
+
profileId?: string | null;
|
|
2971
|
+
sourceUploadId?: string | null;
|
|
2972
|
+
permalink?: string | null;
|
|
2973
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
2974
|
+
} | null;
|
|
2844
2975
|
} | null;
|
|
2845
2976
|
retryCount: number;
|
|
2846
2977
|
createdAt: string | null;
|
|
@@ -2882,10 +3013,11 @@ type PostGetResponse = {
|
|
|
2882
3013
|
deletedAt?: string | null;
|
|
2883
3014
|
socialAccount: {
|
|
2884
3015
|
id: string;
|
|
2885
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3016
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
2886
3017
|
teamId: string;
|
|
2887
3018
|
username?: string | null;
|
|
2888
3019
|
displayName?: string | null;
|
|
3020
|
+
bio?: string | null;
|
|
2889
3021
|
avatarUrl?: string | null;
|
|
2890
3022
|
externalId?: string | null;
|
|
2891
3023
|
userUsername?: string | null;
|
|
@@ -2932,7 +3064,7 @@ type PostUpdateData = {
|
|
|
2932
3064
|
referenceKey?: string | null;
|
|
2933
3065
|
postDate?: string;
|
|
2934
3066
|
status?: 'DRAFT' | 'SCHEDULED';
|
|
2935
|
-
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
3067
|
+
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT')>;
|
|
2936
3068
|
data?: {
|
|
2937
3069
|
TWITTER?: {
|
|
2938
3070
|
text?: string | null;
|
|
@@ -3059,6 +3191,22 @@ type PostUpdateData = {
|
|
|
3059
3191
|
uploadId: string;
|
|
3060
3192
|
altText?: string | null;
|
|
3061
3193
|
}> | null;
|
|
3194
|
+
topicTag?: string | null;
|
|
3195
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
3196
|
+
linkAttachment?: string | null;
|
|
3197
|
+
poll?: {
|
|
3198
|
+
optionA: string;
|
|
3199
|
+
optionB: string;
|
|
3200
|
+
optionC?: string | null;
|
|
3201
|
+
optionD?: string | null;
|
|
3202
|
+
} | null;
|
|
3203
|
+
gif?: {
|
|
3204
|
+
gifId: string;
|
|
3205
|
+
provider?: 'GIPHY';
|
|
3206
|
+
} | null;
|
|
3207
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
3208
|
+
crosspostToInstagramStory?: boolean | null;
|
|
3209
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
3062
3210
|
} | null;
|
|
3063
3211
|
TIKTOK?: {
|
|
3064
3212
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -3306,6 +3454,14 @@ type PostUpdateData = {
|
|
|
3306
3454
|
*/
|
|
3307
3455
|
alertType?: 'COVID_19' | null;
|
|
3308
3456
|
} | null;
|
|
3457
|
+
SNAPCHAT?: {
|
|
3458
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
3459
|
+
uploadIds?: Array<(string)> | null;
|
|
3460
|
+
text?: string | null;
|
|
3461
|
+
description?: string | null;
|
|
3462
|
+
locale?: string | null;
|
|
3463
|
+
skipSaveToProfile?: boolean | null;
|
|
3464
|
+
} | null;
|
|
3309
3465
|
};
|
|
3310
3466
|
};
|
|
3311
3467
|
};
|
|
@@ -3444,6 +3600,22 @@ type PostUpdateResponse = {
|
|
|
3444
3600
|
uploadId: string;
|
|
3445
3601
|
altText?: string | null;
|
|
3446
3602
|
}> | null;
|
|
3603
|
+
topicTag?: string | null;
|
|
3604
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
3605
|
+
linkAttachment?: string | null;
|
|
3606
|
+
poll?: {
|
|
3607
|
+
optionA: string;
|
|
3608
|
+
optionB: string;
|
|
3609
|
+
optionC?: string | null;
|
|
3610
|
+
optionD?: string | null;
|
|
3611
|
+
} | null;
|
|
3612
|
+
gif?: {
|
|
3613
|
+
gifId: string;
|
|
3614
|
+
provider?: 'GIPHY';
|
|
3615
|
+
} | null;
|
|
3616
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
3617
|
+
crosspostToInstagramStory?: boolean | null;
|
|
3618
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
3447
3619
|
} | null;
|
|
3448
3620
|
TIKTOK?: {
|
|
3449
3621
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -3691,6 +3863,14 @@ type PostUpdateResponse = {
|
|
|
3691
3863
|
*/
|
|
3692
3864
|
alertType?: 'COVID_19' | null;
|
|
3693
3865
|
} | null;
|
|
3866
|
+
SNAPCHAT?: {
|
|
3867
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
3868
|
+
uploadIds?: Array<(string)> | null;
|
|
3869
|
+
text?: string | null;
|
|
3870
|
+
description?: string | null;
|
|
3871
|
+
locale?: string | null;
|
|
3872
|
+
skipSaveToProfile?: boolean | null;
|
|
3873
|
+
} | null;
|
|
3694
3874
|
};
|
|
3695
3875
|
error?: string | null;
|
|
3696
3876
|
errors?: {
|
|
@@ -3708,6 +3888,7 @@ type PostUpdateResponse = {
|
|
|
3708
3888
|
THREADS?: string | null;
|
|
3709
3889
|
BLUESKY?: string | null;
|
|
3710
3890
|
GOOGLE_BUSINESS?: string | null;
|
|
3891
|
+
SNAPCHAT?: string | null;
|
|
3711
3892
|
} | null;
|
|
3712
3893
|
errorsVerbose?: {
|
|
3713
3894
|
TWITTER?: {
|
|
@@ -3836,6 +4017,15 @@ type PostUpdateResponse = {
|
|
|
3836
4017
|
meta?: unknown;
|
|
3837
4018
|
userFacingMessage?: string | null;
|
|
3838
4019
|
} | null;
|
|
4020
|
+
SNAPCHAT?: {
|
|
4021
|
+
code?: string | null;
|
|
4022
|
+
errorMessage?: string | null;
|
|
4023
|
+
isTransient?: boolean | null;
|
|
4024
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4025
|
+
httpStatus?: number | null;
|
|
4026
|
+
meta?: unknown;
|
|
4027
|
+
userFacingMessage?: string | null;
|
|
4028
|
+
} | null;
|
|
3839
4029
|
} | null;
|
|
3840
4030
|
externalData?: {
|
|
3841
4031
|
TWITTER?: {
|
|
@@ -3858,6 +4048,10 @@ type PostUpdateResponse = {
|
|
|
3858
4048
|
id?: string | null;
|
|
3859
4049
|
permalink?: string | null;
|
|
3860
4050
|
thumbnail?: string | null;
|
|
4051
|
+
/**
|
|
4052
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
4053
|
+
*/
|
|
4054
|
+
creationId?: string | null;
|
|
3861
4055
|
} | null;
|
|
3862
4056
|
TIKTOK?: {
|
|
3863
4057
|
id?: string | null;
|
|
@@ -3904,6 +4098,10 @@ type PostUpdateResponse = {
|
|
|
3904
4098
|
THREADS?: {
|
|
3905
4099
|
id?: string | null;
|
|
3906
4100
|
permalink?: string | null;
|
|
4101
|
+
/**
|
|
4102
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
4103
|
+
*/
|
|
4104
|
+
creationId?: string | null;
|
|
3907
4105
|
} | null;
|
|
3908
4106
|
BLUESKY?: {
|
|
3909
4107
|
id?: string | null;
|
|
@@ -3928,6 +4126,15 @@ type PostUpdateResponse = {
|
|
|
3928
4126
|
*/
|
|
3929
4127
|
permalink?: string | null;
|
|
3930
4128
|
} | null;
|
|
4129
|
+
SNAPCHAT?: {
|
|
4130
|
+
id?: string | null;
|
|
4131
|
+
mediaId?: string | null;
|
|
4132
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
4133
|
+
profileId?: string | null;
|
|
4134
|
+
sourceUploadId?: string | null;
|
|
4135
|
+
permalink?: string | null;
|
|
4136
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
4137
|
+
} | null;
|
|
3931
4138
|
} | null;
|
|
3932
4139
|
retryCount: number;
|
|
3933
4140
|
createdAt: string | null;
|
|
@@ -4072,6 +4279,22 @@ type PostDeleteResponse = {
|
|
|
4072
4279
|
uploadId: string;
|
|
4073
4280
|
altText?: string | null;
|
|
4074
4281
|
}> | null;
|
|
4282
|
+
topicTag?: string | null;
|
|
4283
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
4284
|
+
linkAttachment?: string | null;
|
|
4285
|
+
poll?: {
|
|
4286
|
+
optionA: string;
|
|
4287
|
+
optionB: string;
|
|
4288
|
+
optionC?: string | null;
|
|
4289
|
+
optionD?: string | null;
|
|
4290
|
+
} | null;
|
|
4291
|
+
gif?: {
|
|
4292
|
+
gifId: string;
|
|
4293
|
+
provider?: 'GIPHY';
|
|
4294
|
+
} | null;
|
|
4295
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
4296
|
+
crosspostToInstagramStory?: boolean | null;
|
|
4297
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
4075
4298
|
} | null;
|
|
4076
4299
|
TIKTOK?: {
|
|
4077
4300
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -4319,6 +4542,14 @@ type PostDeleteResponse = {
|
|
|
4319
4542
|
*/
|
|
4320
4543
|
alertType?: 'COVID_19' | null;
|
|
4321
4544
|
} | null;
|
|
4545
|
+
SNAPCHAT?: {
|
|
4546
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
4547
|
+
uploadIds?: Array<(string)> | null;
|
|
4548
|
+
text?: string | null;
|
|
4549
|
+
description?: string | null;
|
|
4550
|
+
locale?: string | null;
|
|
4551
|
+
skipSaveToProfile?: boolean | null;
|
|
4552
|
+
} | null;
|
|
4322
4553
|
};
|
|
4323
4554
|
error?: string | null;
|
|
4324
4555
|
errors?: {
|
|
@@ -4336,6 +4567,7 @@ type PostDeleteResponse = {
|
|
|
4336
4567
|
THREADS?: string | null;
|
|
4337
4568
|
BLUESKY?: string | null;
|
|
4338
4569
|
GOOGLE_BUSINESS?: string | null;
|
|
4570
|
+
SNAPCHAT?: string | null;
|
|
4339
4571
|
} | null;
|
|
4340
4572
|
errorsVerbose?: {
|
|
4341
4573
|
TWITTER?: {
|
|
@@ -4464,6 +4696,15 @@ type PostDeleteResponse = {
|
|
|
4464
4696
|
meta?: unknown;
|
|
4465
4697
|
userFacingMessage?: string | null;
|
|
4466
4698
|
} | null;
|
|
4699
|
+
SNAPCHAT?: {
|
|
4700
|
+
code?: string | null;
|
|
4701
|
+
errorMessage?: string | null;
|
|
4702
|
+
isTransient?: boolean | null;
|
|
4703
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4704
|
+
httpStatus?: number | null;
|
|
4705
|
+
meta?: unknown;
|
|
4706
|
+
userFacingMessage?: string | null;
|
|
4707
|
+
} | null;
|
|
4467
4708
|
} | null;
|
|
4468
4709
|
externalData?: {
|
|
4469
4710
|
TWITTER?: {
|
|
@@ -4486,6 +4727,10 @@ type PostDeleteResponse = {
|
|
|
4486
4727
|
id?: string | null;
|
|
4487
4728
|
permalink?: string | null;
|
|
4488
4729
|
thumbnail?: string | null;
|
|
4730
|
+
/**
|
|
4731
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
4732
|
+
*/
|
|
4733
|
+
creationId?: string | null;
|
|
4489
4734
|
} | null;
|
|
4490
4735
|
TIKTOK?: {
|
|
4491
4736
|
id?: string | null;
|
|
@@ -4532,6 +4777,10 @@ type PostDeleteResponse = {
|
|
|
4532
4777
|
THREADS?: {
|
|
4533
4778
|
id?: string | null;
|
|
4534
4779
|
permalink?: string | null;
|
|
4780
|
+
/**
|
|
4781
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
4782
|
+
*/
|
|
4783
|
+
creationId?: string | null;
|
|
4535
4784
|
} | null;
|
|
4536
4785
|
BLUESKY?: {
|
|
4537
4786
|
id?: string | null;
|
|
@@ -4556,6 +4805,15 @@ type PostDeleteResponse = {
|
|
|
4556
4805
|
*/
|
|
4557
4806
|
permalink?: string | null;
|
|
4558
4807
|
} | null;
|
|
4808
|
+
SNAPCHAT?: {
|
|
4809
|
+
id?: string | null;
|
|
4810
|
+
mediaId?: string | null;
|
|
4811
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
4812
|
+
profileId?: string | null;
|
|
4813
|
+
sourceUploadId?: string | null;
|
|
4814
|
+
permalink?: string | null;
|
|
4815
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
4816
|
+
} | null;
|
|
4559
4817
|
} | null;
|
|
4560
4818
|
retryCount: number;
|
|
4561
4819
|
createdAt: string | null;
|
|
@@ -4567,7 +4825,7 @@ type PostGetListData = {
|
|
|
4567
4825
|
offset?: number | null;
|
|
4568
4826
|
order?: 'ASC' | 'DESC' | null;
|
|
4569
4827
|
orderBy?: 'createdAt' | 'updatedAt' | 'postDate' | 'postedDate' | 'deletedAt' | null;
|
|
4570
|
-
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')> | null;
|
|
4828
|
+
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT')> | null;
|
|
4571
4829
|
postDateFrom?: string | null;
|
|
4572
4830
|
postDateTo?: string | null;
|
|
4573
4831
|
q?: string | null;
|
|
@@ -4710,6 +4968,22 @@ type PostGetListResponse = {
|
|
|
4710
4968
|
uploadId: string;
|
|
4711
4969
|
altText?: string | null;
|
|
4712
4970
|
}> | null;
|
|
4971
|
+
topicTag?: string | null;
|
|
4972
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
4973
|
+
linkAttachment?: string | null;
|
|
4974
|
+
poll?: {
|
|
4975
|
+
optionA: string;
|
|
4976
|
+
optionB: string;
|
|
4977
|
+
optionC?: string | null;
|
|
4978
|
+
optionD?: string | null;
|
|
4979
|
+
} | null;
|
|
4980
|
+
gif?: {
|
|
4981
|
+
gifId: string;
|
|
4982
|
+
provider?: 'GIPHY';
|
|
4983
|
+
} | null;
|
|
4984
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
4985
|
+
crosspostToInstagramStory?: boolean | null;
|
|
4986
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
4713
4987
|
} | null;
|
|
4714
4988
|
TIKTOK?: {
|
|
4715
4989
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -4957,6 +5231,14 @@ type PostGetListResponse = {
|
|
|
4957
5231
|
*/
|
|
4958
5232
|
alertType?: 'COVID_19' | null;
|
|
4959
5233
|
} | null;
|
|
5234
|
+
SNAPCHAT?: {
|
|
5235
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
5236
|
+
uploadIds?: Array<(string)> | null;
|
|
5237
|
+
text?: string | null;
|
|
5238
|
+
description?: string | null;
|
|
5239
|
+
locale?: string | null;
|
|
5240
|
+
skipSaveToProfile?: boolean | null;
|
|
5241
|
+
} | null;
|
|
4960
5242
|
};
|
|
4961
5243
|
error?: string | null;
|
|
4962
5244
|
errors?: {
|
|
@@ -4974,6 +5256,7 @@ type PostGetListResponse = {
|
|
|
4974
5256
|
THREADS?: string | null;
|
|
4975
5257
|
BLUESKY?: string | null;
|
|
4976
5258
|
GOOGLE_BUSINESS?: string | null;
|
|
5259
|
+
SNAPCHAT?: string | null;
|
|
4977
5260
|
} | null;
|
|
4978
5261
|
errorsVerbose?: {
|
|
4979
5262
|
TWITTER?: {
|
|
@@ -5102,6 +5385,15 @@ type PostGetListResponse = {
|
|
|
5102
5385
|
meta?: unknown;
|
|
5103
5386
|
userFacingMessage?: string | null;
|
|
5104
5387
|
} | null;
|
|
5388
|
+
SNAPCHAT?: {
|
|
5389
|
+
code?: string | null;
|
|
5390
|
+
errorMessage?: string | null;
|
|
5391
|
+
isTransient?: boolean | null;
|
|
5392
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5393
|
+
httpStatus?: number | null;
|
|
5394
|
+
meta?: unknown;
|
|
5395
|
+
userFacingMessage?: string | null;
|
|
5396
|
+
} | null;
|
|
5105
5397
|
} | null;
|
|
5106
5398
|
externalData?: {
|
|
5107
5399
|
TWITTER?: {
|
|
@@ -5124,6 +5416,10 @@ type PostGetListResponse = {
|
|
|
5124
5416
|
id?: string | null;
|
|
5125
5417
|
permalink?: string | null;
|
|
5126
5418
|
thumbnail?: string | null;
|
|
5419
|
+
/**
|
|
5420
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
5421
|
+
*/
|
|
5422
|
+
creationId?: string | null;
|
|
5127
5423
|
} | null;
|
|
5128
5424
|
TIKTOK?: {
|
|
5129
5425
|
id?: string | null;
|
|
@@ -5170,6 +5466,10 @@ type PostGetListResponse = {
|
|
|
5170
5466
|
THREADS?: {
|
|
5171
5467
|
id?: string | null;
|
|
5172
5468
|
permalink?: string | null;
|
|
5469
|
+
/**
|
|
5470
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
5471
|
+
*/
|
|
5472
|
+
creationId?: string | null;
|
|
5173
5473
|
} | null;
|
|
5174
5474
|
BLUESKY?: {
|
|
5175
5475
|
id?: string | null;
|
|
@@ -5194,6 +5494,15 @@ type PostGetListResponse = {
|
|
|
5194
5494
|
*/
|
|
5195
5495
|
permalink?: string | null;
|
|
5196
5496
|
} | null;
|
|
5497
|
+
SNAPCHAT?: {
|
|
5498
|
+
id?: string | null;
|
|
5499
|
+
mediaId?: string | null;
|
|
5500
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
5501
|
+
profileId?: string | null;
|
|
5502
|
+
sourceUploadId?: string | null;
|
|
5503
|
+
permalink?: string | null;
|
|
5504
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
5505
|
+
} | null;
|
|
5197
5506
|
} | null;
|
|
5198
5507
|
retryCount: number;
|
|
5199
5508
|
createdAt: string | null;
|
|
@@ -5235,10 +5544,11 @@ type PostGetListResponse = {
|
|
|
5235
5544
|
deletedAt?: string | null;
|
|
5236
5545
|
socialAccount: {
|
|
5237
5546
|
id: string;
|
|
5238
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5547
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
5239
5548
|
teamId: string;
|
|
5240
5549
|
username?: string | null;
|
|
5241
5550
|
displayName?: string | null;
|
|
5551
|
+
bio?: string | null;
|
|
5242
5552
|
avatarUrl?: string | null;
|
|
5243
5553
|
externalId?: string | null;
|
|
5244
5554
|
userUsername?: string | null;
|
|
@@ -5287,7 +5597,7 @@ type PostCreateData = {
|
|
|
5287
5597
|
referenceKey?: string | null;
|
|
5288
5598
|
postDate: string;
|
|
5289
5599
|
status: 'DRAFT' | 'SCHEDULED';
|
|
5290
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
5600
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT')>;
|
|
5291
5601
|
data: {
|
|
5292
5602
|
TWITTER?: {
|
|
5293
5603
|
text?: string | null;
|
|
@@ -5414,6 +5724,22 @@ type PostCreateData = {
|
|
|
5414
5724
|
uploadId: string;
|
|
5415
5725
|
altText?: string | null;
|
|
5416
5726
|
}> | null;
|
|
5727
|
+
topicTag?: string | null;
|
|
5728
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
5729
|
+
linkAttachment?: string | null;
|
|
5730
|
+
poll?: {
|
|
5731
|
+
optionA: string;
|
|
5732
|
+
optionB: string;
|
|
5733
|
+
optionC?: string | null;
|
|
5734
|
+
optionD?: string | null;
|
|
5735
|
+
} | null;
|
|
5736
|
+
gif?: {
|
|
5737
|
+
gifId: string;
|
|
5738
|
+
provider?: 'GIPHY';
|
|
5739
|
+
} | null;
|
|
5740
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
5741
|
+
crosspostToInstagramStory?: boolean | null;
|
|
5742
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
5417
5743
|
} | null;
|
|
5418
5744
|
TIKTOK?: {
|
|
5419
5745
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -5661,6 +5987,14 @@ type PostCreateData = {
|
|
|
5661
5987
|
*/
|
|
5662
5988
|
alertType?: 'COVID_19' | null;
|
|
5663
5989
|
} | null;
|
|
5990
|
+
SNAPCHAT?: {
|
|
5991
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
5992
|
+
uploadIds?: Array<(string)> | null;
|
|
5993
|
+
text?: string | null;
|
|
5994
|
+
description?: string | null;
|
|
5995
|
+
locale?: string | null;
|
|
5996
|
+
skipSaveToProfile?: boolean | null;
|
|
5997
|
+
} | null;
|
|
5664
5998
|
};
|
|
5665
5999
|
};
|
|
5666
6000
|
};
|
|
@@ -5799,6 +6133,22 @@ type PostCreateResponse = {
|
|
|
5799
6133
|
uploadId: string;
|
|
5800
6134
|
altText?: string | null;
|
|
5801
6135
|
}> | null;
|
|
6136
|
+
topicTag?: string | null;
|
|
6137
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
6138
|
+
linkAttachment?: string | null;
|
|
6139
|
+
poll?: {
|
|
6140
|
+
optionA: string;
|
|
6141
|
+
optionB: string;
|
|
6142
|
+
optionC?: string | null;
|
|
6143
|
+
optionD?: string | null;
|
|
6144
|
+
} | null;
|
|
6145
|
+
gif?: {
|
|
6146
|
+
gifId: string;
|
|
6147
|
+
provider?: 'GIPHY';
|
|
6148
|
+
} | null;
|
|
6149
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
6150
|
+
crosspostToInstagramStory?: boolean | null;
|
|
6151
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
5802
6152
|
} | null;
|
|
5803
6153
|
TIKTOK?: {
|
|
5804
6154
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -6046,6 +6396,14 @@ type PostCreateResponse = {
|
|
|
6046
6396
|
*/
|
|
6047
6397
|
alertType?: 'COVID_19' | null;
|
|
6048
6398
|
} | null;
|
|
6399
|
+
SNAPCHAT?: {
|
|
6400
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
6401
|
+
uploadIds?: Array<(string)> | null;
|
|
6402
|
+
text?: string | null;
|
|
6403
|
+
description?: string | null;
|
|
6404
|
+
locale?: string | null;
|
|
6405
|
+
skipSaveToProfile?: boolean | null;
|
|
6406
|
+
} | null;
|
|
6049
6407
|
};
|
|
6050
6408
|
error?: string | null;
|
|
6051
6409
|
errors?: {
|
|
@@ -6063,6 +6421,7 @@ type PostCreateResponse = {
|
|
|
6063
6421
|
THREADS?: string | null;
|
|
6064
6422
|
BLUESKY?: string | null;
|
|
6065
6423
|
GOOGLE_BUSINESS?: string | null;
|
|
6424
|
+
SNAPCHAT?: string | null;
|
|
6066
6425
|
} | null;
|
|
6067
6426
|
errorsVerbose?: {
|
|
6068
6427
|
TWITTER?: {
|
|
@@ -6191,6 +6550,15 @@ type PostCreateResponse = {
|
|
|
6191
6550
|
meta?: unknown;
|
|
6192
6551
|
userFacingMessage?: string | null;
|
|
6193
6552
|
} | null;
|
|
6553
|
+
SNAPCHAT?: {
|
|
6554
|
+
code?: string | null;
|
|
6555
|
+
errorMessage?: string | null;
|
|
6556
|
+
isTransient?: boolean | null;
|
|
6557
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6558
|
+
httpStatus?: number | null;
|
|
6559
|
+
meta?: unknown;
|
|
6560
|
+
userFacingMessage?: string | null;
|
|
6561
|
+
} | null;
|
|
6194
6562
|
} | null;
|
|
6195
6563
|
externalData?: {
|
|
6196
6564
|
TWITTER?: {
|
|
@@ -6213,6 +6581,10 @@ type PostCreateResponse = {
|
|
|
6213
6581
|
id?: string | null;
|
|
6214
6582
|
permalink?: string | null;
|
|
6215
6583
|
thumbnail?: string | null;
|
|
6584
|
+
/**
|
|
6585
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
6586
|
+
*/
|
|
6587
|
+
creationId?: string | null;
|
|
6216
6588
|
} | null;
|
|
6217
6589
|
TIKTOK?: {
|
|
6218
6590
|
id?: string | null;
|
|
@@ -6259,6 +6631,10 @@ type PostCreateResponse = {
|
|
|
6259
6631
|
THREADS?: {
|
|
6260
6632
|
id?: string | null;
|
|
6261
6633
|
permalink?: string | null;
|
|
6634
|
+
/**
|
|
6635
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
6636
|
+
*/
|
|
6637
|
+
creationId?: string | null;
|
|
6262
6638
|
} | null;
|
|
6263
6639
|
BLUESKY?: {
|
|
6264
6640
|
id?: string | null;
|
|
@@ -6283,6 +6659,15 @@ type PostCreateResponse = {
|
|
|
6283
6659
|
*/
|
|
6284
6660
|
permalink?: string | null;
|
|
6285
6661
|
} | null;
|
|
6662
|
+
SNAPCHAT?: {
|
|
6663
|
+
id?: string | null;
|
|
6664
|
+
mediaId?: string | null;
|
|
6665
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
6666
|
+
profileId?: string | null;
|
|
6667
|
+
sourceUploadId?: string | null;
|
|
6668
|
+
permalink?: string | null;
|
|
6669
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
6670
|
+
} | null;
|
|
6286
6671
|
} | null;
|
|
6287
6672
|
retryCount: number;
|
|
6288
6673
|
createdAt: string | null;
|
|
@@ -6427,6 +6812,22 @@ type PostRetryResponse = {
|
|
|
6427
6812
|
uploadId: string;
|
|
6428
6813
|
altText?: string | null;
|
|
6429
6814
|
}> | null;
|
|
6815
|
+
topicTag?: string | null;
|
|
6816
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
6817
|
+
linkAttachment?: string | null;
|
|
6818
|
+
poll?: {
|
|
6819
|
+
optionA: string;
|
|
6820
|
+
optionB: string;
|
|
6821
|
+
optionC?: string | null;
|
|
6822
|
+
optionD?: string | null;
|
|
6823
|
+
} | null;
|
|
6824
|
+
gif?: {
|
|
6825
|
+
gifId: string;
|
|
6826
|
+
provider?: 'GIPHY';
|
|
6827
|
+
} | null;
|
|
6828
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
6829
|
+
crosspostToInstagramStory?: boolean | null;
|
|
6830
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
6430
6831
|
} | null;
|
|
6431
6832
|
TIKTOK?: {
|
|
6432
6833
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -6674,6 +7075,14 @@ type PostRetryResponse = {
|
|
|
6674
7075
|
*/
|
|
6675
7076
|
alertType?: 'COVID_19' | null;
|
|
6676
7077
|
} | null;
|
|
7078
|
+
SNAPCHAT?: {
|
|
7079
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
7080
|
+
uploadIds?: Array<(string)> | null;
|
|
7081
|
+
text?: string | null;
|
|
7082
|
+
description?: string | null;
|
|
7083
|
+
locale?: string | null;
|
|
7084
|
+
skipSaveToProfile?: boolean | null;
|
|
7085
|
+
} | null;
|
|
6677
7086
|
};
|
|
6678
7087
|
error?: string | null;
|
|
6679
7088
|
errors?: {
|
|
@@ -6691,6 +7100,7 @@ type PostRetryResponse = {
|
|
|
6691
7100
|
THREADS?: string | null;
|
|
6692
7101
|
BLUESKY?: string | null;
|
|
6693
7102
|
GOOGLE_BUSINESS?: string | null;
|
|
7103
|
+
SNAPCHAT?: string | null;
|
|
6694
7104
|
} | null;
|
|
6695
7105
|
errorsVerbose?: {
|
|
6696
7106
|
TWITTER?: {
|
|
@@ -6819,6 +7229,15 @@ type PostRetryResponse = {
|
|
|
6819
7229
|
meta?: unknown;
|
|
6820
7230
|
userFacingMessage?: string | null;
|
|
6821
7231
|
} | null;
|
|
7232
|
+
SNAPCHAT?: {
|
|
7233
|
+
code?: string | null;
|
|
7234
|
+
errorMessage?: string | null;
|
|
7235
|
+
isTransient?: boolean | null;
|
|
7236
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7237
|
+
httpStatus?: number | null;
|
|
7238
|
+
meta?: unknown;
|
|
7239
|
+
userFacingMessage?: string | null;
|
|
7240
|
+
} | null;
|
|
6822
7241
|
} | null;
|
|
6823
7242
|
externalData?: {
|
|
6824
7243
|
TWITTER?: {
|
|
@@ -6841,6 +7260,10 @@ type PostRetryResponse = {
|
|
|
6841
7260
|
id?: string | null;
|
|
6842
7261
|
permalink?: string | null;
|
|
6843
7262
|
thumbnail?: string | null;
|
|
7263
|
+
/**
|
|
7264
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
7265
|
+
*/
|
|
7266
|
+
creationId?: string | null;
|
|
6844
7267
|
} | null;
|
|
6845
7268
|
TIKTOK?: {
|
|
6846
7269
|
id?: string | null;
|
|
@@ -6887,6 +7310,10 @@ type PostRetryResponse = {
|
|
|
6887
7310
|
THREADS?: {
|
|
6888
7311
|
id?: string | null;
|
|
6889
7312
|
permalink?: string | null;
|
|
7313
|
+
/**
|
|
7314
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
7315
|
+
*/
|
|
7316
|
+
creationId?: string | null;
|
|
6890
7317
|
} | null;
|
|
6891
7318
|
BLUESKY?: {
|
|
6892
7319
|
id?: string | null;
|
|
@@ -6911,6 +7338,15 @@ type PostRetryResponse = {
|
|
|
6911
7338
|
*/
|
|
6912
7339
|
permalink?: string | null;
|
|
6913
7340
|
} | null;
|
|
7341
|
+
SNAPCHAT?: {
|
|
7342
|
+
id?: string | null;
|
|
7343
|
+
mediaId?: string | null;
|
|
7344
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
7345
|
+
profileId?: string | null;
|
|
7346
|
+
sourceUploadId?: string | null;
|
|
7347
|
+
permalink?: string | null;
|
|
7348
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
7349
|
+
} | null;
|
|
6914
7350
|
} | null;
|
|
6915
7351
|
retryCount: number;
|
|
6916
7352
|
createdAt: string | null;
|
|
@@ -6918,16 +7354,17 @@ type PostRetryResponse = {
|
|
|
6918
7354
|
deletedAt?: string | null;
|
|
6919
7355
|
};
|
|
6920
7356
|
type AnalyticsGetSocialAccountAnalyticsData = {
|
|
6921
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
7357
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
6922
7358
|
teamId: string;
|
|
6923
7359
|
};
|
|
6924
7360
|
type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
6925
7361
|
socialAccount: {
|
|
6926
7362
|
id: string;
|
|
6927
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
7363
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
6928
7364
|
teamId: string;
|
|
6929
7365
|
username?: string | null;
|
|
6930
7366
|
displayName?: string | null;
|
|
7367
|
+
bio?: string | null;
|
|
6931
7368
|
avatarUrl?: string | null;
|
|
6932
7369
|
externalId?: string | null;
|
|
6933
7370
|
userUsername?: string | null;
|
|
@@ -6982,7 +7419,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
|
6982
7419
|
};
|
|
6983
7420
|
type AnalyticsGetPostAnalyticsData = {
|
|
6984
7421
|
importedPostId?: string | null;
|
|
6985
|
-
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | null;
|
|
7422
|
+
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT' | null;
|
|
6986
7423
|
postId?: string | null;
|
|
6987
7424
|
};
|
|
6988
7425
|
type AnalyticsGetPostAnalyticsResponse = {
|
|
@@ -7121,6 +7558,22 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7121
7558
|
uploadId: string;
|
|
7122
7559
|
altText?: string | null;
|
|
7123
7560
|
}> | null;
|
|
7561
|
+
topicTag?: string | null;
|
|
7562
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
7563
|
+
linkAttachment?: string | null;
|
|
7564
|
+
poll?: {
|
|
7565
|
+
optionA: string;
|
|
7566
|
+
optionB: string;
|
|
7567
|
+
optionC?: string | null;
|
|
7568
|
+
optionD?: string | null;
|
|
7569
|
+
} | null;
|
|
7570
|
+
gif?: {
|
|
7571
|
+
gifId: string;
|
|
7572
|
+
provider?: 'GIPHY';
|
|
7573
|
+
} | null;
|
|
7574
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
7575
|
+
crosspostToInstagramStory?: boolean | null;
|
|
7576
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
7124
7577
|
} | null;
|
|
7125
7578
|
TIKTOK?: {
|
|
7126
7579
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -7368,6 +7821,14 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7368
7821
|
*/
|
|
7369
7822
|
alertType?: 'COVID_19' | null;
|
|
7370
7823
|
} | null;
|
|
7824
|
+
SNAPCHAT?: {
|
|
7825
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
7826
|
+
uploadIds?: Array<(string)> | null;
|
|
7827
|
+
text?: string | null;
|
|
7828
|
+
description?: string | null;
|
|
7829
|
+
locale?: string | null;
|
|
7830
|
+
skipSaveToProfile?: boolean | null;
|
|
7831
|
+
} | null;
|
|
7371
7832
|
};
|
|
7372
7833
|
error?: string | null;
|
|
7373
7834
|
errors?: {
|
|
@@ -7385,6 +7846,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7385
7846
|
THREADS?: string | null;
|
|
7386
7847
|
BLUESKY?: string | null;
|
|
7387
7848
|
GOOGLE_BUSINESS?: string | null;
|
|
7849
|
+
SNAPCHAT?: string | null;
|
|
7388
7850
|
} | null;
|
|
7389
7851
|
errorsVerbose?: {
|
|
7390
7852
|
TWITTER?: {
|
|
@@ -7513,6 +7975,15 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7513
7975
|
meta?: unknown;
|
|
7514
7976
|
userFacingMessage?: string | null;
|
|
7515
7977
|
} | null;
|
|
7978
|
+
SNAPCHAT?: {
|
|
7979
|
+
code?: string | null;
|
|
7980
|
+
errorMessage?: string | null;
|
|
7981
|
+
isTransient?: boolean | null;
|
|
7982
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7983
|
+
httpStatus?: number | null;
|
|
7984
|
+
meta?: unknown;
|
|
7985
|
+
userFacingMessage?: string | null;
|
|
7986
|
+
} | null;
|
|
7516
7987
|
} | null;
|
|
7517
7988
|
externalData?: {
|
|
7518
7989
|
TWITTER?: {
|
|
@@ -7535,6 +8006,10 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7535
8006
|
id?: string | null;
|
|
7536
8007
|
permalink?: string | null;
|
|
7537
8008
|
thumbnail?: string | null;
|
|
8009
|
+
/**
|
|
8010
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
8011
|
+
*/
|
|
8012
|
+
creationId?: string | null;
|
|
7538
8013
|
} | null;
|
|
7539
8014
|
TIKTOK?: {
|
|
7540
8015
|
id?: string | null;
|
|
@@ -7581,6 +8056,10 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7581
8056
|
THREADS?: {
|
|
7582
8057
|
id?: string | null;
|
|
7583
8058
|
permalink?: string | null;
|
|
8059
|
+
/**
|
|
8060
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
8061
|
+
*/
|
|
8062
|
+
creationId?: string | null;
|
|
7584
8063
|
} | null;
|
|
7585
8064
|
BLUESKY?: {
|
|
7586
8065
|
id?: string | null;
|
|
@@ -7605,6 +8084,15 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7605
8084
|
*/
|
|
7606
8085
|
permalink?: string | null;
|
|
7607
8086
|
} | null;
|
|
8087
|
+
SNAPCHAT?: {
|
|
8088
|
+
id?: string | null;
|
|
8089
|
+
mediaId?: string | null;
|
|
8090
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
8091
|
+
profileId?: string | null;
|
|
8092
|
+
sourceUploadId?: string | null;
|
|
8093
|
+
permalink?: string | null;
|
|
8094
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
8095
|
+
} | null;
|
|
7608
8096
|
} | null;
|
|
7609
8097
|
retryCount: number;
|
|
7610
8098
|
createdAt: string | null;
|
|
@@ -7652,16 +8140,17 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7652
8140
|
}>;
|
|
7653
8141
|
};
|
|
7654
8142
|
type AnalyticsGetSocialAccountAnalyticsRawData = {
|
|
7655
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
8143
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
7656
8144
|
teamId: string;
|
|
7657
8145
|
};
|
|
7658
8146
|
type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
7659
8147
|
socialAccount: {
|
|
7660
8148
|
id: string;
|
|
7661
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
8149
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
7662
8150
|
teamId: string;
|
|
7663
8151
|
username?: string | null;
|
|
7664
8152
|
displayName?: string | null;
|
|
8153
|
+
bio?: string | null;
|
|
7665
8154
|
avatarUrl?: string | null;
|
|
7666
8155
|
externalId?: string | null;
|
|
7667
8156
|
userUsername?: string | null;
|
|
@@ -7709,7 +8198,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
|
7709
8198
|
};
|
|
7710
8199
|
type AnalyticsGetPostAnalyticsRawData = {
|
|
7711
8200
|
importedPostId?: string | null;
|
|
7712
|
-
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | null;
|
|
8201
|
+
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT' | null;
|
|
7713
8202
|
postId?: string | null;
|
|
7714
8203
|
};
|
|
7715
8204
|
type AnalyticsGetPostAnalyticsRawResponse = {
|
|
@@ -7848,6 +8337,22 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
7848
8337
|
uploadId: string;
|
|
7849
8338
|
altText?: string | null;
|
|
7850
8339
|
}> | null;
|
|
8340
|
+
topicTag?: string | null;
|
|
8341
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
8342
|
+
linkAttachment?: string | null;
|
|
8343
|
+
poll?: {
|
|
8344
|
+
optionA: string;
|
|
8345
|
+
optionB: string;
|
|
8346
|
+
optionC?: string | null;
|
|
8347
|
+
optionD?: string | null;
|
|
8348
|
+
} | null;
|
|
8349
|
+
gif?: {
|
|
8350
|
+
gifId: string;
|
|
8351
|
+
provider?: 'GIPHY';
|
|
8352
|
+
} | null;
|
|
8353
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
8354
|
+
crosspostToInstagramStory?: boolean | null;
|
|
8355
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
7851
8356
|
} | null;
|
|
7852
8357
|
TIKTOK?: {
|
|
7853
8358
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -8095,6 +8600,14 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8095
8600
|
*/
|
|
8096
8601
|
alertType?: 'COVID_19' | null;
|
|
8097
8602
|
} | null;
|
|
8603
|
+
SNAPCHAT?: {
|
|
8604
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
8605
|
+
uploadIds?: Array<(string)> | null;
|
|
8606
|
+
text?: string | null;
|
|
8607
|
+
description?: string | null;
|
|
8608
|
+
locale?: string | null;
|
|
8609
|
+
skipSaveToProfile?: boolean | null;
|
|
8610
|
+
} | null;
|
|
8098
8611
|
};
|
|
8099
8612
|
error?: string | null;
|
|
8100
8613
|
errors?: {
|
|
@@ -8112,6 +8625,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8112
8625
|
THREADS?: string | null;
|
|
8113
8626
|
BLUESKY?: string | null;
|
|
8114
8627
|
GOOGLE_BUSINESS?: string | null;
|
|
8628
|
+
SNAPCHAT?: string | null;
|
|
8115
8629
|
} | null;
|
|
8116
8630
|
errorsVerbose?: {
|
|
8117
8631
|
TWITTER?: {
|
|
@@ -8240,6 +8754,15 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8240
8754
|
meta?: unknown;
|
|
8241
8755
|
userFacingMessage?: string | null;
|
|
8242
8756
|
} | null;
|
|
8757
|
+
SNAPCHAT?: {
|
|
8758
|
+
code?: string | null;
|
|
8759
|
+
errorMessage?: string | null;
|
|
8760
|
+
isTransient?: boolean | null;
|
|
8761
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8762
|
+
httpStatus?: number | null;
|
|
8763
|
+
meta?: unknown;
|
|
8764
|
+
userFacingMessage?: string | null;
|
|
8765
|
+
} | null;
|
|
8243
8766
|
} | null;
|
|
8244
8767
|
externalData?: {
|
|
8245
8768
|
TWITTER?: {
|
|
@@ -8262,6 +8785,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8262
8785
|
id?: string | null;
|
|
8263
8786
|
permalink?: string | null;
|
|
8264
8787
|
thumbnail?: string | null;
|
|
8788
|
+
/**
|
|
8789
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
8790
|
+
*/
|
|
8791
|
+
creationId?: string | null;
|
|
8265
8792
|
} | null;
|
|
8266
8793
|
TIKTOK?: {
|
|
8267
8794
|
id?: string | null;
|
|
@@ -8308,6 +8835,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8308
8835
|
THREADS?: {
|
|
8309
8836
|
id?: string | null;
|
|
8310
8837
|
permalink?: string | null;
|
|
8838
|
+
/**
|
|
8839
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
8840
|
+
*/
|
|
8841
|
+
creationId?: string | null;
|
|
8311
8842
|
} | null;
|
|
8312
8843
|
BLUESKY?: {
|
|
8313
8844
|
id?: string | null;
|
|
@@ -8332,6 +8863,15 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8332
8863
|
*/
|
|
8333
8864
|
permalink?: string | null;
|
|
8334
8865
|
} | null;
|
|
8866
|
+
SNAPCHAT?: {
|
|
8867
|
+
id?: string | null;
|
|
8868
|
+
mediaId?: string | null;
|
|
8869
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
8870
|
+
profileId?: string | null;
|
|
8871
|
+
sourceUploadId?: string | null;
|
|
8872
|
+
permalink?: string | null;
|
|
8873
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
8874
|
+
} | null;
|
|
8335
8875
|
} | null;
|
|
8336
8876
|
retryCount: number;
|
|
8337
8877
|
createdAt: string | null;
|
|
@@ -8373,7 +8913,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8373
8913
|
type AnalyticsGetBulkPostAnalyticsData = {
|
|
8374
8914
|
limit?: number;
|
|
8375
8915
|
page?: number;
|
|
8376
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
8916
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
8377
8917
|
postIds: Array<(string)>;
|
|
8378
8918
|
};
|
|
8379
8919
|
type AnalyticsGetBulkPostAnalyticsResponse = {
|
|
@@ -8412,7 +8952,7 @@ type AnalyticsForceSocialAccountAnalyticsData = {
|
|
|
8412
8952
|
*/
|
|
8413
8953
|
requestBody?: {
|
|
8414
8954
|
teamId: string;
|
|
8415
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
8955
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
8416
8956
|
};
|
|
8417
8957
|
};
|
|
8418
8958
|
type AnalyticsForceSocialAccountAnalyticsResponse = {
|
|
@@ -8438,7 +8978,7 @@ type AnalyticsForcePostAnalyticsData = {
|
|
|
8438
8978
|
*/
|
|
8439
8979
|
requestBody?: {
|
|
8440
8980
|
postId?: string | null;
|
|
8441
|
-
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | null;
|
|
8981
|
+
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT' | null;
|
|
8442
8982
|
importedPostId?: string | null;
|
|
8443
8983
|
};
|
|
8444
8984
|
};
|
|
@@ -11547,6 +12087,37 @@ type MiscInstagramBusinessDiscoveryResponse = {
|
|
|
11547
12087
|
* Full name if available
|
|
11548
12088
|
*/
|
|
11549
12089
|
name?: string;
|
|
12090
|
+
/**
|
|
12091
|
+
* Up to 12 recent public media items
|
|
12092
|
+
*/
|
|
12093
|
+
media?: {
|
|
12094
|
+
data: Array<{
|
|
12095
|
+
/**
|
|
12096
|
+
* Instagram Media ID
|
|
12097
|
+
*/
|
|
12098
|
+
id: string;
|
|
12099
|
+
/**
|
|
12100
|
+
* Instagram media type
|
|
12101
|
+
*/
|
|
12102
|
+
media_type: string;
|
|
12103
|
+
/**
|
|
12104
|
+
* Number of likes if available
|
|
12105
|
+
*/
|
|
12106
|
+
like_count?: number;
|
|
12107
|
+
/**
|
|
12108
|
+
* Number of comments if available
|
|
12109
|
+
*/
|
|
12110
|
+
comments_count?: number;
|
|
12111
|
+
/**
|
|
12112
|
+
* Media publication timestamp
|
|
12113
|
+
*/
|
|
12114
|
+
timestamp?: string;
|
|
12115
|
+
/**
|
|
12116
|
+
* Media caption if available
|
|
12117
|
+
*/
|
|
12118
|
+
caption?: string;
|
|
12119
|
+
}>;
|
|
12120
|
+
};
|
|
11550
12121
|
} | null;
|
|
11551
12122
|
};
|
|
11552
12123
|
type MiscInstagramSearchLocationsData = {
|
|
@@ -12144,7 +12715,7 @@ type MiscTiktokGetCommercialMusicTrendingListResponse = Array<{
|
|
|
12144
12715
|
/**
|
|
12145
12716
|
* The name of the commercial music track.
|
|
12146
12717
|
*/
|
|
12147
|
-
commercial_music_name
|
|
12718
|
+
commercial_music_name?: string | null;
|
|
12148
12719
|
/**
|
|
12149
12720
|
* Track duration in seconds.
|
|
12150
12721
|
*/
|
|
@@ -12577,6 +13148,10 @@ type $OpenApiTs = {
|
|
|
12577
13148
|
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
12578
13149
|
note: string;
|
|
12579
13150
|
};
|
|
13151
|
+
SNAPCHAT: {
|
|
13152
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
13153
|
+
note: string;
|
|
13154
|
+
};
|
|
12580
13155
|
};
|
|
12581
13156
|
};
|
|
12582
13157
|
/**
|
|
@@ -12657,6 +13232,7 @@ type $OpenApiTs = {
|
|
|
12657
13232
|
MASTODON?: number;
|
|
12658
13233
|
BLUESKY?: number;
|
|
12659
13234
|
GOOGLE_BUSINESS?: number;
|
|
13235
|
+
SNAPCHAT?: number;
|
|
12660
13236
|
} | null;
|
|
12661
13237
|
dailyCommentLimit?: {
|
|
12662
13238
|
TWITTER?: number;
|
|
@@ -12673,6 +13249,7 @@ type $OpenApiTs = {
|
|
|
12673
13249
|
MASTODON?: number;
|
|
12674
13250
|
BLUESKY?: number;
|
|
12675
13251
|
GOOGLE_BUSINESS?: number;
|
|
13252
|
+
SNAPCHAT?: number;
|
|
12676
13253
|
} | null;
|
|
12677
13254
|
monthlyImportLimitPerAccount?: number | null;
|
|
12678
13255
|
commentImportLimitPerPost?: number | null;
|
|
@@ -13030,7 +13607,7 @@ type $OpenApiTs = {
|
|
|
13030
13607
|
200: {
|
|
13031
13608
|
date: string;
|
|
13032
13609
|
socialAccountId: string;
|
|
13033
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
13610
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
13034
13611
|
posts: {
|
|
13035
13612
|
used: number;
|
|
13036
13613
|
limit: number;
|
|
@@ -13205,6 +13782,7 @@ type $OpenApiTs = {
|
|
|
13205
13782
|
MASTODON?: number;
|
|
13206
13783
|
BLUESKY?: number;
|
|
13207
13784
|
GOOGLE_BUSINESS?: number;
|
|
13785
|
+
SNAPCHAT?: number;
|
|
13208
13786
|
} | null;
|
|
13209
13787
|
dailyCommentLimit?: {
|
|
13210
13788
|
TWITTER?: number;
|
|
@@ -13221,6 +13799,7 @@ type $OpenApiTs = {
|
|
|
13221
13799
|
MASTODON?: number;
|
|
13222
13800
|
BLUESKY?: number;
|
|
13223
13801
|
GOOGLE_BUSINESS?: number;
|
|
13802
|
+
SNAPCHAT?: number;
|
|
13224
13803
|
} | null;
|
|
13225
13804
|
monthlyImportLimitPerAccount?: number | null;
|
|
13226
13805
|
commentImportLimitPerPost?: number | null;
|
|
@@ -13264,10 +13843,11 @@ type $OpenApiTs = {
|
|
|
13264
13843
|
}>;
|
|
13265
13844
|
socialAccounts: Array<{
|
|
13266
13845
|
id: string;
|
|
13267
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
13846
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
13268
13847
|
teamId: string;
|
|
13269
13848
|
username?: string | null;
|
|
13270
13849
|
displayName?: string | null;
|
|
13850
|
+
bio?: string | null;
|
|
13271
13851
|
avatarUrl?: string | null;
|
|
13272
13852
|
externalId?: string | null;
|
|
13273
13853
|
userUsername?: string | null;
|
|
@@ -13558,6 +14138,7 @@ type $OpenApiTs = {
|
|
|
13558
14138
|
MASTODON?: number;
|
|
13559
14139
|
BLUESKY?: number;
|
|
13560
14140
|
GOOGLE_BUSINESS?: number;
|
|
14141
|
+
SNAPCHAT?: number;
|
|
13561
14142
|
} | null;
|
|
13562
14143
|
dailyCommentLimit?: {
|
|
13563
14144
|
TWITTER?: number;
|
|
@@ -13574,6 +14155,7 @@ type $OpenApiTs = {
|
|
|
13574
14155
|
MASTODON?: number;
|
|
13575
14156
|
BLUESKY?: number;
|
|
13576
14157
|
GOOGLE_BUSINESS?: number;
|
|
14158
|
+
SNAPCHAT?: number;
|
|
13577
14159
|
} | null;
|
|
13578
14160
|
monthlyImportLimitPerAccount?: number | null;
|
|
13579
14161
|
commentImportLimitPerPost?: number | null;
|
|
@@ -13617,10 +14199,11 @@ type $OpenApiTs = {
|
|
|
13617
14199
|
}>;
|
|
13618
14200
|
socialAccounts: Array<{
|
|
13619
14201
|
id: string;
|
|
13620
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
14202
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
13621
14203
|
teamId: string;
|
|
13622
14204
|
username?: string | null;
|
|
13623
14205
|
displayName?: string | null;
|
|
14206
|
+
bio?: string | null;
|
|
13624
14207
|
avatarUrl?: string | null;
|
|
13625
14208
|
externalId?: string | null;
|
|
13626
14209
|
userUsername?: string | null;
|
|
@@ -13882,10 +14465,11 @@ type $OpenApiTs = {
|
|
|
13882
14465
|
*/
|
|
13883
14466
|
200: {
|
|
13884
14467
|
id: string;
|
|
13885
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
14468
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
13886
14469
|
teamId: string;
|
|
13887
14470
|
username?: string | null;
|
|
13888
14471
|
displayName?: string | null;
|
|
14472
|
+
bio?: string | null;
|
|
13889
14473
|
avatarUrl?: string | null;
|
|
13890
14474
|
externalId?: string | null;
|
|
13891
14475
|
userUsername?: string | null;
|
|
@@ -13979,10 +14563,11 @@ type $OpenApiTs = {
|
|
|
13979
14563
|
*/
|
|
13980
14564
|
200: {
|
|
13981
14565
|
id: string;
|
|
13982
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
14566
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
13983
14567
|
teamId: string;
|
|
13984
14568
|
username?: string | null;
|
|
13985
14569
|
displayName?: string | null;
|
|
14570
|
+
bio?: string | null;
|
|
13986
14571
|
avatarUrl?: string | null;
|
|
13987
14572
|
externalId?: string | null;
|
|
13988
14573
|
userUsername?: string | null;
|
|
@@ -14076,10 +14661,11 @@ type $OpenApiTs = {
|
|
|
14076
14661
|
*/
|
|
14077
14662
|
200: {
|
|
14078
14663
|
id: string;
|
|
14079
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
14664
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
14080
14665
|
teamId: string;
|
|
14081
14666
|
username?: string | null;
|
|
14082
14667
|
displayName?: string | null;
|
|
14668
|
+
bio?: string | null;
|
|
14083
14669
|
avatarUrl?: string | null;
|
|
14084
14670
|
externalId?: string | null;
|
|
14085
14671
|
userUsername?: string | null;
|
|
@@ -14173,10 +14759,11 @@ type $OpenApiTs = {
|
|
|
14173
14759
|
*/
|
|
14174
14760
|
200: {
|
|
14175
14761
|
id: string;
|
|
14176
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
14762
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
14177
14763
|
teamId: string;
|
|
14178
14764
|
username?: string | null;
|
|
14179
14765
|
displayName?: string | null;
|
|
14766
|
+
bio?: string | null;
|
|
14180
14767
|
avatarUrl?: string | null;
|
|
14181
14768
|
externalId?: string | null;
|
|
14182
14769
|
userUsername?: string | null;
|
|
@@ -14401,10 +14988,11 @@ type $OpenApiTs = {
|
|
|
14401
14988
|
socialAccountId: string;
|
|
14402
14989
|
socialAccount: {
|
|
14403
14990
|
id: string;
|
|
14404
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
14991
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
14405
14992
|
teamId: string;
|
|
14406
14993
|
username?: string | null;
|
|
14407
14994
|
displayName?: string | null;
|
|
14995
|
+
bio?: string | null;
|
|
14408
14996
|
avatarUrl?: string | null;
|
|
14409
14997
|
externalId?: string | null;
|
|
14410
14998
|
userUsername?: string | null;
|
|
@@ -14504,10 +15092,11 @@ type $OpenApiTs = {
|
|
|
14504
15092
|
*/
|
|
14505
15093
|
200: {
|
|
14506
15094
|
id: string;
|
|
14507
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
15095
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
14508
15096
|
teamId: string;
|
|
14509
15097
|
username?: string | null;
|
|
14510
15098
|
displayName?: string | null;
|
|
15099
|
+
bio?: string | null;
|
|
14511
15100
|
avatarUrl?: string | null;
|
|
14512
15101
|
externalId?: string | null;
|
|
14513
15102
|
userUsername?: string | null;
|
|
@@ -14601,10 +15190,11 @@ type $OpenApiTs = {
|
|
|
14601
15190
|
*/
|
|
14602
15191
|
200: Array<{
|
|
14603
15192
|
id: string;
|
|
14604
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
15193
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
14605
15194
|
teamId: string;
|
|
14606
15195
|
username?: string | null;
|
|
14607
15196
|
displayName?: string | null;
|
|
15197
|
+
bio?: string | null;
|
|
14608
15198
|
avatarUrl?: string | null;
|
|
14609
15199
|
externalId?: string | null;
|
|
14610
15200
|
userUsername?: string | null;
|
|
@@ -14699,10 +15289,11 @@ type $OpenApiTs = {
|
|
|
14699
15289
|
200: {
|
|
14700
15290
|
items: Array<{
|
|
14701
15291
|
id: string;
|
|
14702
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
15292
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
14703
15293
|
teamId: string;
|
|
14704
15294
|
username?: string | null;
|
|
14705
15295
|
displayName?: string | null;
|
|
15296
|
+
bio?: string | null;
|
|
14706
15297
|
avatarUrl?: string | null;
|
|
14707
15298
|
externalId?: string | null;
|
|
14708
15299
|
userUsername?: string | null;
|
|
@@ -15689,6 +16280,22 @@ type $OpenApiTs = {
|
|
|
15689
16280
|
uploadId: string;
|
|
15690
16281
|
altText?: string | null;
|
|
15691
16282
|
}> | null;
|
|
16283
|
+
topicTag?: string | null;
|
|
16284
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
16285
|
+
linkAttachment?: string | null;
|
|
16286
|
+
poll?: {
|
|
16287
|
+
optionA: string;
|
|
16288
|
+
optionB: string;
|
|
16289
|
+
optionC?: string | null;
|
|
16290
|
+
optionD?: string | null;
|
|
16291
|
+
} | null;
|
|
16292
|
+
gif?: {
|
|
16293
|
+
gifId: string;
|
|
16294
|
+
provider?: 'GIPHY';
|
|
16295
|
+
} | null;
|
|
16296
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
16297
|
+
crosspostToInstagramStory?: boolean | null;
|
|
16298
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
15692
16299
|
} | null;
|
|
15693
16300
|
TIKTOK?: {
|
|
15694
16301
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -15936,6 +16543,14 @@ type $OpenApiTs = {
|
|
|
15936
16543
|
*/
|
|
15937
16544
|
alertType?: 'COVID_19' | null;
|
|
15938
16545
|
} | null;
|
|
16546
|
+
SNAPCHAT?: {
|
|
16547
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
16548
|
+
uploadIds?: Array<(string)> | null;
|
|
16549
|
+
text?: string | null;
|
|
16550
|
+
description?: string | null;
|
|
16551
|
+
locale?: string | null;
|
|
16552
|
+
skipSaveToProfile?: boolean | null;
|
|
16553
|
+
} | null;
|
|
15939
16554
|
};
|
|
15940
16555
|
error?: string | null;
|
|
15941
16556
|
errors?: {
|
|
@@ -15953,6 +16568,7 @@ type $OpenApiTs = {
|
|
|
15953
16568
|
THREADS?: string | null;
|
|
15954
16569
|
BLUESKY?: string | null;
|
|
15955
16570
|
GOOGLE_BUSINESS?: string | null;
|
|
16571
|
+
SNAPCHAT?: string | null;
|
|
15956
16572
|
} | null;
|
|
15957
16573
|
errorsVerbose?: {
|
|
15958
16574
|
TWITTER?: {
|
|
@@ -16081,6 +16697,15 @@ type $OpenApiTs = {
|
|
|
16081
16697
|
meta?: unknown;
|
|
16082
16698
|
userFacingMessage?: string | null;
|
|
16083
16699
|
} | null;
|
|
16700
|
+
SNAPCHAT?: {
|
|
16701
|
+
code?: string | null;
|
|
16702
|
+
errorMessage?: string | null;
|
|
16703
|
+
isTransient?: boolean | null;
|
|
16704
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16705
|
+
httpStatus?: number | null;
|
|
16706
|
+
meta?: unknown;
|
|
16707
|
+
userFacingMessage?: string | null;
|
|
16708
|
+
} | null;
|
|
16084
16709
|
} | null;
|
|
16085
16710
|
externalData?: {
|
|
16086
16711
|
TWITTER?: {
|
|
@@ -16103,6 +16728,10 @@ type $OpenApiTs = {
|
|
|
16103
16728
|
id?: string | null;
|
|
16104
16729
|
permalink?: string | null;
|
|
16105
16730
|
thumbnail?: string | null;
|
|
16731
|
+
/**
|
|
16732
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
16733
|
+
*/
|
|
16734
|
+
creationId?: string | null;
|
|
16106
16735
|
} | null;
|
|
16107
16736
|
TIKTOK?: {
|
|
16108
16737
|
id?: string | null;
|
|
@@ -16149,6 +16778,10 @@ type $OpenApiTs = {
|
|
|
16149
16778
|
THREADS?: {
|
|
16150
16779
|
id?: string | null;
|
|
16151
16780
|
permalink?: string | null;
|
|
16781
|
+
/**
|
|
16782
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
16783
|
+
*/
|
|
16784
|
+
creationId?: string | null;
|
|
16152
16785
|
} | null;
|
|
16153
16786
|
BLUESKY?: {
|
|
16154
16787
|
id?: string | null;
|
|
@@ -16173,6 +16806,15 @@ type $OpenApiTs = {
|
|
|
16173
16806
|
*/
|
|
16174
16807
|
permalink?: string | null;
|
|
16175
16808
|
} | null;
|
|
16809
|
+
SNAPCHAT?: {
|
|
16810
|
+
id?: string | null;
|
|
16811
|
+
mediaId?: string | null;
|
|
16812
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
16813
|
+
profileId?: string | null;
|
|
16814
|
+
sourceUploadId?: string | null;
|
|
16815
|
+
permalink?: string | null;
|
|
16816
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
16817
|
+
} | null;
|
|
16176
16818
|
} | null;
|
|
16177
16819
|
retryCount: number;
|
|
16178
16820
|
createdAt: string | null;
|
|
@@ -16214,10 +16856,11 @@ type $OpenApiTs = {
|
|
|
16214
16856
|
deletedAt?: string | null;
|
|
16215
16857
|
socialAccount: {
|
|
16216
16858
|
id: string;
|
|
16217
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
16859
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
16218
16860
|
teamId: string;
|
|
16219
16861
|
username?: string | null;
|
|
16220
16862
|
displayName?: string | null;
|
|
16863
|
+
bio?: string | null;
|
|
16221
16864
|
avatarUrl?: string | null;
|
|
16222
16865
|
externalId?: string | null;
|
|
16223
16866
|
userUsername?: string | null;
|
|
@@ -16446,6 +17089,22 @@ type $OpenApiTs = {
|
|
|
16446
17089
|
uploadId: string;
|
|
16447
17090
|
altText?: string | null;
|
|
16448
17091
|
}> | null;
|
|
17092
|
+
topicTag?: string | null;
|
|
17093
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
17094
|
+
linkAttachment?: string | null;
|
|
17095
|
+
poll?: {
|
|
17096
|
+
optionA: string;
|
|
17097
|
+
optionB: string;
|
|
17098
|
+
optionC?: string | null;
|
|
17099
|
+
optionD?: string | null;
|
|
17100
|
+
} | null;
|
|
17101
|
+
gif?: {
|
|
17102
|
+
gifId: string;
|
|
17103
|
+
provider?: 'GIPHY';
|
|
17104
|
+
} | null;
|
|
17105
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
17106
|
+
crosspostToInstagramStory?: boolean | null;
|
|
17107
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
16449
17108
|
} | null;
|
|
16450
17109
|
TIKTOK?: {
|
|
16451
17110
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -16693,6 +17352,14 @@ type $OpenApiTs = {
|
|
|
16693
17352
|
*/
|
|
16694
17353
|
alertType?: 'COVID_19' | null;
|
|
16695
17354
|
} | null;
|
|
17355
|
+
SNAPCHAT?: {
|
|
17356
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
17357
|
+
uploadIds?: Array<(string)> | null;
|
|
17358
|
+
text?: string | null;
|
|
17359
|
+
description?: string | null;
|
|
17360
|
+
locale?: string | null;
|
|
17361
|
+
skipSaveToProfile?: boolean | null;
|
|
17362
|
+
} | null;
|
|
16696
17363
|
};
|
|
16697
17364
|
error?: string | null;
|
|
16698
17365
|
errors?: {
|
|
@@ -16710,6 +17377,7 @@ type $OpenApiTs = {
|
|
|
16710
17377
|
THREADS?: string | null;
|
|
16711
17378
|
BLUESKY?: string | null;
|
|
16712
17379
|
GOOGLE_BUSINESS?: string | null;
|
|
17380
|
+
SNAPCHAT?: string | null;
|
|
16713
17381
|
} | null;
|
|
16714
17382
|
errorsVerbose?: {
|
|
16715
17383
|
TWITTER?: {
|
|
@@ -16838,6 +17506,15 @@ type $OpenApiTs = {
|
|
|
16838
17506
|
meta?: unknown;
|
|
16839
17507
|
userFacingMessage?: string | null;
|
|
16840
17508
|
} | null;
|
|
17509
|
+
SNAPCHAT?: {
|
|
17510
|
+
code?: string | null;
|
|
17511
|
+
errorMessage?: string | null;
|
|
17512
|
+
isTransient?: boolean | null;
|
|
17513
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17514
|
+
httpStatus?: number | null;
|
|
17515
|
+
meta?: unknown;
|
|
17516
|
+
userFacingMessage?: string | null;
|
|
17517
|
+
} | null;
|
|
16841
17518
|
} | null;
|
|
16842
17519
|
externalData?: {
|
|
16843
17520
|
TWITTER?: {
|
|
@@ -16860,6 +17537,10 @@ type $OpenApiTs = {
|
|
|
16860
17537
|
id?: string | null;
|
|
16861
17538
|
permalink?: string | null;
|
|
16862
17539
|
thumbnail?: string | null;
|
|
17540
|
+
/**
|
|
17541
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
17542
|
+
*/
|
|
17543
|
+
creationId?: string | null;
|
|
16863
17544
|
} | null;
|
|
16864
17545
|
TIKTOK?: {
|
|
16865
17546
|
id?: string | null;
|
|
@@ -16906,6 +17587,10 @@ type $OpenApiTs = {
|
|
|
16906
17587
|
THREADS?: {
|
|
16907
17588
|
id?: string | null;
|
|
16908
17589
|
permalink?: string | null;
|
|
17590
|
+
/**
|
|
17591
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
17592
|
+
*/
|
|
17593
|
+
creationId?: string | null;
|
|
16909
17594
|
} | null;
|
|
16910
17595
|
BLUESKY?: {
|
|
16911
17596
|
id?: string | null;
|
|
@@ -16930,6 +17615,15 @@ type $OpenApiTs = {
|
|
|
16930
17615
|
*/
|
|
16931
17616
|
permalink?: string | null;
|
|
16932
17617
|
} | null;
|
|
17618
|
+
SNAPCHAT?: {
|
|
17619
|
+
id?: string | null;
|
|
17620
|
+
mediaId?: string | null;
|
|
17621
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
17622
|
+
profileId?: string | null;
|
|
17623
|
+
sourceUploadId?: string | null;
|
|
17624
|
+
permalink?: string | null;
|
|
17625
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
17626
|
+
} | null;
|
|
16933
17627
|
} | null;
|
|
16934
17628
|
retryCount: number;
|
|
16935
17629
|
createdAt: string | null;
|
|
@@ -16971,10 +17665,11 @@ type $OpenApiTs = {
|
|
|
16971
17665
|
deletedAt?: string | null;
|
|
16972
17666
|
socialAccount: {
|
|
16973
17667
|
id: string;
|
|
16974
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
17668
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
16975
17669
|
teamId: string;
|
|
16976
17670
|
username?: string | null;
|
|
16977
17671
|
displayName?: string | null;
|
|
17672
|
+
bio?: string | null;
|
|
16978
17673
|
avatarUrl?: string | null;
|
|
16979
17674
|
externalId?: string | null;
|
|
16980
17675
|
userUsername?: string | null;
|
|
@@ -17201,6 +17896,22 @@ type $OpenApiTs = {
|
|
|
17201
17896
|
uploadId: string;
|
|
17202
17897
|
altText?: string | null;
|
|
17203
17898
|
}> | null;
|
|
17899
|
+
topicTag?: string | null;
|
|
17900
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
17901
|
+
linkAttachment?: string | null;
|
|
17902
|
+
poll?: {
|
|
17903
|
+
optionA: string;
|
|
17904
|
+
optionB: string;
|
|
17905
|
+
optionC?: string | null;
|
|
17906
|
+
optionD?: string | null;
|
|
17907
|
+
} | null;
|
|
17908
|
+
gif?: {
|
|
17909
|
+
gifId: string;
|
|
17910
|
+
provider?: 'GIPHY';
|
|
17911
|
+
} | null;
|
|
17912
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
17913
|
+
crosspostToInstagramStory?: boolean | null;
|
|
17914
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
17204
17915
|
} | null;
|
|
17205
17916
|
TIKTOK?: {
|
|
17206
17917
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -17448,6 +18159,14 @@ type $OpenApiTs = {
|
|
|
17448
18159
|
*/
|
|
17449
18160
|
alertType?: 'COVID_19' | null;
|
|
17450
18161
|
} | null;
|
|
18162
|
+
SNAPCHAT?: {
|
|
18163
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
18164
|
+
uploadIds?: Array<(string)> | null;
|
|
18165
|
+
text?: string | null;
|
|
18166
|
+
description?: string | null;
|
|
18167
|
+
locale?: string | null;
|
|
18168
|
+
skipSaveToProfile?: boolean | null;
|
|
18169
|
+
} | null;
|
|
17451
18170
|
};
|
|
17452
18171
|
error?: string | null;
|
|
17453
18172
|
errors?: {
|
|
@@ -17465,6 +18184,7 @@ type $OpenApiTs = {
|
|
|
17465
18184
|
THREADS?: string | null;
|
|
17466
18185
|
BLUESKY?: string | null;
|
|
17467
18186
|
GOOGLE_BUSINESS?: string | null;
|
|
18187
|
+
SNAPCHAT?: string | null;
|
|
17468
18188
|
} | null;
|
|
17469
18189
|
errorsVerbose?: {
|
|
17470
18190
|
TWITTER?: {
|
|
@@ -17593,6 +18313,15 @@ type $OpenApiTs = {
|
|
|
17593
18313
|
meta?: unknown;
|
|
17594
18314
|
userFacingMessage?: string | null;
|
|
17595
18315
|
} | null;
|
|
18316
|
+
SNAPCHAT?: {
|
|
18317
|
+
code?: string | null;
|
|
18318
|
+
errorMessage?: string | null;
|
|
18319
|
+
isTransient?: boolean | null;
|
|
18320
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18321
|
+
httpStatus?: number | null;
|
|
18322
|
+
meta?: unknown;
|
|
18323
|
+
userFacingMessage?: string | null;
|
|
18324
|
+
} | null;
|
|
17596
18325
|
} | null;
|
|
17597
18326
|
externalData?: {
|
|
17598
18327
|
TWITTER?: {
|
|
@@ -17615,6 +18344,10 @@ type $OpenApiTs = {
|
|
|
17615
18344
|
id?: string | null;
|
|
17616
18345
|
permalink?: string | null;
|
|
17617
18346
|
thumbnail?: string | null;
|
|
18347
|
+
/**
|
|
18348
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
18349
|
+
*/
|
|
18350
|
+
creationId?: string | null;
|
|
17618
18351
|
} | null;
|
|
17619
18352
|
TIKTOK?: {
|
|
17620
18353
|
id?: string | null;
|
|
@@ -17661,6 +18394,10 @@ type $OpenApiTs = {
|
|
|
17661
18394
|
THREADS?: {
|
|
17662
18395
|
id?: string | null;
|
|
17663
18396
|
permalink?: string | null;
|
|
18397
|
+
/**
|
|
18398
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
18399
|
+
*/
|
|
18400
|
+
creationId?: string | null;
|
|
17664
18401
|
} | null;
|
|
17665
18402
|
BLUESKY?: {
|
|
17666
18403
|
id?: string | null;
|
|
@@ -17685,6 +18422,15 @@ type $OpenApiTs = {
|
|
|
17685
18422
|
*/
|
|
17686
18423
|
permalink?: string | null;
|
|
17687
18424
|
} | null;
|
|
18425
|
+
SNAPCHAT?: {
|
|
18426
|
+
id?: string | null;
|
|
18427
|
+
mediaId?: string | null;
|
|
18428
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
18429
|
+
profileId?: string | null;
|
|
18430
|
+
sourceUploadId?: string | null;
|
|
18431
|
+
permalink?: string | null;
|
|
18432
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
18433
|
+
} | null;
|
|
17688
18434
|
} | null;
|
|
17689
18435
|
retryCount: number;
|
|
17690
18436
|
createdAt: string | null;
|
|
@@ -17888,6 +18634,22 @@ type $OpenApiTs = {
|
|
|
17888
18634
|
uploadId: string;
|
|
17889
18635
|
altText?: string | null;
|
|
17890
18636
|
}> | null;
|
|
18637
|
+
topicTag?: string | null;
|
|
18638
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
18639
|
+
linkAttachment?: string | null;
|
|
18640
|
+
poll?: {
|
|
18641
|
+
optionA: string;
|
|
18642
|
+
optionB: string;
|
|
18643
|
+
optionC?: string | null;
|
|
18644
|
+
optionD?: string | null;
|
|
18645
|
+
} | null;
|
|
18646
|
+
gif?: {
|
|
18647
|
+
gifId: string;
|
|
18648
|
+
provider?: 'GIPHY';
|
|
18649
|
+
} | null;
|
|
18650
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
18651
|
+
crosspostToInstagramStory?: boolean | null;
|
|
18652
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
17891
18653
|
} | null;
|
|
17892
18654
|
TIKTOK?: {
|
|
17893
18655
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -18135,6 +18897,14 @@ type $OpenApiTs = {
|
|
|
18135
18897
|
*/
|
|
18136
18898
|
alertType?: 'COVID_19' | null;
|
|
18137
18899
|
} | null;
|
|
18900
|
+
SNAPCHAT?: {
|
|
18901
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
18902
|
+
uploadIds?: Array<(string)> | null;
|
|
18903
|
+
text?: string | null;
|
|
18904
|
+
description?: string | null;
|
|
18905
|
+
locale?: string | null;
|
|
18906
|
+
skipSaveToProfile?: boolean | null;
|
|
18907
|
+
} | null;
|
|
18138
18908
|
};
|
|
18139
18909
|
error?: string | null;
|
|
18140
18910
|
errors?: {
|
|
@@ -18152,6 +18922,7 @@ type $OpenApiTs = {
|
|
|
18152
18922
|
THREADS?: string | null;
|
|
18153
18923
|
BLUESKY?: string | null;
|
|
18154
18924
|
GOOGLE_BUSINESS?: string | null;
|
|
18925
|
+
SNAPCHAT?: string | null;
|
|
18155
18926
|
} | null;
|
|
18156
18927
|
errorsVerbose?: {
|
|
18157
18928
|
TWITTER?: {
|
|
@@ -18280,6 +19051,15 @@ type $OpenApiTs = {
|
|
|
18280
19051
|
meta?: unknown;
|
|
18281
19052
|
userFacingMessage?: string | null;
|
|
18282
19053
|
} | null;
|
|
19054
|
+
SNAPCHAT?: {
|
|
19055
|
+
code?: string | null;
|
|
19056
|
+
errorMessage?: string | null;
|
|
19057
|
+
isTransient?: boolean | null;
|
|
19058
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
19059
|
+
httpStatus?: number | null;
|
|
19060
|
+
meta?: unknown;
|
|
19061
|
+
userFacingMessage?: string | null;
|
|
19062
|
+
} | null;
|
|
18283
19063
|
} | null;
|
|
18284
19064
|
externalData?: {
|
|
18285
19065
|
TWITTER?: {
|
|
@@ -18302,6 +19082,10 @@ type $OpenApiTs = {
|
|
|
18302
19082
|
id?: string | null;
|
|
18303
19083
|
permalink?: string | null;
|
|
18304
19084
|
thumbnail?: string | null;
|
|
19085
|
+
/**
|
|
19086
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
19087
|
+
*/
|
|
19088
|
+
creationId?: string | null;
|
|
18305
19089
|
} | null;
|
|
18306
19090
|
TIKTOK?: {
|
|
18307
19091
|
id?: string | null;
|
|
@@ -18348,6 +19132,10 @@ type $OpenApiTs = {
|
|
|
18348
19132
|
THREADS?: {
|
|
18349
19133
|
id?: string | null;
|
|
18350
19134
|
permalink?: string | null;
|
|
19135
|
+
/**
|
|
19136
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
19137
|
+
*/
|
|
19138
|
+
creationId?: string | null;
|
|
18351
19139
|
} | null;
|
|
18352
19140
|
BLUESKY?: {
|
|
18353
19141
|
id?: string | null;
|
|
@@ -18372,6 +19160,15 @@ type $OpenApiTs = {
|
|
|
18372
19160
|
*/
|
|
18373
19161
|
permalink?: string | null;
|
|
18374
19162
|
} | null;
|
|
19163
|
+
SNAPCHAT?: {
|
|
19164
|
+
id?: string | null;
|
|
19165
|
+
mediaId?: string | null;
|
|
19166
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
19167
|
+
profileId?: string | null;
|
|
19168
|
+
sourceUploadId?: string | null;
|
|
19169
|
+
permalink?: string | null;
|
|
19170
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
19171
|
+
} | null;
|
|
18375
19172
|
} | null;
|
|
18376
19173
|
retryCount: number;
|
|
18377
19174
|
createdAt: string | null;
|
|
@@ -18571,6 +19368,22 @@ type $OpenApiTs = {
|
|
|
18571
19368
|
uploadId: string;
|
|
18572
19369
|
altText?: string | null;
|
|
18573
19370
|
}> | null;
|
|
19371
|
+
topicTag?: string | null;
|
|
19372
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
19373
|
+
linkAttachment?: string | null;
|
|
19374
|
+
poll?: {
|
|
19375
|
+
optionA: string;
|
|
19376
|
+
optionB: string;
|
|
19377
|
+
optionC?: string | null;
|
|
19378
|
+
optionD?: string | null;
|
|
19379
|
+
} | null;
|
|
19380
|
+
gif?: {
|
|
19381
|
+
gifId: string;
|
|
19382
|
+
provider?: 'GIPHY';
|
|
19383
|
+
} | null;
|
|
19384
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
19385
|
+
crosspostToInstagramStory?: boolean | null;
|
|
19386
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
18574
19387
|
} | null;
|
|
18575
19388
|
TIKTOK?: {
|
|
18576
19389
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -18818,6 +19631,14 @@ type $OpenApiTs = {
|
|
|
18818
19631
|
*/
|
|
18819
19632
|
alertType?: 'COVID_19' | null;
|
|
18820
19633
|
} | null;
|
|
19634
|
+
SNAPCHAT?: {
|
|
19635
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
19636
|
+
uploadIds?: Array<(string)> | null;
|
|
19637
|
+
text?: string | null;
|
|
19638
|
+
description?: string | null;
|
|
19639
|
+
locale?: string | null;
|
|
19640
|
+
skipSaveToProfile?: boolean | null;
|
|
19641
|
+
} | null;
|
|
18821
19642
|
};
|
|
18822
19643
|
error?: string | null;
|
|
18823
19644
|
errors?: {
|
|
@@ -18835,6 +19656,7 @@ type $OpenApiTs = {
|
|
|
18835
19656
|
THREADS?: string | null;
|
|
18836
19657
|
BLUESKY?: string | null;
|
|
18837
19658
|
GOOGLE_BUSINESS?: string | null;
|
|
19659
|
+
SNAPCHAT?: string | null;
|
|
18838
19660
|
} | null;
|
|
18839
19661
|
errorsVerbose?: {
|
|
18840
19662
|
TWITTER?: {
|
|
@@ -18963,6 +19785,15 @@ type $OpenApiTs = {
|
|
|
18963
19785
|
meta?: unknown;
|
|
18964
19786
|
userFacingMessage?: string | null;
|
|
18965
19787
|
} | null;
|
|
19788
|
+
SNAPCHAT?: {
|
|
19789
|
+
code?: string | null;
|
|
19790
|
+
errorMessage?: string | null;
|
|
19791
|
+
isTransient?: boolean | null;
|
|
19792
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
19793
|
+
httpStatus?: number | null;
|
|
19794
|
+
meta?: unknown;
|
|
19795
|
+
userFacingMessage?: string | null;
|
|
19796
|
+
} | null;
|
|
18966
19797
|
} | null;
|
|
18967
19798
|
externalData?: {
|
|
18968
19799
|
TWITTER?: {
|
|
@@ -18985,6 +19816,10 @@ type $OpenApiTs = {
|
|
|
18985
19816
|
id?: string | null;
|
|
18986
19817
|
permalink?: string | null;
|
|
18987
19818
|
thumbnail?: string | null;
|
|
19819
|
+
/**
|
|
19820
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
19821
|
+
*/
|
|
19822
|
+
creationId?: string | null;
|
|
18988
19823
|
} | null;
|
|
18989
19824
|
TIKTOK?: {
|
|
18990
19825
|
id?: string | null;
|
|
@@ -19031,6 +19866,10 @@ type $OpenApiTs = {
|
|
|
19031
19866
|
THREADS?: {
|
|
19032
19867
|
id?: string | null;
|
|
19033
19868
|
permalink?: string | null;
|
|
19869
|
+
/**
|
|
19870
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
19871
|
+
*/
|
|
19872
|
+
creationId?: string | null;
|
|
19034
19873
|
} | null;
|
|
19035
19874
|
BLUESKY?: {
|
|
19036
19875
|
id?: string | null;
|
|
@@ -19055,6 +19894,15 @@ type $OpenApiTs = {
|
|
|
19055
19894
|
*/
|
|
19056
19895
|
permalink?: string | null;
|
|
19057
19896
|
} | null;
|
|
19897
|
+
SNAPCHAT?: {
|
|
19898
|
+
id?: string | null;
|
|
19899
|
+
mediaId?: string | null;
|
|
19900
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
19901
|
+
profileId?: string | null;
|
|
19902
|
+
sourceUploadId?: string | null;
|
|
19903
|
+
permalink?: string | null;
|
|
19904
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
19905
|
+
} | null;
|
|
19058
19906
|
} | null;
|
|
19059
19907
|
retryCount: number;
|
|
19060
19908
|
createdAt: string | null;
|
|
@@ -19096,10 +19944,11 @@ type $OpenApiTs = {
|
|
|
19096
19944
|
deletedAt?: string | null;
|
|
19097
19945
|
socialAccount: {
|
|
19098
19946
|
id: string;
|
|
19099
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
19947
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
19100
19948
|
teamId: string;
|
|
19101
19949
|
username?: string | null;
|
|
19102
19950
|
displayName?: string | null;
|
|
19951
|
+
bio?: string | null;
|
|
19103
19952
|
avatarUrl?: string | null;
|
|
19104
19953
|
externalId?: string | null;
|
|
19105
19954
|
userUsername?: string | null;
|
|
@@ -19328,6 +20177,22 @@ type $OpenApiTs = {
|
|
|
19328
20177
|
uploadId: string;
|
|
19329
20178
|
altText?: string | null;
|
|
19330
20179
|
}> | null;
|
|
20180
|
+
topicTag?: string | null;
|
|
20181
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
20182
|
+
linkAttachment?: string | null;
|
|
20183
|
+
poll?: {
|
|
20184
|
+
optionA: string;
|
|
20185
|
+
optionB: string;
|
|
20186
|
+
optionC?: string | null;
|
|
20187
|
+
optionD?: string | null;
|
|
20188
|
+
} | null;
|
|
20189
|
+
gif?: {
|
|
20190
|
+
gifId: string;
|
|
20191
|
+
provider?: 'GIPHY';
|
|
20192
|
+
} | null;
|
|
20193
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
20194
|
+
crosspostToInstagramStory?: boolean | null;
|
|
20195
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
19331
20196
|
} | null;
|
|
19332
20197
|
TIKTOK?: {
|
|
19333
20198
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -19575,6 +20440,14 @@ type $OpenApiTs = {
|
|
|
19575
20440
|
*/
|
|
19576
20441
|
alertType?: 'COVID_19' | null;
|
|
19577
20442
|
} | null;
|
|
20443
|
+
SNAPCHAT?: {
|
|
20444
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
20445
|
+
uploadIds?: Array<(string)> | null;
|
|
20446
|
+
text?: string | null;
|
|
20447
|
+
description?: string | null;
|
|
20448
|
+
locale?: string | null;
|
|
20449
|
+
skipSaveToProfile?: boolean | null;
|
|
20450
|
+
} | null;
|
|
19578
20451
|
};
|
|
19579
20452
|
error?: string | null;
|
|
19580
20453
|
errors?: {
|
|
@@ -19592,6 +20465,7 @@ type $OpenApiTs = {
|
|
|
19592
20465
|
THREADS?: string | null;
|
|
19593
20466
|
BLUESKY?: string | null;
|
|
19594
20467
|
GOOGLE_BUSINESS?: string | null;
|
|
20468
|
+
SNAPCHAT?: string | null;
|
|
19595
20469
|
} | null;
|
|
19596
20470
|
errorsVerbose?: {
|
|
19597
20471
|
TWITTER?: {
|
|
@@ -19720,6 +20594,15 @@ type $OpenApiTs = {
|
|
|
19720
20594
|
meta?: unknown;
|
|
19721
20595
|
userFacingMessage?: string | null;
|
|
19722
20596
|
} | null;
|
|
20597
|
+
SNAPCHAT?: {
|
|
20598
|
+
code?: string | null;
|
|
20599
|
+
errorMessage?: string | null;
|
|
20600
|
+
isTransient?: boolean | null;
|
|
20601
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20602
|
+
httpStatus?: number | null;
|
|
20603
|
+
meta?: unknown;
|
|
20604
|
+
userFacingMessage?: string | null;
|
|
20605
|
+
} | null;
|
|
19723
20606
|
} | null;
|
|
19724
20607
|
externalData?: {
|
|
19725
20608
|
TWITTER?: {
|
|
@@ -19742,6 +20625,10 @@ type $OpenApiTs = {
|
|
|
19742
20625
|
id?: string | null;
|
|
19743
20626
|
permalink?: string | null;
|
|
19744
20627
|
thumbnail?: string | null;
|
|
20628
|
+
/**
|
|
20629
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
20630
|
+
*/
|
|
20631
|
+
creationId?: string | null;
|
|
19745
20632
|
} | null;
|
|
19746
20633
|
TIKTOK?: {
|
|
19747
20634
|
id?: string | null;
|
|
@@ -19788,6 +20675,10 @@ type $OpenApiTs = {
|
|
|
19788
20675
|
THREADS?: {
|
|
19789
20676
|
id?: string | null;
|
|
19790
20677
|
permalink?: string | null;
|
|
20678
|
+
/**
|
|
20679
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
20680
|
+
*/
|
|
20681
|
+
creationId?: string | null;
|
|
19791
20682
|
} | null;
|
|
19792
20683
|
BLUESKY?: {
|
|
19793
20684
|
id?: string | null;
|
|
@@ -19812,6 +20703,15 @@ type $OpenApiTs = {
|
|
|
19812
20703
|
*/
|
|
19813
20704
|
permalink?: string | null;
|
|
19814
20705
|
} | null;
|
|
20706
|
+
SNAPCHAT?: {
|
|
20707
|
+
id?: string | null;
|
|
20708
|
+
mediaId?: string | null;
|
|
20709
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
20710
|
+
profileId?: string | null;
|
|
20711
|
+
sourceUploadId?: string | null;
|
|
20712
|
+
permalink?: string | null;
|
|
20713
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
20714
|
+
} | null;
|
|
19815
20715
|
} | null;
|
|
19816
20716
|
retryCount: number;
|
|
19817
20717
|
createdAt: string | null;
|
|
@@ -20017,6 +20917,22 @@ type $OpenApiTs = {
|
|
|
20017
20917
|
uploadId: string;
|
|
20018
20918
|
altText?: string | null;
|
|
20019
20919
|
}> | null;
|
|
20920
|
+
topicTag?: string | null;
|
|
20921
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
20922
|
+
linkAttachment?: string | null;
|
|
20923
|
+
poll?: {
|
|
20924
|
+
optionA: string;
|
|
20925
|
+
optionB: string;
|
|
20926
|
+
optionC?: string | null;
|
|
20927
|
+
optionD?: string | null;
|
|
20928
|
+
} | null;
|
|
20929
|
+
gif?: {
|
|
20930
|
+
gifId: string;
|
|
20931
|
+
provider?: 'GIPHY';
|
|
20932
|
+
} | null;
|
|
20933
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
20934
|
+
crosspostToInstagramStory?: boolean | null;
|
|
20935
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
20020
20936
|
} | null;
|
|
20021
20937
|
TIKTOK?: {
|
|
20022
20938
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -20264,6 +21180,14 @@ type $OpenApiTs = {
|
|
|
20264
21180
|
*/
|
|
20265
21181
|
alertType?: 'COVID_19' | null;
|
|
20266
21182
|
} | null;
|
|
21183
|
+
SNAPCHAT?: {
|
|
21184
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
21185
|
+
uploadIds?: Array<(string)> | null;
|
|
21186
|
+
text?: string | null;
|
|
21187
|
+
description?: string | null;
|
|
21188
|
+
locale?: string | null;
|
|
21189
|
+
skipSaveToProfile?: boolean | null;
|
|
21190
|
+
} | null;
|
|
20267
21191
|
};
|
|
20268
21192
|
error?: string | null;
|
|
20269
21193
|
errors?: {
|
|
@@ -20281,6 +21205,7 @@ type $OpenApiTs = {
|
|
|
20281
21205
|
THREADS?: string | null;
|
|
20282
21206
|
BLUESKY?: string | null;
|
|
20283
21207
|
GOOGLE_BUSINESS?: string | null;
|
|
21208
|
+
SNAPCHAT?: string | null;
|
|
20284
21209
|
} | null;
|
|
20285
21210
|
errorsVerbose?: {
|
|
20286
21211
|
TWITTER?: {
|
|
@@ -20409,6 +21334,15 @@ type $OpenApiTs = {
|
|
|
20409
21334
|
meta?: unknown;
|
|
20410
21335
|
userFacingMessage?: string | null;
|
|
20411
21336
|
} | null;
|
|
21337
|
+
SNAPCHAT?: {
|
|
21338
|
+
code?: string | null;
|
|
21339
|
+
errorMessage?: string | null;
|
|
21340
|
+
isTransient?: boolean | null;
|
|
21341
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21342
|
+
httpStatus?: number | null;
|
|
21343
|
+
meta?: unknown;
|
|
21344
|
+
userFacingMessage?: string | null;
|
|
21345
|
+
} | null;
|
|
20412
21346
|
} | null;
|
|
20413
21347
|
externalData?: {
|
|
20414
21348
|
TWITTER?: {
|
|
@@ -20431,6 +21365,10 @@ type $OpenApiTs = {
|
|
|
20431
21365
|
id?: string | null;
|
|
20432
21366
|
permalink?: string | null;
|
|
20433
21367
|
thumbnail?: string | null;
|
|
21368
|
+
/**
|
|
21369
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
21370
|
+
*/
|
|
21371
|
+
creationId?: string | null;
|
|
20434
21372
|
} | null;
|
|
20435
21373
|
TIKTOK?: {
|
|
20436
21374
|
id?: string | null;
|
|
@@ -20477,6 +21415,10 @@ type $OpenApiTs = {
|
|
|
20477
21415
|
THREADS?: {
|
|
20478
21416
|
id?: string | null;
|
|
20479
21417
|
permalink?: string | null;
|
|
21418
|
+
/**
|
|
21419
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
21420
|
+
*/
|
|
21421
|
+
creationId?: string | null;
|
|
20480
21422
|
} | null;
|
|
20481
21423
|
BLUESKY?: {
|
|
20482
21424
|
id?: string | null;
|
|
@@ -20501,6 +21443,15 @@ type $OpenApiTs = {
|
|
|
20501
21443
|
*/
|
|
20502
21444
|
permalink?: string | null;
|
|
20503
21445
|
} | null;
|
|
21446
|
+
SNAPCHAT?: {
|
|
21447
|
+
id?: string | null;
|
|
21448
|
+
mediaId?: string | null;
|
|
21449
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
21450
|
+
profileId?: string | null;
|
|
21451
|
+
sourceUploadId?: string | null;
|
|
21452
|
+
permalink?: string | null;
|
|
21453
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
21454
|
+
} | null;
|
|
20504
21455
|
} | null;
|
|
20505
21456
|
retryCount: number;
|
|
20506
21457
|
createdAt: string | null;
|
|
@@ -20567,10 +21518,11 @@ type $OpenApiTs = {
|
|
|
20567
21518
|
200: {
|
|
20568
21519
|
socialAccount: {
|
|
20569
21520
|
id: string;
|
|
20570
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
21521
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
20571
21522
|
teamId: string;
|
|
20572
21523
|
username?: string | null;
|
|
20573
21524
|
displayName?: string | null;
|
|
21525
|
+
bio?: string | null;
|
|
20574
21526
|
avatarUrl?: string | null;
|
|
20575
21527
|
externalId?: string | null;
|
|
20576
21528
|
userUsername?: string | null;
|
|
@@ -20816,6 +21768,22 @@ type $OpenApiTs = {
|
|
|
20816
21768
|
uploadId: string;
|
|
20817
21769
|
altText?: string | null;
|
|
20818
21770
|
}> | null;
|
|
21771
|
+
topicTag?: string | null;
|
|
21772
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
21773
|
+
linkAttachment?: string | null;
|
|
21774
|
+
poll?: {
|
|
21775
|
+
optionA: string;
|
|
21776
|
+
optionB: string;
|
|
21777
|
+
optionC?: string | null;
|
|
21778
|
+
optionD?: string | null;
|
|
21779
|
+
} | null;
|
|
21780
|
+
gif?: {
|
|
21781
|
+
gifId: string;
|
|
21782
|
+
provider?: 'GIPHY';
|
|
21783
|
+
} | null;
|
|
21784
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
21785
|
+
crosspostToInstagramStory?: boolean | null;
|
|
21786
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
20819
21787
|
} | null;
|
|
20820
21788
|
TIKTOK?: {
|
|
20821
21789
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -21063,6 +22031,14 @@ type $OpenApiTs = {
|
|
|
21063
22031
|
*/
|
|
21064
22032
|
alertType?: 'COVID_19' | null;
|
|
21065
22033
|
} | null;
|
|
22034
|
+
SNAPCHAT?: {
|
|
22035
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
22036
|
+
uploadIds?: Array<(string)> | null;
|
|
22037
|
+
text?: string | null;
|
|
22038
|
+
description?: string | null;
|
|
22039
|
+
locale?: string | null;
|
|
22040
|
+
skipSaveToProfile?: boolean | null;
|
|
22041
|
+
} | null;
|
|
21066
22042
|
};
|
|
21067
22043
|
error?: string | null;
|
|
21068
22044
|
errors?: {
|
|
@@ -21080,6 +22056,7 @@ type $OpenApiTs = {
|
|
|
21080
22056
|
THREADS?: string | null;
|
|
21081
22057
|
BLUESKY?: string | null;
|
|
21082
22058
|
GOOGLE_BUSINESS?: string | null;
|
|
22059
|
+
SNAPCHAT?: string | null;
|
|
21083
22060
|
} | null;
|
|
21084
22061
|
errorsVerbose?: {
|
|
21085
22062
|
TWITTER?: {
|
|
@@ -21208,6 +22185,15 @@ type $OpenApiTs = {
|
|
|
21208
22185
|
meta?: unknown;
|
|
21209
22186
|
userFacingMessage?: string | null;
|
|
21210
22187
|
} | null;
|
|
22188
|
+
SNAPCHAT?: {
|
|
22189
|
+
code?: string | null;
|
|
22190
|
+
errorMessage?: string | null;
|
|
22191
|
+
isTransient?: boolean | null;
|
|
22192
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
22193
|
+
httpStatus?: number | null;
|
|
22194
|
+
meta?: unknown;
|
|
22195
|
+
userFacingMessage?: string | null;
|
|
22196
|
+
} | null;
|
|
21211
22197
|
} | null;
|
|
21212
22198
|
externalData?: {
|
|
21213
22199
|
TWITTER?: {
|
|
@@ -21230,6 +22216,10 @@ type $OpenApiTs = {
|
|
|
21230
22216
|
id?: string | null;
|
|
21231
22217
|
permalink?: string | null;
|
|
21232
22218
|
thumbnail?: string | null;
|
|
22219
|
+
/**
|
|
22220
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
22221
|
+
*/
|
|
22222
|
+
creationId?: string | null;
|
|
21233
22223
|
} | null;
|
|
21234
22224
|
TIKTOK?: {
|
|
21235
22225
|
id?: string | null;
|
|
@@ -21276,6 +22266,10 @@ type $OpenApiTs = {
|
|
|
21276
22266
|
THREADS?: {
|
|
21277
22267
|
id?: string | null;
|
|
21278
22268
|
permalink?: string | null;
|
|
22269
|
+
/**
|
|
22270
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
22271
|
+
*/
|
|
22272
|
+
creationId?: string | null;
|
|
21279
22273
|
} | null;
|
|
21280
22274
|
BLUESKY?: {
|
|
21281
22275
|
id?: string | null;
|
|
@@ -21300,6 +22294,15 @@ type $OpenApiTs = {
|
|
|
21300
22294
|
*/
|
|
21301
22295
|
permalink?: string | null;
|
|
21302
22296
|
} | null;
|
|
22297
|
+
SNAPCHAT?: {
|
|
22298
|
+
id?: string | null;
|
|
22299
|
+
mediaId?: string | null;
|
|
22300
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
22301
|
+
profileId?: string | null;
|
|
22302
|
+
sourceUploadId?: string | null;
|
|
22303
|
+
permalink?: string | null;
|
|
22304
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
22305
|
+
} | null;
|
|
21303
22306
|
} | null;
|
|
21304
22307
|
retryCount: number;
|
|
21305
22308
|
createdAt: string | null;
|
|
@@ -21406,10 +22409,11 @@ type $OpenApiTs = {
|
|
|
21406
22409
|
200: {
|
|
21407
22410
|
socialAccount: {
|
|
21408
22411
|
id: string;
|
|
21409
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
22412
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
21410
22413
|
teamId: string;
|
|
21411
22414
|
username?: string | null;
|
|
21412
22415
|
displayName?: string | null;
|
|
22416
|
+
bio?: string | null;
|
|
21413
22417
|
avatarUrl?: string | null;
|
|
21414
22418
|
externalId?: string | null;
|
|
21415
22419
|
userUsername?: string | null;
|
|
@@ -21648,6 +22652,22 @@ type $OpenApiTs = {
|
|
|
21648
22652
|
uploadId: string;
|
|
21649
22653
|
altText?: string | null;
|
|
21650
22654
|
}> | null;
|
|
22655
|
+
topicTag?: string | null;
|
|
22656
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
22657
|
+
linkAttachment?: string | null;
|
|
22658
|
+
poll?: {
|
|
22659
|
+
optionA: string;
|
|
22660
|
+
optionB: string;
|
|
22661
|
+
optionC?: string | null;
|
|
22662
|
+
optionD?: string | null;
|
|
22663
|
+
} | null;
|
|
22664
|
+
gif?: {
|
|
22665
|
+
gifId: string;
|
|
22666
|
+
provider?: 'GIPHY';
|
|
22667
|
+
} | null;
|
|
22668
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
22669
|
+
crosspostToInstagramStory?: boolean | null;
|
|
22670
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
21651
22671
|
} | null;
|
|
21652
22672
|
TIKTOK?: {
|
|
21653
22673
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -21895,6 +22915,14 @@ type $OpenApiTs = {
|
|
|
21895
22915
|
*/
|
|
21896
22916
|
alertType?: 'COVID_19' | null;
|
|
21897
22917
|
} | null;
|
|
22918
|
+
SNAPCHAT?: {
|
|
22919
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
22920
|
+
uploadIds?: Array<(string)> | null;
|
|
22921
|
+
text?: string | null;
|
|
22922
|
+
description?: string | null;
|
|
22923
|
+
locale?: string | null;
|
|
22924
|
+
skipSaveToProfile?: boolean | null;
|
|
22925
|
+
} | null;
|
|
21898
22926
|
};
|
|
21899
22927
|
error?: string | null;
|
|
21900
22928
|
errors?: {
|
|
@@ -21912,6 +22940,7 @@ type $OpenApiTs = {
|
|
|
21912
22940
|
THREADS?: string | null;
|
|
21913
22941
|
BLUESKY?: string | null;
|
|
21914
22942
|
GOOGLE_BUSINESS?: string | null;
|
|
22943
|
+
SNAPCHAT?: string | null;
|
|
21915
22944
|
} | null;
|
|
21916
22945
|
errorsVerbose?: {
|
|
21917
22946
|
TWITTER?: {
|
|
@@ -22040,6 +23069,15 @@ type $OpenApiTs = {
|
|
|
22040
23069
|
meta?: unknown;
|
|
22041
23070
|
userFacingMessage?: string | null;
|
|
22042
23071
|
} | null;
|
|
23072
|
+
SNAPCHAT?: {
|
|
23073
|
+
code?: string | null;
|
|
23074
|
+
errorMessage?: string | null;
|
|
23075
|
+
isTransient?: boolean | null;
|
|
23076
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
23077
|
+
httpStatus?: number | null;
|
|
23078
|
+
meta?: unknown;
|
|
23079
|
+
userFacingMessage?: string | null;
|
|
23080
|
+
} | null;
|
|
22043
23081
|
} | null;
|
|
22044
23082
|
externalData?: {
|
|
22045
23083
|
TWITTER?: {
|
|
@@ -22062,6 +23100,10 @@ type $OpenApiTs = {
|
|
|
22062
23100
|
id?: string | null;
|
|
22063
23101
|
permalink?: string | null;
|
|
22064
23102
|
thumbnail?: string | null;
|
|
23103
|
+
/**
|
|
23104
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
23105
|
+
*/
|
|
23106
|
+
creationId?: string | null;
|
|
22065
23107
|
} | null;
|
|
22066
23108
|
TIKTOK?: {
|
|
22067
23109
|
id?: string | null;
|
|
@@ -22108,6 +23150,10 @@ type $OpenApiTs = {
|
|
|
22108
23150
|
THREADS?: {
|
|
22109
23151
|
id?: string | null;
|
|
22110
23152
|
permalink?: string | null;
|
|
23153
|
+
/**
|
|
23154
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
23155
|
+
*/
|
|
23156
|
+
creationId?: string | null;
|
|
22111
23157
|
} | null;
|
|
22112
23158
|
BLUESKY?: {
|
|
22113
23159
|
id?: string | null;
|
|
@@ -22132,6 +23178,15 @@ type $OpenApiTs = {
|
|
|
22132
23178
|
*/
|
|
22133
23179
|
permalink?: string | null;
|
|
22134
23180
|
} | null;
|
|
23181
|
+
SNAPCHAT?: {
|
|
23182
|
+
id?: string | null;
|
|
23183
|
+
mediaId?: string | null;
|
|
23184
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
23185
|
+
profileId?: string | null;
|
|
23186
|
+
sourceUploadId?: string | null;
|
|
23187
|
+
permalink?: string | null;
|
|
23188
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
23189
|
+
} | null;
|
|
22135
23190
|
} | null;
|
|
22136
23191
|
retryCount: number;
|
|
22137
23192
|
createdAt: string | null;
|
|
@@ -28292,6 +29347,37 @@ type $OpenApiTs = {
|
|
|
28292
29347
|
* Full name if available
|
|
28293
29348
|
*/
|
|
28294
29349
|
name?: string;
|
|
29350
|
+
/**
|
|
29351
|
+
* Up to 12 recent public media items
|
|
29352
|
+
*/
|
|
29353
|
+
media?: {
|
|
29354
|
+
data: Array<{
|
|
29355
|
+
/**
|
|
29356
|
+
* Instagram Media ID
|
|
29357
|
+
*/
|
|
29358
|
+
id: string;
|
|
29359
|
+
/**
|
|
29360
|
+
* Instagram media type
|
|
29361
|
+
*/
|
|
29362
|
+
media_type: string;
|
|
29363
|
+
/**
|
|
29364
|
+
* Number of likes if available
|
|
29365
|
+
*/
|
|
29366
|
+
like_count?: number;
|
|
29367
|
+
/**
|
|
29368
|
+
* Number of comments if available
|
|
29369
|
+
*/
|
|
29370
|
+
comments_count?: number;
|
|
29371
|
+
/**
|
|
29372
|
+
* Media publication timestamp
|
|
29373
|
+
*/
|
|
29374
|
+
timestamp?: string;
|
|
29375
|
+
/**
|
|
29376
|
+
* Media caption if available
|
|
29377
|
+
*/
|
|
29378
|
+
caption?: string;
|
|
29379
|
+
}>;
|
|
29380
|
+
};
|
|
28295
29381
|
} | null;
|
|
28296
29382
|
};
|
|
28297
29383
|
/**
|
|
@@ -30201,7 +31287,7 @@ type $OpenApiTs = {
|
|
|
30201
31287
|
/**
|
|
30202
31288
|
* The name of the commercial music track.
|
|
30203
31289
|
*/
|
|
30204
|
-
commercial_music_name
|
|
31290
|
+
commercial_music_name?: string | null;
|
|
30205
31291
|
/**
|
|
30206
31292
|
* Track duration in seconds.
|
|
30207
31293
|
*/
|