bundlesocial 2.56.1 → 2.57.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 +676 -54
- package/dist/index.d.ts +676 -54
- package/package.json +1 -1
package/dist/index.d.ts
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
|
*/
|
|
@@ -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
|
};
|
|
@@ -1901,6 +1929,14 @@ type PostGetByReferenceKeyResponse = {
|
|
|
1901
1929
|
*/
|
|
1902
1930
|
alertType?: 'COVID_19' | null;
|
|
1903
1931
|
} | null;
|
|
1932
|
+
SNAPCHAT?: {
|
|
1933
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
1934
|
+
uploadIds?: Array<(string)> | null;
|
|
1935
|
+
text?: string | null;
|
|
1936
|
+
description?: string | null;
|
|
1937
|
+
locale?: string | null;
|
|
1938
|
+
skipSaveToProfile?: boolean | null;
|
|
1939
|
+
} | null;
|
|
1904
1940
|
};
|
|
1905
1941
|
error?: string | null;
|
|
1906
1942
|
errors?: {
|
|
@@ -1918,6 +1954,7 @@ type PostGetByReferenceKeyResponse = {
|
|
|
1918
1954
|
THREADS?: string | null;
|
|
1919
1955
|
BLUESKY?: string | null;
|
|
1920
1956
|
GOOGLE_BUSINESS?: string | null;
|
|
1957
|
+
SNAPCHAT?: string | null;
|
|
1921
1958
|
} | null;
|
|
1922
1959
|
errorsVerbose?: {
|
|
1923
1960
|
TWITTER?: {
|
|
@@ -2046,6 +2083,15 @@ type PostGetByReferenceKeyResponse = {
|
|
|
2046
2083
|
meta?: unknown;
|
|
2047
2084
|
userFacingMessage?: string | null;
|
|
2048
2085
|
} | null;
|
|
2086
|
+
SNAPCHAT?: {
|
|
2087
|
+
code?: string | null;
|
|
2088
|
+
errorMessage?: string | null;
|
|
2089
|
+
isTransient?: boolean | null;
|
|
2090
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2091
|
+
httpStatus?: number | null;
|
|
2092
|
+
meta?: unknown;
|
|
2093
|
+
userFacingMessage?: string | null;
|
|
2094
|
+
} | null;
|
|
2049
2095
|
} | null;
|
|
2050
2096
|
externalData?: {
|
|
2051
2097
|
TWITTER?: {
|
|
@@ -2138,6 +2184,15 @@ type PostGetByReferenceKeyResponse = {
|
|
|
2138
2184
|
*/
|
|
2139
2185
|
permalink?: string | null;
|
|
2140
2186
|
} | null;
|
|
2187
|
+
SNAPCHAT?: {
|
|
2188
|
+
id?: string | null;
|
|
2189
|
+
mediaId?: string | null;
|
|
2190
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
2191
|
+
profileId?: string | null;
|
|
2192
|
+
sourceUploadId?: string | null;
|
|
2193
|
+
permalink?: string | null;
|
|
2194
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
2195
|
+
} | null;
|
|
2141
2196
|
} | null;
|
|
2142
2197
|
retryCount: number;
|
|
2143
2198
|
createdAt: string | null;
|
|
@@ -2179,10 +2234,11 @@ type PostGetByReferenceKeyResponse = {
|
|
|
2179
2234
|
deletedAt?: string | null;
|
|
2180
2235
|
socialAccount: {
|
|
2181
2236
|
id: string;
|
|
2182
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
2237
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
2183
2238
|
teamId: string;
|
|
2184
2239
|
username?: string | null;
|
|
2185
2240
|
displayName?: string | null;
|
|
2241
|
+
bio?: string | null;
|
|
2186
2242
|
avatarUrl?: string | null;
|
|
2187
2243
|
externalId?: string | null;
|
|
2188
2244
|
userUsername?: string | null;
|
|
@@ -2604,6 +2660,14 @@ type PostGetResponse = {
|
|
|
2604
2660
|
*/
|
|
2605
2661
|
alertType?: 'COVID_19' | null;
|
|
2606
2662
|
} | null;
|
|
2663
|
+
SNAPCHAT?: {
|
|
2664
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
2665
|
+
uploadIds?: Array<(string)> | null;
|
|
2666
|
+
text?: string | null;
|
|
2667
|
+
description?: string | null;
|
|
2668
|
+
locale?: string | null;
|
|
2669
|
+
skipSaveToProfile?: boolean | null;
|
|
2670
|
+
} | null;
|
|
2607
2671
|
};
|
|
2608
2672
|
error?: string | null;
|
|
2609
2673
|
errors?: {
|
|
@@ -2621,6 +2685,7 @@ type PostGetResponse = {
|
|
|
2621
2685
|
THREADS?: string | null;
|
|
2622
2686
|
BLUESKY?: string | null;
|
|
2623
2687
|
GOOGLE_BUSINESS?: string | null;
|
|
2688
|
+
SNAPCHAT?: string | null;
|
|
2624
2689
|
} | null;
|
|
2625
2690
|
errorsVerbose?: {
|
|
2626
2691
|
TWITTER?: {
|
|
@@ -2749,6 +2814,15 @@ type PostGetResponse = {
|
|
|
2749
2814
|
meta?: unknown;
|
|
2750
2815
|
userFacingMessage?: string | null;
|
|
2751
2816
|
} | null;
|
|
2817
|
+
SNAPCHAT?: {
|
|
2818
|
+
code?: string | null;
|
|
2819
|
+
errorMessage?: string | null;
|
|
2820
|
+
isTransient?: boolean | null;
|
|
2821
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2822
|
+
httpStatus?: number | null;
|
|
2823
|
+
meta?: unknown;
|
|
2824
|
+
userFacingMessage?: string | null;
|
|
2825
|
+
} | null;
|
|
2752
2826
|
} | null;
|
|
2753
2827
|
externalData?: {
|
|
2754
2828
|
TWITTER?: {
|
|
@@ -2841,6 +2915,15 @@ type PostGetResponse = {
|
|
|
2841
2915
|
*/
|
|
2842
2916
|
permalink?: string | null;
|
|
2843
2917
|
} | null;
|
|
2918
|
+
SNAPCHAT?: {
|
|
2919
|
+
id?: string | null;
|
|
2920
|
+
mediaId?: string | null;
|
|
2921
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
2922
|
+
profileId?: string | null;
|
|
2923
|
+
sourceUploadId?: string | null;
|
|
2924
|
+
permalink?: string | null;
|
|
2925
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
2926
|
+
} | null;
|
|
2844
2927
|
} | null;
|
|
2845
2928
|
retryCount: number;
|
|
2846
2929
|
createdAt: string | null;
|
|
@@ -2882,10 +2965,11 @@ type PostGetResponse = {
|
|
|
2882
2965
|
deletedAt?: string | null;
|
|
2883
2966
|
socialAccount: {
|
|
2884
2967
|
id: string;
|
|
2885
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
2968
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
2886
2969
|
teamId: string;
|
|
2887
2970
|
username?: string | null;
|
|
2888
2971
|
displayName?: string | null;
|
|
2972
|
+
bio?: string | null;
|
|
2889
2973
|
avatarUrl?: string | null;
|
|
2890
2974
|
externalId?: string | null;
|
|
2891
2975
|
userUsername?: string | null;
|
|
@@ -2932,7 +3016,7 @@ type PostUpdateData = {
|
|
|
2932
3016
|
referenceKey?: string | null;
|
|
2933
3017
|
postDate?: string;
|
|
2934
3018
|
status?: 'DRAFT' | 'SCHEDULED';
|
|
2935
|
-
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
3019
|
+
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT')>;
|
|
2936
3020
|
data?: {
|
|
2937
3021
|
TWITTER?: {
|
|
2938
3022
|
text?: string | null;
|
|
@@ -3306,6 +3390,14 @@ type PostUpdateData = {
|
|
|
3306
3390
|
*/
|
|
3307
3391
|
alertType?: 'COVID_19' | null;
|
|
3308
3392
|
} | null;
|
|
3393
|
+
SNAPCHAT?: {
|
|
3394
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
3395
|
+
uploadIds?: Array<(string)> | null;
|
|
3396
|
+
text?: string | null;
|
|
3397
|
+
description?: string | null;
|
|
3398
|
+
locale?: string | null;
|
|
3399
|
+
skipSaveToProfile?: boolean | null;
|
|
3400
|
+
} | null;
|
|
3309
3401
|
};
|
|
3310
3402
|
};
|
|
3311
3403
|
};
|
|
@@ -3691,6 +3783,14 @@ type PostUpdateResponse = {
|
|
|
3691
3783
|
*/
|
|
3692
3784
|
alertType?: 'COVID_19' | null;
|
|
3693
3785
|
} | null;
|
|
3786
|
+
SNAPCHAT?: {
|
|
3787
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
3788
|
+
uploadIds?: Array<(string)> | null;
|
|
3789
|
+
text?: string | null;
|
|
3790
|
+
description?: string | null;
|
|
3791
|
+
locale?: string | null;
|
|
3792
|
+
skipSaveToProfile?: boolean | null;
|
|
3793
|
+
} | null;
|
|
3694
3794
|
};
|
|
3695
3795
|
error?: string | null;
|
|
3696
3796
|
errors?: {
|
|
@@ -3708,6 +3808,7 @@ type PostUpdateResponse = {
|
|
|
3708
3808
|
THREADS?: string | null;
|
|
3709
3809
|
BLUESKY?: string | null;
|
|
3710
3810
|
GOOGLE_BUSINESS?: string | null;
|
|
3811
|
+
SNAPCHAT?: string | null;
|
|
3711
3812
|
} | null;
|
|
3712
3813
|
errorsVerbose?: {
|
|
3713
3814
|
TWITTER?: {
|
|
@@ -3836,6 +3937,15 @@ type PostUpdateResponse = {
|
|
|
3836
3937
|
meta?: unknown;
|
|
3837
3938
|
userFacingMessage?: string | null;
|
|
3838
3939
|
} | null;
|
|
3940
|
+
SNAPCHAT?: {
|
|
3941
|
+
code?: string | null;
|
|
3942
|
+
errorMessage?: string | null;
|
|
3943
|
+
isTransient?: boolean | null;
|
|
3944
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3945
|
+
httpStatus?: number | null;
|
|
3946
|
+
meta?: unknown;
|
|
3947
|
+
userFacingMessage?: string | null;
|
|
3948
|
+
} | null;
|
|
3839
3949
|
} | null;
|
|
3840
3950
|
externalData?: {
|
|
3841
3951
|
TWITTER?: {
|
|
@@ -3928,6 +4038,15 @@ type PostUpdateResponse = {
|
|
|
3928
4038
|
*/
|
|
3929
4039
|
permalink?: string | null;
|
|
3930
4040
|
} | null;
|
|
4041
|
+
SNAPCHAT?: {
|
|
4042
|
+
id?: string | null;
|
|
4043
|
+
mediaId?: string | null;
|
|
4044
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
4045
|
+
profileId?: string | null;
|
|
4046
|
+
sourceUploadId?: string | null;
|
|
4047
|
+
permalink?: string | null;
|
|
4048
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
4049
|
+
} | null;
|
|
3931
4050
|
} | null;
|
|
3932
4051
|
retryCount: number;
|
|
3933
4052
|
createdAt: string | null;
|
|
@@ -4319,6 +4438,14 @@ type PostDeleteResponse = {
|
|
|
4319
4438
|
*/
|
|
4320
4439
|
alertType?: 'COVID_19' | null;
|
|
4321
4440
|
} | null;
|
|
4441
|
+
SNAPCHAT?: {
|
|
4442
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
4443
|
+
uploadIds?: Array<(string)> | null;
|
|
4444
|
+
text?: string | null;
|
|
4445
|
+
description?: string | null;
|
|
4446
|
+
locale?: string | null;
|
|
4447
|
+
skipSaveToProfile?: boolean | null;
|
|
4448
|
+
} | null;
|
|
4322
4449
|
};
|
|
4323
4450
|
error?: string | null;
|
|
4324
4451
|
errors?: {
|
|
@@ -4336,6 +4463,7 @@ type PostDeleteResponse = {
|
|
|
4336
4463
|
THREADS?: string | null;
|
|
4337
4464
|
BLUESKY?: string | null;
|
|
4338
4465
|
GOOGLE_BUSINESS?: string | null;
|
|
4466
|
+
SNAPCHAT?: string | null;
|
|
4339
4467
|
} | null;
|
|
4340
4468
|
errorsVerbose?: {
|
|
4341
4469
|
TWITTER?: {
|
|
@@ -4464,6 +4592,15 @@ type PostDeleteResponse = {
|
|
|
4464
4592
|
meta?: unknown;
|
|
4465
4593
|
userFacingMessage?: string | null;
|
|
4466
4594
|
} | null;
|
|
4595
|
+
SNAPCHAT?: {
|
|
4596
|
+
code?: string | null;
|
|
4597
|
+
errorMessage?: string | null;
|
|
4598
|
+
isTransient?: boolean | null;
|
|
4599
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4600
|
+
httpStatus?: number | null;
|
|
4601
|
+
meta?: unknown;
|
|
4602
|
+
userFacingMessage?: string | null;
|
|
4603
|
+
} | null;
|
|
4467
4604
|
} | null;
|
|
4468
4605
|
externalData?: {
|
|
4469
4606
|
TWITTER?: {
|
|
@@ -4556,6 +4693,15 @@ type PostDeleteResponse = {
|
|
|
4556
4693
|
*/
|
|
4557
4694
|
permalink?: string | null;
|
|
4558
4695
|
} | null;
|
|
4696
|
+
SNAPCHAT?: {
|
|
4697
|
+
id?: string | null;
|
|
4698
|
+
mediaId?: string | null;
|
|
4699
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
4700
|
+
profileId?: string | null;
|
|
4701
|
+
sourceUploadId?: string | null;
|
|
4702
|
+
permalink?: string | null;
|
|
4703
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
4704
|
+
} | null;
|
|
4559
4705
|
} | null;
|
|
4560
4706
|
retryCount: number;
|
|
4561
4707
|
createdAt: string | null;
|
|
@@ -4567,7 +4713,7 @@ type PostGetListData = {
|
|
|
4567
4713
|
offset?: number | null;
|
|
4568
4714
|
order?: 'ASC' | 'DESC' | null;
|
|
4569
4715
|
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;
|
|
4716
|
+
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT')> | null;
|
|
4571
4717
|
postDateFrom?: string | null;
|
|
4572
4718
|
postDateTo?: string | null;
|
|
4573
4719
|
q?: string | null;
|
|
@@ -4957,6 +5103,14 @@ type PostGetListResponse = {
|
|
|
4957
5103
|
*/
|
|
4958
5104
|
alertType?: 'COVID_19' | null;
|
|
4959
5105
|
} | null;
|
|
5106
|
+
SNAPCHAT?: {
|
|
5107
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
5108
|
+
uploadIds?: Array<(string)> | null;
|
|
5109
|
+
text?: string | null;
|
|
5110
|
+
description?: string | null;
|
|
5111
|
+
locale?: string | null;
|
|
5112
|
+
skipSaveToProfile?: boolean | null;
|
|
5113
|
+
} | null;
|
|
4960
5114
|
};
|
|
4961
5115
|
error?: string | null;
|
|
4962
5116
|
errors?: {
|
|
@@ -4974,6 +5128,7 @@ type PostGetListResponse = {
|
|
|
4974
5128
|
THREADS?: string | null;
|
|
4975
5129
|
BLUESKY?: string | null;
|
|
4976
5130
|
GOOGLE_BUSINESS?: string | null;
|
|
5131
|
+
SNAPCHAT?: string | null;
|
|
4977
5132
|
} | null;
|
|
4978
5133
|
errorsVerbose?: {
|
|
4979
5134
|
TWITTER?: {
|
|
@@ -5102,6 +5257,15 @@ type PostGetListResponse = {
|
|
|
5102
5257
|
meta?: unknown;
|
|
5103
5258
|
userFacingMessage?: string | null;
|
|
5104
5259
|
} | null;
|
|
5260
|
+
SNAPCHAT?: {
|
|
5261
|
+
code?: string | null;
|
|
5262
|
+
errorMessage?: string | null;
|
|
5263
|
+
isTransient?: boolean | null;
|
|
5264
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5265
|
+
httpStatus?: number | null;
|
|
5266
|
+
meta?: unknown;
|
|
5267
|
+
userFacingMessage?: string | null;
|
|
5268
|
+
} | null;
|
|
5105
5269
|
} | null;
|
|
5106
5270
|
externalData?: {
|
|
5107
5271
|
TWITTER?: {
|
|
@@ -5194,6 +5358,15 @@ type PostGetListResponse = {
|
|
|
5194
5358
|
*/
|
|
5195
5359
|
permalink?: string | null;
|
|
5196
5360
|
} | null;
|
|
5361
|
+
SNAPCHAT?: {
|
|
5362
|
+
id?: string | null;
|
|
5363
|
+
mediaId?: string | null;
|
|
5364
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
5365
|
+
profileId?: string | null;
|
|
5366
|
+
sourceUploadId?: string | null;
|
|
5367
|
+
permalink?: string | null;
|
|
5368
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
5369
|
+
} | null;
|
|
5197
5370
|
} | null;
|
|
5198
5371
|
retryCount: number;
|
|
5199
5372
|
createdAt: string | null;
|
|
@@ -5235,10 +5408,11 @@ type PostGetListResponse = {
|
|
|
5235
5408
|
deletedAt?: string | null;
|
|
5236
5409
|
socialAccount: {
|
|
5237
5410
|
id: string;
|
|
5238
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5411
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
5239
5412
|
teamId: string;
|
|
5240
5413
|
username?: string | null;
|
|
5241
5414
|
displayName?: string | null;
|
|
5415
|
+
bio?: string | null;
|
|
5242
5416
|
avatarUrl?: string | null;
|
|
5243
5417
|
externalId?: string | null;
|
|
5244
5418
|
userUsername?: string | null;
|
|
@@ -5287,7 +5461,7 @@ type PostCreateData = {
|
|
|
5287
5461
|
referenceKey?: string | null;
|
|
5288
5462
|
postDate: string;
|
|
5289
5463
|
status: 'DRAFT' | 'SCHEDULED';
|
|
5290
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
5464
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT')>;
|
|
5291
5465
|
data: {
|
|
5292
5466
|
TWITTER?: {
|
|
5293
5467
|
text?: string | null;
|
|
@@ -5661,6 +5835,14 @@ type PostCreateData = {
|
|
|
5661
5835
|
*/
|
|
5662
5836
|
alertType?: 'COVID_19' | null;
|
|
5663
5837
|
} | null;
|
|
5838
|
+
SNAPCHAT?: {
|
|
5839
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
5840
|
+
uploadIds?: Array<(string)> | null;
|
|
5841
|
+
text?: string | null;
|
|
5842
|
+
description?: string | null;
|
|
5843
|
+
locale?: string | null;
|
|
5844
|
+
skipSaveToProfile?: boolean | null;
|
|
5845
|
+
} | null;
|
|
5664
5846
|
};
|
|
5665
5847
|
};
|
|
5666
5848
|
};
|
|
@@ -6046,6 +6228,14 @@ type PostCreateResponse = {
|
|
|
6046
6228
|
*/
|
|
6047
6229
|
alertType?: 'COVID_19' | null;
|
|
6048
6230
|
} | null;
|
|
6231
|
+
SNAPCHAT?: {
|
|
6232
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
6233
|
+
uploadIds?: Array<(string)> | null;
|
|
6234
|
+
text?: string | null;
|
|
6235
|
+
description?: string | null;
|
|
6236
|
+
locale?: string | null;
|
|
6237
|
+
skipSaveToProfile?: boolean | null;
|
|
6238
|
+
} | null;
|
|
6049
6239
|
};
|
|
6050
6240
|
error?: string | null;
|
|
6051
6241
|
errors?: {
|
|
@@ -6063,6 +6253,7 @@ type PostCreateResponse = {
|
|
|
6063
6253
|
THREADS?: string | null;
|
|
6064
6254
|
BLUESKY?: string | null;
|
|
6065
6255
|
GOOGLE_BUSINESS?: string | null;
|
|
6256
|
+
SNAPCHAT?: string | null;
|
|
6066
6257
|
} | null;
|
|
6067
6258
|
errorsVerbose?: {
|
|
6068
6259
|
TWITTER?: {
|
|
@@ -6191,6 +6382,15 @@ type PostCreateResponse = {
|
|
|
6191
6382
|
meta?: unknown;
|
|
6192
6383
|
userFacingMessage?: string | null;
|
|
6193
6384
|
} | null;
|
|
6385
|
+
SNAPCHAT?: {
|
|
6386
|
+
code?: string | null;
|
|
6387
|
+
errorMessage?: string | null;
|
|
6388
|
+
isTransient?: boolean | null;
|
|
6389
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6390
|
+
httpStatus?: number | null;
|
|
6391
|
+
meta?: unknown;
|
|
6392
|
+
userFacingMessage?: string | null;
|
|
6393
|
+
} | null;
|
|
6194
6394
|
} | null;
|
|
6195
6395
|
externalData?: {
|
|
6196
6396
|
TWITTER?: {
|
|
@@ -6283,6 +6483,15 @@ type PostCreateResponse = {
|
|
|
6283
6483
|
*/
|
|
6284
6484
|
permalink?: string | null;
|
|
6285
6485
|
} | null;
|
|
6486
|
+
SNAPCHAT?: {
|
|
6487
|
+
id?: string | null;
|
|
6488
|
+
mediaId?: string | null;
|
|
6489
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
6490
|
+
profileId?: string | null;
|
|
6491
|
+
sourceUploadId?: string | null;
|
|
6492
|
+
permalink?: string | null;
|
|
6493
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
6494
|
+
} | null;
|
|
6286
6495
|
} | null;
|
|
6287
6496
|
retryCount: number;
|
|
6288
6497
|
createdAt: string | null;
|
|
@@ -6674,6 +6883,14 @@ type PostRetryResponse = {
|
|
|
6674
6883
|
*/
|
|
6675
6884
|
alertType?: 'COVID_19' | null;
|
|
6676
6885
|
} | null;
|
|
6886
|
+
SNAPCHAT?: {
|
|
6887
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
6888
|
+
uploadIds?: Array<(string)> | null;
|
|
6889
|
+
text?: string | null;
|
|
6890
|
+
description?: string | null;
|
|
6891
|
+
locale?: string | null;
|
|
6892
|
+
skipSaveToProfile?: boolean | null;
|
|
6893
|
+
} | null;
|
|
6677
6894
|
};
|
|
6678
6895
|
error?: string | null;
|
|
6679
6896
|
errors?: {
|
|
@@ -6691,6 +6908,7 @@ type PostRetryResponse = {
|
|
|
6691
6908
|
THREADS?: string | null;
|
|
6692
6909
|
BLUESKY?: string | null;
|
|
6693
6910
|
GOOGLE_BUSINESS?: string | null;
|
|
6911
|
+
SNAPCHAT?: string | null;
|
|
6694
6912
|
} | null;
|
|
6695
6913
|
errorsVerbose?: {
|
|
6696
6914
|
TWITTER?: {
|
|
@@ -6819,6 +7037,15 @@ type PostRetryResponse = {
|
|
|
6819
7037
|
meta?: unknown;
|
|
6820
7038
|
userFacingMessage?: string | null;
|
|
6821
7039
|
} | null;
|
|
7040
|
+
SNAPCHAT?: {
|
|
7041
|
+
code?: string | null;
|
|
7042
|
+
errorMessage?: string | null;
|
|
7043
|
+
isTransient?: boolean | null;
|
|
7044
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7045
|
+
httpStatus?: number | null;
|
|
7046
|
+
meta?: unknown;
|
|
7047
|
+
userFacingMessage?: string | null;
|
|
7048
|
+
} | null;
|
|
6822
7049
|
} | null;
|
|
6823
7050
|
externalData?: {
|
|
6824
7051
|
TWITTER?: {
|
|
@@ -6911,6 +7138,15 @@ type PostRetryResponse = {
|
|
|
6911
7138
|
*/
|
|
6912
7139
|
permalink?: string | null;
|
|
6913
7140
|
} | null;
|
|
7141
|
+
SNAPCHAT?: {
|
|
7142
|
+
id?: string | null;
|
|
7143
|
+
mediaId?: string | null;
|
|
7144
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
7145
|
+
profileId?: string | null;
|
|
7146
|
+
sourceUploadId?: string | null;
|
|
7147
|
+
permalink?: string | null;
|
|
7148
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
7149
|
+
} | null;
|
|
6914
7150
|
} | null;
|
|
6915
7151
|
retryCount: number;
|
|
6916
7152
|
createdAt: string | null;
|
|
@@ -6918,16 +7154,17 @@ type PostRetryResponse = {
|
|
|
6918
7154
|
deletedAt?: string | null;
|
|
6919
7155
|
};
|
|
6920
7156
|
type AnalyticsGetSocialAccountAnalyticsData = {
|
|
6921
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
7157
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
6922
7158
|
teamId: string;
|
|
6923
7159
|
};
|
|
6924
7160
|
type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
6925
7161
|
socialAccount: {
|
|
6926
7162
|
id: string;
|
|
6927
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
7163
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
6928
7164
|
teamId: string;
|
|
6929
7165
|
username?: string | null;
|
|
6930
7166
|
displayName?: string | null;
|
|
7167
|
+
bio?: string | null;
|
|
6931
7168
|
avatarUrl?: string | null;
|
|
6932
7169
|
externalId?: string | null;
|
|
6933
7170
|
userUsername?: string | null;
|
|
@@ -6982,7 +7219,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
|
6982
7219
|
};
|
|
6983
7220
|
type AnalyticsGetPostAnalyticsData = {
|
|
6984
7221
|
importedPostId?: string | null;
|
|
6985
|
-
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | null;
|
|
7222
|
+
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT' | null;
|
|
6986
7223
|
postId?: string | null;
|
|
6987
7224
|
};
|
|
6988
7225
|
type AnalyticsGetPostAnalyticsResponse = {
|
|
@@ -7368,6 +7605,14 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7368
7605
|
*/
|
|
7369
7606
|
alertType?: 'COVID_19' | null;
|
|
7370
7607
|
} | null;
|
|
7608
|
+
SNAPCHAT?: {
|
|
7609
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
7610
|
+
uploadIds?: Array<(string)> | null;
|
|
7611
|
+
text?: string | null;
|
|
7612
|
+
description?: string | null;
|
|
7613
|
+
locale?: string | null;
|
|
7614
|
+
skipSaveToProfile?: boolean | null;
|
|
7615
|
+
} | null;
|
|
7371
7616
|
};
|
|
7372
7617
|
error?: string | null;
|
|
7373
7618
|
errors?: {
|
|
@@ -7385,6 +7630,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7385
7630
|
THREADS?: string | null;
|
|
7386
7631
|
BLUESKY?: string | null;
|
|
7387
7632
|
GOOGLE_BUSINESS?: string | null;
|
|
7633
|
+
SNAPCHAT?: string | null;
|
|
7388
7634
|
} | null;
|
|
7389
7635
|
errorsVerbose?: {
|
|
7390
7636
|
TWITTER?: {
|
|
@@ -7513,6 +7759,15 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7513
7759
|
meta?: unknown;
|
|
7514
7760
|
userFacingMessage?: string | null;
|
|
7515
7761
|
} | null;
|
|
7762
|
+
SNAPCHAT?: {
|
|
7763
|
+
code?: string | null;
|
|
7764
|
+
errorMessage?: string | null;
|
|
7765
|
+
isTransient?: boolean | null;
|
|
7766
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7767
|
+
httpStatus?: number | null;
|
|
7768
|
+
meta?: unknown;
|
|
7769
|
+
userFacingMessage?: string | null;
|
|
7770
|
+
} | null;
|
|
7516
7771
|
} | null;
|
|
7517
7772
|
externalData?: {
|
|
7518
7773
|
TWITTER?: {
|
|
@@ -7605,6 +7860,15 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7605
7860
|
*/
|
|
7606
7861
|
permalink?: string | null;
|
|
7607
7862
|
} | null;
|
|
7863
|
+
SNAPCHAT?: {
|
|
7864
|
+
id?: string | null;
|
|
7865
|
+
mediaId?: string | null;
|
|
7866
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
7867
|
+
profileId?: string | null;
|
|
7868
|
+
sourceUploadId?: string | null;
|
|
7869
|
+
permalink?: string | null;
|
|
7870
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
7871
|
+
} | null;
|
|
7608
7872
|
} | null;
|
|
7609
7873
|
retryCount: number;
|
|
7610
7874
|
createdAt: string | null;
|
|
@@ -7652,16 +7916,17 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7652
7916
|
}>;
|
|
7653
7917
|
};
|
|
7654
7918
|
type AnalyticsGetSocialAccountAnalyticsRawData = {
|
|
7655
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
7919
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
7656
7920
|
teamId: string;
|
|
7657
7921
|
};
|
|
7658
7922
|
type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
7659
7923
|
socialAccount: {
|
|
7660
7924
|
id: string;
|
|
7661
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
7925
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
7662
7926
|
teamId: string;
|
|
7663
7927
|
username?: string | null;
|
|
7664
7928
|
displayName?: string | null;
|
|
7929
|
+
bio?: string | null;
|
|
7665
7930
|
avatarUrl?: string | null;
|
|
7666
7931
|
externalId?: string | null;
|
|
7667
7932
|
userUsername?: string | null;
|
|
@@ -7709,7 +7974,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
|
7709
7974
|
};
|
|
7710
7975
|
type AnalyticsGetPostAnalyticsRawData = {
|
|
7711
7976
|
importedPostId?: string | null;
|
|
7712
|
-
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | null;
|
|
7977
|
+
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT' | null;
|
|
7713
7978
|
postId?: string | null;
|
|
7714
7979
|
};
|
|
7715
7980
|
type AnalyticsGetPostAnalyticsRawResponse = {
|
|
@@ -8095,6 +8360,14 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8095
8360
|
*/
|
|
8096
8361
|
alertType?: 'COVID_19' | null;
|
|
8097
8362
|
} | null;
|
|
8363
|
+
SNAPCHAT?: {
|
|
8364
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
8365
|
+
uploadIds?: Array<(string)> | null;
|
|
8366
|
+
text?: string | null;
|
|
8367
|
+
description?: string | null;
|
|
8368
|
+
locale?: string | null;
|
|
8369
|
+
skipSaveToProfile?: boolean | null;
|
|
8370
|
+
} | null;
|
|
8098
8371
|
};
|
|
8099
8372
|
error?: string | null;
|
|
8100
8373
|
errors?: {
|
|
@@ -8112,6 +8385,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8112
8385
|
THREADS?: string | null;
|
|
8113
8386
|
BLUESKY?: string | null;
|
|
8114
8387
|
GOOGLE_BUSINESS?: string | null;
|
|
8388
|
+
SNAPCHAT?: string | null;
|
|
8115
8389
|
} | null;
|
|
8116
8390
|
errorsVerbose?: {
|
|
8117
8391
|
TWITTER?: {
|
|
@@ -8240,6 +8514,15 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8240
8514
|
meta?: unknown;
|
|
8241
8515
|
userFacingMessage?: string | null;
|
|
8242
8516
|
} | null;
|
|
8517
|
+
SNAPCHAT?: {
|
|
8518
|
+
code?: string | null;
|
|
8519
|
+
errorMessage?: string | null;
|
|
8520
|
+
isTransient?: boolean | null;
|
|
8521
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8522
|
+
httpStatus?: number | null;
|
|
8523
|
+
meta?: unknown;
|
|
8524
|
+
userFacingMessage?: string | null;
|
|
8525
|
+
} | null;
|
|
8243
8526
|
} | null;
|
|
8244
8527
|
externalData?: {
|
|
8245
8528
|
TWITTER?: {
|
|
@@ -8332,6 +8615,15 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8332
8615
|
*/
|
|
8333
8616
|
permalink?: string | null;
|
|
8334
8617
|
} | null;
|
|
8618
|
+
SNAPCHAT?: {
|
|
8619
|
+
id?: string | null;
|
|
8620
|
+
mediaId?: string | null;
|
|
8621
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
8622
|
+
profileId?: string | null;
|
|
8623
|
+
sourceUploadId?: string | null;
|
|
8624
|
+
permalink?: string | null;
|
|
8625
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
8626
|
+
} | null;
|
|
8335
8627
|
} | null;
|
|
8336
8628
|
retryCount: number;
|
|
8337
8629
|
createdAt: string | null;
|
|
@@ -8373,7 +8665,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8373
8665
|
type AnalyticsGetBulkPostAnalyticsData = {
|
|
8374
8666
|
limit?: number;
|
|
8375
8667
|
page?: number;
|
|
8376
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
8668
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
8377
8669
|
postIds: Array<(string)>;
|
|
8378
8670
|
};
|
|
8379
8671
|
type AnalyticsGetBulkPostAnalyticsResponse = {
|
|
@@ -8412,7 +8704,7 @@ type AnalyticsForceSocialAccountAnalyticsData = {
|
|
|
8412
8704
|
*/
|
|
8413
8705
|
requestBody?: {
|
|
8414
8706
|
teamId: string;
|
|
8415
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
8707
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
8416
8708
|
};
|
|
8417
8709
|
};
|
|
8418
8710
|
type AnalyticsForceSocialAccountAnalyticsResponse = {
|
|
@@ -8438,7 +8730,7 @@ type AnalyticsForcePostAnalyticsData = {
|
|
|
8438
8730
|
*/
|
|
8439
8731
|
requestBody?: {
|
|
8440
8732
|
postId?: string | null;
|
|
8441
|
-
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | null;
|
|
8733
|
+
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT' | null;
|
|
8442
8734
|
importedPostId?: string | null;
|
|
8443
8735
|
};
|
|
8444
8736
|
};
|
|
@@ -11547,6 +11839,37 @@ type MiscInstagramBusinessDiscoveryResponse = {
|
|
|
11547
11839
|
* Full name if available
|
|
11548
11840
|
*/
|
|
11549
11841
|
name?: string;
|
|
11842
|
+
/**
|
|
11843
|
+
* Up to 12 recent public media items
|
|
11844
|
+
*/
|
|
11845
|
+
media?: {
|
|
11846
|
+
data: Array<{
|
|
11847
|
+
/**
|
|
11848
|
+
* Instagram Media ID
|
|
11849
|
+
*/
|
|
11850
|
+
id: string;
|
|
11851
|
+
/**
|
|
11852
|
+
* Instagram media type
|
|
11853
|
+
*/
|
|
11854
|
+
media_type: string;
|
|
11855
|
+
/**
|
|
11856
|
+
* Number of likes if available
|
|
11857
|
+
*/
|
|
11858
|
+
like_count?: number;
|
|
11859
|
+
/**
|
|
11860
|
+
* Number of comments if available
|
|
11861
|
+
*/
|
|
11862
|
+
comments_count?: number;
|
|
11863
|
+
/**
|
|
11864
|
+
* Media publication timestamp
|
|
11865
|
+
*/
|
|
11866
|
+
timestamp?: string;
|
|
11867
|
+
/**
|
|
11868
|
+
* Media caption if available
|
|
11869
|
+
*/
|
|
11870
|
+
caption?: string;
|
|
11871
|
+
}>;
|
|
11872
|
+
};
|
|
11550
11873
|
} | null;
|
|
11551
11874
|
};
|
|
11552
11875
|
type MiscInstagramSearchLocationsData = {
|
|
@@ -12144,7 +12467,7 @@ type MiscTiktokGetCommercialMusicTrendingListResponse = Array<{
|
|
|
12144
12467
|
/**
|
|
12145
12468
|
* The name of the commercial music track.
|
|
12146
12469
|
*/
|
|
12147
|
-
commercial_music_name
|
|
12470
|
+
commercial_music_name?: string | null;
|
|
12148
12471
|
/**
|
|
12149
12472
|
* Track duration in seconds.
|
|
12150
12473
|
*/
|
|
@@ -12577,6 +12900,10 @@ type $OpenApiTs = {
|
|
|
12577
12900
|
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
12578
12901
|
note: string;
|
|
12579
12902
|
};
|
|
12903
|
+
SNAPCHAT: {
|
|
12904
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
12905
|
+
note: string;
|
|
12906
|
+
};
|
|
12580
12907
|
};
|
|
12581
12908
|
};
|
|
12582
12909
|
/**
|
|
@@ -12657,6 +12984,7 @@ type $OpenApiTs = {
|
|
|
12657
12984
|
MASTODON?: number;
|
|
12658
12985
|
BLUESKY?: number;
|
|
12659
12986
|
GOOGLE_BUSINESS?: number;
|
|
12987
|
+
SNAPCHAT?: number;
|
|
12660
12988
|
} | null;
|
|
12661
12989
|
dailyCommentLimit?: {
|
|
12662
12990
|
TWITTER?: number;
|
|
@@ -12673,6 +13001,7 @@ type $OpenApiTs = {
|
|
|
12673
13001
|
MASTODON?: number;
|
|
12674
13002
|
BLUESKY?: number;
|
|
12675
13003
|
GOOGLE_BUSINESS?: number;
|
|
13004
|
+
SNAPCHAT?: number;
|
|
12676
13005
|
} | null;
|
|
12677
13006
|
monthlyImportLimitPerAccount?: number | null;
|
|
12678
13007
|
commentImportLimitPerPost?: number | null;
|
|
@@ -13030,7 +13359,7 @@ type $OpenApiTs = {
|
|
|
13030
13359
|
200: {
|
|
13031
13360
|
date: string;
|
|
13032
13361
|
socialAccountId: string;
|
|
13033
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
13362
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
13034
13363
|
posts: {
|
|
13035
13364
|
used: number;
|
|
13036
13365
|
limit: number;
|
|
@@ -13205,6 +13534,7 @@ type $OpenApiTs = {
|
|
|
13205
13534
|
MASTODON?: number;
|
|
13206
13535
|
BLUESKY?: number;
|
|
13207
13536
|
GOOGLE_BUSINESS?: number;
|
|
13537
|
+
SNAPCHAT?: number;
|
|
13208
13538
|
} | null;
|
|
13209
13539
|
dailyCommentLimit?: {
|
|
13210
13540
|
TWITTER?: number;
|
|
@@ -13221,6 +13551,7 @@ type $OpenApiTs = {
|
|
|
13221
13551
|
MASTODON?: number;
|
|
13222
13552
|
BLUESKY?: number;
|
|
13223
13553
|
GOOGLE_BUSINESS?: number;
|
|
13554
|
+
SNAPCHAT?: number;
|
|
13224
13555
|
} | null;
|
|
13225
13556
|
monthlyImportLimitPerAccount?: number | null;
|
|
13226
13557
|
commentImportLimitPerPost?: number | null;
|
|
@@ -13264,10 +13595,11 @@ type $OpenApiTs = {
|
|
|
13264
13595
|
}>;
|
|
13265
13596
|
socialAccounts: Array<{
|
|
13266
13597
|
id: string;
|
|
13267
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
13598
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
13268
13599
|
teamId: string;
|
|
13269
13600
|
username?: string | null;
|
|
13270
13601
|
displayName?: string | null;
|
|
13602
|
+
bio?: string | null;
|
|
13271
13603
|
avatarUrl?: string | null;
|
|
13272
13604
|
externalId?: string | null;
|
|
13273
13605
|
userUsername?: string | null;
|
|
@@ -13558,6 +13890,7 @@ type $OpenApiTs = {
|
|
|
13558
13890
|
MASTODON?: number;
|
|
13559
13891
|
BLUESKY?: number;
|
|
13560
13892
|
GOOGLE_BUSINESS?: number;
|
|
13893
|
+
SNAPCHAT?: number;
|
|
13561
13894
|
} | null;
|
|
13562
13895
|
dailyCommentLimit?: {
|
|
13563
13896
|
TWITTER?: number;
|
|
@@ -13574,6 +13907,7 @@ type $OpenApiTs = {
|
|
|
13574
13907
|
MASTODON?: number;
|
|
13575
13908
|
BLUESKY?: number;
|
|
13576
13909
|
GOOGLE_BUSINESS?: number;
|
|
13910
|
+
SNAPCHAT?: number;
|
|
13577
13911
|
} | null;
|
|
13578
13912
|
monthlyImportLimitPerAccount?: number | null;
|
|
13579
13913
|
commentImportLimitPerPost?: number | null;
|
|
@@ -13617,10 +13951,11 @@ type $OpenApiTs = {
|
|
|
13617
13951
|
}>;
|
|
13618
13952
|
socialAccounts: Array<{
|
|
13619
13953
|
id: string;
|
|
13620
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
13954
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
13621
13955
|
teamId: string;
|
|
13622
13956
|
username?: string | null;
|
|
13623
13957
|
displayName?: string | null;
|
|
13958
|
+
bio?: string | null;
|
|
13624
13959
|
avatarUrl?: string | null;
|
|
13625
13960
|
externalId?: string | null;
|
|
13626
13961
|
userUsername?: string | null;
|
|
@@ -13882,10 +14217,11 @@ type $OpenApiTs = {
|
|
|
13882
14217
|
*/
|
|
13883
14218
|
200: {
|
|
13884
14219
|
id: string;
|
|
13885
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
14220
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
13886
14221
|
teamId: string;
|
|
13887
14222
|
username?: string | null;
|
|
13888
14223
|
displayName?: string | null;
|
|
14224
|
+
bio?: string | null;
|
|
13889
14225
|
avatarUrl?: string | null;
|
|
13890
14226
|
externalId?: string | null;
|
|
13891
14227
|
userUsername?: string | null;
|
|
@@ -13979,10 +14315,11 @@ type $OpenApiTs = {
|
|
|
13979
14315
|
*/
|
|
13980
14316
|
200: {
|
|
13981
14317
|
id: string;
|
|
13982
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
14318
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
13983
14319
|
teamId: string;
|
|
13984
14320
|
username?: string | null;
|
|
13985
14321
|
displayName?: string | null;
|
|
14322
|
+
bio?: string | null;
|
|
13986
14323
|
avatarUrl?: string | null;
|
|
13987
14324
|
externalId?: string | null;
|
|
13988
14325
|
userUsername?: string | null;
|
|
@@ -14076,10 +14413,11 @@ type $OpenApiTs = {
|
|
|
14076
14413
|
*/
|
|
14077
14414
|
200: {
|
|
14078
14415
|
id: string;
|
|
14079
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
14416
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
14080
14417
|
teamId: string;
|
|
14081
14418
|
username?: string | null;
|
|
14082
14419
|
displayName?: string | null;
|
|
14420
|
+
bio?: string | null;
|
|
14083
14421
|
avatarUrl?: string | null;
|
|
14084
14422
|
externalId?: string | null;
|
|
14085
14423
|
userUsername?: string | null;
|
|
@@ -14173,10 +14511,11 @@ type $OpenApiTs = {
|
|
|
14173
14511
|
*/
|
|
14174
14512
|
200: {
|
|
14175
14513
|
id: string;
|
|
14176
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
14514
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
14177
14515
|
teamId: string;
|
|
14178
14516
|
username?: string | null;
|
|
14179
14517
|
displayName?: string | null;
|
|
14518
|
+
bio?: string | null;
|
|
14180
14519
|
avatarUrl?: string | null;
|
|
14181
14520
|
externalId?: string | null;
|
|
14182
14521
|
userUsername?: string | null;
|
|
@@ -14401,10 +14740,11 @@ type $OpenApiTs = {
|
|
|
14401
14740
|
socialAccountId: string;
|
|
14402
14741
|
socialAccount: {
|
|
14403
14742
|
id: string;
|
|
14404
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
14743
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
14405
14744
|
teamId: string;
|
|
14406
14745
|
username?: string | null;
|
|
14407
14746
|
displayName?: string | null;
|
|
14747
|
+
bio?: string | null;
|
|
14408
14748
|
avatarUrl?: string | null;
|
|
14409
14749
|
externalId?: string | null;
|
|
14410
14750
|
userUsername?: string | null;
|
|
@@ -14504,10 +14844,11 @@ type $OpenApiTs = {
|
|
|
14504
14844
|
*/
|
|
14505
14845
|
200: {
|
|
14506
14846
|
id: string;
|
|
14507
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
14847
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
14508
14848
|
teamId: string;
|
|
14509
14849
|
username?: string | null;
|
|
14510
14850
|
displayName?: string | null;
|
|
14851
|
+
bio?: string | null;
|
|
14511
14852
|
avatarUrl?: string | null;
|
|
14512
14853
|
externalId?: string | null;
|
|
14513
14854
|
userUsername?: string | null;
|
|
@@ -14601,10 +14942,11 @@ type $OpenApiTs = {
|
|
|
14601
14942
|
*/
|
|
14602
14943
|
200: Array<{
|
|
14603
14944
|
id: string;
|
|
14604
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
14945
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
14605
14946
|
teamId: string;
|
|
14606
14947
|
username?: string | null;
|
|
14607
14948
|
displayName?: string | null;
|
|
14949
|
+
bio?: string | null;
|
|
14608
14950
|
avatarUrl?: string | null;
|
|
14609
14951
|
externalId?: string | null;
|
|
14610
14952
|
userUsername?: string | null;
|
|
@@ -14699,10 +15041,11 @@ type $OpenApiTs = {
|
|
|
14699
15041
|
200: {
|
|
14700
15042
|
items: Array<{
|
|
14701
15043
|
id: string;
|
|
14702
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
15044
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
14703
15045
|
teamId: string;
|
|
14704
15046
|
username?: string | null;
|
|
14705
15047
|
displayName?: string | null;
|
|
15048
|
+
bio?: string | null;
|
|
14706
15049
|
avatarUrl?: string | null;
|
|
14707
15050
|
externalId?: string | null;
|
|
14708
15051
|
userUsername?: string | null;
|
|
@@ -15936,6 +16279,14 @@ type $OpenApiTs = {
|
|
|
15936
16279
|
*/
|
|
15937
16280
|
alertType?: 'COVID_19' | null;
|
|
15938
16281
|
} | null;
|
|
16282
|
+
SNAPCHAT?: {
|
|
16283
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
16284
|
+
uploadIds?: Array<(string)> | null;
|
|
16285
|
+
text?: string | null;
|
|
16286
|
+
description?: string | null;
|
|
16287
|
+
locale?: string | null;
|
|
16288
|
+
skipSaveToProfile?: boolean | null;
|
|
16289
|
+
} | null;
|
|
15939
16290
|
};
|
|
15940
16291
|
error?: string | null;
|
|
15941
16292
|
errors?: {
|
|
@@ -15953,6 +16304,7 @@ type $OpenApiTs = {
|
|
|
15953
16304
|
THREADS?: string | null;
|
|
15954
16305
|
BLUESKY?: string | null;
|
|
15955
16306
|
GOOGLE_BUSINESS?: string | null;
|
|
16307
|
+
SNAPCHAT?: string | null;
|
|
15956
16308
|
} | null;
|
|
15957
16309
|
errorsVerbose?: {
|
|
15958
16310
|
TWITTER?: {
|
|
@@ -16081,6 +16433,15 @@ type $OpenApiTs = {
|
|
|
16081
16433
|
meta?: unknown;
|
|
16082
16434
|
userFacingMessage?: string | null;
|
|
16083
16435
|
} | null;
|
|
16436
|
+
SNAPCHAT?: {
|
|
16437
|
+
code?: string | null;
|
|
16438
|
+
errorMessage?: string | null;
|
|
16439
|
+
isTransient?: boolean | null;
|
|
16440
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16441
|
+
httpStatus?: number | null;
|
|
16442
|
+
meta?: unknown;
|
|
16443
|
+
userFacingMessage?: string | null;
|
|
16444
|
+
} | null;
|
|
16084
16445
|
} | null;
|
|
16085
16446
|
externalData?: {
|
|
16086
16447
|
TWITTER?: {
|
|
@@ -16173,6 +16534,15 @@ type $OpenApiTs = {
|
|
|
16173
16534
|
*/
|
|
16174
16535
|
permalink?: string | null;
|
|
16175
16536
|
} | null;
|
|
16537
|
+
SNAPCHAT?: {
|
|
16538
|
+
id?: string | null;
|
|
16539
|
+
mediaId?: string | null;
|
|
16540
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
16541
|
+
profileId?: string | null;
|
|
16542
|
+
sourceUploadId?: string | null;
|
|
16543
|
+
permalink?: string | null;
|
|
16544
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
16545
|
+
} | null;
|
|
16176
16546
|
} | null;
|
|
16177
16547
|
retryCount: number;
|
|
16178
16548
|
createdAt: string | null;
|
|
@@ -16214,10 +16584,11 @@ type $OpenApiTs = {
|
|
|
16214
16584
|
deletedAt?: string | null;
|
|
16215
16585
|
socialAccount: {
|
|
16216
16586
|
id: string;
|
|
16217
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
16587
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
16218
16588
|
teamId: string;
|
|
16219
16589
|
username?: string | null;
|
|
16220
16590
|
displayName?: string | null;
|
|
16591
|
+
bio?: string | null;
|
|
16221
16592
|
avatarUrl?: string | null;
|
|
16222
16593
|
externalId?: string | null;
|
|
16223
16594
|
userUsername?: string | null;
|
|
@@ -16693,6 +17064,14 @@ type $OpenApiTs = {
|
|
|
16693
17064
|
*/
|
|
16694
17065
|
alertType?: 'COVID_19' | null;
|
|
16695
17066
|
} | null;
|
|
17067
|
+
SNAPCHAT?: {
|
|
17068
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
17069
|
+
uploadIds?: Array<(string)> | null;
|
|
17070
|
+
text?: string | null;
|
|
17071
|
+
description?: string | null;
|
|
17072
|
+
locale?: string | null;
|
|
17073
|
+
skipSaveToProfile?: boolean | null;
|
|
17074
|
+
} | null;
|
|
16696
17075
|
};
|
|
16697
17076
|
error?: string | null;
|
|
16698
17077
|
errors?: {
|
|
@@ -16710,6 +17089,7 @@ type $OpenApiTs = {
|
|
|
16710
17089
|
THREADS?: string | null;
|
|
16711
17090
|
BLUESKY?: string | null;
|
|
16712
17091
|
GOOGLE_BUSINESS?: string | null;
|
|
17092
|
+
SNAPCHAT?: string | null;
|
|
16713
17093
|
} | null;
|
|
16714
17094
|
errorsVerbose?: {
|
|
16715
17095
|
TWITTER?: {
|
|
@@ -16838,6 +17218,15 @@ type $OpenApiTs = {
|
|
|
16838
17218
|
meta?: unknown;
|
|
16839
17219
|
userFacingMessage?: string | null;
|
|
16840
17220
|
} | null;
|
|
17221
|
+
SNAPCHAT?: {
|
|
17222
|
+
code?: string | null;
|
|
17223
|
+
errorMessage?: string | null;
|
|
17224
|
+
isTransient?: boolean | null;
|
|
17225
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17226
|
+
httpStatus?: number | null;
|
|
17227
|
+
meta?: unknown;
|
|
17228
|
+
userFacingMessage?: string | null;
|
|
17229
|
+
} | null;
|
|
16841
17230
|
} | null;
|
|
16842
17231
|
externalData?: {
|
|
16843
17232
|
TWITTER?: {
|
|
@@ -16930,6 +17319,15 @@ type $OpenApiTs = {
|
|
|
16930
17319
|
*/
|
|
16931
17320
|
permalink?: string | null;
|
|
16932
17321
|
} | null;
|
|
17322
|
+
SNAPCHAT?: {
|
|
17323
|
+
id?: string | null;
|
|
17324
|
+
mediaId?: string | null;
|
|
17325
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
17326
|
+
profileId?: string | null;
|
|
17327
|
+
sourceUploadId?: string | null;
|
|
17328
|
+
permalink?: string | null;
|
|
17329
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
17330
|
+
} | null;
|
|
16933
17331
|
} | null;
|
|
16934
17332
|
retryCount: number;
|
|
16935
17333
|
createdAt: string | null;
|
|
@@ -16971,10 +17369,11 @@ type $OpenApiTs = {
|
|
|
16971
17369
|
deletedAt?: string | null;
|
|
16972
17370
|
socialAccount: {
|
|
16973
17371
|
id: string;
|
|
16974
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
17372
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
16975
17373
|
teamId: string;
|
|
16976
17374
|
username?: string | null;
|
|
16977
17375
|
displayName?: string | null;
|
|
17376
|
+
bio?: string | null;
|
|
16978
17377
|
avatarUrl?: string | null;
|
|
16979
17378
|
externalId?: string | null;
|
|
16980
17379
|
userUsername?: string | null;
|
|
@@ -17448,6 +17847,14 @@ type $OpenApiTs = {
|
|
|
17448
17847
|
*/
|
|
17449
17848
|
alertType?: 'COVID_19' | null;
|
|
17450
17849
|
} | null;
|
|
17850
|
+
SNAPCHAT?: {
|
|
17851
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
17852
|
+
uploadIds?: Array<(string)> | null;
|
|
17853
|
+
text?: string | null;
|
|
17854
|
+
description?: string | null;
|
|
17855
|
+
locale?: string | null;
|
|
17856
|
+
skipSaveToProfile?: boolean | null;
|
|
17857
|
+
} | null;
|
|
17451
17858
|
};
|
|
17452
17859
|
error?: string | null;
|
|
17453
17860
|
errors?: {
|
|
@@ -17465,6 +17872,7 @@ type $OpenApiTs = {
|
|
|
17465
17872
|
THREADS?: string | null;
|
|
17466
17873
|
BLUESKY?: string | null;
|
|
17467
17874
|
GOOGLE_BUSINESS?: string | null;
|
|
17875
|
+
SNAPCHAT?: string | null;
|
|
17468
17876
|
} | null;
|
|
17469
17877
|
errorsVerbose?: {
|
|
17470
17878
|
TWITTER?: {
|
|
@@ -17593,6 +18001,15 @@ type $OpenApiTs = {
|
|
|
17593
18001
|
meta?: unknown;
|
|
17594
18002
|
userFacingMessage?: string | null;
|
|
17595
18003
|
} | null;
|
|
18004
|
+
SNAPCHAT?: {
|
|
18005
|
+
code?: string | null;
|
|
18006
|
+
errorMessage?: string | null;
|
|
18007
|
+
isTransient?: boolean | null;
|
|
18008
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18009
|
+
httpStatus?: number | null;
|
|
18010
|
+
meta?: unknown;
|
|
18011
|
+
userFacingMessage?: string | null;
|
|
18012
|
+
} | null;
|
|
17596
18013
|
} | null;
|
|
17597
18014
|
externalData?: {
|
|
17598
18015
|
TWITTER?: {
|
|
@@ -17685,6 +18102,15 @@ type $OpenApiTs = {
|
|
|
17685
18102
|
*/
|
|
17686
18103
|
permalink?: string | null;
|
|
17687
18104
|
} | null;
|
|
18105
|
+
SNAPCHAT?: {
|
|
18106
|
+
id?: string | null;
|
|
18107
|
+
mediaId?: string | null;
|
|
18108
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
18109
|
+
profileId?: string | null;
|
|
18110
|
+
sourceUploadId?: string | null;
|
|
18111
|
+
permalink?: string | null;
|
|
18112
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
18113
|
+
} | null;
|
|
17688
18114
|
} | null;
|
|
17689
18115
|
retryCount: number;
|
|
17690
18116
|
createdAt: string | null;
|
|
@@ -18135,6 +18561,14 @@ type $OpenApiTs = {
|
|
|
18135
18561
|
*/
|
|
18136
18562
|
alertType?: 'COVID_19' | null;
|
|
18137
18563
|
} | null;
|
|
18564
|
+
SNAPCHAT?: {
|
|
18565
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
18566
|
+
uploadIds?: Array<(string)> | null;
|
|
18567
|
+
text?: string | null;
|
|
18568
|
+
description?: string | null;
|
|
18569
|
+
locale?: string | null;
|
|
18570
|
+
skipSaveToProfile?: boolean | null;
|
|
18571
|
+
} | null;
|
|
18138
18572
|
};
|
|
18139
18573
|
error?: string | null;
|
|
18140
18574
|
errors?: {
|
|
@@ -18152,6 +18586,7 @@ type $OpenApiTs = {
|
|
|
18152
18586
|
THREADS?: string | null;
|
|
18153
18587
|
BLUESKY?: string | null;
|
|
18154
18588
|
GOOGLE_BUSINESS?: string | null;
|
|
18589
|
+
SNAPCHAT?: string | null;
|
|
18155
18590
|
} | null;
|
|
18156
18591
|
errorsVerbose?: {
|
|
18157
18592
|
TWITTER?: {
|
|
@@ -18280,6 +18715,15 @@ type $OpenApiTs = {
|
|
|
18280
18715
|
meta?: unknown;
|
|
18281
18716
|
userFacingMessage?: string | null;
|
|
18282
18717
|
} | null;
|
|
18718
|
+
SNAPCHAT?: {
|
|
18719
|
+
code?: string | null;
|
|
18720
|
+
errorMessage?: string | null;
|
|
18721
|
+
isTransient?: boolean | null;
|
|
18722
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18723
|
+
httpStatus?: number | null;
|
|
18724
|
+
meta?: unknown;
|
|
18725
|
+
userFacingMessage?: string | null;
|
|
18726
|
+
} | null;
|
|
18283
18727
|
} | null;
|
|
18284
18728
|
externalData?: {
|
|
18285
18729
|
TWITTER?: {
|
|
@@ -18372,6 +18816,15 @@ type $OpenApiTs = {
|
|
|
18372
18816
|
*/
|
|
18373
18817
|
permalink?: string | null;
|
|
18374
18818
|
} | null;
|
|
18819
|
+
SNAPCHAT?: {
|
|
18820
|
+
id?: string | null;
|
|
18821
|
+
mediaId?: string | null;
|
|
18822
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
18823
|
+
profileId?: string | null;
|
|
18824
|
+
sourceUploadId?: string | null;
|
|
18825
|
+
permalink?: string | null;
|
|
18826
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
18827
|
+
} | null;
|
|
18375
18828
|
} | null;
|
|
18376
18829
|
retryCount: number;
|
|
18377
18830
|
createdAt: string | null;
|
|
@@ -18818,6 +19271,14 @@ type $OpenApiTs = {
|
|
|
18818
19271
|
*/
|
|
18819
19272
|
alertType?: 'COVID_19' | null;
|
|
18820
19273
|
} | null;
|
|
19274
|
+
SNAPCHAT?: {
|
|
19275
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
19276
|
+
uploadIds?: Array<(string)> | null;
|
|
19277
|
+
text?: string | null;
|
|
19278
|
+
description?: string | null;
|
|
19279
|
+
locale?: string | null;
|
|
19280
|
+
skipSaveToProfile?: boolean | null;
|
|
19281
|
+
} | null;
|
|
18821
19282
|
};
|
|
18822
19283
|
error?: string | null;
|
|
18823
19284
|
errors?: {
|
|
@@ -18835,6 +19296,7 @@ type $OpenApiTs = {
|
|
|
18835
19296
|
THREADS?: string | null;
|
|
18836
19297
|
BLUESKY?: string | null;
|
|
18837
19298
|
GOOGLE_BUSINESS?: string | null;
|
|
19299
|
+
SNAPCHAT?: string | null;
|
|
18838
19300
|
} | null;
|
|
18839
19301
|
errorsVerbose?: {
|
|
18840
19302
|
TWITTER?: {
|
|
@@ -18963,6 +19425,15 @@ type $OpenApiTs = {
|
|
|
18963
19425
|
meta?: unknown;
|
|
18964
19426
|
userFacingMessage?: string | null;
|
|
18965
19427
|
} | null;
|
|
19428
|
+
SNAPCHAT?: {
|
|
19429
|
+
code?: string | null;
|
|
19430
|
+
errorMessage?: string | null;
|
|
19431
|
+
isTransient?: boolean | null;
|
|
19432
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
19433
|
+
httpStatus?: number | null;
|
|
19434
|
+
meta?: unknown;
|
|
19435
|
+
userFacingMessage?: string | null;
|
|
19436
|
+
} | null;
|
|
18966
19437
|
} | null;
|
|
18967
19438
|
externalData?: {
|
|
18968
19439
|
TWITTER?: {
|
|
@@ -19055,6 +19526,15 @@ type $OpenApiTs = {
|
|
|
19055
19526
|
*/
|
|
19056
19527
|
permalink?: string | null;
|
|
19057
19528
|
} | null;
|
|
19529
|
+
SNAPCHAT?: {
|
|
19530
|
+
id?: string | null;
|
|
19531
|
+
mediaId?: string | null;
|
|
19532
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
19533
|
+
profileId?: string | null;
|
|
19534
|
+
sourceUploadId?: string | null;
|
|
19535
|
+
permalink?: string | null;
|
|
19536
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
19537
|
+
} | null;
|
|
19058
19538
|
} | null;
|
|
19059
19539
|
retryCount: number;
|
|
19060
19540
|
createdAt: string | null;
|
|
@@ -19096,10 +19576,11 @@ type $OpenApiTs = {
|
|
|
19096
19576
|
deletedAt?: string | null;
|
|
19097
19577
|
socialAccount: {
|
|
19098
19578
|
id: string;
|
|
19099
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
19579
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
19100
19580
|
teamId: string;
|
|
19101
19581
|
username?: string | null;
|
|
19102
19582
|
displayName?: string | null;
|
|
19583
|
+
bio?: string | null;
|
|
19103
19584
|
avatarUrl?: string | null;
|
|
19104
19585
|
externalId?: string | null;
|
|
19105
19586
|
userUsername?: string | null;
|
|
@@ -19575,6 +20056,14 @@ type $OpenApiTs = {
|
|
|
19575
20056
|
*/
|
|
19576
20057
|
alertType?: 'COVID_19' | null;
|
|
19577
20058
|
} | null;
|
|
20059
|
+
SNAPCHAT?: {
|
|
20060
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
20061
|
+
uploadIds?: Array<(string)> | null;
|
|
20062
|
+
text?: string | null;
|
|
20063
|
+
description?: string | null;
|
|
20064
|
+
locale?: string | null;
|
|
20065
|
+
skipSaveToProfile?: boolean | null;
|
|
20066
|
+
} | null;
|
|
19578
20067
|
};
|
|
19579
20068
|
error?: string | null;
|
|
19580
20069
|
errors?: {
|
|
@@ -19592,6 +20081,7 @@ type $OpenApiTs = {
|
|
|
19592
20081
|
THREADS?: string | null;
|
|
19593
20082
|
BLUESKY?: string | null;
|
|
19594
20083
|
GOOGLE_BUSINESS?: string | null;
|
|
20084
|
+
SNAPCHAT?: string | null;
|
|
19595
20085
|
} | null;
|
|
19596
20086
|
errorsVerbose?: {
|
|
19597
20087
|
TWITTER?: {
|
|
@@ -19720,6 +20210,15 @@ type $OpenApiTs = {
|
|
|
19720
20210
|
meta?: unknown;
|
|
19721
20211
|
userFacingMessage?: string | null;
|
|
19722
20212
|
} | null;
|
|
20213
|
+
SNAPCHAT?: {
|
|
20214
|
+
code?: string | null;
|
|
20215
|
+
errorMessage?: string | null;
|
|
20216
|
+
isTransient?: boolean | null;
|
|
20217
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20218
|
+
httpStatus?: number | null;
|
|
20219
|
+
meta?: unknown;
|
|
20220
|
+
userFacingMessage?: string | null;
|
|
20221
|
+
} | null;
|
|
19723
20222
|
} | null;
|
|
19724
20223
|
externalData?: {
|
|
19725
20224
|
TWITTER?: {
|
|
@@ -19812,6 +20311,15 @@ type $OpenApiTs = {
|
|
|
19812
20311
|
*/
|
|
19813
20312
|
permalink?: string | null;
|
|
19814
20313
|
} | null;
|
|
20314
|
+
SNAPCHAT?: {
|
|
20315
|
+
id?: string | null;
|
|
20316
|
+
mediaId?: string | null;
|
|
20317
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
20318
|
+
profileId?: string | null;
|
|
20319
|
+
sourceUploadId?: string | null;
|
|
20320
|
+
permalink?: string | null;
|
|
20321
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
20322
|
+
} | null;
|
|
19815
20323
|
} | null;
|
|
19816
20324
|
retryCount: number;
|
|
19817
20325
|
createdAt: string | null;
|
|
@@ -20264,6 +20772,14 @@ type $OpenApiTs = {
|
|
|
20264
20772
|
*/
|
|
20265
20773
|
alertType?: 'COVID_19' | null;
|
|
20266
20774
|
} | null;
|
|
20775
|
+
SNAPCHAT?: {
|
|
20776
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
20777
|
+
uploadIds?: Array<(string)> | null;
|
|
20778
|
+
text?: string | null;
|
|
20779
|
+
description?: string | null;
|
|
20780
|
+
locale?: string | null;
|
|
20781
|
+
skipSaveToProfile?: boolean | null;
|
|
20782
|
+
} | null;
|
|
20267
20783
|
};
|
|
20268
20784
|
error?: string | null;
|
|
20269
20785
|
errors?: {
|
|
@@ -20281,6 +20797,7 @@ type $OpenApiTs = {
|
|
|
20281
20797
|
THREADS?: string | null;
|
|
20282
20798
|
BLUESKY?: string | null;
|
|
20283
20799
|
GOOGLE_BUSINESS?: string | null;
|
|
20800
|
+
SNAPCHAT?: string | null;
|
|
20284
20801
|
} | null;
|
|
20285
20802
|
errorsVerbose?: {
|
|
20286
20803
|
TWITTER?: {
|
|
@@ -20409,6 +20926,15 @@ type $OpenApiTs = {
|
|
|
20409
20926
|
meta?: unknown;
|
|
20410
20927
|
userFacingMessage?: string | null;
|
|
20411
20928
|
} | null;
|
|
20929
|
+
SNAPCHAT?: {
|
|
20930
|
+
code?: string | null;
|
|
20931
|
+
errorMessage?: string | null;
|
|
20932
|
+
isTransient?: boolean | null;
|
|
20933
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20934
|
+
httpStatus?: number | null;
|
|
20935
|
+
meta?: unknown;
|
|
20936
|
+
userFacingMessage?: string | null;
|
|
20937
|
+
} | null;
|
|
20412
20938
|
} | null;
|
|
20413
20939
|
externalData?: {
|
|
20414
20940
|
TWITTER?: {
|
|
@@ -20501,6 +21027,15 @@ type $OpenApiTs = {
|
|
|
20501
21027
|
*/
|
|
20502
21028
|
permalink?: string | null;
|
|
20503
21029
|
} | null;
|
|
21030
|
+
SNAPCHAT?: {
|
|
21031
|
+
id?: string | null;
|
|
21032
|
+
mediaId?: string | null;
|
|
21033
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
21034
|
+
profileId?: string | null;
|
|
21035
|
+
sourceUploadId?: string | null;
|
|
21036
|
+
permalink?: string | null;
|
|
21037
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
21038
|
+
} | null;
|
|
20504
21039
|
} | null;
|
|
20505
21040
|
retryCount: number;
|
|
20506
21041
|
createdAt: string | null;
|
|
@@ -20567,10 +21102,11 @@ type $OpenApiTs = {
|
|
|
20567
21102
|
200: {
|
|
20568
21103
|
socialAccount: {
|
|
20569
21104
|
id: string;
|
|
20570
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
21105
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
20571
21106
|
teamId: string;
|
|
20572
21107
|
username?: string | null;
|
|
20573
21108
|
displayName?: string | null;
|
|
21109
|
+
bio?: string | null;
|
|
20574
21110
|
avatarUrl?: string | null;
|
|
20575
21111
|
externalId?: string | null;
|
|
20576
21112
|
userUsername?: string | null;
|
|
@@ -21063,6 +21599,14 @@ type $OpenApiTs = {
|
|
|
21063
21599
|
*/
|
|
21064
21600
|
alertType?: 'COVID_19' | null;
|
|
21065
21601
|
} | null;
|
|
21602
|
+
SNAPCHAT?: {
|
|
21603
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
21604
|
+
uploadIds?: Array<(string)> | null;
|
|
21605
|
+
text?: string | null;
|
|
21606
|
+
description?: string | null;
|
|
21607
|
+
locale?: string | null;
|
|
21608
|
+
skipSaveToProfile?: boolean | null;
|
|
21609
|
+
} | null;
|
|
21066
21610
|
};
|
|
21067
21611
|
error?: string | null;
|
|
21068
21612
|
errors?: {
|
|
@@ -21080,6 +21624,7 @@ type $OpenApiTs = {
|
|
|
21080
21624
|
THREADS?: string | null;
|
|
21081
21625
|
BLUESKY?: string | null;
|
|
21082
21626
|
GOOGLE_BUSINESS?: string | null;
|
|
21627
|
+
SNAPCHAT?: string | null;
|
|
21083
21628
|
} | null;
|
|
21084
21629
|
errorsVerbose?: {
|
|
21085
21630
|
TWITTER?: {
|
|
@@ -21208,6 +21753,15 @@ type $OpenApiTs = {
|
|
|
21208
21753
|
meta?: unknown;
|
|
21209
21754
|
userFacingMessage?: string | null;
|
|
21210
21755
|
} | null;
|
|
21756
|
+
SNAPCHAT?: {
|
|
21757
|
+
code?: string | null;
|
|
21758
|
+
errorMessage?: string | null;
|
|
21759
|
+
isTransient?: boolean | null;
|
|
21760
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21761
|
+
httpStatus?: number | null;
|
|
21762
|
+
meta?: unknown;
|
|
21763
|
+
userFacingMessage?: string | null;
|
|
21764
|
+
} | null;
|
|
21211
21765
|
} | null;
|
|
21212
21766
|
externalData?: {
|
|
21213
21767
|
TWITTER?: {
|
|
@@ -21300,6 +21854,15 @@ type $OpenApiTs = {
|
|
|
21300
21854
|
*/
|
|
21301
21855
|
permalink?: string | null;
|
|
21302
21856
|
} | null;
|
|
21857
|
+
SNAPCHAT?: {
|
|
21858
|
+
id?: string | null;
|
|
21859
|
+
mediaId?: string | null;
|
|
21860
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
21861
|
+
profileId?: string | null;
|
|
21862
|
+
sourceUploadId?: string | null;
|
|
21863
|
+
permalink?: string | null;
|
|
21864
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
21865
|
+
} | null;
|
|
21303
21866
|
} | null;
|
|
21304
21867
|
retryCount: number;
|
|
21305
21868
|
createdAt: string | null;
|
|
@@ -21406,10 +21969,11 @@ type $OpenApiTs = {
|
|
|
21406
21969
|
200: {
|
|
21407
21970
|
socialAccount: {
|
|
21408
21971
|
id: string;
|
|
21409
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
21972
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS' | 'SNAPCHAT';
|
|
21410
21973
|
teamId: string;
|
|
21411
21974
|
username?: string | null;
|
|
21412
21975
|
displayName?: string | null;
|
|
21976
|
+
bio?: string | null;
|
|
21413
21977
|
avatarUrl?: string | null;
|
|
21414
21978
|
externalId?: string | null;
|
|
21415
21979
|
userUsername?: string | null;
|
|
@@ -21895,6 +22459,14 @@ type $OpenApiTs = {
|
|
|
21895
22459
|
*/
|
|
21896
22460
|
alertType?: 'COVID_19' | null;
|
|
21897
22461
|
} | null;
|
|
22462
|
+
SNAPCHAT?: {
|
|
22463
|
+
type?: 'STORY' | 'SPOTLIGHT';
|
|
22464
|
+
uploadIds?: Array<(string)> | null;
|
|
22465
|
+
text?: string | null;
|
|
22466
|
+
description?: string | null;
|
|
22467
|
+
locale?: string | null;
|
|
22468
|
+
skipSaveToProfile?: boolean | null;
|
|
22469
|
+
} | null;
|
|
21898
22470
|
};
|
|
21899
22471
|
error?: string | null;
|
|
21900
22472
|
errors?: {
|
|
@@ -21912,6 +22484,7 @@ type $OpenApiTs = {
|
|
|
21912
22484
|
THREADS?: string | null;
|
|
21913
22485
|
BLUESKY?: string | null;
|
|
21914
22486
|
GOOGLE_BUSINESS?: string | null;
|
|
22487
|
+
SNAPCHAT?: string | null;
|
|
21915
22488
|
} | null;
|
|
21916
22489
|
errorsVerbose?: {
|
|
21917
22490
|
TWITTER?: {
|
|
@@ -22040,6 +22613,15 @@ type $OpenApiTs = {
|
|
|
22040
22613
|
meta?: unknown;
|
|
22041
22614
|
userFacingMessage?: string | null;
|
|
22042
22615
|
} | null;
|
|
22616
|
+
SNAPCHAT?: {
|
|
22617
|
+
code?: string | null;
|
|
22618
|
+
errorMessage?: string | null;
|
|
22619
|
+
isTransient?: boolean | null;
|
|
22620
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
22621
|
+
httpStatus?: number | null;
|
|
22622
|
+
meta?: unknown;
|
|
22623
|
+
userFacingMessage?: string | null;
|
|
22624
|
+
} | null;
|
|
22043
22625
|
} | null;
|
|
22044
22626
|
externalData?: {
|
|
22045
22627
|
TWITTER?: {
|
|
@@ -22132,6 +22714,15 @@ type $OpenApiTs = {
|
|
|
22132
22714
|
*/
|
|
22133
22715
|
permalink?: string | null;
|
|
22134
22716
|
} | null;
|
|
22717
|
+
SNAPCHAT?: {
|
|
22718
|
+
id?: string | null;
|
|
22719
|
+
mediaId?: string | null;
|
|
22720
|
+
type?: 'STORY' | 'SPOTLIGHT' | null;
|
|
22721
|
+
profileId?: string | null;
|
|
22722
|
+
sourceUploadId?: string | null;
|
|
22723
|
+
permalink?: string | null;
|
|
22724
|
+
status?: 'MEDIA_UPLOADED' | 'MEDIA_PROCESSING' | 'PUBLISHED' | null;
|
|
22725
|
+
} | null;
|
|
22135
22726
|
} | null;
|
|
22136
22727
|
retryCount: number;
|
|
22137
22728
|
createdAt: string | null;
|
|
@@ -28292,6 +28883,37 @@ type $OpenApiTs = {
|
|
|
28292
28883
|
* Full name if available
|
|
28293
28884
|
*/
|
|
28294
28885
|
name?: string;
|
|
28886
|
+
/**
|
|
28887
|
+
* Up to 12 recent public media items
|
|
28888
|
+
*/
|
|
28889
|
+
media?: {
|
|
28890
|
+
data: Array<{
|
|
28891
|
+
/**
|
|
28892
|
+
* Instagram Media ID
|
|
28893
|
+
*/
|
|
28894
|
+
id: string;
|
|
28895
|
+
/**
|
|
28896
|
+
* Instagram media type
|
|
28897
|
+
*/
|
|
28898
|
+
media_type: string;
|
|
28899
|
+
/**
|
|
28900
|
+
* Number of likes if available
|
|
28901
|
+
*/
|
|
28902
|
+
like_count?: number;
|
|
28903
|
+
/**
|
|
28904
|
+
* Number of comments if available
|
|
28905
|
+
*/
|
|
28906
|
+
comments_count?: number;
|
|
28907
|
+
/**
|
|
28908
|
+
* Media publication timestamp
|
|
28909
|
+
*/
|
|
28910
|
+
timestamp?: string;
|
|
28911
|
+
/**
|
|
28912
|
+
* Media caption if available
|
|
28913
|
+
*/
|
|
28914
|
+
caption?: string;
|
|
28915
|
+
}>;
|
|
28916
|
+
};
|
|
28295
28917
|
} | null;
|
|
28296
28918
|
};
|
|
28297
28919
|
/**
|
|
@@ -30201,7 +30823,7 @@ type $OpenApiTs = {
|
|
|
30201
30823
|
/**
|
|
30202
30824
|
* The name of the commercial music track.
|
|
30203
30825
|
*/
|
|
30204
|
-
commercial_music_name
|
|
30826
|
+
commercial_music_name?: string | null;
|
|
30205
30827
|
/**
|
|
30206
30828
|
* Track duration in seconds.
|
|
30207
30829
|
*/
|