bundlesocial 2.47.0 → 2.49.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 +707 -2
- package/dist/index.d.ts +707 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -445,6 +445,7 @@ type TeamGetTeamResponse = {
|
|
|
445
445
|
mastodonServerId?: string | null;
|
|
446
446
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
447
447
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
448
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
448
449
|
disconnectedCheckTryAt?: string | null;
|
|
449
450
|
deleteOn?: string | null;
|
|
450
451
|
createdAt: string | null;
|
|
@@ -648,6 +649,7 @@ type TeamGetListResponse = {
|
|
|
648
649
|
mastodonServerId?: string | null;
|
|
649
650
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
650
651
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
652
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
651
653
|
disconnectedCheckTryAt?: string | null;
|
|
652
654
|
deleteOn?: string | null;
|
|
653
655
|
createdAt: string | null;
|
|
@@ -721,6 +723,9 @@ type SocialAccountConnectData = {
|
|
|
721
723
|
requestBody?: {
|
|
722
724
|
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
723
725
|
teamId: string;
|
|
726
|
+
/**
|
|
727
|
+
* 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.
|
|
728
|
+
*/
|
|
724
729
|
redirectUrl: string;
|
|
725
730
|
/**
|
|
726
731
|
* Mastodon or Bluesky only
|
|
@@ -792,6 +797,7 @@ type SocialAccountDisconnectResponse = {
|
|
|
792
797
|
mastodonServerId?: string | null;
|
|
793
798
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
794
799
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
800
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
795
801
|
disconnectedCheckTryAt?: string | null;
|
|
796
802
|
deleteOn?: string | null;
|
|
797
803
|
createdAt: string | null;
|
|
@@ -841,6 +847,7 @@ type SocialAccountSetChannelResponse = {
|
|
|
841
847
|
mastodonServerId?: string | null;
|
|
842
848
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
843
849
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
850
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
844
851
|
disconnectedCheckTryAt?: string | null;
|
|
845
852
|
deleteOn?: string | null;
|
|
846
853
|
createdAt: string | null;
|
|
@@ -889,6 +896,7 @@ type SocialAccountUnsetChannelResponse = {
|
|
|
889
896
|
mastodonServerId?: string | null;
|
|
890
897
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
891
898
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
899
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
892
900
|
disconnectedCheckTryAt?: string | null;
|
|
893
901
|
deleteOn?: string | null;
|
|
894
902
|
createdAt: string | null;
|
|
@@ -937,6 +945,7 @@ type SocialAccountRefreshChannelsResponse = {
|
|
|
937
945
|
mastodonServerId?: string | null;
|
|
938
946
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
939
947
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
948
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
940
949
|
disconnectedCheckTryAt?: string | null;
|
|
941
950
|
deleteOn?: string | null;
|
|
942
951
|
createdAt: string | null;
|
|
@@ -1049,6 +1058,7 @@ type SocialAccountProfileRefreshResponse = {
|
|
|
1049
1058
|
mastodonServerId?: string | null;
|
|
1050
1059
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
1051
1060
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
1061
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
1052
1062
|
disconnectedCheckTryAt?: string | null;
|
|
1053
1063
|
deleteOn?: string | null;
|
|
1054
1064
|
createdAt: string | null;
|
|
@@ -1098,6 +1108,7 @@ type SocialAccountGetByTypeResponse = {
|
|
|
1098
1108
|
mastodonServerId?: string | null;
|
|
1099
1109
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
1100
1110
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
1111
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
1101
1112
|
disconnectedCheckTryAt?: string | null;
|
|
1102
1113
|
deleteOn?: string | null;
|
|
1103
1114
|
createdAt: string | null;
|
|
@@ -1151,6 +1162,7 @@ type SocialAccountCopyResponse = Array<{
|
|
|
1151
1162
|
mastodonServerId?: string | null;
|
|
1152
1163
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
1153
1164
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
1165
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
1154
1166
|
disconnectedCheckTryAt?: string | null;
|
|
1155
1167
|
deleteOn?: string | null;
|
|
1156
1168
|
createdAt: string | null;
|
|
@@ -1195,6 +1207,7 @@ type SocialAccountGetAccountsToDeleteResponse = {
|
|
|
1195
1207
|
mastodonServerId?: string | null;
|
|
1196
1208
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
1197
1209
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
1210
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
1198
1211
|
disconnectedCheckTryAt?: string | null;
|
|
1199
1212
|
deleteOn?: string | null;
|
|
1200
1213
|
createdAt: string | null;
|
|
@@ -1392,7 +1405,7 @@ type UploadInitLargeUploadData = {
|
|
|
1392
1405
|
requestBody?: {
|
|
1393
1406
|
teamId?: string | null;
|
|
1394
1407
|
fileName: string;
|
|
1395
|
-
mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'image/gif' | 'video/mp4' | 'application/pdf';
|
|
1408
|
+
mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'image/gif' | 'video/mp4' | 'video/quicktime' | 'application/pdf';
|
|
1396
1409
|
};
|
|
1397
1410
|
};
|
|
1398
1411
|
type UploadInitLargeUploadResponse = {
|
|
@@ -1807,6 +1820,7 @@ type PostGetResponse = {
|
|
|
1807
1820
|
code?: string | null;
|
|
1808
1821
|
errorMessage?: string | null;
|
|
1809
1822
|
isTransient?: boolean | null;
|
|
1823
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
1810
1824
|
httpStatus?: number | null;
|
|
1811
1825
|
meta?: unknown;
|
|
1812
1826
|
userFacingMessage?: string | null;
|
|
@@ -1815,6 +1829,7 @@ type PostGetResponse = {
|
|
|
1815
1829
|
code?: string | null;
|
|
1816
1830
|
errorMessage?: string | null;
|
|
1817
1831
|
isTransient?: boolean | null;
|
|
1832
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
1818
1833
|
httpStatus?: number | null;
|
|
1819
1834
|
meta?: unknown;
|
|
1820
1835
|
userFacingMessage?: string | null;
|
|
@@ -1823,6 +1838,7 @@ type PostGetResponse = {
|
|
|
1823
1838
|
code?: string | null;
|
|
1824
1839
|
errorMessage?: string | null;
|
|
1825
1840
|
isTransient?: boolean | null;
|
|
1841
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
1826
1842
|
httpStatus?: number | null;
|
|
1827
1843
|
meta?: unknown;
|
|
1828
1844
|
userFacingMessage?: string | null;
|
|
@@ -1831,6 +1847,7 @@ type PostGetResponse = {
|
|
|
1831
1847
|
code?: string | null;
|
|
1832
1848
|
errorMessage?: string | null;
|
|
1833
1849
|
isTransient?: boolean | null;
|
|
1850
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
1834
1851
|
httpStatus?: number | null;
|
|
1835
1852
|
meta?: unknown;
|
|
1836
1853
|
userFacingMessage?: string | null;
|
|
@@ -1839,6 +1856,7 @@ type PostGetResponse = {
|
|
|
1839
1856
|
code?: string | null;
|
|
1840
1857
|
errorMessage?: string | null;
|
|
1841
1858
|
isTransient?: boolean | null;
|
|
1859
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
1842
1860
|
httpStatus?: number | null;
|
|
1843
1861
|
meta?: unknown;
|
|
1844
1862
|
userFacingMessage?: string | null;
|
|
@@ -1847,6 +1865,7 @@ type PostGetResponse = {
|
|
|
1847
1865
|
code?: string | null;
|
|
1848
1866
|
errorMessage?: string | null;
|
|
1849
1867
|
isTransient?: boolean | null;
|
|
1868
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
1850
1869
|
httpStatus?: number | null;
|
|
1851
1870
|
meta?: unknown;
|
|
1852
1871
|
userFacingMessage?: string | null;
|
|
@@ -1855,6 +1874,7 @@ type PostGetResponse = {
|
|
|
1855
1874
|
code?: string | null;
|
|
1856
1875
|
errorMessage?: string | null;
|
|
1857
1876
|
isTransient?: boolean | null;
|
|
1877
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
1858
1878
|
httpStatus?: number | null;
|
|
1859
1879
|
meta?: unknown;
|
|
1860
1880
|
userFacingMessage?: string | null;
|
|
@@ -1863,6 +1883,7 @@ type PostGetResponse = {
|
|
|
1863
1883
|
code?: string | null;
|
|
1864
1884
|
errorMessage?: string | null;
|
|
1865
1885
|
isTransient?: boolean | null;
|
|
1886
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
1866
1887
|
httpStatus?: number | null;
|
|
1867
1888
|
meta?: unknown;
|
|
1868
1889
|
userFacingMessage?: string | null;
|
|
@@ -1871,6 +1892,7 @@ type PostGetResponse = {
|
|
|
1871
1892
|
code?: string | null;
|
|
1872
1893
|
errorMessage?: string | null;
|
|
1873
1894
|
isTransient?: boolean | null;
|
|
1895
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
1874
1896
|
httpStatus?: number | null;
|
|
1875
1897
|
meta?: unknown;
|
|
1876
1898
|
userFacingMessage?: string | null;
|
|
@@ -1879,6 +1901,7 @@ type PostGetResponse = {
|
|
|
1879
1901
|
code?: string | null;
|
|
1880
1902
|
errorMessage?: string | null;
|
|
1881
1903
|
isTransient?: boolean | null;
|
|
1904
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
1882
1905
|
httpStatus?: number | null;
|
|
1883
1906
|
meta?: unknown;
|
|
1884
1907
|
userFacingMessage?: string | null;
|
|
@@ -1887,6 +1910,7 @@ type PostGetResponse = {
|
|
|
1887
1910
|
code?: string | null;
|
|
1888
1911
|
errorMessage?: string | null;
|
|
1889
1912
|
isTransient?: boolean | null;
|
|
1913
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
1890
1914
|
httpStatus?: number | null;
|
|
1891
1915
|
meta?: unknown;
|
|
1892
1916
|
userFacingMessage?: string | null;
|
|
@@ -1895,6 +1919,7 @@ type PostGetResponse = {
|
|
|
1895
1919
|
code?: string | null;
|
|
1896
1920
|
errorMessage?: string | null;
|
|
1897
1921
|
isTransient?: boolean | null;
|
|
1922
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
1898
1923
|
httpStatus?: number | null;
|
|
1899
1924
|
meta?: unknown;
|
|
1900
1925
|
userFacingMessage?: string | null;
|
|
@@ -1903,6 +1928,7 @@ type PostGetResponse = {
|
|
|
1903
1928
|
code?: string | null;
|
|
1904
1929
|
errorMessage?: string | null;
|
|
1905
1930
|
isTransient?: boolean | null;
|
|
1931
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
1906
1932
|
httpStatus?: number | null;
|
|
1907
1933
|
meta?: unknown;
|
|
1908
1934
|
userFacingMessage?: string | null;
|
|
@@ -1911,6 +1937,7 @@ type PostGetResponse = {
|
|
|
1911
1937
|
code?: string | null;
|
|
1912
1938
|
errorMessage?: string | null;
|
|
1913
1939
|
isTransient?: boolean | null;
|
|
1940
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
1914
1941
|
httpStatus?: number | null;
|
|
1915
1942
|
meta?: unknown;
|
|
1916
1943
|
userFacingMessage?: string | null;
|
|
@@ -1941,6 +1968,7 @@ type PostGetResponse = {
|
|
|
1941
1968
|
TIKTOK?: {
|
|
1942
1969
|
id?: string | null;
|
|
1943
1970
|
shareId?: string | null;
|
|
1971
|
+
requestId?: string | null;
|
|
1944
1972
|
permalink?: string | null;
|
|
1945
1973
|
status?: string | null;
|
|
1946
1974
|
} | null;
|
|
@@ -2078,6 +2106,7 @@ type PostGetResponse = {
|
|
|
2078
2106
|
mastodonServerId?: string | null;
|
|
2079
2107
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
2080
2108
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
2109
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
2081
2110
|
disconnectedCheckTryAt?: string | null;
|
|
2082
2111
|
deleteOn?: string | null;
|
|
2083
2112
|
createdAt: string | null;
|
|
@@ -2818,6 +2847,7 @@ type PostUpdateResponse = {
|
|
|
2818
2847
|
code?: string | null;
|
|
2819
2848
|
errorMessage?: string | null;
|
|
2820
2849
|
isTransient?: boolean | null;
|
|
2850
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2821
2851
|
httpStatus?: number | null;
|
|
2822
2852
|
meta?: unknown;
|
|
2823
2853
|
userFacingMessage?: string | null;
|
|
@@ -2826,6 +2856,7 @@ type PostUpdateResponse = {
|
|
|
2826
2856
|
code?: string | null;
|
|
2827
2857
|
errorMessage?: string | null;
|
|
2828
2858
|
isTransient?: boolean | null;
|
|
2859
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2829
2860
|
httpStatus?: number | null;
|
|
2830
2861
|
meta?: unknown;
|
|
2831
2862
|
userFacingMessage?: string | null;
|
|
@@ -2834,6 +2865,7 @@ type PostUpdateResponse = {
|
|
|
2834
2865
|
code?: string | null;
|
|
2835
2866
|
errorMessage?: string | null;
|
|
2836
2867
|
isTransient?: boolean | null;
|
|
2868
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2837
2869
|
httpStatus?: number | null;
|
|
2838
2870
|
meta?: unknown;
|
|
2839
2871
|
userFacingMessage?: string | null;
|
|
@@ -2842,6 +2874,7 @@ type PostUpdateResponse = {
|
|
|
2842
2874
|
code?: string | null;
|
|
2843
2875
|
errorMessage?: string | null;
|
|
2844
2876
|
isTransient?: boolean | null;
|
|
2877
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2845
2878
|
httpStatus?: number | null;
|
|
2846
2879
|
meta?: unknown;
|
|
2847
2880
|
userFacingMessage?: string | null;
|
|
@@ -2850,6 +2883,7 @@ type PostUpdateResponse = {
|
|
|
2850
2883
|
code?: string | null;
|
|
2851
2884
|
errorMessage?: string | null;
|
|
2852
2885
|
isTransient?: boolean | null;
|
|
2886
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2853
2887
|
httpStatus?: number | null;
|
|
2854
2888
|
meta?: unknown;
|
|
2855
2889
|
userFacingMessage?: string | null;
|
|
@@ -2858,6 +2892,7 @@ type PostUpdateResponse = {
|
|
|
2858
2892
|
code?: string | null;
|
|
2859
2893
|
errorMessage?: string | null;
|
|
2860
2894
|
isTransient?: boolean | null;
|
|
2895
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2861
2896
|
httpStatus?: number | null;
|
|
2862
2897
|
meta?: unknown;
|
|
2863
2898
|
userFacingMessage?: string | null;
|
|
@@ -2866,6 +2901,7 @@ type PostUpdateResponse = {
|
|
|
2866
2901
|
code?: string | null;
|
|
2867
2902
|
errorMessage?: string | null;
|
|
2868
2903
|
isTransient?: boolean | null;
|
|
2904
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2869
2905
|
httpStatus?: number | null;
|
|
2870
2906
|
meta?: unknown;
|
|
2871
2907
|
userFacingMessage?: string | null;
|
|
@@ -2874,6 +2910,7 @@ type PostUpdateResponse = {
|
|
|
2874
2910
|
code?: string | null;
|
|
2875
2911
|
errorMessage?: string | null;
|
|
2876
2912
|
isTransient?: boolean | null;
|
|
2913
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2877
2914
|
httpStatus?: number | null;
|
|
2878
2915
|
meta?: unknown;
|
|
2879
2916
|
userFacingMessage?: string | null;
|
|
@@ -2882,6 +2919,7 @@ type PostUpdateResponse = {
|
|
|
2882
2919
|
code?: string | null;
|
|
2883
2920
|
errorMessage?: string | null;
|
|
2884
2921
|
isTransient?: boolean | null;
|
|
2922
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2885
2923
|
httpStatus?: number | null;
|
|
2886
2924
|
meta?: unknown;
|
|
2887
2925
|
userFacingMessage?: string | null;
|
|
@@ -2890,6 +2928,7 @@ type PostUpdateResponse = {
|
|
|
2890
2928
|
code?: string | null;
|
|
2891
2929
|
errorMessage?: string | null;
|
|
2892
2930
|
isTransient?: boolean | null;
|
|
2931
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2893
2932
|
httpStatus?: number | null;
|
|
2894
2933
|
meta?: unknown;
|
|
2895
2934
|
userFacingMessage?: string | null;
|
|
@@ -2898,6 +2937,7 @@ type PostUpdateResponse = {
|
|
|
2898
2937
|
code?: string | null;
|
|
2899
2938
|
errorMessage?: string | null;
|
|
2900
2939
|
isTransient?: boolean | null;
|
|
2940
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2901
2941
|
httpStatus?: number | null;
|
|
2902
2942
|
meta?: unknown;
|
|
2903
2943
|
userFacingMessage?: string | null;
|
|
@@ -2906,6 +2946,7 @@ type PostUpdateResponse = {
|
|
|
2906
2946
|
code?: string | null;
|
|
2907
2947
|
errorMessage?: string | null;
|
|
2908
2948
|
isTransient?: boolean | null;
|
|
2949
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2909
2950
|
httpStatus?: number | null;
|
|
2910
2951
|
meta?: unknown;
|
|
2911
2952
|
userFacingMessage?: string | null;
|
|
@@ -2914,6 +2955,7 @@ type PostUpdateResponse = {
|
|
|
2914
2955
|
code?: string | null;
|
|
2915
2956
|
errorMessage?: string | null;
|
|
2916
2957
|
isTransient?: boolean | null;
|
|
2958
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2917
2959
|
httpStatus?: number | null;
|
|
2918
2960
|
meta?: unknown;
|
|
2919
2961
|
userFacingMessage?: string | null;
|
|
@@ -2922,6 +2964,7 @@ type PostUpdateResponse = {
|
|
|
2922
2964
|
code?: string | null;
|
|
2923
2965
|
errorMessage?: string | null;
|
|
2924
2966
|
isTransient?: boolean | null;
|
|
2967
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2925
2968
|
httpStatus?: number | null;
|
|
2926
2969
|
meta?: unknown;
|
|
2927
2970
|
userFacingMessage?: string | null;
|
|
@@ -2952,6 +2995,7 @@ type PostUpdateResponse = {
|
|
|
2952
2995
|
TIKTOK?: {
|
|
2953
2996
|
id?: string | null;
|
|
2954
2997
|
shareId?: string | null;
|
|
2998
|
+
requestId?: string | null;
|
|
2955
2999
|
permalink?: string | null;
|
|
2956
3000
|
status?: string | null;
|
|
2957
3001
|
} | null;
|
|
@@ -3401,6 +3445,7 @@ type PostDeleteResponse = {
|
|
|
3401
3445
|
code?: string | null;
|
|
3402
3446
|
errorMessage?: string | null;
|
|
3403
3447
|
isTransient?: boolean | null;
|
|
3448
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3404
3449
|
httpStatus?: number | null;
|
|
3405
3450
|
meta?: unknown;
|
|
3406
3451
|
userFacingMessage?: string | null;
|
|
@@ -3409,6 +3454,7 @@ type PostDeleteResponse = {
|
|
|
3409
3454
|
code?: string | null;
|
|
3410
3455
|
errorMessage?: string | null;
|
|
3411
3456
|
isTransient?: boolean | null;
|
|
3457
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3412
3458
|
httpStatus?: number | null;
|
|
3413
3459
|
meta?: unknown;
|
|
3414
3460
|
userFacingMessage?: string | null;
|
|
@@ -3417,6 +3463,7 @@ type PostDeleteResponse = {
|
|
|
3417
3463
|
code?: string | null;
|
|
3418
3464
|
errorMessage?: string | null;
|
|
3419
3465
|
isTransient?: boolean | null;
|
|
3466
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3420
3467
|
httpStatus?: number | null;
|
|
3421
3468
|
meta?: unknown;
|
|
3422
3469
|
userFacingMessage?: string | null;
|
|
@@ -3425,6 +3472,7 @@ type PostDeleteResponse = {
|
|
|
3425
3472
|
code?: string | null;
|
|
3426
3473
|
errorMessage?: string | null;
|
|
3427
3474
|
isTransient?: boolean | null;
|
|
3475
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3428
3476
|
httpStatus?: number | null;
|
|
3429
3477
|
meta?: unknown;
|
|
3430
3478
|
userFacingMessage?: string | null;
|
|
@@ -3433,6 +3481,7 @@ type PostDeleteResponse = {
|
|
|
3433
3481
|
code?: string | null;
|
|
3434
3482
|
errorMessage?: string | null;
|
|
3435
3483
|
isTransient?: boolean | null;
|
|
3484
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3436
3485
|
httpStatus?: number | null;
|
|
3437
3486
|
meta?: unknown;
|
|
3438
3487
|
userFacingMessage?: string | null;
|
|
@@ -3441,6 +3490,7 @@ type PostDeleteResponse = {
|
|
|
3441
3490
|
code?: string | null;
|
|
3442
3491
|
errorMessage?: string | null;
|
|
3443
3492
|
isTransient?: boolean | null;
|
|
3493
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3444
3494
|
httpStatus?: number | null;
|
|
3445
3495
|
meta?: unknown;
|
|
3446
3496
|
userFacingMessage?: string | null;
|
|
@@ -3449,6 +3499,7 @@ type PostDeleteResponse = {
|
|
|
3449
3499
|
code?: string | null;
|
|
3450
3500
|
errorMessage?: string | null;
|
|
3451
3501
|
isTransient?: boolean | null;
|
|
3502
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3452
3503
|
httpStatus?: number | null;
|
|
3453
3504
|
meta?: unknown;
|
|
3454
3505
|
userFacingMessage?: string | null;
|
|
@@ -3457,6 +3508,7 @@ type PostDeleteResponse = {
|
|
|
3457
3508
|
code?: string | null;
|
|
3458
3509
|
errorMessage?: string | null;
|
|
3459
3510
|
isTransient?: boolean | null;
|
|
3511
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3460
3512
|
httpStatus?: number | null;
|
|
3461
3513
|
meta?: unknown;
|
|
3462
3514
|
userFacingMessage?: string | null;
|
|
@@ -3465,6 +3517,7 @@ type PostDeleteResponse = {
|
|
|
3465
3517
|
code?: string | null;
|
|
3466
3518
|
errorMessage?: string | null;
|
|
3467
3519
|
isTransient?: boolean | null;
|
|
3520
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3468
3521
|
httpStatus?: number | null;
|
|
3469
3522
|
meta?: unknown;
|
|
3470
3523
|
userFacingMessage?: string | null;
|
|
@@ -3473,6 +3526,7 @@ type PostDeleteResponse = {
|
|
|
3473
3526
|
code?: string | null;
|
|
3474
3527
|
errorMessage?: string | null;
|
|
3475
3528
|
isTransient?: boolean | null;
|
|
3529
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3476
3530
|
httpStatus?: number | null;
|
|
3477
3531
|
meta?: unknown;
|
|
3478
3532
|
userFacingMessage?: string | null;
|
|
@@ -3481,6 +3535,7 @@ type PostDeleteResponse = {
|
|
|
3481
3535
|
code?: string | null;
|
|
3482
3536
|
errorMessage?: string | null;
|
|
3483
3537
|
isTransient?: boolean | null;
|
|
3538
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3484
3539
|
httpStatus?: number | null;
|
|
3485
3540
|
meta?: unknown;
|
|
3486
3541
|
userFacingMessage?: string | null;
|
|
@@ -3489,6 +3544,7 @@ type PostDeleteResponse = {
|
|
|
3489
3544
|
code?: string | null;
|
|
3490
3545
|
errorMessage?: string | null;
|
|
3491
3546
|
isTransient?: boolean | null;
|
|
3547
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3492
3548
|
httpStatus?: number | null;
|
|
3493
3549
|
meta?: unknown;
|
|
3494
3550
|
userFacingMessage?: string | null;
|
|
@@ -3497,6 +3553,7 @@ type PostDeleteResponse = {
|
|
|
3497
3553
|
code?: string | null;
|
|
3498
3554
|
errorMessage?: string | null;
|
|
3499
3555
|
isTransient?: boolean | null;
|
|
3556
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3500
3557
|
httpStatus?: number | null;
|
|
3501
3558
|
meta?: unknown;
|
|
3502
3559
|
userFacingMessage?: string | null;
|
|
@@ -3505,6 +3562,7 @@ type PostDeleteResponse = {
|
|
|
3505
3562
|
code?: string | null;
|
|
3506
3563
|
errorMessage?: string | null;
|
|
3507
3564
|
isTransient?: boolean | null;
|
|
3565
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3508
3566
|
httpStatus?: number | null;
|
|
3509
3567
|
meta?: unknown;
|
|
3510
3568
|
userFacingMessage?: string | null;
|
|
@@ -3535,6 +3593,7 @@ type PostDeleteResponse = {
|
|
|
3535
3593
|
TIKTOK?: {
|
|
3536
3594
|
id?: string | null;
|
|
3537
3595
|
shareId?: string | null;
|
|
3596
|
+
requestId?: string | null;
|
|
3538
3597
|
permalink?: string | null;
|
|
3539
3598
|
status?: string | null;
|
|
3540
3599
|
} | null;
|
|
@@ -3994,6 +4053,7 @@ type PostGetListResponse = {
|
|
|
3994
4053
|
code?: string | null;
|
|
3995
4054
|
errorMessage?: string | null;
|
|
3996
4055
|
isTransient?: boolean | null;
|
|
4056
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
3997
4057
|
httpStatus?: number | null;
|
|
3998
4058
|
meta?: unknown;
|
|
3999
4059
|
userFacingMessage?: string | null;
|
|
@@ -4002,6 +4062,7 @@ type PostGetListResponse = {
|
|
|
4002
4062
|
code?: string | null;
|
|
4003
4063
|
errorMessage?: string | null;
|
|
4004
4064
|
isTransient?: boolean | null;
|
|
4065
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4005
4066
|
httpStatus?: number | null;
|
|
4006
4067
|
meta?: unknown;
|
|
4007
4068
|
userFacingMessage?: string | null;
|
|
@@ -4010,6 +4071,7 @@ type PostGetListResponse = {
|
|
|
4010
4071
|
code?: string | null;
|
|
4011
4072
|
errorMessage?: string | null;
|
|
4012
4073
|
isTransient?: boolean | null;
|
|
4074
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4013
4075
|
httpStatus?: number | null;
|
|
4014
4076
|
meta?: unknown;
|
|
4015
4077
|
userFacingMessage?: string | null;
|
|
@@ -4018,6 +4080,7 @@ type PostGetListResponse = {
|
|
|
4018
4080
|
code?: string | null;
|
|
4019
4081
|
errorMessage?: string | null;
|
|
4020
4082
|
isTransient?: boolean | null;
|
|
4083
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4021
4084
|
httpStatus?: number | null;
|
|
4022
4085
|
meta?: unknown;
|
|
4023
4086
|
userFacingMessage?: string | null;
|
|
@@ -4026,6 +4089,7 @@ type PostGetListResponse = {
|
|
|
4026
4089
|
code?: string | null;
|
|
4027
4090
|
errorMessage?: string | null;
|
|
4028
4091
|
isTransient?: boolean | null;
|
|
4092
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4029
4093
|
httpStatus?: number | null;
|
|
4030
4094
|
meta?: unknown;
|
|
4031
4095
|
userFacingMessage?: string | null;
|
|
@@ -4034,6 +4098,7 @@ type PostGetListResponse = {
|
|
|
4034
4098
|
code?: string | null;
|
|
4035
4099
|
errorMessage?: string | null;
|
|
4036
4100
|
isTransient?: boolean | null;
|
|
4101
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4037
4102
|
httpStatus?: number | null;
|
|
4038
4103
|
meta?: unknown;
|
|
4039
4104
|
userFacingMessage?: string | null;
|
|
@@ -4042,6 +4107,7 @@ type PostGetListResponse = {
|
|
|
4042
4107
|
code?: string | null;
|
|
4043
4108
|
errorMessage?: string | null;
|
|
4044
4109
|
isTransient?: boolean | null;
|
|
4110
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4045
4111
|
httpStatus?: number | null;
|
|
4046
4112
|
meta?: unknown;
|
|
4047
4113
|
userFacingMessage?: string | null;
|
|
@@ -4050,6 +4116,7 @@ type PostGetListResponse = {
|
|
|
4050
4116
|
code?: string | null;
|
|
4051
4117
|
errorMessage?: string | null;
|
|
4052
4118
|
isTransient?: boolean | null;
|
|
4119
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4053
4120
|
httpStatus?: number | null;
|
|
4054
4121
|
meta?: unknown;
|
|
4055
4122
|
userFacingMessage?: string | null;
|
|
@@ -4058,6 +4125,7 @@ type PostGetListResponse = {
|
|
|
4058
4125
|
code?: string | null;
|
|
4059
4126
|
errorMessage?: string | null;
|
|
4060
4127
|
isTransient?: boolean | null;
|
|
4128
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4061
4129
|
httpStatus?: number | null;
|
|
4062
4130
|
meta?: unknown;
|
|
4063
4131
|
userFacingMessage?: string | null;
|
|
@@ -4066,6 +4134,7 @@ type PostGetListResponse = {
|
|
|
4066
4134
|
code?: string | null;
|
|
4067
4135
|
errorMessage?: string | null;
|
|
4068
4136
|
isTransient?: boolean | null;
|
|
4137
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4069
4138
|
httpStatus?: number | null;
|
|
4070
4139
|
meta?: unknown;
|
|
4071
4140
|
userFacingMessage?: string | null;
|
|
@@ -4074,6 +4143,7 @@ type PostGetListResponse = {
|
|
|
4074
4143
|
code?: string | null;
|
|
4075
4144
|
errorMessage?: string | null;
|
|
4076
4145
|
isTransient?: boolean | null;
|
|
4146
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4077
4147
|
httpStatus?: number | null;
|
|
4078
4148
|
meta?: unknown;
|
|
4079
4149
|
userFacingMessage?: string | null;
|
|
@@ -4082,6 +4152,7 @@ type PostGetListResponse = {
|
|
|
4082
4152
|
code?: string | null;
|
|
4083
4153
|
errorMessage?: string | null;
|
|
4084
4154
|
isTransient?: boolean | null;
|
|
4155
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4085
4156
|
httpStatus?: number | null;
|
|
4086
4157
|
meta?: unknown;
|
|
4087
4158
|
userFacingMessage?: string | null;
|
|
@@ -4090,6 +4161,7 @@ type PostGetListResponse = {
|
|
|
4090
4161
|
code?: string | null;
|
|
4091
4162
|
errorMessage?: string | null;
|
|
4092
4163
|
isTransient?: boolean | null;
|
|
4164
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4093
4165
|
httpStatus?: number | null;
|
|
4094
4166
|
meta?: unknown;
|
|
4095
4167
|
userFacingMessage?: string | null;
|
|
@@ -4098,6 +4170,7 @@ type PostGetListResponse = {
|
|
|
4098
4170
|
code?: string | null;
|
|
4099
4171
|
errorMessage?: string | null;
|
|
4100
4172
|
isTransient?: boolean | null;
|
|
4173
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
4101
4174
|
httpStatus?: number | null;
|
|
4102
4175
|
meta?: unknown;
|
|
4103
4176
|
userFacingMessage?: string | null;
|
|
@@ -4128,6 +4201,7 @@ type PostGetListResponse = {
|
|
|
4128
4201
|
TIKTOK?: {
|
|
4129
4202
|
id?: string | null;
|
|
4130
4203
|
shareId?: string | null;
|
|
4204
|
+
requestId?: string | null;
|
|
4131
4205
|
permalink?: string | null;
|
|
4132
4206
|
status?: string | null;
|
|
4133
4207
|
} | null;
|
|
@@ -4265,6 +4339,7 @@ type PostGetListResponse = {
|
|
|
4265
4339
|
mastodonServerId?: string | null;
|
|
4266
4340
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
4267
4341
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
4342
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
4268
4343
|
disconnectedCheckTryAt?: string | null;
|
|
4269
4344
|
deleteOn?: string | null;
|
|
4270
4345
|
createdAt: string | null;
|
|
@@ -5007,6 +5082,7 @@ type PostCreateResponse = {
|
|
|
5007
5082
|
code?: string | null;
|
|
5008
5083
|
errorMessage?: string | null;
|
|
5009
5084
|
isTransient?: boolean | null;
|
|
5085
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5010
5086
|
httpStatus?: number | null;
|
|
5011
5087
|
meta?: unknown;
|
|
5012
5088
|
userFacingMessage?: string | null;
|
|
@@ -5015,6 +5091,7 @@ type PostCreateResponse = {
|
|
|
5015
5091
|
code?: string | null;
|
|
5016
5092
|
errorMessage?: string | null;
|
|
5017
5093
|
isTransient?: boolean | null;
|
|
5094
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5018
5095
|
httpStatus?: number | null;
|
|
5019
5096
|
meta?: unknown;
|
|
5020
5097
|
userFacingMessage?: string | null;
|
|
@@ -5023,6 +5100,7 @@ type PostCreateResponse = {
|
|
|
5023
5100
|
code?: string | null;
|
|
5024
5101
|
errorMessage?: string | null;
|
|
5025
5102
|
isTransient?: boolean | null;
|
|
5103
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5026
5104
|
httpStatus?: number | null;
|
|
5027
5105
|
meta?: unknown;
|
|
5028
5106
|
userFacingMessage?: string | null;
|
|
@@ -5031,6 +5109,7 @@ type PostCreateResponse = {
|
|
|
5031
5109
|
code?: string | null;
|
|
5032
5110
|
errorMessage?: string | null;
|
|
5033
5111
|
isTransient?: boolean | null;
|
|
5112
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5034
5113
|
httpStatus?: number | null;
|
|
5035
5114
|
meta?: unknown;
|
|
5036
5115
|
userFacingMessage?: string | null;
|
|
@@ -5039,6 +5118,7 @@ type PostCreateResponse = {
|
|
|
5039
5118
|
code?: string | null;
|
|
5040
5119
|
errorMessage?: string | null;
|
|
5041
5120
|
isTransient?: boolean | null;
|
|
5121
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5042
5122
|
httpStatus?: number | null;
|
|
5043
5123
|
meta?: unknown;
|
|
5044
5124
|
userFacingMessage?: string | null;
|
|
@@ -5047,6 +5127,7 @@ type PostCreateResponse = {
|
|
|
5047
5127
|
code?: string | null;
|
|
5048
5128
|
errorMessage?: string | null;
|
|
5049
5129
|
isTransient?: boolean | null;
|
|
5130
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5050
5131
|
httpStatus?: number | null;
|
|
5051
5132
|
meta?: unknown;
|
|
5052
5133
|
userFacingMessage?: string | null;
|
|
@@ -5055,6 +5136,7 @@ type PostCreateResponse = {
|
|
|
5055
5136
|
code?: string | null;
|
|
5056
5137
|
errorMessage?: string | null;
|
|
5057
5138
|
isTransient?: boolean | null;
|
|
5139
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5058
5140
|
httpStatus?: number | null;
|
|
5059
5141
|
meta?: unknown;
|
|
5060
5142
|
userFacingMessage?: string | null;
|
|
@@ -5063,6 +5145,7 @@ type PostCreateResponse = {
|
|
|
5063
5145
|
code?: string | null;
|
|
5064
5146
|
errorMessage?: string | null;
|
|
5065
5147
|
isTransient?: boolean | null;
|
|
5148
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5066
5149
|
httpStatus?: number | null;
|
|
5067
5150
|
meta?: unknown;
|
|
5068
5151
|
userFacingMessage?: string | null;
|
|
@@ -5071,6 +5154,7 @@ type PostCreateResponse = {
|
|
|
5071
5154
|
code?: string | null;
|
|
5072
5155
|
errorMessage?: string | null;
|
|
5073
5156
|
isTransient?: boolean | null;
|
|
5157
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5074
5158
|
httpStatus?: number | null;
|
|
5075
5159
|
meta?: unknown;
|
|
5076
5160
|
userFacingMessage?: string | null;
|
|
@@ -5079,6 +5163,7 @@ type PostCreateResponse = {
|
|
|
5079
5163
|
code?: string | null;
|
|
5080
5164
|
errorMessage?: string | null;
|
|
5081
5165
|
isTransient?: boolean | null;
|
|
5166
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5082
5167
|
httpStatus?: number | null;
|
|
5083
5168
|
meta?: unknown;
|
|
5084
5169
|
userFacingMessage?: string | null;
|
|
@@ -5087,6 +5172,7 @@ type PostCreateResponse = {
|
|
|
5087
5172
|
code?: string | null;
|
|
5088
5173
|
errorMessage?: string | null;
|
|
5089
5174
|
isTransient?: boolean | null;
|
|
5175
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5090
5176
|
httpStatus?: number | null;
|
|
5091
5177
|
meta?: unknown;
|
|
5092
5178
|
userFacingMessage?: string | null;
|
|
@@ -5095,6 +5181,7 @@ type PostCreateResponse = {
|
|
|
5095
5181
|
code?: string | null;
|
|
5096
5182
|
errorMessage?: string | null;
|
|
5097
5183
|
isTransient?: boolean | null;
|
|
5184
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5098
5185
|
httpStatus?: number | null;
|
|
5099
5186
|
meta?: unknown;
|
|
5100
5187
|
userFacingMessage?: string | null;
|
|
@@ -5103,6 +5190,7 @@ type PostCreateResponse = {
|
|
|
5103
5190
|
code?: string | null;
|
|
5104
5191
|
errorMessage?: string | null;
|
|
5105
5192
|
isTransient?: boolean | null;
|
|
5193
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5106
5194
|
httpStatus?: number | null;
|
|
5107
5195
|
meta?: unknown;
|
|
5108
5196
|
userFacingMessage?: string | null;
|
|
@@ -5111,6 +5199,7 @@ type PostCreateResponse = {
|
|
|
5111
5199
|
code?: string | null;
|
|
5112
5200
|
errorMessage?: string | null;
|
|
5113
5201
|
isTransient?: boolean | null;
|
|
5202
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5114
5203
|
httpStatus?: number | null;
|
|
5115
5204
|
meta?: unknown;
|
|
5116
5205
|
userFacingMessage?: string | null;
|
|
@@ -5141,6 +5230,7 @@ type PostCreateResponse = {
|
|
|
5141
5230
|
TIKTOK?: {
|
|
5142
5231
|
id?: string | null;
|
|
5143
5232
|
shareId?: string | null;
|
|
5233
|
+
requestId?: string | null;
|
|
5144
5234
|
permalink?: string | null;
|
|
5145
5235
|
status?: string | null;
|
|
5146
5236
|
} | null;
|
|
@@ -5590,6 +5680,7 @@ type PostRetryResponse = {
|
|
|
5590
5680
|
code?: string | null;
|
|
5591
5681
|
errorMessage?: string | null;
|
|
5592
5682
|
isTransient?: boolean | null;
|
|
5683
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5593
5684
|
httpStatus?: number | null;
|
|
5594
5685
|
meta?: unknown;
|
|
5595
5686
|
userFacingMessage?: string | null;
|
|
@@ -5598,6 +5689,7 @@ type PostRetryResponse = {
|
|
|
5598
5689
|
code?: string | null;
|
|
5599
5690
|
errorMessage?: string | null;
|
|
5600
5691
|
isTransient?: boolean | null;
|
|
5692
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5601
5693
|
httpStatus?: number | null;
|
|
5602
5694
|
meta?: unknown;
|
|
5603
5695
|
userFacingMessage?: string | null;
|
|
@@ -5606,6 +5698,7 @@ type PostRetryResponse = {
|
|
|
5606
5698
|
code?: string | null;
|
|
5607
5699
|
errorMessage?: string | null;
|
|
5608
5700
|
isTransient?: boolean | null;
|
|
5701
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5609
5702
|
httpStatus?: number | null;
|
|
5610
5703
|
meta?: unknown;
|
|
5611
5704
|
userFacingMessage?: string | null;
|
|
@@ -5614,6 +5707,7 @@ type PostRetryResponse = {
|
|
|
5614
5707
|
code?: string | null;
|
|
5615
5708
|
errorMessage?: string | null;
|
|
5616
5709
|
isTransient?: boolean | null;
|
|
5710
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5617
5711
|
httpStatus?: number | null;
|
|
5618
5712
|
meta?: unknown;
|
|
5619
5713
|
userFacingMessage?: string | null;
|
|
@@ -5622,6 +5716,7 @@ type PostRetryResponse = {
|
|
|
5622
5716
|
code?: string | null;
|
|
5623
5717
|
errorMessage?: string | null;
|
|
5624
5718
|
isTransient?: boolean | null;
|
|
5719
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5625
5720
|
httpStatus?: number | null;
|
|
5626
5721
|
meta?: unknown;
|
|
5627
5722
|
userFacingMessage?: string | null;
|
|
@@ -5630,6 +5725,7 @@ type PostRetryResponse = {
|
|
|
5630
5725
|
code?: string | null;
|
|
5631
5726
|
errorMessage?: string | null;
|
|
5632
5727
|
isTransient?: boolean | null;
|
|
5728
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5633
5729
|
httpStatus?: number | null;
|
|
5634
5730
|
meta?: unknown;
|
|
5635
5731
|
userFacingMessage?: string | null;
|
|
@@ -5638,6 +5734,7 @@ type PostRetryResponse = {
|
|
|
5638
5734
|
code?: string | null;
|
|
5639
5735
|
errorMessage?: string | null;
|
|
5640
5736
|
isTransient?: boolean | null;
|
|
5737
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5641
5738
|
httpStatus?: number | null;
|
|
5642
5739
|
meta?: unknown;
|
|
5643
5740
|
userFacingMessage?: string | null;
|
|
@@ -5646,6 +5743,7 @@ type PostRetryResponse = {
|
|
|
5646
5743
|
code?: string | null;
|
|
5647
5744
|
errorMessage?: string | null;
|
|
5648
5745
|
isTransient?: boolean | null;
|
|
5746
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5649
5747
|
httpStatus?: number | null;
|
|
5650
5748
|
meta?: unknown;
|
|
5651
5749
|
userFacingMessage?: string | null;
|
|
@@ -5654,6 +5752,7 @@ type PostRetryResponse = {
|
|
|
5654
5752
|
code?: string | null;
|
|
5655
5753
|
errorMessage?: string | null;
|
|
5656
5754
|
isTransient?: boolean | null;
|
|
5755
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5657
5756
|
httpStatus?: number | null;
|
|
5658
5757
|
meta?: unknown;
|
|
5659
5758
|
userFacingMessage?: string | null;
|
|
@@ -5662,6 +5761,7 @@ type PostRetryResponse = {
|
|
|
5662
5761
|
code?: string | null;
|
|
5663
5762
|
errorMessage?: string | null;
|
|
5664
5763
|
isTransient?: boolean | null;
|
|
5764
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5665
5765
|
httpStatus?: number | null;
|
|
5666
5766
|
meta?: unknown;
|
|
5667
5767
|
userFacingMessage?: string | null;
|
|
@@ -5670,6 +5770,7 @@ type PostRetryResponse = {
|
|
|
5670
5770
|
code?: string | null;
|
|
5671
5771
|
errorMessage?: string | null;
|
|
5672
5772
|
isTransient?: boolean | null;
|
|
5773
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5673
5774
|
httpStatus?: number | null;
|
|
5674
5775
|
meta?: unknown;
|
|
5675
5776
|
userFacingMessage?: string | null;
|
|
@@ -5678,6 +5779,7 @@ type PostRetryResponse = {
|
|
|
5678
5779
|
code?: string | null;
|
|
5679
5780
|
errorMessage?: string | null;
|
|
5680
5781
|
isTransient?: boolean | null;
|
|
5782
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5681
5783
|
httpStatus?: number | null;
|
|
5682
5784
|
meta?: unknown;
|
|
5683
5785
|
userFacingMessage?: string | null;
|
|
@@ -5686,6 +5788,7 @@ type PostRetryResponse = {
|
|
|
5686
5788
|
code?: string | null;
|
|
5687
5789
|
errorMessage?: string | null;
|
|
5688
5790
|
isTransient?: boolean | null;
|
|
5791
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5689
5792
|
httpStatus?: number | null;
|
|
5690
5793
|
meta?: unknown;
|
|
5691
5794
|
userFacingMessage?: string | null;
|
|
@@ -5694,6 +5797,7 @@ type PostRetryResponse = {
|
|
|
5694
5797
|
code?: string | null;
|
|
5695
5798
|
errorMessage?: string | null;
|
|
5696
5799
|
isTransient?: boolean | null;
|
|
5800
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
5697
5801
|
httpStatus?: number | null;
|
|
5698
5802
|
meta?: unknown;
|
|
5699
5803
|
userFacingMessage?: string | null;
|
|
@@ -5724,6 +5828,7 @@ type PostRetryResponse = {
|
|
|
5724
5828
|
TIKTOK?: {
|
|
5725
5829
|
id?: string | null;
|
|
5726
5830
|
shareId?: string | null;
|
|
5831
|
+
requestId?: string | null;
|
|
5727
5832
|
permalink?: string | null;
|
|
5728
5833
|
status?: string | null;
|
|
5729
5834
|
} | null;
|
|
@@ -5833,6 +5938,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
|
5833
5938
|
mastodonServerId?: string | null;
|
|
5834
5939
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
5835
5940
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
5941
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
5836
5942
|
disconnectedCheckTryAt?: string | null;
|
|
5837
5943
|
deleteOn?: string | null;
|
|
5838
5944
|
createdAt: string | null;
|
|
@@ -6238,6 +6344,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6238
6344
|
code?: string | null;
|
|
6239
6345
|
errorMessage?: string | null;
|
|
6240
6346
|
isTransient?: boolean | null;
|
|
6347
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6241
6348
|
httpStatus?: number | null;
|
|
6242
6349
|
meta?: unknown;
|
|
6243
6350
|
userFacingMessage?: string | null;
|
|
@@ -6246,6 +6353,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6246
6353
|
code?: string | null;
|
|
6247
6354
|
errorMessage?: string | null;
|
|
6248
6355
|
isTransient?: boolean | null;
|
|
6356
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6249
6357
|
httpStatus?: number | null;
|
|
6250
6358
|
meta?: unknown;
|
|
6251
6359
|
userFacingMessage?: string | null;
|
|
@@ -6254,6 +6362,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6254
6362
|
code?: string | null;
|
|
6255
6363
|
errorMessage?: string | null;
|
|
6256
6364
|
isTransient?: boolean | null;
|
|
6365
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6257
6366
|
httpStatus?: number | null;
|
|
6258
6367
|
meta?: unknown;
|
|
6259
6368
|
userFacingMessage?: string | null;
|
|
@@ -6262,6 +6371,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6262
6371
|
code?: string | null;
|
|
6263
6372
|
errorMessage?: string | null;
|
|
6264
6373
|
isTransient?: boolean | null;
|
|
6374
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6265
6375
|
httpStatus?: number | null;
|
|
6266
6376
|
meta?: unknown;
|
|
6267
6377
|
userFacingMessage?: string | null;
|
|
@@ -6270,6 +6380,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6270
6380
|
code?: string | null;
|
|
6271
6381
|
errorMessage?: string | null;
|
|
6272
6382
|
isTransient?: boolean | null;
|
|
6383
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6273
6384
|
httpStatus?: number | null;
|
|
6274
6385
|
meta?: unknown;
|
|
6275
6386
|
userFacingMessage?: string | null;
|
|
@@ -6278,6 +6389,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6278
6389
|
code?: string | null;
|
|
6279
6390
|
errorMessage?: string | null;
|
|
6280
6391
|
isTransient?: boolean | null;
|
|
6392
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6281
6393
|
httpStatus?: number | null;
|
|
6282
6394
|
meta?: unknown;
|
|
6283
6395
|
userFacingMessage?: string | null;
|
|
@@ -6286,6 +6398,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6286
6398
|
code?: string | null;
|
|
6287
6399
|
errorMessage?: string | null;
|
|
6288
6400
|
isTransient?: boolean | null;
|
|
6401
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6289
6402
|
httpStatus?: number | null;
|
|
6290
6403
|
meta?: unknown;
|
|
6291
6404
|
userFacingMessage?: string | null;
|
|
@@ -6294,6 +6407,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6294
6407
|
code?: string | null;
|
|
6295
6408
|
errorMessage?: string | null;
|
|
6296
6409
|
isTransient?: boolean | null;
|
|
6410
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6297
6411
|
httpStatus?: number | null;
|
|
6298
6412
|
meta?: unknown;
|
|
6299
6413
|
userFacingMessage?: string | null;
|
|
@@ -6302,6 +6416,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6302
6416
|
code?: string | null;
|
|
6303
6417
|
errorMessage?: string | null;
|
|
6304
6418
|
isTransient?: boolean | null;
|
|
6419
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6305
6420
|
httpStatus?: number | null;
|
|
6306
6421
|
meta?: unknown;
|
|
6307
6422
|
userFacingMessage?: string | null;
|
|
@@ -6310,6 +6425,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6310
6425
|
code?: string | null;
|
|
6311
6426
|
errorMessage?: string | null;
|
|
6312
6427
|
isTransient?: boolean | null;
|
|
6428
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6313
6429
|
httpStatus?: number | null;
|
|
6314
6430
|
meta?: unknown;
|
|
6315
6431
|
userFacingMessage?: string | null;
|
|
@@ -6318,6 +6434,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6318
6434
|
code?: string | null;
|
|
6319
6435
|
errorMessage?: string | null;
|
|
6320
6436
|
isTransient?: boolean | null;
|
|
6437
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6321
6438
|
httpStatus?: number | null;
|
|
6322
6439
|
meta?: unknown;
|
|
6323
6440
|
userFacingMessage?: string | null;
|
|
@@ -6326,6 +6443,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6326
6443
|
code?: string | null;
|
|
6327
6444
|
errorMessage?: string | null;
|
|
6328
6445
|
isTransient?: boolean | null;
|
|
6446
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6329
6447
|
httpStatus?: number | null;
|
|
6330
6448
|
meta?: unknown;
|
|
6331
6449
|
userFacingMessage?: string | null;
|
|
@@ -6334,6 +6452,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6334
6452
|
code?: string | null;
|
|
6335
6453
|
errorMessage?: string | null;
|
|
6336
6454
|
isTransient?: boolean | null;
|
|
6455
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6337
6456
|
httpStatus?: number | null;
|
|
6338
6457
|
meta?: unknown;
|
|
6339
6458
|
userFacingMessage?: string | null;
|
|
@@ -6342,6 +6461,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6342
6461
|
code?: string | null;
|
|
6343
6462
|
errorMessage?: string | null;
|
|
6344
6463
|
isTransient?: boolean | null;
|
|
6464
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6345
6465
|
httpStatus?: number | null;
|
|
6346
6466
|
meta?: unknown;
|
|
6347
6467
|
userFacingMessage?: string | null;
|
|
@@ -6372,6 +6492,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6372
6492
|
TIKTOK?: {
|
|
6373
6493
|
id?: string | null;
|
|
6374
6494
|
shareId?: string | null;
|
|
6495
|
+
requestId?: string | null;
|
|
6375
6496
|
permalink?: string | null;
|
|
6376
6497
|
status?: string | null;
|
|
6377
6498
|
} | null;
|
|
@@ -6521,6 +6642,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
|
6521
6642
|
mastodonServerId?: string | null;
|
|
6522
6643
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
6523
6644
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
6645
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
6524
6646
|
disconnectedCheckTryAt?: string | null;
|
|
6525
6647
|
deleteOn?: string | null;
|
|
6526
6648
|
createdAt: string | null;
|
|
@@ -6919,6 +7041,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6919
7041
|
code?: string | null;
|
|
6920
7042
|
errorMessage?: string | null;
|
|
6921
7043
|
isTransient?: boolean | null;
|
|
7044
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6922
7045
|
httpStatus?: number | null;
|
|
6923
7046
|
meta?: unknown;
|
|
6924
7047
|
userFacingMessage?: string | null;
|
|
@@ -6927,6 +7050,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6927
7050
|
code?: string | null;
|
|
6928
7051
|
errorMessage?: string | null;
|
|
6929
7052
|
isTransient?: boolean | null;
|
|
7053
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6930
7054
|
httpStatus?: number | null;
|
|
6931
7055
|
meta?: unknown;
|
|
6932
7056
|
userFacingMessage?: string | null;
|
|
@@ -6935,6 +7059,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6935
7059
|
code?: string | null;
|
|
6936
7060
|
errorMessage?: string | null;
|
|
6937
7061
|
isTransient?: boolean | null;
|
|
7062
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6938
7063
|
httpStatus?: number | null;
|
|
6939
7064
|
meta?: unknown;
|
|
6940
7065
|
userFacingMessage?: string | null;
|
|
@@ -6943,6 +7068,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6943
7068
|
code?: string | null;
|
|
6944
7069
|
errorMessage?: string | null;
|
|
6945
7070
|
isTransient?: boolean | null;
|
|
7071
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6946
7072
|
httpStatus?: number | null;
|
|
6947
7073
|
meta?: unknown;
|
|
6948
7074
|
userFacingMessage?: string | null;
|
|
@@ -6951,6 +7077,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6951
7077
|
code?: string | null;
|
|
6952
7078
|
errorMessage?: string | null;
|
|
6953
7079
|
isTransient?: boolean | null;
|
|
7080
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6954
7081
|
httpStatus?: number | null;
|
|
6955
7082
|
meta?: unknown;
|
|
6956
7083
|
userFacingMessage?: string | null;
|
|
@@ -6959,6 +7086,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6959
7086
|
code?: string | null;
|
|
6960
7087
|
errorMessage?: string | null;
|
|
6961
7088
|
isTransient?: boolean | null;
|
|
7089
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6962
7090
|
httpStatus?: number | null;
|
|
6963
7091
|
meta?: unknown;
|
|
6964
7092
|
userFacingMessage?: string | null;
|
|
@@ -6967,6 +7095,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6967
7095
|
code?: string | null;
|
|
6968
7096
|
errorMessage?: string | null;
|
|
6969
7097
|
isTransient?: boolean | null;
|
|
7098
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6970
7099
|
httpStatus?: number | null;
|
|
6971
7100
|
meta?: unknown;
|
|
6972
7101
|
userFacingMessage?: string | null;
|
|
@@ -6975,6 +7104,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6975
7104
|
code?: string | null;
|
|
6976
7105
|
errorMessage?: string | null;
|
|
6977
7106
|
isTransient?: boolean | null;
|
|
7107
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6978
7108
|
httpStatus?: number | null;
|
|
6979
7109
|
meta?: unknown;
|
|
6980
7110
|
userFacingMessage?: string | null;
|
|
@@ -6983,6 +7113,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6983
7113
|
code?: string | null;
|
|
6984
7114
|
errorMessage?: string | null;
|
|
6985
7115
|
isTransient?: boolean | null;
|
|
7116
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6986
7117
|
httpStatus?: number | null;
|
|
6987
7118
|
meta?: unknown;
|
|
6988
7119
|
userFacingMessage?: string | null;
|
|
@@ -6991,6 +7122,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6991
7122
|
code?: string | null;
|
|
6992
7123
|
errorMessage?: string | null;
|
|
6993
7124
|
isTransient?: boolean | null;
|
|
7125
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
6994
7126
|
httpStatus?: number | null;
|
|
6995
7127
|
meta?: unknown;
|
|
6996
7128
|
userFacingMessage?: string | null;
|
|
@@ -6999,6 +7131,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6999
7131
|
code?: string | null;
|
|
7000
7132
|
errorMessage?: string | null;
|
|
7001
7133
|
isTransient?: boolean | null;
|
|
7134
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7002
7135
|
httpStatus?: number | null;
|
|
7003
7136
|
meta?: unknown;
|
|
7004
7137
|
userFacingMessage?: string | null;
|
|
@@ -7007,6 +7140,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
7007
7140
|
code?: string | null;
|
|
7008
7141
|
errorMessage?: string | null;
|
|
7009
7142
|
isTransient?: boolean | null;
|
|
7143
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7010
7144
|
httpStatus?: number | null;
|
|
7011
7145
|
meta?: unknown;
|
|
7012
7146
|
userFacingMessage?: string | null;
|
|
@@ -7015,6 +7149,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
7015
7149
|
code?: string | null;
|
|
7016
7150
|
errorMessage?: string | null;
|
|
7017
7151
|
isTransient?: boolean | null;
|
|
7152
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7018
7153
|
httpStatus?: number | null;
|
|
7019
7154
|
meta?: unknown;
|
|
7020
7155
|
userFacingMessage?: string | null;
|
|
@@ -7023,6 +7158,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
7023
7158
|
code?: string | null;
|
|
7024
7159
|
errorMessage?: string | null;
|
|
7025
7160
|
isTransient?: boolean | null;
|
|
7161
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7026
7162
|
httpStatus?: number | null;
|
|
7027
7163
|
meta?: unknown;
|
|
7028
7164
|
userFacingMessage?: string | null;
|
|
@@ -7053,6 +7189,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
7053
7189
|
TIKTOK?: {
|
|
7054
7190
|
id?: string | null;
|
|
7055
7191
|
shareId?: string | null;
|
|
7192
|
+
requestId?: string | null;
|
|
7056
7193
|
permalink?: string | null;
|
|
7057
7194
|
status?: string | null;
|
|
7058
7195
|
} | null;
|
|
@@ -7324,6 +7461,29 @@ type CommentImportGetFetchedCommentsResponse = {
|
|
|
7324
7461
|
text?: string | null;
|
|
7325
7462
|
likesCount: number;
|
|
7326
7463
|
repliesCount: number;
|
|
7464
|
+
platformData?: {
|
|
7465
|
+
canDelete?: boolean | null;
|
|
7466
|
+
canHide?: boolean | null;
|
|
7467
|
+
canLike?: boolean | null;
|
|
7468
|
+
canModerate?: boolean | null;
|
|
7469
|
+
hidden?: boolean | null;
|
|
7470
|
+
likedByMe?: boolean | null;
|
|
7471
|
+
reactionsCount?: number | null;
|
|
7472
|
+
reactionType?: 'LIKE' | 'LOVE' | 'WOW' | 'HAHA' | 'SAD' | 'ANGRY' | null;
|
|
7473
|
+
owner?: boolean | null;
|
|
7474
|
+
hideStatus?: string | null;
|
|
7475
|
+
moderationStatus?: string | null;
|
|
7476
|
+
approvalStatus?: string | null;
|
|
7477
|
+
status?: string | null;
|
|
7478
|
+
attachmentType?: string | null;
|
|
7479
|
+
attachmentUrl?: string | null;
|
|
7480
|
+
cid?: string | null;
|
|
7481
|
+
origin?: 'platform' | 'bundle' | null;
|
|
7482
|
+
bundleCommentId?: string | null;
|
|
7483
|
+
displayState?: 'active' | 'thread_deleted' | 'platform_missing' | null;
|
|
7484
|
+
disabledReason?: string | null;
|
|
7485
|
+
[key: string]: (unknown | boolean | number | string | null) | undefined;
|
|
7486
|
+
};
|
|
7327
7487
|
publishedAt?: string | null;
|
|
7328
7488
|
createdAt: string | null;
|
|
7329
7489
|
updatedAt: string | null;
|
|
@@ -7331,6 +7491,67 @@ type CommentImportGetFetchedCommentsResponse = {
|
|
|
7331
7491
|
}>;
|
|
7332
7492
|
total: number;
|
|
7333
7493
|
};
|
|
7494
|
+
type CommentImportActionFetchedCommentData = {
|
|
7495
|
+
commentId: string;
|
|
7496
|
+
/**
|
|
7497
|
+
* Body
|
|
7498
|
+
*/
|
|
7499
|
+
requestBody?: {
|
|
7500
|
+
teamId: string;
|
|
7501
|
+
action: 'DELETE' | 'HIDE' | 'UNHIDE' | 'LIKE' | 'UNLIKE' | 'APPROVE' | 'REJECT';
|
|
7502
|
+
reason?: string;
|
|
7503
|
+
banAuthor?: boolean;
|
|
7504
|
+
};
|
|
7505
|
+
};
|
|
7506
|
+
type CommentImportActionFetchedCommentResponse = {
|
|
7507
|
+
success: boolean;
|
|
7508
|
+
item: {
|
|
7509
|
+
id: string;
|
|
7510
|
+
teamId: string;
|
|
7511
|
+
organizationId?: string | null;
|
|
7512
|
+
postId: string;
|
|
7513
|
+
socialAccountId: string;
|
|
7514
|
+
importId: string;
|
|
7515
|
+
platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
|
|
7516
|
+
externalId: string;
|
|
7517
|
+
externalParentId?: string | null;
|
|
7518
|
+
externalPostId?: string | null;
|
|
7519
|
+
authorName?: string | null;
|
|
7520
|
+
authorExternalId?: string | null;
|
|
7521
|
+
authorProfileUrl?: string | null;
|
|
7522
|
+
authorAvatarUrl?: string | null;
|
|
7523
|
+
text?: string | null;
|
|
7524
|
+
likesCount: number;
|
|
7525
|
+
repliesCount: number;
|
|
7526
|
+
platformData?: {
|
|
7527
|
+
canDelete?: boolean | null;
|
|
7528
|
+
canHide?: boolean | null;
|
|
7529
|
+
canLike?: boolean | null;
|
|
7530
|
+
canModerate?: boolean | null;
|
|
7531
|
+
hidden?: boolean | null;
|
|
7532
|
+
likedByMe?: boolean | null;
|
|
7533
|
+
reactionsCount?: number | null;
|
|
7534
|
+
reactionType?: 'LIKE' | 'LOVE' | 'WOW' | 'HAHA' | 'SAD' | 'ANGRY' | null;
|
|
7535
|
+
owner?: boolean | null;
|
|
7536
|
+
hideStatus?: string | null;
|
|
7537
|
+
moderationStatus?: string | null;
|
|
7538
|
+
approvalStatus?: string | null;
|
|
7539
|
+
status?: string | null;
|
|
7540
|
+
attachmentType?: string | null;
|
|
7541
|
+
attachmentUrl?: string | null;
|
|
7542
|
+
cid?: string | null;
|
|
7543
|
+
origin?: 'platform' | 'bundle' | null;
|
|
7544
|
+
bundleCommentId?: string | null;
|
|
7545
|
+
displayState?: 'active' | 'thread_deleted' | 'platform_missing' | null;
|
|
7546
|
+
disabledReason?: string | null;
|
|
7547
|
+
[key: string]: (unknown | boolean | number | string | null) | undefined;
|
|
7548
|
+
};
|
|
7549
|
+
publishedAt?: string | null;
|
|
7550
|
+
createdAt: string | null;
|
|
7551
|
+
updatedAt: string | null;
|
|
7552
|
+
deletedAt?: string | null;
|
|
7553
|
+
};
|
|
7554
|
+
};
|
|
7334
7555
|
type CommentImportGetByIdData = {
|
|
7335
7556
|
importId: string;
|
|
7336
7557
|
};
|
|
@@ -7418,6 +7639,7 @@ type CommentGetResponse = {
|
|
|
7418
7639
|
code?: string | null;
|
|
7419
7640
|
errorMessage?: string | null;
|
|
7420
7641
|
isTransient?: boolean | null;
|
|
7642
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7421
7643
|
httpStatus?: number | null;
|
|
7422
7644
|
meta?: unknown;
|
|
7423
7645
|
userFacingMessage?: string | null;
|
|
@@ -7426,6 +7648,7 @@ type CommentGetResponse = {
|
|
|
7426
7648
|
code?: string | null;
|
|
7427
7649
|
errorMessage?: string | null;
|
|
7428
7650
|
isTransient?: boolean | null;
|
|
7651
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7429
7652
|
httpStatus?: number | null;
|
|
7430
7653
|
meta?: unknown;
|
|
7431
7654
|
userFacingMessage?: string | null;
|
|
@@ -7434,6 +7657,7 @@ type CommentGetResponse = {
|
|
|
7434
7657
|
code?: string | null;
|
|
7435
7658
|
errorMessage?: string | null;
|
|
7436
7659
|
isTransient?: boolean | null;
|
|
7660
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7437
7661
|
httpStatus?: number | null;
|
|
7438
7662
|
meta?: unknown;
|
|
7439
7663
|
userFacingMessage?: string | null;
|
|
@@ -7442,6 +7666,7 @@ type CommentGetResponse = {
|
|
|
7442
7666
|
code?: string | null;
|
|
7443
7667
|
errorMessage?: string | null;
|
|
7444
7668
|
isTransient?: boolean | null;
|
|
7669
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7445
7670
|
httpStatus?: number | null;
|
|
7446
7671
|
meta?: unknown;
|
|
7447
7672
|
userFacingMessage?: string | null;
|
|
@@ -7450,6 +7675,7 @@ type CommentGetResponse = {
|
|
|
7450
7675
|
code?: string | null;
|
|
7451
7676
|
errorMessage?: string | null;
|
|
7452
7677
|
isTransient?: boolean | null;
|
|
7678
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7453
7679
|
httpStatus?: number | null;
|
|
7454
7680
|
meta?: unknown;
|
|
7455
7681
|
userFacingMessage?: string | null;
|
|
@@ -7458,6 +7684,7 @@ type CommentGetResponse = {
|
|
|
7458
7684
|
code?: string | null;
|
|
7459
7685
|
errorMessage?: string | null;
|
|
7460
7686
|
isTransient?: boolean | null;
|
|
7687
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7461
7688
|
httpStatus?: number | null;
|
|
7462
7689
|
meta?: unknown;
|
|
7463
7690
|
userFacingMessage?: string | null;
|
|
@@ -7466,6 +7693,7 @@ type CommentGetResponse = {
|
|
|
7466
7693
|
code?: string | null;
|
|
7467
7694
|
errorMessage?: string | null;
|
|
7468
7695
|
isTransient?: boolean | null;
|
|
7696
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7469
7697
|
httpStatus?: number | null;
|
|
7470
7698
|
meta?: unknown;
|
|
7471
7699
|
userFacingMessage?: string | null;
|
|
@@ -7474,6 +7702,7 @@ type CommentGetResponse = {
|
|
|
7474
7702
|
code?: string | null;
|
|
7475
7703
|
errorMessage?: string | null;
|
|
7476
7704
|
isTransient?: boolean | null;
|
|
7705
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7477
7706
|
httpStatus?: number | null;
|
|
7478
7707
|
meta?: unknown;
|
|
7479
7708
|
userFacingMessage?: string | null;
|
|
@@ -7482,6 +7711,7 @@ type CommentGetResponse = {
|
|
|
7482
7711
|
code?: string | null;
|
|
7483
7712
|
errorMessage?: string | null;
|
|
7484
7713
|
isTransient?: boolean | null;
|
|
7714
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7485
7715
|
httpStatus?: number | null;
|
|
7486
7716
|
meta?: unknown;
|
|
7487
7717
|
userFacingMessage?: string | null;
|
|
@@ -7490,6 +7720,7 @@ type CommentGetResponse = {
|
|
|
7490
7720
|
code?: string | null;
|
|
7491
7721
|
errorMessage?: string | null;
|
|
7492
7722
|
isTransient?: boolean | null;
|
|
7723
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7493
7724
|
httpStatus?: number | null;
|
|
7494
7725
|
meta?: unknown;
|
|
7495
7726
|
userFacingMessage?: string | null;
|
|
@@ -7498,6 +7729,7 @@ type CommentGetResponse = {
|
|
|
7498
7729
|
code?: string | null;
|
|
7499
7730
|
errorMessage?: string | null;
|
|
7500
7731
|
isTransient?: boolean | null;
|
|
7732
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7501
7733
|
httpStatus?: number | null;
|
|
7502
7734
|
meta?: unknown;
|
|
7503
7735
|
userFacingMessage?: string | null;
|
|
@@ -7679,6 +7911,7 @@ type CommentUpdateResponse = {
|
|
|
7679
7911
|
code?: string | null;
|
|
7680
7912
|
errorMessage?: string | null;
|
|
7681
7913
|
isTransient?: boolean | null;
|
|
7914
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7682
7915
|
httpStatus?: number | null;
|
|
7683
7916
|
meta?: unknown;
|
|
7684
7917
|
userFacingMessage?: string | null;
|
|
@@ -7687,6 +7920,7 @@ type CommentUpdateResponse = {
|
|
|
7687
7920
|
code?: string | null;
|
|
7688
7921
|
errorMessage?: string | null;
|
|
7689
7922
|
isTransient?: boolean | null;
|
|
7923
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7690
7924
|
httpStatus?: number | null;
|
|
7691
7925
|
meta?: unknown;
|
|
7692
7926
|
userFacingMessage?: string | null;
|
|
@@ -7695,6 +7929,7 @@ type CommentUpdateResponse = {
|
|
|
7695
7929
|
code?: string | null;
|
|
7696
7930
|
errorMessage?: string | null;
|
|
7697
7931
|
isTransient?: boolean | null;
|
|
7932
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7698
7933
|
httpStatus?: number | null;
|
|
7699
7934
|
meta?: unknown;
|
|
7700
7935
|
userFacingMessage?: string | null;
|
|
@@ -7703,6 +7938,7 @@ type CommentUpdateResponse = {
|
|
|
7703
7938
|
code?: string | null;
|
|
7704
7939
|
errorMessage?: string | null;
|
|
7705
7940
|
isTransient?: boolean | null;
|
|
7941
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7706
7942
|
httpStatus?: number | null;
|
|
7707
7943
|
meta?: unknown;
|
|
7708
7944
|
userFacingMessage?: string | null;
|
|
@@ -7711,6 +7947,7 @@ type CommentUpdateResponse = {
|
|
|
7711
7947
|
code?: string | null;
|
|
7712
7948
|
errorMessage?: string | null;
|
|
7713
7949
|
isTransient?: boolean | null;
|
|
7950
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7714
7951
|
httpStatus?: number | null;
|
|
7715
7952
|
meta?: unknown;
|
|
7716
7953
|
userFacingMessage?: string | null;
|
|
@@ -7719,6 +7956,7 @@ type CommentUpdateResponse = {
|
|
|
7719
7956
|
code?: string | null;
|
|
7720
7957
|
errorMessage?: string | null;
|
|
7721
7958
|
isTransient?: boolean | null;
|
|
7959
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7722
7960
|
httpStatus?: number | null;
|
|
7723
7961
|
meta?: unknown;
|
|
7724
7962
|
userFacingMessage?: string | null;
|
|
@@ -7727,6 +7965,7 @@ type CommentUpdateResponse = {
|
|
|
7727
7965
|
code?: string | null;
|
|
7728
7966
|
errorMessage?: string | null;
|
|
7729
7967
|
isTransient?: boolean | null;
|
|
7968
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7730
7969
|
httpStatus?: number | null;
|
|
7731
7970
|
meta?: unknown;
|
|
7732
7971
|
userFacingMessage?: string | null;
|
|
@@ -7735,6 +7974,7 @@ type CommentUpdateResponse = {
|
|
|
7735
7974
|
code?: string | null;
|
|
7736
7975
|
errorMessage?: string | null;
|
|
7737
7976
|
isTransient?: boolean | null;
|
|
7977
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7738
7978
|
httpStatus?: number | null;
|
|
7739
7979
|
meta?: unknown;
|
|
7740
7980
|
userFacingMessage?: string | null;
|
|
@@ -7743,6 +7983,7 @@ type CommentUpdateResponse = {
|
|
|
7743
7983
|
code?: string | null;
|
|
7744
7984
|
errorMessage?: string | null;
|
|
7745
7985
|
isTransient?: boolean | null;
|
|
7986
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7746
7987
|
httpStatus?: number | null;
|
|
7747
7988
|
meta?: unknown;
|
|
7748
7989
|
userFacingMessage?: string | null;
|
|
@@ -7751,6 +7992,7 @@ type CommentUpdateResponse = {
|
|
|
7751
7992
|
code?: string | null;
|
|
7752
7993
|
errorMessage?: string | null;
|
|
7753
7994
|
isTransient?: boolean | null;
|
|
7995
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7754
7996
|
httpStatus?: number | null;
|
|
7755
7997
|
meta?: unknown;
|
|
7756
7998
|
userFacingMessage?: string | null;
|
|
@@ -7759,6 +8001,7 @@ type CommentUpdateResponse = {
|
|
|
7759
8001
|
code?: string | null;
|
|
7760
8002
|
errorMessage?: string | null;
|
|
7761
8003
|
isTransient?: boolean | null;
|
|
8004
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7762
8005
|
httpStatus?: number | null;
|
|
7763
8006
|
meta?: unknown;
|
|
7764
8007
|
userFacingMessage?: string | null;
|
|
@@ -7892,6 +8135,7 @@ type CommentDeleteResponse = {
|
|
|
7892
8135
|
code?: string | null;
|
|
7893
8136
|
errorMessage?: string | null;
|
|
7894
8137
|
isTransient?: boolean | null;
|
|
8138
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7895
8139
|
httpStatus?: number | null;
|
|
7896
8140
|
meta?: unknown;
|
|
7897
8141
|
userFacingMessage?: string | null;
|
|
@@ -7900,6 +8144,7 @@ type CommentDeleteResponse = {
|
|
|
7900
8144
|
code?: string | null;
|
|
7901
8145
|
errorMessage?: string | null;
|
|
7902
8146
|
isTransient?: boolean | null;
|
|
8147
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7903
8148
|
httpStatus?: number | null;
|
|
7904
8149
|
meta?: unknown;
|
|
7905
8150
|
userFacingMessage?: string | null;
|
|
@@ -7908,6 +8153,7 @@ type CommentDeleteResponse = {
|
|
|
7908
8153
|
code?: string | null;
|
|
7909
8154
|
errorMessage?: string | null;
|
|
7910
8155
|
isTransient?: boolean | null;
|
|
8156
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7911
8157
|
httpStatus?: number | null;
|
|
7912
8158
|
meta?: unknown;
|
|
7913
8159
|
userFacingMessage?: string | null;
|
|
@@ -7916,6 +8162,7 @@ type CommentDeleteResponse = {
|
|
|
7916
8162
|
code?: string | null;
|
|
7917
8163
|
errorMessage?: string | null;
|
|
7918
8164
|
isTransient?: boolean | null;
|
|
8165
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7919
8166
|
httpStatus?: number | null;
|
|
7920
8167
|
meta?: unknown;
|
|
7921
8168
|
userFacingMessage?: string | null;
|
|
@@ -7924,6 +8171,7 @@ type CommentDeleteResponse = {
|
|
|
7924
8171
|
code?: string | null;
|
|
7925
8172
|
errorMessage?: string | null;
|
|
7926
8173
|
isTransient?: boolean | null;
|
|
8174
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7927
8175
|
httpStatus?: number | null;
|
|
7928
8176
|
meta?: unknown;
|
|
7929
8177
|
userFacingMessage?: string | null;
|
|
@@ -7932,6 +8180,7 @@ type CommentDeleteResponse = {
|
|
|
7932
8180
|
code?: string | null;
|
|
7933
8181
|
errorMessage?: string | null;
|
|
7934
8182
|
isTransient?: boolean | null;
|
|
8183
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7935
8184
|
httpStatus?: number | null;
|
|
7936
8185
|
meta?: unknown;
|
|
7937
8186
|
userFacingMessage?: string | null;
|
|
@@ -7940,6 +8189,7 @@ type CommentDeleteResponse = {
|
|
|
7940
8189
|
code?: string | null;
|
|
7941
8190
|
errorMessage?: string | null;
|
|
7942
8191
|
isTransient?: boolean | null;
|
|
8192
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7943
8193
|
httpStatus?: number | null;
|
|
7944
8194
|
meta?: unknown;
|
|
7945
8195
|
userFacingMessage?: string | null;
|
|
@@ -7948,6 +8198,7 @@ type CommentDeleteResponse = {
|
|
|
7948
8198
|
code?: string | null;
|
|
7949
8199
|
errorMessage?: string | null;
|
|
7950
8200
|
isTransient?: boolean | null;
|
|
8201
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7951
8202
|
httpStatus?: number | null;
|
|
7952
8203
|
meta?: unknown;
|
|
7953
8204
|
userFacingMessage?: string | null;
|
|
@@ -7956,6 +8207,7 @@ type CommentDeleteResponse = {
|
|
|
7956
8207
|
code?: string | null;
|
|
7957
8208
|
errorMessage?: string | null;
|
|
7958
8209
|
isTransient?: boolean | null;
|
|
8210
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7959
8211
|
httpStatus?: number | null;
|
|
7960
8212
|
meta?: unknown;
|
|
7961
8213
|
userFacingMessage?: string | null;
|
|
@@ -7964,6 +8216,7 @@ type CommentDeleteResponse = {
|
|
|
7964
8216
|
code?: string | null;
|
|
7965
8217
|
errorMessage?: string | null;
|
|
7966
8218
|
isTransient?: boolean | null;
|
|
8219
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7967
8220
|
httpStatus?: number | null;
|
|
7968
8221
|
meta?: unknown;
|
|
7969
8222
|
userFacingMessage?: string | null;
|
|
@@ -7972,6 +8225,7 @@ type CommentDeleteResponse = {
|
|
|
7972
8225
|
code?: string | null;
|
|
7973
8226
|
errorMessage?: string | null;
|
|
7974
8227
|
isTransient?: boolean | null;
|
|
8228
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
7975
8229
|
httpStatus?: number | null;
|
|
7976
8230
|
meta?: unknown;
|
|
7977
8231
|
userFacingMessage?: string | null;
|
|
@@ -8114,6 +8368,7 @@ type CommentGetListResponse = {
|
|
|
8114
8368
|
code?: string | null;
|
|
8115
8369
|
errorMessage?: string | null;
|
|
8116
8370
|
isTransient?: boolean | null;
|
|
8371
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8117
8372
|
httpStatus?: number | null;
|
|
8118
8373
|
meta?: unknown;
|
|
8119
8374
|
userFacingMessage?: string | null;
|
|
@@ -8122,6 +8377,7 @@ type CommentGetListResponse = {
|
|
|
8122
8377
|
code?: string | null;
|
|
8123
8378
|
errorMessage?: string | null;
|
|
8124
8379
|
isTransient?: boolean | null;
|
|
8380
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8125
8381
|
httpStatus?: number | null;
|
|
8126
8382
|
meta?: unknown;
|
|
8127
8383
|
userFacingMessage?: string | null;
|
|
@@ -8130,6 +8386,7 @@ type CommentGetListResponse = {
|
|
|
8130
8386
|
code?: string | null;
|
|
8131
8387
|
errorMessage?: string | null;
|
|
8132
8388
|
isTransient?: boolean | null;
|
|
8389
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8133
8390
|
httpStatus?: number | null;
|
|
8134
8391
|
meta?: unknown;
|
|
8135
8392
|
userFacingMessage?: string | null;
|
|
@@ -8138,6 +8395,7 @@ type CommentGetListResponse = {
|
|
|
8138
8395
|
code?: string | null;
|
|
8139
8396
|
errorMessage?: string | null;
|
|
8140
8397
|
isTransient?: boolean | null;
|
|
8398
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8141
8399
|
httpStatus?: number | null;
|
|
8142
8400
|
meta?: unknown;
|
|
8143
8401
|
userFacingMessage?: string | null;
|
|
@@ -8146,6 +8404,7 @@ type CommentGetListResponse = {
|
|
|
8146
8404
|
code?: string | null;
|
|
8147
8405
|
errorMessage?: string | null;
|
|
8148
8406
|
isTransient?: boolean | null;
|
|
8407
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8149
8408
|
httpStatus?: number | null;
|
|
8150
8409
|
meta?: unknown;
|
|
8151
8410
|
userFacingMessage?: string | null;
|
|
@@ -8154,6 +8413,7 @@ type CommentGetListResponse = {
|
|
|
8154
8413
|
code?: string | null;
|
|
8155
8414
|
errorMessage?: string | null;
|
|
8156
8415
|
isTransient?: boolean | null;
|
|
8416
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8157
8417
|
httpStatus?: number | null;
|
|
8158
8418
|
meta?: unknown;
|
|
8159
8419
|
userFacingMessage?: string | null;
|
|
@@ -8162,6 +8422,7 @@ type CommentGetListResponse = {
|
|
|
8162
8422
|
code?: string | null;
|
|
8163
8423
|
errorMessage?: string | null;
|
|
8164
8424
|
isTransient?: boolean | null;
|
|
8425
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8165
8426
|
httpStatus?: number | null;
|
|
8166
8427
|
meta?: unknown;
|
|
8167
8428
|
userFacingMessage?: string | null;
|
|
@@ -8170,6 +8431,7 @@ type CommentGetListResponse = {
|
|
|
8170
8431
|
code?: string | null;
|
|
8171
8432
|
errorMessage?: string | null;
|
|
8172
8433
|
isTransient?: boolean | null;
|
|
8434
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8173
8435
|
httpStatus?: number | null;
|
|
8174
8436
|
meta?: unknown;
|
|
8175
8437
|
userFacingMessage?: string | null;
|
|
@@ -8178,6 +8440,7 @@ type CommentGetListResponse = {
|
|
|
8178
8440
|
code?: string | null;
|
|
8179
8441
|
errorMessage?: string | null;
|
|
8180
8442
|
isTransient?: boolean | null;
|
|
8443
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8181
8444
|
httpStatus?: number | null;
|
|
8182
8445
|
meta?: unknown;
|
|
8183
8446
|
userFacingMessage?: string | null;
|
|
@@ -8186,6 +8449,7 @@ type CommentGetListResponse = {
|
|
|
8186
8449
|
code?: string | null;
|
|
8187
8450
|
errorMessage?: string | null;
|
|
8188
8451
|
isTransient?: boolean | null;
|
|
8452
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8189
8453
|
httpStatus?: number | null;
|
|
8190
8454
|
meta?: unknown;
|
|
8191
8455
|
userFacingMessage?: string | null;
|
|
@@ -8194,6 +8458,7 @@ type CommentGetListResponse = {
|
|
|
8194
8458
|
code?: string | null;
|
|
8195
8459
|
errorMessage?: string | null;
|
|
8196
8460
|
isTransient?: boolean | null;
|
|
8461
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8197
8462
|
httpStatus?: number | null;
|
|
8198
8463
|
meta?: unknown;
|
|
8199
8464
|
userFacingMessage?: string | null;
|
|
@@ -8377,6 +8642,7 @@ type CommentCreateResponse = {
|
|
|
8377
8642
|
code?: string | null;
|
|
8378
8643
|
errorMessage?: string | null;
|
|
8379
8644
|
isTransient?: boolean | null;
|
|
8645
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8380
8646
|
httpStatus?: number | null;
|
|
8381
8647
|
meta?: unknown;
|
|
8382
8648
|
userFacingMessage?: string | null;
|
|
@@ -8385,6 +8651,7 @@ type CommentCreateResponse = {
|
|
|
8385
8651
|
code?: string | null;
|
|
8386
8652
|
errorMessage?: string | null;
|
|
8387
8653
|
isTransient?: boolean | null;
|
|
8654
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8388
8655
|
httpStatus?: number | null;
|
|
8389
8656
|
meta?: unknown;
|
|
8390
8657
|
userFacingMessage?: string | null;
|
|
@@ -8393,6 +8660,7 @@ type CommentCreateResponse = {
|
|
|
8393
8660
|
code?: string | null;
|
|
8394
8661
|
errorMessage?: string | null;
|
|
8395
8662
|
isTransient?: boolean | null;
|
|
8663
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8396
8664
|
httpStatus?: number | null;
|
|
8397
8665
|
meta?: unknown;
|
|
8398
8666
|
userFacingMessage?: string | null;
|
|
@@ -8401,6 +8669,7 @@ type CommentCreateResponse = {
|
|
|
8401
8669
|
code?: string | null;
|
|
8402
8670
|
errorMessage?: string | null;
|
|
8403
8671
|
isTransient?: boolean | null;
|
|
8672
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8404
8673
|
httpStatus?: number | null;
|
|
8405
8674
|
meta?: unknown;
|
|
8406
8675
|
userFacingMessage?: string | null;
|
|
@@ -8409,6 +8678,7 @@ type CommentCreateResponse = {
|
|
|
8409
8678
|
code?: string | null;
|
|
8410
8679
|
errorMessage?: string | null;
|
|
8411
8680
|
isTransient?: boolean | null;
|
|
8681
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8412
8682
|
httpStatus?: number | null;
|
|
8413
8683
|
meta?: unknown;
|
|
8414
8684
|
userFacingMessage?: string | null;
|
|
@@ -8417,6 +8687,7 @@ type CommentCreateResponse = {
|
|
|
8417
8687
|
code?: string | null;
|
|
8418
8688
|
errorMessage?: string | null;
|
|
8419
8689
|
isTransient?: boolean | null;
|
|
8690
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8420
8691
|
httpStatus?: number | null;
|
|
8421
8692
|
meta?: unknown;
|
|
8422
8693
|
userFacingMessage?: string | null;
|
|
@@ -8425,6 +8696,7 @@ type CommentCreateResponse = {
|
|
|
8425
8696
|
code?: string | null;
|
|
8426
8697
|
errorMessage?: string | null;
|
|
8427
8698
|
isTransient?: boolean | null;
|
|
8699
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8428
8700
|
httpStatus?: number | null;
|
|
8429
8701
|
meta?: unknown;
|
|
8430
8702
|
userFacingMessage?: string | null;
|
|
@@ -8433,6 +8705,7 @@ type CommentCreateResponse = {
|
|
|
8433
8705
|
code?: string | null;
|
|
8434
8706
|
errorMessage?: string | null;
|
|
8435
8707
|
isTransient?: boolean | null;
|
|
8708
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8436
8709
|
httpStatus?: number | null;
|
|
8437
8710
|
meta?: unknown;
|
|
8438
8711
|
userFacingMessage?: string | null;
|
|
@@ -8441,6 +8714,7 @@ type CommentCreateResponse = {
|
|
|
8441
8714
|
code?: string | null;
|
|
8442
8715
|
errorMessage?: string | null;
|
|
8443
8716
|
isTransient?: boolean | null;
|
|
8717
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8444
8718
|
httpStatus?: number | null;
|
|
8445
8719
|
meta?: unknown;
|
|
8446
8720
|
userFacingMessage?: string | null;
|
|
@@ -8449,6 +8723,7 @@ type CommentCreateResponse = {
|
|
|
8449
8723
|
code?: string | null;
|
|
8450
8724
|
errorMessage?: string | null;
|
|
8451
8725
|
isTransient?: boolean | null;
|
|
8726
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8452
8727
|
httpStatus?: number | null;
|
|
8453
8728
|
meta?: unknown;
|
|
8454
8729
|
userFacingMessage?: string | null;
|
|
@@ -8457,6 +8732,7 @@ type CommentCreateResponse = {
|
|
|
8457
8732
|
code?: string | null;
|
|
8458
8733
|
errorMessage?: string | null;
|
|
8459
8734
|
isTransient?: boolean | null;
|
|
8735
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
8460
8736
|
httpStatus?: number | null;
|
|
8461
8737
|
meta?: unknown;
|
|
8462
8738
|
userFacingMessage?: string | null;
|
|
@@ -9968,6 +10244,26 @@ type MiscInstagramDeleteCommentData = {
|
|
|
9968
10244
|
type MiscInstagramDeleteCommentResponse = {
|
|
9969
10245
|
success: boolean;
|
|
9970
10246
|
};
|
|
10247
|
+
type MiscFacebookGetTokenDebugData = {
|
|
10248
|
+
teamId: string;
|
|
10249
|
+
};
|
|
10250
|
+
type MiscFacebookGetTokenDebugResponse = {
|
|
10251
|
+
type?: 'USER' | 'PAGE';
|
|
10252
|
+
application?: string;
|
|
10253
|
+
data_access_expires_at?: number;
|
|
10254
|
+
is_valid: boolean;
|
|
10255
|
+
issued_at?: number;
|
|
10256
|
+
scopes: Array<(string)>;
|
|
10257
|
+
granular_scopes: Array<{
|
|
10258
|
+
scope: string;
|
|
10259
|
+
target_ids?: Array<(string)>;
|
|
10260
|
+
}>;
|
|
10261
|
+
error?: {
|
|
10262
|
+
code: number;
|
|
10263
|
+
message: string;
|
|
10264
|
+
subcode?: number;
|
|
10265
|
+
};
|
|
10266
|
+
};
|
|
9971
10267
|
type MiscFacebookImportRecommendationsData = {
|
|
9972
10268
|
/**
|
|
9973
10269
|
* Body
|
|
@@ -11540,6 +11836,7 @@ type $OpenApiTs = {
|
|
|
11540
11836
|
mastodonServerId?: string | null;
|
|
11541
11837
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
11542
11838
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
11839
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
11543
11840
|
disconnectedCheckTryAt?: string | null;
|
|
11544
11841
|
deleteOn?: string | null;
|
|
11545
11842
|
createdAt: string | null;
|
|
@@ -11891,6 +12188,7 @@ type $OpenApiTs = {
|
|
|
11891
12188
|
mastodonServerId?: string | null;
|
|
11892
12189
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
11893
12190
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
12191
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
11894
12192
|
disconnectedCheckTryAt?: string | null;
|
|
11895
12193
|
deleteOn?: string | null;
|
|
11896
12194
|
createdAt: string | null;
|
|
@@ -12155,6 +12453,7 @@ type $OpenApiTs = {
|
|
|
12155
12453
|
mastodonServerId?: string | null;
|
|
12156
12454
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
12157
12455
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
12456
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
12158
12457
|
disconnectedCheckTryAt?: string | null;
|
|
12159
12458
|
deleteOn?: string | null;
|
|
12160
12459
|
createdAt: string | null;
|
|
@@ -12251,6 +12550,7 @@ type $OpenApiTs = {
|
|
|
12251
12550
|
mastodonServerId?: string | null;
|
|
12252
12551
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
12253
12552
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
12553
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
12254
12554
|
disconnectedCheckTryAt?: string | null;
|
|
12255
12555
|
deleteOn?: string | null;
|
|
12256
12556
|
createdAt: string | null;
|
|
@@ -12347,6 +12647,7 @@ type $OpenApiTs = {
|
|
|
12347
12647
|
mastodonServerId?: string | null;
|
|
12348
12648
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
12349
12649
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
12650
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
12350
12651
|
disconnectedCheckTryAt?: string | null;
|
|
12351
12652
|
deleteOn?: string | null;
|
|
12352
12653
|
createdAt: string | null;
|
|
@@ -12443,6 +12744,7 @@ type $OpenApiTs = {
|
|
|
12443
12744
|
mastodonServerId?: string | null;
|
|
12444
12745
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
12445
12746
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
12747
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
12446
12748
|
disconnectedCheckTryAt?: string | null;
|
|
12447
12749
|
deleteOn?: string | null;
|
|
12448
12750
|
createdAt: string | null;
|
|
@@ -12670,6 +12972,7 @@ type $OpenApiTs = {
|
|
|
12670
12972
|
mastodonServerId?: string | null;
|
|
12671
12973
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
12672
12974
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
12975
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
12673
12976
|
disconnectedCheckTryAt?: string | null;
|
|
12674
12977
|
deleteOn?: string | null;
|
|
12675
12978
|
createdAt: string | null;
|
|
@@ -12772,6 +13075,7 @@ type $OpenApiTs = {
|
|
|
12772
13075
|
mastodonServerId?: string | null;
|
|
12773
13076
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
12774
13077
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
13078
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
12775
13079
|
disconnectedCheckTryAt?: string | null;
|
|
12776
13080
|
deleteOn?: string | null;
|
|
12777
13081
|
createdAt: string | null;
|
|
@@ -12868,6 +13172,7 @@ type $OpenApiTs = {
|
|
|
12868
13172
|
mastodonServerId?: string | null;
|
|
12869
13173
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
12870
13174
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
13175
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
12871
13176
|
disconnectedCheckTryAt?: string | null;
|
|
12872
13177
|
deleteOn?: string | null;
|
|
12873
13178
|
createdAt: string | null;
|
|
@@ -12965,6 +13270,7 @@ type $OpenApiTs = {
|
|
|
12965
13270
|
mastodonServerId?: string | null;
|
|
12966
13271
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
12967
13272
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
13273
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
12968
13274
|
disconnectedCheckTryAt?: string | null;
|
|
12969
13275
|
deleteOn?: string | null;
|
|
12970
13276
|
createdAt: string | null;
|
|
@@ -14025,6 +14331,7 @@ type $OpenApiTs = {
|
|
|
14025
14331
|
code?: string | null;
|
|
14026
14332
|
errorMessage?: string | null;
|
|
14027
14333
|
isTransient?: boolean | null;
|
|
14334
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14028
14335
|
httpStatus?: number | null;
|
|
14029
14336
|
meta?: unknown;
|
|
14030
14337
|
userFacingMessage?: string | null;
|
|
@@ -14033,6 +14340,7 @@ type $OpenApiTs = {
|
|
|
14033
14340
|
code?: string | null;
|
|
14034
14341
|
errorMessage?: string | null;
|
|
14035
14342
|
isTransient?: boolean | null;
|
|
14343
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14036
14344
|
httpStatus?: number | null;
|
|
14037
14345
|
meta?: unknown;
|
|
14038
14346
|
userFacingMessage?: string | null;
|
|
@@ -14041,6 +14349,7 @@ type $OpenApiTs = {
|
|
|
14041
14349
|
code?: string | null;
|
|
14042
14350
|
errorMessage?: string | null;
|
|
14043
14351
|
isTransient?: boolean | null;
|
|
14352
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14044
14353
|
httpStatus?: number | null;
|
|
14045
14354
|
meta?: unknown;
|
|
14046
14355
|
userFacingMessage?: string | null;
|
|
@@ -14049,6 +14358,7 @@ type $OpenApiTs = {
|
|
|
14049
14358
|
code?: string | null;
|
|
14050
14359
|
errorMessage?: string | null;
|
|
14051
14360
|
isTransient?: boolean | null;
|
|
14361
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14052
14362
|
httpStatus?: number | null;
|
|
14053
14363
|
meta?: unknown;
|
|
14054
14364
|
userFacingMessage?: string | null;
|
|
@@ -14057,6 +14367,7 @@ type $OpenApiTs = {
|
|
|
14057
14367
|
code?: string | null;
|
|
14058
14368
|
errorMessage?: string | null;
|
|
14059
14369
|
isTransient?: boolean | null;
|
|
14370
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14060
14371
|
httpStatus?: number | null;
|
|
14061
14372
|
meta?: unknown;
|
|
14062
14373
|
userFacingMessage?: string | null;
|
|
@@ -14065,6 +14376,7 @@ type $OpenApiTs = {
|
|
|
14065
14376
|
code?: string | null;
|
|
14066
14377
|
errorMessage?: string | null;
|
|
14067
14378
|
isTransient?: boolean | null;
|
|
14379
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14068
14380
|
httpStatus?: number | null;
|
|
14069
14381
|
meta?: unknown;
|
|
14070
14382
|
userFacingMessage?: string | null;
|
|
@@ -14073,6 +14385,7 @@ type $OpenApiTs = {
|
|
|
14073
14385
|
code?: string | null;
|
|
14074
14386
|
errorMessage?: string | null;
|
|
14075
14387
|
isTransient?: boolean | null;
|
|
14388
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14076
14389
|
httpStatus?: number | null;
|
|
14077
14390
|
meta?: unknown;
|
|
14078
14391
|
userFacingMessage?: string | null;
|
|
@@ -14081,6 +14394,7 @@ type $OpenApiTs = {
|
|
|
14081
14394
|
code?: string | null;
|
|
14082
14395
|
errorMessage?: string | null;
|
|
14083
14396
|
isTransient?: boolean | null;
|
|
14397
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14084
14398
|
httpStatus?: number | null;
|
|
14085
14399
|
meta?: unknown;
|
|
14086
14400
|
userFacingMessage?: string | null;
|
|
@@ -14089,6 +14403,7 @@ type $OpenApiTs = {
|
|
|
14089
14403
|
code?: string | null;
|
|
14090
14404
|
errorMessage?: string | null;
|
|
14091
14405
|
isTransient?: boolean | null;
|
|
14406
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14092
14407
|
httpStatus?: number | null;
|
|
14093
14408
|
meta?: unknown;
|
|
14094
14409
|
userFacingMessage?: string | null;
|
|
@@ -14097,6 +14412,7 @@ type $OpenApiTs = {
|
|
|
14097
14412
|
code?: string | null;
|
|
14098
14413
|
errorMessage?: string | null;
|
|
14099
14414
|
isTransient?: boolean | null;
|
|
14415
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14100
14416
|
httpStatus?: number | null;
|
|
14101
14417
|
meta?: unknown;
|
|
14102
14418
|
userFacingMessage?: string | null;
|
|
@@ -14105,6 +14421,7 @@ type $OpenApiTs = {
|
|
|
14105
14421
|
code?: string | null;
|
|
14106
14422
|
errorMessage?: string | null;
|
|
14107
14423
|
isTransient?: boolean | null;
|
|
14424
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14108
14425
|
httpStatus?: number | null;
|
|
14109
14426
|
meta?: unknown;
|
|
14110
14427
|
userFacingMessage?: string | null;
|
|
@@ -14113,6 +14430,7 @@ type $OpenApiTs = {
|
|
|
14113
14430
|
code?: string | null;
|
|
14114
14431
|
errorMessage?: string | null;
|
|
14115
14432
|
isTransient?: boolean | null;
|
|
14433
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14116
14434
|
httpStatus?: number | null;
|
|
14117
14435
|
meta?: unknown;
|
|
14118
14436
|
userFacingMessage?: string | null;
|
|
@@ -14121,6 +14439,7 @@ type $OpenApiTs = {
|
|
|
14121
14439
|
code?: string | null;
|
|
14122
14440
|
errorMessage?: string | null;
|
|
14123
14441
|
isTransient?: boolean | null;
|
|
14442
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14124
14443
|
httpStatus?: number | null;
|
|
14125
14444
|
meta?: unknown;
|
|
14126
14445
|
userFacingMessage?: string | null;
|
|
@@ -14129,6 +14448,7 @@ type $OpenApiTs = {
|
|
|
14129
14448
|
code?: string | null;
|
|
14130
14449
|
errorMessage?: string | null;
|
|
14131
14450
|
isTransient?: boolean | null;
|
|
14451
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14132
14452
|
httpStatus?: number | null;
|
|
14133
14453
|
meta?: unknown;
|
|
14134
14454
|
userFacingMessage?: string | null;
|
|
@@ -14159,6 +14479,7 @@ type $OpenApiTs = {
|
|
|
14159
14479
|
TIKTOK?: {
|
|
14160
14480
|
id?: string | null;
|
|
14161
14481
|
shareId?: string | null;
|
|
14482
|
+
requestId?: string | null;
|
|
14162
14483
|
permalink?: string | null;
|
|
14163
14484
|
status?: string | null;
|
|
14164
14485
|
} | null;
|
|
@@ -14296,6 +14617,7 @@ type $OpenApiTs = {
|
|
|
14296
14617
|
mastodonServerId?: string | null;
|
|
14297
14618
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
14298
14619
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
14620
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
14299
14621
|
disconnectedCheckTryAt?: string | null;
|
|
14300
14622
|
deleteOn?: string | null;
|
|
14301
14623
|
createdAt: string | null;
|
|
@@ -14734,6 +15056,7 @@ type $OpenApiTs = {
|
|
|
14734
15056
|
code?: string | null;
|
|
14735
15057
|
errorMessage?: string | null;
|
|
14736
15058
|
isTransient?: boolean | null;
|
|
15059
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14737
15060
|
httpStatus?: number | null;
|
|
14738
15061
|
meta?: unknown;
|
|
14739
15062
|
userFacingMessage?: string | null;
|
|
@@ -14742,6 +15065,7 @@ type $OpenApiTs = {
|
|
|
14742
15065
|
code?: string | null;
|
|
14743
15066
|
errorMessage?: string | null;
|
|
14744
15067
|
isTransient?: boolean | null;
|
|
15068
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14745
15069
|
httpStatus?: number | null;
|
|
14746
15070
|
meta?: unknown;
|
|
14747
15071
|
userFacingMessage?: string | null;
|
|
@@ -14750,6 +15074,7 @@ type $OpenApiTs = {
|
|
|
14750
15074
|
code?: string | null;
|
|
14751
15075
|
errorMessage?: string | null;
|
|
14752
15076
|
isTransient?: boolean | null;
|
|
15077
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14753
15078
|
httpStatus?: number | null;
|
|
14754
15079
|
meta?: unknown;
|
|
14755
15080
|
userFacingMessage?: string | null;
|
|
@@ -14758,6 +15083,7 @@ type $OpenApiTs = {
|
|
|
14758
15083
|
code?: string | null;
|
|
14759
15084
|
errorMessage?: string | null;
|
|
14760
15085
|
isTransient?: boolean | null;
|
|
15086
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14761
15087
|
httpStatus?: number | null;
|
|
14762
15088
|
meta?: unknown;
|
|
14763
15089
|
userFacingMessage?: string | null;
|
|
@@ -14766,6 +15092,7 @@ type $OpenApiTs = {
|
|
|
14766
15092
|
code?: string | null;
|
|
14767
15093
|
errorMessage?: string | null;
|
|
14768
15094
|
isTransient?: boolean | null;
|
|
15095
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14769
15096
|
httpStatus?: number | null;
|
|
14770
15097
|
meta?: unknown;
|
|
14771
15098
|
userFacingMessage?: string | null;
|
|
@@ -14774,6 +15101,7 @@ type $OpenApiTs = {
|
|
|
14774
15101
|
code?: string | null;
|
|
14775
15102
|
errorMessage?: string | null;
|
|
14776
15103
|
isTransient?: boolean | null;
|
|
15104
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14777
15105
|
httpStatus?: number | null;
|
|
14778
15106
|
meta?: unknown;
|
|
14779
15107
|
userFacingMessage?: string | null;
|
|
@@ -14782,6 +15110,7 @@ type $OpenApiTs = {
|
|
|
14782
15110
|
code?: string | null;
|
|
14783
15111
|
errorMessage?: string | null;
|
|
14784
15112
|
isTransient?: boolean | null;
|
|
15113
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14785
15114
|
httpStatus?: number | null;
|
|
14786
15115
|
meta?: unknown;
|
|
14787
15116
|
userFacingMessage?: string | null;
|
|
@@ -14790,6 +15119,7 @@ type $OpenApiTs = {
|
|
|
14790
15119
|
code?: string | null;
|
|
14791
15120
|
errorMessage?: string | null;
|
|
14792
15121
|
isTransient?: boolean | null;
|
|
15122
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14793
15123
|
httpStatus?: number | null;
|
|
14794
15124
|
meta?: unknown;
|
|
14795
15125
|
userFacingMessage?: string | null;
|
|
@@ -14798,6 +15128,7 @@ type $OpenApiTs = {
|
|
|
14798
15128
|
code?: string | null;
|
|
14799
15129
|
errorMessage?: string | null;
|
|
14800
15130
|
isTransient?: boolean | null;
|
|
15131
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14801
15132
|
httpStatus?: number | null;
|
|
14802
15133
|
meta?: unknown;
|
|
14803
15134
|
userFacingMessage?: string | null;
|
|
@@ -14806,6 +15137,7 @@ type $OpenApiTs = {
|
|
|
14806
15137
|
code?: string | null;
|
|
14807
15138
|
errorMessage?: string | null;
|
|
14808
15139
|
isTransient?: boolean | null;
|
|
15140
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14809
15141
|
httpStatus?: number | null;
|
|
14810
15142
|
meta?: unknown;
|
|
14811
15143
|
userFacingMessage?: string | null;
|
|
@@ -14814,6 +15146,7 @@ type $OpenApiTs = {
|
|
|
14814
15146
|
code?: string | null;
|
|
14815
15147
|
errorMessage?: string | null;
|
|
14816
15148
|
isTransient?: boolean | null;
|
|
15149
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14817
15150
|
httpStatus?: number | null;
|
|
14818
15151
|
meta?: unknown;
|
|
14819
15152
|
userFacingMessage?: string | null;
|
|
@@ -14822,6 +15155,7 @@ type $OpenApiTs = {
|
|
|
14822
15155
|
code?: string | null;
|
|
14823
15156
|
errorMessage?: string | null;
|
|
14824
15157
|
isTransient?: boolean | null;
|
|
15158
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14825
15159
|
httpStatus?: number | null;
|
|
14826
15160
|
meta?: unknown;
|
|
14827
15161
|
userFacingMessage?: string | null;
|
|
@@ -14830,6 +15164,7 @@ type $OpenApiTs = {
|
|
|
14830
15164
|
code?: string | null;
|
|
14831
15165
|
errorMessage?: string | null;
|
|
14832
15166
|
isTransient?: boolean | null;
|
|
15167
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14833
15168
|
httpStatus?: number | null;
|
|
14834
15169
|
meta?: unknown;
|
|
14835
15170
|
userFacingMessage?: string | null;
|
|
@@ -14838,6 +15173,7 @@ type $OpenApiTs = {
|
|
|
14838
15173
|
code?: string | null;
|
|
14839
15174
|
errorMessage?: string | null;
|
|
14840
15175
|
isTransient?: boolean | null;
|
|
15176
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
14841
15177
|
httpStatus?: number | null;
|
|
14842
15178
|
meta?: unknown;
|
|
14843
15179
|
userFacingMessage?: string | null;
|
|
@@ -14868,6 +15204,7 @@ type $OpenApiTs = {
|
|
|
14868
15204
|
TIKTOK?: {
|
|
14869
15205
|
id?: string | null;
|
|
14870
15206
|
shareId?: string | null;
|
|
15207
|
+
requestId?: string | null;
|
|
14871
15208
|
permalink?: string | null;
|
|
14872
15209
|
status?: string | null;
|
|
14873
15210
|
} | null;
|
|
@@ -15369,6 +15706,7 @@ type $OpenApiTs = {
|
|
|
15369
15706
|
code?: string | null;
|
|
15370
15707
|
errorMessage?: string | null;
|
|
15371
15708
|
isTransient?: boolean | null;
|
|
15709
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15372
15710
|
httpStatus?: number | null;
|
|
15373
15711
|
meta?: unknown;
|
|
15374
15712
|
userFacingMessage?: string | null;
|
|
@@ -15377,6 +15715,7 @@ type $OpenApiTs = {
|
|
|
15377
15715
|
code?: string | null;
|
|
15378
15716
|
errorMessage?: string | null;
|
|
15379
15717
|
isTransient?: boolean | null;
|
|
15718
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15380
15719
|
httpStatus?: number | null;
|
|
15381
15720
|
meta?: unknown;
|
|
15382
15721
|
userFacingMessage?: string | null;
|
|
@@ -15385,6 +15724,7 @@ type $OpenApiTs = {
|
|
|
15385
15724
|
code?: string | null;
|
|
15386
15725
|
errorMessage?: string | null;
|
|
15387
15726
|
isTransient?: boolean | null;
|
|
15727
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15388
15728
|
httpStatus?: number | null;
|
|
15389
15729
|
meta?: unknown;
|
|
15390
15730
|
userFacingMessage?: string | null;
|
|
@@ -15393,6 +15733,7 @@ type $OpenApiTs = {
|
|
|
15393
15733
|
code?: string | null;
|
|
15394
15734
|
errorMessage?: string | null;
|
|
15395
15735
|
isTransient?: boolean | null;
|
|
15736
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15396
15737
|
httpStatus?: number | null;
|
|
15397
15738
|
meta?: unknown;
|
|
15398
15739
|
userFacingMessage?: string | null;
|
|
@@ -15401,6 +15742,7 @@ type $OpenApiTs = {
|
|
|
15401
15742
|
code?: string | null;
|
|
15402
15743
|
errorMessage?: string | null;
|
|
15403
15744
|
isTransient?: boolean | null;
|
|
15745
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15404
15746
|
httpStatus?: number | null;
|
|
15405
15747
|
meta?: unknown;
|
|
15406
15748
|
userFacingMessage?: string | null;
|
|
@@ -15409,6 +15751,7 @@ type $OpenApiTs = {
|
|
|
15409
15751
|
code?: string | null;
|
|
15410
15752
|
errorMessage?: string | null;
|
|
15411
15753
|
isTransient?: boolean | null;
|
|
15754
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15412
15755
|
httpStatus?: number | null;
|
|
15413
15756
|
meta?: unknown;
|
|
15414
15757
|
userFacingMessage?: string | null;
|
|
@@ -15417,6 +15760,7 @@ type $OpenApiTs = {
|
|
|
15417
15760
|
code?: string | null;
|
|
15418
15761
|
errorMessage?: string | null;
|
|
15419
15762
|
isTransient?: boolean | null;
|
|
15763
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15420
15764
|
httpStatus?: number | null;
|
|
15421
15765
|
meta?: unknown;
|
|
15422
15766
|
userFacingMessage?: string | null;
|
|
@@ -15425,6 +15769,7 @@ type $OpenApiTs = {
|
|
|
15425
15769
|
code?: string | null;
|
|
15426
15770
|
errorMessage?: string | null;
|
|
15427
15771
|
isTransient?: boolean | null;
|
|
15772
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15428
15773
|
httpStatus?: number | null;
|
|
15429
15774
|
meta?: unknown;
|
|
15430
15775
|
userFacingMessage?: string | null;
|
|
@@ -15433,6 +15778,7 @@ type $OpenApiTs = {
|
|
|
15433
15778
|
code?: string | null;
|
|
15434
15779
|
errorMessage?: string | null;
|
|
15435
15780
|
isTransient?: boolean | null;
|
|
15781
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15436
15782
|
httpStatus?: number | null;
|
|
15437
15783
|
meta?: unknown;
|
|
15438
15784
|
userFacingMessage?: string | null;
|
|
@@ -15441,6 +15787,7 @@ type $OpenApiTs = {
|
|
|
15441
15787
|
code?: string | null;
|
|
15442
15788
|
errorMessage?: string | null;
|
|
15443
15789
|
isTransient?: boolean | null;
|
|
15790
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15444
15791
|
httpStatus?: number | null;
|
|
15445
15792
|
meta?: unknown;
|
|
15446
15793
|
userFacingMessage?: string | null;
|
|
@@ -15449,6 +15796,7 @@ type $OpenApiTs = {
|
|
|
15449
15796
|
code?: string | null;
|
|
15450
15797
|
errorMessage?: string | null;
|
|
15451
15798
|
isTransient?: boolean | null;
|
|
15799
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15452
15800
|
httpStatus?: number | null;
|
|
15453
15801
|
meta?: unknown;
|
|
15454
15802
|
userFacingMessage?: string | null;
|
|
@@ -15457,6 +15805,7 @@ type $OpenApiTs = {
|
|
|
15457
15805
|
code?: string | null;
|
|
15458
15806
|
errorMessage?: string | null;
|
|
15459
15807
|
isTransient?: boolean | null;
|
|
15808
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15460
15809
|
httpStatus?: number | null;
|
|
15461
15810
|
meta?: unknown;
|
|
15462
15811
|
userFacingMessage?: string | null;
|
|
@@ -15465,6 +15814,7 @@ type $OpenApiTs = {
|
|
|
15465
15814
|
code?: string | null;
|
|
15466
15815
|
errorMessage?: string | null;
|
|
15467
15816
|
isTransient?: boolean | null;
|
|
15817
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15468
15818
|
httpStatus?: number | null;
|
|
15469
15819
|
meta?: unknown;
|
|
15470
15820
|
userFacingMessage?: string | null;
|
|
@@ -15473,6 +15823,7 @@ type $OpenApiTs = {
|
|
|
15473
15823
|
code?: string | null;
|
|
15474
15824
|
errorMessage?: string | null;
|
|
15475
15825
|
isTransient?: boolean | null;
|
|
15826
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15476
15827
|
httpStatus?: number | null;
|
|
15477
15828
|
meta?: unknown;
|
|
15478
15829
|
userFacingMessage?: string | null;
|
|
@@ -15503,6 +15854,7 @@ type $OpenApiTs = {
|
|
|
15503
15854
|
TIKTOK?: {
|
|
15504
15855
|
id?: string | null;
|
|
15505
15856
|
shareId?: string | null;
|
|
15857
|
+
requestId?: string | null;
|
|
15506
15858
|
permalink?: string | null;
|
|
15507
15859
|
status?: string | null;
|
|
15508
15860
|
} | null;
|
|
@@ -16007,6 +16359,7 @@ type $OpenApiTs = {
|
|
|
16007
16359
|
code?: string | null;
|
|
16008
16360
|
errorMessage?: string | null;
|
|
16009
16361
|
isTransient?: boolean | null;
|
|
16362
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16010
16363
|
httpStatus?: number | null;
|
|
16011
16364
|
meta?: unknown;
|
|
16012
16365
|
userFacingMessage?: string | null;
|
|
@@ -16015,6 +16368,7 @@ type $OpenApiTs = {
|
|
|
16015
16368
|
code?: string | null;
|
|
16016
16369
|
errorMessage?: string | null;
|
|
16017
16370
|
isTransient?: boolean | null;
|
|
16371
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16018
16372
|
httpStatus?: number | null;
|
|
16019
16373
|
meta?: unknown;
|
|
16020
16374
|
userFacingMessage?: string | null;
|
|
@@ -16023,6 +16377,7 @@ type $OpenApiTs = {
|
|
|
16023
16377
|
code?: string | null;
|
|
16024
16378
|
errorMessage?: string | null;
|
|
16025
16379
|
isTransient?: boolean | null;
|
|
16380
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16026
16381
|
httpStatus?: number | null;
|
|
16027
16382
|
meta?: unknown;
|
|
16028
16383
|
userFacingMessage?: string | null;
|
|
@@ -16031,6 +16386,7 @@ type $OpenApiTs = {
|
|
|
16031
16386
|
code?: string | null;
|
|
16032
16387
|
errorMessage?: string | null;
|
|
16033
16388
|
isTransient?: boolean | null;
|
|
16389
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16034
16390
|
httpStatus?: number | null;
|
|
16035
16391
|
meta?: unknown;
|
|
16036
16392
|
userFacingMessage?: string | null;
|
|
@@ -16039,6 +16395,7 @@ type $OpenApiTs = {
|
|
|
16039
16395
|
code?: string | null;
|
|
16040
16396
|
errorMessage?: string | null;
|
|
16041
16397
|
isTransient?: boolean | null;
|
|
16398
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16042
16399
|
httpStatus?: number | null;
|
|
16043
16400
|
meta?: unknown;
|
|
16044
16401
|
userFacingMessage?: string | null;
|
|
@@ -16047,6 +16404,7 @@ type $OpenApiTs = {
|
|
|
16047
16404
|
code?: string | null;
|
|
16048
16405
|
errorMessage?: string | null;
|
|
16049
16406
|
isTransient?: boolean | null;
|
|
16407
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16050
16408
|
httpStatus?: number | null;
|
|
16051
16409
|
meta?: unknown;
|
|
16052
16410
|
userFacingMessage?: string | null;
|
|
@@ -16055,6 +16413,7 @@ type $OpenApiTs = {
|
|
|
16055
16413
|
code?: string | null;
|
|
16056
16414
|
errorMessage?: string | null;
|
|
16057
16415
|
isTransient?: boolean | null;
|
|
16416
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16058
16417
|
httpStatus?: number | null;
|
|
16059
16418
|
meta?: unknown;
|
|
16060
16419
|
userFacingMessage?: string | null;
|
|
@@ -16063,6 +16422,7 @@ type $OpenApiTs = {
|
|
|
16063
16422
|
code?: string | null;
|
|
16064
16423
|
errorMessage?: string | null;
|
|
16065
16424
|
isTransient?: boolean | null;
|
|
16425
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16066
16426
|
httpStatus?: number | null;
|
|
16067
16427
|
meta?: unknown;
|
|
16068
16428
|
userFacingMessage?: string | null;
|
|
@@ -16071,6 +16431,7 @@ type $OpenApiTs = {
|
|
|
16071
16431
|
code?: string | null;
|
|
16072
16432
|
errorMessage?: string | null;
|
|
16073
16433
|
isTransient?: boolean | null;
|
|
16434
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16074
16435
|
httpStatus?: number | null;
|
|
16075
16436
|
meta?: unknown;
|
|
16076
16437
|
userFacingMessage?: string | null;
|
|
@@ -16079,6 +16440,7 @@ type $OpenApiTs = {
|
|
|
16079
16440
|
code?: string | null;
|
|
16080
16441
|
errorMessage?: string | null;
|
|
16081
16442
|
isTransient?: boolean | null;
|
|
16443
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16082
16444
|
httpStatus?: number | null;
|
|
16083
16445
|
meta?: unknown;
|
|
16084
16446
|
userFacingMessage?: string | null;
|
|
@@ -16087,6 +16449,7 @@ type $OpenApiTs = {
|
|
|
16087
16449
|
code?: string | null;
|
|
16088
16450
|
errorMessage?: string | null;
|
|
16089
16451
|
isTransient?: boolean | null;
|
|
16452
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16090
16453
|
httpStatus?: number | null;
|
|
16091
16454
|
meta?: unknown;
|
|
16092
16455
|
userFacingMessage?: string | null;
|
|
@@ -16095,6 +16458,7 @@ type $OpenApiTs = {
|
|
|
16095
16458
|
code?: string | null;
|
|
16096
16459
|
errorMessage?: string | null;
|
|
16097
16460
|
isTransient?: boolean | null;
|
|
16461
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16098
16462
|
httpStatus?: number | null;
|
|
16099
16463
|
meta?: unknown;
|
|
16100
16464
|
userFacingMessage?: string | null;
|
|
@@ -16103,6 +16467,7 @@ type $OpenApiTs = {
|
|
|
16103
16467
|
code?: string | null;
|
|
16104
16468
|
errorMessage?: string | null;
|
|
16105
16469
|
isTransient?: boolean | null;
|
|
16470
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16106
16471
|
httpStatus?: number | null;
|
|
16107
16472
|
meta?: unknown;
|
|
16108
16473
|
userFacingMessage?: string | null;
|
|
@@ -16111,6 +16476,7 @@ type $OpenApiTs = {
|
|
|
16111
16476
|
code?: string | null;
|
|
16112
16477
|
errorMessage?: string | null;
|
|
16113
16478
|
isTransient?: boolean | null;
|
|
16479
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16114
16480
|
httpStatus?: number | null;
|
|
16115
16481
|
meta?: unknown;
|
|
16116
16482
|
userFacingMessage?: string | null;
|
|
@@ -16141,6 +16507,7 @@ type $OpenApiTs = {
|
|
|
16141
16507
|
TIKTOK?: {
|
|
16142
16508
|
id?: string | null;
|
|
16143
16509
|
shareId?: string | null;
|
|
16510
|
+
requestId?: string | null;
|
|
16144
16511
|
permalink?: string | null;
|
|
16145
16512
|
status?: string | null;
|
|
16146
16513
|
} | null;
|
|
@@ -16278,6 +16645,7 @@ type $OpenApiTs = {
|
|
|
16278
16645
|
mastodonServerId?: string | null;
|
|
16279
16646
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
16280
16647
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
16648
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
16281
16649
|
disconnectedCheckTryAt?: string | null;
|
|
16282
16650
|
deleteOn?: string | null;
|
|
16283
16651
|
createdAt: string | null;
|
|
@@ -16718,6 +17086,7 @@ type $OpenApiTs = {
|
|
|
16718
17086
|
code?: string | null;
|
|
16719
17087
|
errorMessage?: string | null;
|
|
16720
17088
|
isTransient?: boolean | null;
|
|
17089
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16721
17090
|
httpStatus?: number | null;
|
|
16722
17091
|
meta?: unknown;
|
|
16723
17092
|
userFacingMessage?: string | null;
|
|
@@ -16726,6 +17095,7 @@ type $OpenApiTs = {
|
|
|
16726
17095
|
code?: string | null;
|
|
16727
17096
|
errorMessage?: string | null;
|
|
16728
17097
|
isTransient?: boolean | null;
|
|
17098
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16729
17099
|
httpStatus?: number | null;
|
|
16730
17100
|
meta?: unknown;
|
|
16731
17101
|
userFacingMessage?: string | null;
|
|
@@ -16734,6 +17104,7 @@ type $OpenApiTs = {
|
|
|
16734
17104
|
code?: string | null;
|
|
16735
17105
|
errorMessage?: string | null;
|
|
16736
17106
|
isTransient?: boolean | null;
|
|
17107
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16737
17108
|
httpStatus?: number | null;
|
|
16738
17109
|
meta?: unknown;
|
|
16739
17110
|
userFacingMessage?: string | null;
|
|
@@ -16742,6 +17113,7 @@ type $OpenApiTs = {
|
|
|
16742
17113
|
code?: string | null;
|
|
16743
17114
|
errorMessage?: string | null;
|
|
16744
17115
|
isTransient?: boolean | null;
|
|
17116
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16745
17117
|
httpStatus?: number | null;
|
|
16746
17118
|
meta?: unknown;
|
|
16747
17119
|
userFacingMessage?: string | null;
|
|
@@ -16750,6 +17122,7 @@ type $OpenApiTs = {
|
|
|
16750
17122
|
code?: string | null;
|
|
16751
17123
|
errorMessage?: string | null;
|
|
16752
17124
|
isTransient?: boolean | null;
|
|
17125
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16753
17126
|
httpStatus?: number | null;
|
|
16754
17127
|
meta?: unknown;
|
|
16755
17128
|
userFacingMessage?: string | null;
|
|
@@ -16758,6 +17131,7 @@ type $OpenApiTs = {
|
|
|
16758
17131
|
code?: string | null;
|
|
16759
17132
|
errorMessage?: string | null;
|
|
16760
17133
|
isTransient?: boolean | null;
|
|
17134
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16761
17135
|
httpStatus?: number | null;
|
|
16762
17136
|
meta?: unknown;
|
|
16763
17137
|
userFacingMessage?: string | null;
|
|
@@ -16766,6 +17140,7 @@ type $OpenApiTs = {
|
|
|
16766
17140
|
code?: string | null;
|
|
16767
17141
|
errorMessage?: string | null;
|
|
16768
17142
|
isTransient?: boolean | null;
|
|
17143
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16769
17144
|
httpStatus?: number | null;
|
|
16770
17145
|
meta?: unknown;
|
|
16771
17146
|
userFacingMessage?: string | null;
|
|
@@ -16774,6 +17149,7 @@ type $OpenApiTs = {
|
|
|
16774
17149
|
code?: string | null;
|
|
16775
17150
|
errorMessage?: string | null;
|
|
16776
17151
|
isTransient?: boolean | null;
|
|
17152
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16777
17153
|
httpStatus?: number | null;
|
|
16778
17154
|
meta?: unknown;
|
|
16779
17155
|
userFacingMessage?: string | null;
|
|
@@ -16782,6 +17158,7 @@ type $OpenApiTs = {
|
|
|
16782
17158
|
code?: string | null;
|
|
16783
17159
|
errorMessage?: string | null;
|
|
16784
17160
|
isTransient?: boolean | null;
|
|
17161
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16785
17162
|
httpStatus?: number | null;
|
|
16786
17163
|
meta?: unknown;
|
|
16787
17164
|
userFacingMessage?: string | null;
|
|
@@ -16790,6 +17167,7 @@ type $OpenApiTs = {
|
|
|
16790
17167
|
code?: string | null;
|
|
16791
17168
|
errorMessage?: string | null;
|
|
16792
17169
|
isTransient?: boolean | null;
|
|
17170
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16793
17171
|
httpStatus?: number | null;
|
|
16794
17172
|
meta?: unknown;
|
|
16795
17173
|
userFacingMessage?: string | null;
|
|
@@ -16798,6 +17176,7 @@ type $OpenApiTs = {
|
|
|
16798
17176
|
code?: string | null;
|
|
16799
17177
|
errorMessage?: string | null;
|
|
16800
17178
|
isTransient?: boolean | null;
|
|
17179
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16801
17180
|
httpStatus?: number | null;
|
|
16802
17181
|
meta?: unknown;
|
|
16803
17182
|
userFacingMessage?: string | null;
|
|
@@ -16806,6 +17185,7 @@ type $OpenApiTs = {
|
|
|
16806
17185
|
code?: string | null;
|
|
16807
17186
|
errorMessage?: string | null;
|
|
16808
17187
|
isTransient?: boolean | null;
|
|
17188
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16809
17189
|
httpStatus?: number | null;
|
|
16810
17190
|
meta?: unknown;
|
|
16811
17191
|
userFacingMessage?: string | null;
|
|
@@ -16814,6 +17194,7 @@ type $OpenApiTs = {
|
|
|
16814
17194
|
code?: string | null;
|
|
16815
17195
|
errorMessage?: string | null;
|
|
16816
17196
|
isTransient?: boolean | null;
|
|
17197
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16817
17198
|
httpStatus?: number | null;
|
|
16818
17199
|
meta?: unknown;
|
|
16819
17200
|
userFacingMessage?: string | null;
|
|
@@ -16822,6 +17203,7 @@ type $OpenApiTs = {
|
|
|
16822
17203
|
code?: string | null;
|
|
16823
17204
|
errorMessage?: string | null;
|
|
16824
17205
|
isTransient?: boolean | null;
|
|
17206
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16825
17207
|
httpStatus?: number | null;
|
|
16826
17208
|
meta?: unknown;
|
|
16827
17209
|
userFacingMessage?: string | null;
|
|
@@ -16852,6 +17234,7 @@ type $OpenApiTs = {
|
|
|
16852
17234
|
TIKTOK?: {
|
|
16853
17235
|
id?: string | null;
|
|
16854
17236
|
shareId?: string | null;
|
|
17237
|
+
requestId?: string | null;
|
|
16855
17238
|
permalink?: string | null;
|
|
16856
17239
|
status?: string | null;
|
|
16857
17240
|
} | null;
|
|
@@ -17355,6 +17738,7 @@ type $OpenApiTs = {
|
|
|
17355
17738
|
code?: string | null;
|
|
17356
17739
|
errorMessage?: string | null;
|
|
17357
17740
|
isTransient?: boolean | null;
|
|
17741
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17358
17742
|
httpStatus?: number | null;
|
|
17359
17743
|
meta?: unknown;
|
|
17360
17744
|
userFacingMessage?: string | null;
|
|
@@ -17363,6 +17747,7 @@ type $OpenApiTs = {
|
|
|
17363
17747
|
code?: string | null;
|
|
17364
17748
|
errorMessage?: string | null;
|
|
17365
17749
|
isTransient?: boolean | null;
|
|
17750
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17366
17751
|
httpStatus?: number | null;
|
|
17367
17752
|
meta?: unknown;
|
|
17368
17753
|
userFacingMessage?: string | null;
|
|
@@ -17371,6 +17756,7 @@ type $OpenApiTs = {
|
|
|
17371
17756
|
code?: string | null;
|
|
17372
17757
|
errorMessage?: string | null;
|
|
17373
17758
|
isTransient?: boolean | null;
|
|
17759
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17374
17760
|
httpStatus?: number | null;
|
|
17375
17761
|
meta?: unknown;
|
|
17376
17762
|
userFacingMessage?: string | null;
|
|
@@ -17379,6 +17765,7 @@ type $OpenApiTs = {
|
|
|
17379
17765
|
code?: string | null;
|
|
17380
17766
|
errorMessage?: string | null;
|
|
17381
17767
|
isTransient?: boolean | null;
|
|
17768
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17382
17769
|
httpStatus?: number | null;
|
|
17383
17770
|
meta?: unknown;
|
|
17384
17771
|
userFacingMessage?: string | null;
|
|
@@ -17387,6 +17774,7 @@ type $OpenApiTs = {
|
|
|
17387
17774
|
code?: string | null;
|
|
17388
17775
|
errorMessage?: string | null;
|
|
17389
17776
|
isTransient?: boolean | null;
|
|
17777
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17390
17778
|
httpStatus?: number | null;
|
|
17391
17779
|
meta?: unknown;
|
|
17392
17780
|
userFacingMessage?: string | null;
|
|
@@ -17395,6 +17783,7 @@ type $OpenApiTs = {
|
|
|
17395
17783
|
code?: string | null;
|
|
17396
17784
|
errorMessage?: string | null;
|
|
17397
17785
|
isTransient?: boolean | null;
|
|
17786
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17398
17787
|
httpStatus?: number | null;
|
|
17399
17788
|
meta?: unknown;
|
|
17400
17789
|
userFacingMessage?: string | null;
|
|
@@ -17403,6 +17792,7 @@ type $OpenApiTs = {
|
|
|
17403
17792
|
code?: string | null;
|
|
17404
17793
|
errorMessage?: string | null;
|
|
17405
17794
|
isTransient?: boolean | null;
|
|
17795
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17406
17796
|
httpStatus?: number | null;
|
|
17407
17797
|
meta?: unknown;
|
|
17408
17798
|
userFacingMessage?: string | null;
|
|
@@ -17411,6 +17801,7 @@ type $OpenApiTs = {
|
|
|
17411
17801
|
code?: string | null;
|
|
17412
17802
|
errorMessage?: string | null;
|
|
17413
17803
|
isTransient?: boolean | null;
|
|
17804
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17414
17805
|
httpStatus?: number | null;
|
|
17415
17806
|
meta?: unknown;
|
|
17416
17807
|
userFacingMessage?: string | null;
|
|
@@ -17419,6 +17810,7 @@ type $OpenApiTs = {
|
|
|
17419
17810
|
code?: string | null;
|
|
17420
17811
|
errorMessage?: string | null;
|
|
17421
17812
|
isTransient?: boolean | null;
|
|
17813
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17422
17814
|
httpStatus?: number | null;
|
|
17423
17815
|
meta?: unknown;
|
|
17424
17816
|
userFacingMessage?: string | null;
|
|
@@ -17427,6 +17819,7 @@ type $OpenApiTs = {
|
|
|
17427
17819
|
code?: string | null;
|
|
17428
17820
|
errorMessage?: string | null;
|
|
17429
17821
|
isTransient?: boolean | null;
|
|
17822
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17430
17823
|
httpStatus?: number | null;
|
|
17431
17824
|
meta?: unknown;
|
|
17432
17825
|
userFacingMessage?: string | null;
|
|
@@ -17435,6 +17828,7 @@ type $OpenApiTs = {
|
|
|
17435
17828
|
code?: string | null;
|
|
17436
17829
|
errorMessage?: string | null;
|
|
17437
17830
|
isTransient?: boolean | null;
|
|
17831
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17438
17832
|
httpStatus?: number | null;
|
|
17439
17833
|
meta?: unknown;
|
|
17440
17834
|
userFacingMessage?: string | null;
|
|
@@ -17443,6 +17837,7 @@ type $OpenApiTs = {
|
|
|
17443
17837
|
code?: string | null;
|
|
17444
17838
|
errorMessage?: string | null;
|
|
17445
17839
|
isTransient?: boolean | null;
|
|
17840
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17446
17841
|
httpStatus?: number | null;
|
|
17447
17842
|
meta?: unknown;
|
|
17448
17843
|
userFacingMessage?: string | null;
|
|
@@ -17451,6 +17846,7 @@ type $OpenApiTs = {
|
|
|
17451
17846
|
code?: string | null;
|
|
17452
17847
|
errorMessage?: string | null;
|
|
17453
17848
|
isTransient?: boolean | null;
|
|
17849
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17454
17850
|
httpStatus?: number | null;
|
|
17455
17851
|
meta?: unknown;
|
|
17456
17852
|
userFacingMessage?: string | null;
|
|
@@ -17459,6 +17855,7 @@ type $OpenApiTs = {
|
|
|
17459
17855
|
code?: string | null;
|
|
17460
17856
|
errorMessage?: string | null;
|
|
17461
17857
|
isTransient?: boolean | null;
|
|
17858
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
17462
17859
|
httpStatus?: number | null;
|
|
17463
17860
|
meta?: unknown;
|
|
17464
17861
|
userFacingMessage?: string | null;
|
|
@@ -17489,6 +17886,7 @@ type $OpenApiTs = {
|
|
|
17489
17886
|
TIKTOK?: {
|
|
17490
17887
|
id?: string | null;
|
|
17491
17888
|
shareId?: string | null;
|
|
17889
|
+
requestId?: string | null;
|
|
17492
17890
|
permalink?: string | null;
|
|
17493
17891
|
status?: string | null;
|
|
17494
17892
|
} | null;
|
|
@@ -17651,6 +18049,7 @@ type $OpenApiTs = {
|
|
|
17651
18049
|
mastodonServerId?: string | null;
|
|
17652
18050
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
17653
18051
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
18052
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
17654
18053
|
disconnectedCheckTryAt?: string | null;
|
|
17655
18054
|
deleteOn?: string | null;
|
|
17656
18055
|
createdAt: string | null;
|
|
@@ -18108,6 +18507,7 @@ type $OpenApiTs = {
|
|
|
18108
18507
|
code?: string | null;
|
|
18109
18508
|
errorMessage?: string | null;
|
|
18110
18509
|
isTransient?: boolean | null;
|
|
18510
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18111
18511
|
httpStatus?: number | null;
|
|
18112
18512
|
meta?: unknown;
|
|
18113
18513
|
userFacingMessage?: string | null;
|
|
@@ -18116,6 +18516,7 @@ type $OpenApiTs = {
|
|
|
18116
18516
|
code?: string | null;
|
|
18117
18517
|
errorMessage?: string | null;
|
|
18118
18518
|
isTransient?: boolean | null;
|
|
18519
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18119
18520
|
httpStatus?: number | null;
|
|
18120
18521
|
meta?: unknown;
|
|
18121
18522
|
userFacingMessage?: string | null;
|
|
@@ -18124,6 +18525,7 @@ type $OpenApiTs = {
|
|
|
18124
18525
|
code?: string | null;
|
|
18125
18526
|
errorMessage?: string | null;
|
|
18126
18527
|
isTransient?: boolean | null;
|
|
18528
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18127
18529
|
httpStatus?: number | null;
|
|
18128
18530
|
meta?: unknown;
|
|
18129
18531
|
userFacingMessage?: string | null;
|
|
@@ -18132,6 +18534,7 @@ type $OpenApiTs = {
|
|
|
18132
18534
|
code?: string | null;
|
|
18133
18535
|
errorMessage?: string | null;
|
|
18134
18536
|
isTransient?: boolean | null;
|
|
18537
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18135
18538
|
httpStatus?: number | null;
|
|
18136
18539
|
meta?: unknown;
|
|
18137
18540
|
userFacingMessage?: string | null;
|
|
@@ -18140,6 +18543,7 @@ type $OpenApiTs = {
|
|
|
18140
18543
|
code?: string | null;
|
|
18141
18544
|
errorMessage?: string | null;
|
|
18142
18545
|
isTransient?: boolean | null;
|
|
18546
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18143
18547
|
httpStatus?: number | null;
|
|
18144
18548
|
meta?: unknown;
|
|
18145
18549
|
userFacingMessage?: string | null;
|
|
@@ -18148,6 +18552,7 @@ type $OpenApiTs = {
|
|
|
18148
18552
|
code?: string | null;
|
|
18149
18553
|
errorMessage?: string | null;
|
|
18150
18554
|
isTransient?: boolean | null;
|
|
18555
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18151
18556
|
httpStatus?: number | null;
|
|
18152
18557
|
meta?: unknown;
|
|
18153
18558
|
userFacingMessage?: string | null;
|
|
@@ -18156,6 +18561,7 @@ type $OpenApiTs = {
|
|
|
18156
18561
|
code?: string | null;
|
|
18157
18562
|
errorMessage?: string | null;
|
|
18158
18563
|
isTransient?: boolean | null;
|
|
18564
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18159
18565
|
httpStatus?: number | null;
|
|
18160
18566
|
meta?: unknown;
|
|
18161
18567
|
userFacingMessage?: string | null;
|
|
@@ -18164,6 +18570,7 @@ type $OpenApiTs = {
|
|
|
18164
18570
|
code?: string | null;
|
|
18165
18571
|
errorMessage?: string | null;
|
|
18166
18572
|
isTransient?: boolean | null;
|
|
18573
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18167
18574
|
httpStatus?: number | null;
|
|
18168
18575
|
meta?: unknown;
|
|
18169
18576
|
userFacingMessage?: string | null;
|
|
@@ -18172,6 +18579,7 @@ type $OpenApiTs = {
|
|
|
18172
18579
|
code?: string | null;
|
|
18173
18580
|
errorMessage?: string | null;
|
|
18174
18581
|
isTransient?: boolean | null;
|
|
18582
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18175
18583
|
httpStatus?: number | null;
|
|
18176
18584
|
meta?: unknown;
|
|
18177
18585
|
userFacingMessage?: string | null;
|
|
@@ -18180,6 +18588,7 @@ type $OpenApiTs = {
|
|
|
18180
18588
|
code?: string | null;
|
|
18181
18589
|
errorMessage?: string | null;
|
|
18182
18590
|
isTransient?: boolean | null;
|
|
18591
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18183
18592
|
httpStatus?: number | null;
|
|
18184
18593
|
meta?: unknown;
|
|
18185
18594
|
userFacingMessage?: string | null;
|
|
@@ -18188,6 +18597,7 @@ type $OpenApiTs = {
|
|
|
18188
18597
|
code?: string | null;
|
|
18189
18598
|
errorMessage?: string | null;
|
|
18190
18599
|
isTransient?: boolean | null;
|
|
18600
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18191
18601
|
httpStatus?: number | null;
|
|
18192
18602
|
meta?: unknown;
|
|
18193
18603
|
userFacingMessage?: string | null;
|
|
@@ -18196,6 +18606,7 @@ type $OpenApiTs = {
|
|
|
18196
18606
|
code?: string | null;
|
|
18197
18607
|
errorMessage?: string | null;
|
|
18198
18608
|
isTransient?: boolean | null;
|
|
18609
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18199
18610
|
httpStatus?: number | null;
|
|
18200
18611
|
meta?: unknown;
|
|
18201
18612
|
userFacingMessage?: string | null;
|
|
@@ -18204,6 +18615,7 @@ type $OpenApiTs = {
|
|
|
18204
18615
|
code?: string | null;
|
|
18205
18616
|
errorMessage?: string | null;
|
|
18206
18617
|
isTransient?: boolean | null;
|
|
18618
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18207
18619
|
httpStatus?: number | null;
|
|
18208
18620
|
meta?: unknown;
|
|
18209
18621
|
userFacingMessage?: string | null;
|
|
@@ -18212,6 +18624,7 @@ type $OpenApiTs = {
|
|
|
18212
18624
|
code?: string | null;
|
|
18213
18625
|
errorMessage?: string | null;
|
|
18214
18626
|
isTransient?: boolean | null;
|
|
18627
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18215
18628
|
httpStatus?: number | null;
|
|
18216
18629
|
meta?: unknown;
|
|
18217
18630
|
userFacingMessage?: string | null;
|
|
@@ -18242,6 +18655,7 @@ type $OpenApiTs = {
|
|
|
18242
18655
|
TIKTOK?: {
|
|
18243
18656
|
id?: string | null;
|
|
18244
18657
|
shareId?: string | null;
|
|
18658
|
+
requestId?: string | null;
|
|
18245
18659
|
permalink?: string | null;
|
|
18246
18660
|
status?: string | null;
|
|
18247
18661
|
} | null;
|
|
@@ -18444,6 +18858,7 @@ type $OpenApiTs = {
|
|
|
18444
18858
|
mastodonServerId?: string | null;
|
|
18445
18859
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
18446
18860
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
18861
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
18447
18862
|
disconnectedCheckTryAt?: string | null;
|
|
18448
18863
|
deleteOn?: string | null;
|
|
18449
18864
|
createdAt: string | null;
|
|
@@ -18894,6 +19309,7 @@ type $OpenApiTs = {
|
|
|
18894
19309
|
code?: string | null;
|
|
18895
19310
|
errorMessage?: string | null;
|
|
18896
19311
|
isTransient?: boolean | null;
|
|
19312
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18897
19313
|
httpStatus?: number | null;
|
|
18898
19314
|
meta?: unknown;
|
|
18899
19315
|
userFacingMessage?: string | null;
|
|
@@ -18902,6 +19318,7 @@ type $OpenApiTs = {
|
|
|
18902
19318
|
code?: string | null;
|
|
18903
19319
|
errorMessage?: string | null;
|
|
18904
19320
|
isTransient?: boolean | null;
|
|
19321
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18905
19322
|
httpStatus?: number | null;
|
|
18906
19323
|
meta?: unknown;
|
|
18907
19324
|
userFacingMessage?: string | null;
|
|
@@ -18910,6 +19327,7 @@ type $OpenApiTs = {
|
|
|
18910
19327
|
code?: string | null;
|
|
18911
19328
|
errorMessage?: string | null;
|
|
18912
19329
|
isTransient?: boolean | null;
|
|
19330
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18913
19331
|
httpStatus?: number | null;
|
|
18914
19332
|
meta?: unknown;
|
|
18915
19333
|
userFacingMessage?: string | null;
|
|
@@ -18918,6 +19336,7 @@ type $OpenApiTs = {
|
|
|
18918
19336
|
code?: string | null;
|
|
18919
19337
|
errorMessage?: string | null;
|
|
18920
19338
|
isTransient?: boolean | null;
|
|
19339
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18921
19340
|
httpStatus?: number | null;
|
|
18922
19341
|
meta?: unknown;
|
|
18923
19342
|
userFacingMessage?: string | null;
|
|
@@ -18926,6 +19345,7 @@ type $OpenApiTs = {
|
|
|
18926
19345
|
code?: string | null;
|
|
18927
19346
|
errorMessage?: string | null;
|
|
18928
19347
|
isTransient?: boolean | null;
|
|
19348
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18929
19349
|
httpStatus?: number | null;
|
|
18930
19350
|
meta?: unknown;
|
|
18931
19351
|
userFacingMessage?: string | null;
|
|
@@ -18934,6 +19354,7 @@ type $OpenApiTs = {
|
|
|
18934
19354
|
code?: string | null;
|
|
18935
19355
|
errorMessage?: string | null;
|
|
18936
19356
|
isTransient?: boolean | null;
|
|
19357
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18937
19358
|
httpStatus?: number | null;
|
|
18938
19359
|
meta?: unknown;
|
|
18939
19360
|
userFacingMessage?: string | null;
|
|
@@ -18942,6 +19363,7 @@ type $OpenApiTs = {
|
|
|
18942
19363
|
code?: string | null;
|
|
18943
19364
|
errorMessage?: string | null;
|
|
18944
19365
|
isTransient?: boolean | null;
|
|
19366
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18945
19367
|
httpStatus?: number | null;
|
|
18946
19368
|
meta?: unknown;
|
|
18947
19369
|
userFacingMessage?: string | null;
|
|
@@ -18950,6 +19372,7 @@ type $OpenApiTs = {
|
|
|
18950
19372
|
code?: string | null;
|
|
18951
19373
|
errorMessage?: string | null;
|
|
18952
19374
|
isTransient?: boolean | null;
|
|
19375
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18953
19376
|
httpStatus?: number | null;
|
|
18954
19377
|
meta?: unknown;
|
|
18955
19378
|
userFacingMessage?: string | null;
|
|
@@ -18958,6 +19381,7 @@ type $OpenApiTs = {
|
|
|
18958
19381
|
code?: string | null;
|
|
18959
19382
|
errorMessage?: string | null;
|
|
18960
19383
|
isTransient?: boolean | null;
|
|
19384
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18961
19385
|
httpStatus?: number | null;
|
|
18962
19386
|
meta?: unknown;
|
|
18963
19387
|
userFacingMessage?: string | null;
|
|
@@ -18966,6 +19390,7 @@ type $OpenApiTs = {
|
|
|
18966
19390
|
code?: string | null;
|
|
18967
19391
|
errorMessage?: string | null;
|
|
18968
19392
|
isTransient?: boolean | null;
|
|
19393
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18969
19394
|
httpStatus?: number | null;
|
|
18970
19395
|
meta?: unknown;
|
|
18971
19396
|
userFacingMessage?: string | null;
|
|
@@ -18974,6 +19399,7 @@ type $OpenApiTs = {
|
|
|
18974
19399
|
code?: string | null;
|
|
18975
19400
|
errorMessage?: string | null;
|
|
18976
19401
|
isTransient?: boolean | null;
|
|
19402
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18977
19403
|
httpStatus?: number | null;
|
|
18978
19404
|
meta?: unknown;
|
|
18979
19405
|
userFacingMessage?: string | null;
|
|
@@ -18982,6 +19408,7 @@ type $OpenApiTs = {
|
|
|
18982
19408
|
code?: string | null;
|
|
18983
19409
|
errorMessage?: string | null;
|
|
18984
19410
|
isTransient?: boolean | null;
|
|
19411
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18985
19412
|
httpStatus?: number | null;
|
|
18986
19413
|
meta?: unknown;
|
|
18987
19414
|
userFacingMessage?: string | null;
|
|
@@ -18990,6 +19417,7 @@ type $OpenApiTs = {
|
|
|
18990
19417
|
code?: string | null;
|
|
18991
19418
|
errorMessage?: string | null;
|
|
18992
19419
|
isTransient?: boolean | null;
|
|
19420
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
18993
19421
|
httpStatus?: number | null;
|
|
18994
19422
|
meta?: unknown;
|
|
18995
19423
|
userFacingMessage?: string | null;
|
|
@@ -18998,6 +19426,7 @@ type $OpenApiTs = {
|
|
|
18998
19426
|
code?: string | null;
|
|
18999
19427
|
errorMessage?: string | null;
|
|
19000
19428
|
isTransient?: boolean | null;
|
|
19429
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
19001
19430
|
httpStatus?: number | null;
|
|
19002
19431
|
meta?: unknown;
|
|
19003
19432
|
userFacingMessage?: string | null;
|
|
@@ -19028,6 +19457,7 @@ type $OpenApiTs = {
|
|
|
19028
19457
|
TIKTOK?: {
|
|
19029
19458
|
id?: string | null;
|
|
19030
19459
|
shareId?: string | null;
|
|
19460
|
+
requestId?: string | null;
|
|
19031
19461
|
permalink?: string | null;
|
|
19032
19462
|
status?: string | null;
|
|
19033
19463
|
} | null;
|
|
@@ -19596,6 +20026,29 @@ type $OpenApiTs = {
|
|
|
19596
20026
|
text?: string | null;
|
|
19597
20027
|
likesCount: number;
|
|
19598
20028
|
repliesCount: number;
|
|
20029
|
+
platformData?: {
|
|
20030
|
+
canDelete?: boolean | null;
|
|
20031
|
+
canHide?: boolean | null;
|
|
20032
|
+
canLike?: boolean | null;
|
|
20033
|
+
canModerate?: boolean | null;
|
|
20034
|
+
hidden?: boolean | null;
|
|
20035
|
+
likedByMe?: boolean | null;
|
|
20036
|
+
reactionsCount?: number | null;
|
|
20037
|
+
reactionType?: 'LIKE' | 'LOVE' | 'WOW' | 'HAHA' | 'SAD' | 'ANGRY' | null;
|
|
20038
|
+
owner?: boolean | null;
|
|
20039
|
+
hideStatus?: string | null;
|
|
20040
|
+
moderationStatus?: string | null;
|
|
20041
|
+
approvalStatus?: string | null;
|
|
20042
|
+
status?: string | null;
|
|
20043
|
+
attachmentType?: string | null;
|
|
20044
|
+
attachmentUrl?: string | null;
|
|
20045
|
+
cid?: string | null;
|
|
20046
|
+
origin?: 'platform' | 'bundle' | null;
|
|
20047
|
+
bundleCommentId?: string | null;
|
|
20048
|
+
displayState?: 'active' | 'thread_deleted' | 'platform_missing' | null;
|
|
20049
|
+
disabledReason?: string | null;
|
|
20050
|
+
[key: string]: (unknown | boolean | number | string | null) | undefined;
|
|
20051
|
+
};
|
|
19599
20052
|
publishedAt?: string | null;
|
|
19600
20053
|
createdAt: string | null;
|
|
19601
20054
|
updatedAt: string | null;
|
|
@@ -19653,6 +20106,112 @@ type $OpenApiTs = {
|
|
|
19653
20106
|
};
|
|
19654
20107
|
};
|
|
19655
20108
|
};
|
|
20109
|
+
'/api/v1/comment/import/comments/{commentId}/action': {
|
|
20110
|
+
post: {
|
|
20111
|
+
req: CommentImportActionFetchedCommentData;
|
|
20112
|
+
res: {
|
|
20113
|
+
/**
|
|
20114
|
+
* 200
|
|
20115
|
+
*/
|
|
20116
|
+
200: {
|
|
20117
|
+
success: boolean;
|
|
20118
|
+
item: {
|
|
20119
|
+
id: string;
|
|
20120
|
+
teamId: string;
|
|
20121
|
+
organizationId?: string | null;
|
|
20122
|
+
postId: string;
|
|
20123
|
+
socialAccountId: string;
|
|
20124
|
+
importId: string;
|
|
20125
|
+
platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
|
|
20126
|
+
externalId: string;
|
|
20127
|
+
externalParentId?: string | null;
|
|
20128
|
+
externalPostId?: string | null;
|
|
20129
|
+
authorName?: string | null;
|
|
20130
|
+
authorExternalId?: string | null;
|
|
20131
|
+
authorProfileUrl?: string | null;
|
|
20132
|
+
authorAvatarUrl?: string | null;
|
|
20133
|
+
text?: string | null;
|
|
20134
|
+
likesCount: number;
|
|
20135
|
+
repliesCount: number;
|
|
20136
|
+
platformData?: {
|
|
20137
|
+
canDelete?: boolean | null;
|
|
20138
|
+
canHide?: boolean | null;
|
|
20139
|
+
canLike?: boolean | null;
|
|
20140
|
+
canModerate?: boolean | null;
|
|
20141
|
+
hidden?: boolean | null;
|
|
20142
|
+
likedByMe?: boolean | null;
|
|
20143
|
+
reactionsCount?: number | null;
|
|
20144
|
+
reactionType?: 'LIKE' | 'LOVE' | 'WOW' | 'HAHA' | 'SAD' | 'ANGRY' | null;
|
|
20145
|
+
owner?: boolean | null;
|
|
20146
|
+
hideStatus?: string | null;
|
|
20147
|
+
moderationStatus?: string | null;
|
|
20148
|
+
approvalStatus?: string | null;
|
|
20149
|
+
status?: string | null;
|
|
20150
|
+
attachmentType?: string | null;
|
|
20151
|
+
attachmentUrl?: string | null;
|
|
20152
|
+
cid?: string | null;
|
|
20153
|
+
origin?: 'platform' | 'bundle' | null;
|
|
20154
|
+
bundleCommentId?: string | null;
|
|
20155
|
+
displayState?: 'active' | 'thread_deleted' | 'platform_missing' | null;
|
|
20156
|
+
disabledReason?: string | null;
|
|
20157
|
+
[key: string]: (unknown | boolean | number | string | null) | undefined;
|
|
20158
|
+
};
|
|
20159
|
+
publishedAt?: string | null;
|
|
20160
|
+
createdAt: string | null;
|
|
20161
|
+
updatedAt: string | null;
|
|
20162
|
+
deletedAt?: string | null;
|
|
20163
|
+
};
|
|
20164
|
+
};
|
|
20165
|
+
/**
|
|
20166
|
+
* 400
|
|
20167
|
+
*/
|
|
20168
|
+
400: {
|
|
20169
|
+
statusCode?: number | null;
|
|
20170
|
+
message: string;
|
|
20171
|
+
issues?: Array<{
|
|
20172
|
+
code?: 'invalid_type' | 'invalid_literal' | 'custom' | 'invalid_union' | 'invalid_union_discriminator' | 'invalid_enum_value' | 'unrecognized_keys' | 'invalid_arguments' | 'invalid_return_type' | 'invalid_date' | 'invalid_string' | 'too_small' | 'too_big' | 'invalid_intersection_types' | 'not_multiple_of' | 'not_finite' | null;
|
|
20173
|
+
message: string;
|
|
20174
|
+
path?: Array<(string | number)> | null;
|
|
20175
|
+
}> | null;
|
|
20176
|
+
};
|
|
20177
|
+
/**
|
|
20178
|
+
* 401
|
|
20179
|
+
*/
|
|
20180
|
+
401: {
|
|
20181
|
+
statusCode?: number | null;
|
|
20182
|
+
message: string;
|
|
20183
|
+
};
|
|
20184
|
+
/**
|
|
20185
|
+
* 403
|
|
20186
|
+
*/
|
|
20187
|
+
403: {
|
|
20188
|
+
statusCode?: number | null;
|
|
20189
|
+
message: string;
|
|
20190
|
+
};
|
|
20191
|
+
/**
|
|
20192
|
+
* 404
|
|
20193
|
+
*/
|
|
20194
|
+
404: {
|
|
20195
|
+
statusCode?: number | null;
|
|
20196
|
+
message: string;
|
|
20197
|
+
};
|
|
20198
|
+
/**
|
|
20199
|
+
* 429
|
|
20200
|
+
*/
|
|
20201
|
+
429: {
|
|
20202
|
+
statusCode?: number | null;
|
|
20203
|
+
message: string;
|
|
20204
|
+
};
|
|
20205
|
+
/**
|
|
20206
|
+
* 500
|
|
20207
|
+
*/
|
|
20208
|
+
500: {
|
|
20209
|
+
statusCode?: number | null;
|
|
20210
|
+
message: string;
|
|
20211
|
+
};
|
|
20212
|
+
};
|
|
20213
|
+
};
|
|
20214
|
+
};
|
|
19656
20215
|
'/api/v1/comment/import/{importId}': {
|
|
19657
20216
|
get: {
|
|
19658
20217
|
req: CommentImportGetByIdData;
|
|
@@ -19798,6 +20357,7 @@ type $OpenApiTs = {
|
|
|
19798
20357
|
code?: string | null;
|
|
19799
20358
|
errorMessage?: string | null;
|
|
19800
20359
|
isTransient?: boolean | null;
|
|
20360
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
19801
20361
|
httpStatus?: number | null;
|
|
19802
20362
|
meta?: unknown;
|
|
19803
20363
|
userFacingMessage?: string | null;
|
|
@@ -19806,6 +20366,7 @@ type $OpenApiTs = {
|
|
|
19806
20366
|
code?: string | null;
|
|
19807
20367
|
errorMessage?: string | null;
|
|
19808
20368
|
isTransient?: boolean | null;
|
|
20369
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
19809
20370
|
httpStatus?: number | null;
|
|
19810
20371
|
meta?: unknown;
|
|
19811
20372
|
userFacingMessage?: string | null;
|
|
@@ -19814,6 +20375,7 @@ type $OpenApiTs = {
|
|
|
19814
20375
|
code?: string | null;
|
|
19815
20376
|
errorMessage?: string | null;
|
|
19816
20377
|
isTransient?: boolean | null;
|
|
20378
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
19817
20379
|
httpStatus?: number | null;
|
|
19818
20380
|
meta?: unknown;
|
|
19819
20381
|
userFacingMessage?: string | null;
|
|
@@ -19822,6 +20384,7 @@ type $OpenApiTs = {
|
|
|
19822
20384
|
code?: string | null;
|
|
19823
20385
|
errorMessage?: string | null;
|
|
19824
20386
|
isTransient?: boolean | null;
|
|
20387
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
19825
20388
|
httpStatus?: number | null;
|
|
19826
20389
|
meta?: unknown;
|
|
19827
20390
|
userFacingMessage?: string | null;
|
|
@@ -19830,6 +20393,7 @@ type $OpenApiTs = {
|
|
|
19830
20393
|
code?: string | null;
|
|
19831
20394
|
errorMessage?: string | null;
|
|
19832
20395
|
isTransient?: boolean | null;
|
|
20396
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
19833
20397
|
httpStatus?: number | null;
|
|
19834
20398
|
meta?: unknown;
|
|
19835
20399
|
userFacingMessage?: string | null;
|
|
@@ -19838,6 +20402,7 @@ type $OpenApiTs = {
|
|
|
19838
20402
|
code?: string | null;
|
|
19839
20403
|
errorMessage?: string | null;
|
|
19840
20404
|
isTransient?: boolean | null;
|
|
20405
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
19841
20406
|
httpStatus?: number | null;
|
|
19842
20407
|
meta?: unknown;
|
|
19843
20408
|
userFacingMessage?: string | null;
|
|
@@ -19846,6 +20411,7 @@ type $OpenApiTs = {
|
|
|
19846
20411
|
code?: string | null;
|
|
19847
20412
|
errorMessage?: string | null;
|
|
19848
20413
|
isTransient?: boolean | null;
|
|
20414
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
19849
20415
|
httpStatus?: number | null;
|
|
19850
20416
|
meta?: unknown;
|
|
19851
20417
|
userFacingMessage?: string | null;
|
|
@@ -19854,6 +20420,7 @@ type $OpenApiTs = {
|
|
|
19854
20420
|
code?: string | null;
|
|
19855
20421
|
errorMessage?: string | null;
|
|
19856
20422
|
isTransient?: boolean | null;
|
|
20423
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
19857
20424
|
httpStatus?: number | null;
|
|
19858
20425
|
meta?: unknown;
|
|
19859
20426
|
userFacingMessage?: string | null;
|
|
@@ -19862,6 +20429,7 @@ type $OpenApiTs = {
|
|
|
19862
20429
|
code?: string | null;
|
|
19863
20430
|
errorMessage?: string | null;
|
|
19864
20431
|
isTransient?: boolean | null;
|
|
20432
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
19865
20433
|
httpStatus?: number | null;
|
|
19866
20434
|
meta?: unknown;
|
|
19867
20435
|
userFacingMessage?: string | null;
|
|
@@ -19870,6 +20438,7 @@ type $OpenApiTs = {
|
|
|
19870
20438
|
code?: string | null;
|
|
19871
20439
|
errorMessage?: string | null;
|
|
19872
20440
|
isTransient?: boolean | null;
|
|
20441
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
19873
20442
|
httpStatus?: number | null;
|
|
19874
20443
|
meta?: unknown;
|
|
19875
20444
|
userFacingMessage?: string | null;
|
|
@@ -19878,6 +20447,7 @@ type $OpenApiTs = {
|
|
|
19878
20447
|
code?: string | null;
|
|
19879
20448
|
errorMessage?: string | null;
|
|
19880
20449
|
isTransient?: boolean | null;
|
|
20450
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
19881
20451
|
httpStatus?: number | null;
|
|
19882
20452
|
meta?: unknown;
|
|
19883
20453
|
userFacingMessage?: string | null;
|
|
@@ -20063,6 +20633,7 @@ type $OpenApiTs = {
|
|
|
20063
20633
|
code?: string | null;
|
|
20064
20634
|
errorMessage?: string | null;
|
|
20065
20635
|
isTransient?: boolean | null;
|
|
20636
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20066
20637
|
httpStatus?: number | null;
|
|
20067
20638
|
meta?: unknown;
|
|
20068
20639
|
userFacingMessage?: string | null;
|
|
@@ -20071,6 +20642,7 @@ type $OpenApiTs = {
|
|
|
20071
20642
|
code?: string | null;
|
|
20072
20643
|
errorMessage?: string | null;
|
|
20073
20644
|
isTransient?: boolean | null;
|
|
20645
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20074
20646
|
httpStatus?: number | null;
|
|
20075
20647
|
meta?: unknown;
|
|
20076
20648
|
userFacingMessage?: string | null;
|
|
@@ -20079,6 +20651,7 @@ type $OpenApiTs = {
|
|
|
20079
20651
|
code?: string | null;
|
|
20080
20652
|
errorMessage?: string | null;
|
|
20081
20653
|
isTransient?: boolean | null;
|
|
20654
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20082
20655
|
httpStatus?: number | null;
|
|
20083
20656
|
meta?: unknown;
|
|
20084
20657
|
userFacingMessage?: string | null;
|
|
@@ -20087,6 +20660,7 @@ type $OpenApiTs = {
|
|
|
20087
20660
|
code?: string | null;
|
|
20088
20661
|
errorMessage?: string | null;
|
|
20089
20662
|
isTransient?: boolean | null;
|
|
20663
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20090
20664
|
httpStatus?: number | null;
|
|
20091
20665
|
meta?: unknown;
|
|
20092
20666
|
userFacingMessage?: string | null;
|
|
@@ -20095,6 +20669,7 @@ type $OpenApiTs = {
|
|
|
20095
20669
|
code?: string | null;
|
|
20096
20670
|
errorMessage?: string | null;
|
|
20097
20671
|
isTransient?: boolean | null;
|
|
20672
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20098
20673
|
httpStatus?: number | null;
|
|
20099
20674
|
meta?: unknown;
|
|
20100
20675
|
userFacingMessage?: string | null;
|
|
@@ -20103,6 +20678,7 @@ type $OpenApiTs = {
|
|
|
20103
20678
|
code?: string | null;
|
|
20104
20679
|
errorMessage?: string | null;
|
|
20105
20680
|
isTransient?: boolean | null;
|
|
20681
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20106
20682
|
httpStatus?: number | null;
|
|
20107
20683
|
meta?: unknown;
|
|
20108
20684
|
userFacingMessage?: string | null;
|
|
@@ -20111,6 +20687,7 @@ type $OpenApiTs = {
|
|
|
20111
20687
|
code?: string | null;
|
|
20112
20688
|
errorMessage?: string | null;
|
|
20113
20689
|
isTransient?: boolean | null;
|
|
20690
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20114
20691
|
httpStatus?: number | null;
|
|
20115
20692
|
meta?: unknown;
|
|
20116
20693
|
userFacingMessage?: string | null;
|
|
@@ -20119,6 +20696,7 @@ type $OpenApiTs = {
|
|
|
20119
20696
|
code?: string | null;
|
|
20120
20697
|
errorMessage?: string | null;
|
|
20121
20698
|
isTransient?: boolean | null;
|
|
20699
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20122
20700
|
httpStatus?: number | null;
|
|
20123
20701
|
meta?: unknown;
|
|
20124
20702
|
userFacingMessage?: string | null;
|
|
@@ -20127,6 +20705,7 @@ type $OpenApiTs = {
|
|
|
20127
20705
|
code?: string | null;
|
|
20128
20706
|
errorMessage?: string | null;
|
|
20129
20707
|
isTransient?: boolean | null;
|
|
20708
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20130
20709
|
httpStatus?: number | null;
|
|
20131
20710
|
meta?: unknown;
|
|
20132
20711
|
userFacingMessage?: string | null;
|
|
@@ -20135,6 +20714,7 @@ type $OpenApiTs = {
|
|
|
20135
20714
|
code?: string | null;
|
|
20136
20715
|
errorMessage?: string | null;
|
|
20137
20716
|
isTransient?: boolean | null;
|
|
20717
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20138
20718
|
httpStatus?: number | null;
|
|
20139
20719
|
meta?: unknown;
|
|
20140
20720
|
userFacingMessage?: string | null;
|
|
@@ -20143,6 +20723,7 @@ type $OpenApiTs = {
|
|
|
20143
20723
|
code?: string | null;
|
|
20144
20724
|
errorMessage?: string | null;
|
|
20145
20725
|
isTransient?: boolean | null;
|
|
20726
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20146
20727
|
httpStatus?: number | null;
|
|
20147
20728
|
meta?: unknown;
|
|
20148
20729
|
userFacingMessage?: string | null;
|
|
@@ -20328,6 +20909,7 @@ type $OpenApiTs = {
|
|
|
20328
20909
|
code?: string | null;
|
|
20329
20910
|
errorMessage?: string | null;
|
|
20330
20911
|
isTransient?: boolean | null;
|
|
20912
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20331
20913
|
httpStatus?: number | null;
|
|
20332
20914
|
meta?: unknown;
|
|
20333
20915
|
userFacingMessage?: string | null;
|
|
@@ -20336,6 +20918,7 @@ type $OpenApiTs = {
|
|
|
20336
20918
|
code?: string | null;
|
|
20337
20919
|
errorMessage?: string | null;
|
|
20338
20920
|
isTransient?: boolean | null;
|
|
20921
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20339
20922
|
httpStatus?: number | null;
|
|
20340
20923
|
meta?: unknown;
|
|
20341
20924
|
userFacingMessage?: string | null;
|
|
@@ -20344,6 +20927,7 @@ type $OpenApiTs = {
|
|
|
20344
20927
|
code?: string | null;
|
|
20345
20928
|
errorMessage?: string | null;
|
|
20346
20929
|
isTransient?: boolean | null;
|
|
20930
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20347
20931
|
httpStatus?: number | null;
|
|
20348
20932
|
meta?: unknown;
|
|
20349
20933
|
userFacingMessage?: string | null;
|
|
@@ -20352,6 +20936,7 @@ type $OpenApiTs = {
|
|
|
20352
20936
|
code?: string | null;
|
|
20353
20937
|
errorMessage?: string | null;
|
|
20354
20938
|
isTransient?: boolean | null;
|
|
20939
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20355
20940
|
httpStatus?: number | null;
|
|
20356
20941
|
meta?: unknown;
|
|
20357
20942
|
userFacingMessage?: string | null;
|
|
@@ -20360,6 +20945,7 @@ type $OpenApiTs = {
|
|
|
20360
20945
|
code?: string | null;
|
|
20361
20946
|
errorMessage?: string | null;
|
|
20362
20947
|
isTransient?: boolean | null;
|
|
20948
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20363
20949
|
httpStatus?: number | null;
|
|
20364
20950
|
meta?: unknown;
|
|
20365
20951
|
userFacingMessage?: string | null;
|
|
@@ -20368,6 +20954,7 @@ type $OpenApiTs = {
|
|
|
20368
20954
|
code?: string | null;
|
|
20369
20955
|
errorMessage?: string | null;
|
|
20370
20956
|
isTransient?: boolean | null;
|
|
20957
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20371
20958
|
httpStatus?: number | null;
|
|
20372
20959
|
meta?: unknown;
|
|
20373
20960
|
userFacingMessage?: string | null;
|
|
@@ -20376,6 +20963,7 @@ type $OpenApiTs = {
|
|
|
20376
20963
|
code?: string | null;
|
|
20377
20964
|
errorMessage?: string | null;
|
|
20378
20965
|
isTransient?: boolean | null;
|
|
20966
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20379
20967
|
httpStatus?: number | null;
|
|
20380
20968
|
meta?: unknown;
|
|
20381
20969
|
userFacingMessage?: string | null;
|
|
@@ -20384,6 +20972,7 @@ type $OpenApiTs = {
|
|
|
20384
20972
|
code?: string | null;
|
|
20385
20973
|
errorMessage?: string | null;
|
|
20386
20974
|
isTransient?: boolean | null;
|
|
20975
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20387
20976
|
httpStatus?: number | null;
|
|
20388
20977
|
meta?: unknown;
|
|
20389
20978
|
userFacingMessage?: string | null;
|
|
@@ -20392,6 +20981,7 @@ type $OpenApiTs = {
|
|
|
20392
20981
|
code?: string | null;
|
|
20393
20982
|
errorMessage?: string | null;
|
|
20394
20983
|
isTransient?: boolean | null;
|
|
20984
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20395
20985
|
httpStatus?: number | null;
|
|
20396
20986
|
meta?: unknown;
|
|
20397
20987
|
userFacingMessage?: string | null;
|
|
@@ -20400,6 +20990,7 @@ type $OpenApiTs = {
|
|
|
20400
20990
|
code?: string | null;
|
|
20401
20991
|
errorMessage?: string | null;
|
|
20402
20992
|
isTransient?: boolean | null;
|
|
20993
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20403
20994
|
httpStatus?: number | null;
|
|
20404
20995
|
meta?: unknown;
|
|
20405
20996
|
userFacingMessage?: string | null;
|
|
@@ -20408,6 +20999,7 @@ type $OpenApiTs = {
|
|
|
20408
20999
|
code?: string | null;
|
|
20409
21000
|
errorMessage?: string | null;
|
|
20410
21001
|
isTransient?: boolean | null;
|
|
21002
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20411
21003
|
httpStatus?: number | null;
|
|
20412
21004
|
meta?: unknown;
|
|
20413
21005
|
userFacingMessage?: string | null;
|
|
@@ -20596,6 +21188,7 @@ type $OpenApiTs = {
|
|
|
20596
21188
|
code?: string | null;
|
|
20597
21189
|
errorMessage?: string | null;
|
|
20598
21190
|
isTransient?: boolean | null;
|
|
21191
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20599
21192
|
httpStatus?: number | null;
|
|
20600
21193
|
meta?: unknown;
|
|
20601
21194
|
userFacingMessage?: string | null;
|
|
@@ -20604,6 +21197,7 @@ type $OpenApiTs = {
|
|
|
20604
21197
|
code?: string | null;
|
|
20605
21198
|
errorMessage?: string | null;
|
|
20606
21199
|
isTransient?: boolean | null;
|
|
21200
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20607
21201
|
httpStatus?: number | null;
|
|
20608
21202
|
meta?: unknown;
|
|
20609
21203
|
userFacingMessage?: string | null;
|
|
@@ -20612,6 +21206,7 @@ type $OpenApiTs = {
|
|
|
20612
21206
|
code?: string | null;
|
|
20613
21207
|
errorMessage?: string | null;
|
|
20614
21208
|
isTransient?: boolean | null;
|
|
21209
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20615
21210
|
httpStatus?: number | null;
|
|
20616
21211
|
meta?: unknown;
|
|
20617
21212
|
userFacingMessage?: string | null;
|
|
@@ -20620,6 +21215,7 @@ type $OpenApiTs = {
|
|
|
20620
21215
|
code?: string | null;
|
|
20621
21216
|
errorMessage?: string | null;
|
|
20622
21217
|
isTransient?: boolean | null;
|
|
21218
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20623
21219
|
httpStatus?: number | null;
|
|
20624
21220
|
meta?: unknown;
|
|
20625
21221
|
userFacingMessage?: string | null;
|
|
@@ -20628,6 +21224,7 @@ type $OpenApiTs = {
|
|
|
20628
21224
|
code?: string | null;
|
|
20629
21225
|
errorMessage?: string | null;
|
|
20630
21226
|
isTransient?: boolean | null;
|
|
21227
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20631
21228
|
httpStatus?: number | null;
|
|
20632
21229
|
meta?: unknown;
|
|
20633
21230
|
userFacingMessage?: string | null;
|
|
@@ -20636,6 +21233,7 @@ type $OpenApiTs = {
|
|
|
20636
21233
|
code?: string | null;
|
|
20637
21234
|
errorMessage?: string | null;
|
|
20638
21235
|
isTransient?: boolean | null;
|
|
21236
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20639
21237
|
httpStatus?: number | null;
|
|
20640
21238
|
meta?: unknown;
|
|
20641
21239
|
userFacingMessage?: string | null;
|
|
@@ -20644,6 +21242,7 @@ type $OpenApiTs = {
|
|
|
20644
21242
|
code?: string | null;
|
|
20645
21243
|
errorMessage?: string | null;
|
|
20646
21244
|
isTransient?: boolean | null;
|
|
21245
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20647
21246
|
httpStatus?: number | null;
|
|
20648
21247
|
meta?: unknown;
|
|
20649
21248
|
userFacingMessage?: string | null;
|
|
@@ -20652,6 +21251,7 @@ type $OpenApiTs = {
|
|
|
20652
21251
|
code?: string | null;
|
|
20653
21252
|
errorMessage?: string | null;
|
|
20654
21253
|
isTransient?: boolean | null;
|
|
21254
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20655
21255
|
httpStatus?: number | null;
|
|
20656
21256
|
meta?: unknown;
|
|
20657
21257
|
userFacingMessage?: string | null;
|
|
@@ -20660,6 +21260,7 @@ type $OpenApiTs = {
|
|
|
20660
21260
|
code?: string | null;
|
|
20661
21261
|
errorMessage?: string | null;
|
|
20662
21262
|
isTransient?: boolean | null;
|
|
21263
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20663
21264
|
httpStatus?: number | null;
|
|
20664
21265
|
meta?: unknown;
|
|
20665
21266
|
userFacingMessage?: string | null;
|
|
@@ -20668,6 +21269,7 @@ type $OpenApiTs = {
|
|
|
20668
21269
|
code?: string | null;
|
|
20669
21270
|
errorMessage?: string | null;
|
|
20670
21271
|
isTransient?: boolean | null;
|
|
21272
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20671
21273
|
httpStatus?: number | null;
|
|
20672
21274
|
meta?: unknown;
|
|
20673
21275
|
userFacingMessage?: string | null;
|
|
@@ -20676,6 +21278,7 @@ type $OpenApiTs = {
|
|
|
20676
21278
|
code?: string | null;
|
|
20677
21279
|
errorMessage?: string | null;
|
|
20678
21280
|
isTransient?: boolean | null;
|
|
21281
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20679
21282
|
httpStatus?: number | null;
|
|
20680
21283
|
meta?: unknown;
|
|
20681
21284
|
userFacingMessage?: string | null;
|
|
@@ -20863,6 +21466,7 @@ type $OpenApiTs = {
|
|
|
20863
21466
|
code?: string | null;
|
|
20864
21467
|
errorMessage?: string | null;
|
|
20865
21468
|
isTransient?: boolean | null;
|
|
21469
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20866
21470
|
httpStatus?: number | null;
|
|
20867
21471
|
meta?: unknown;
|
|
20868
21472
|
userFacingMessage?: string | null;
|
|
@@ -20871,6 +21475,7 @@ type $OpenApiTs = {
|
|
|
20871
21475
|
code?: string | null;
|
|
20872
21476
|
errorMessage?: string | null;
|
|
20873
21477
|
isTransient?: boolean | null;
|
|
21478
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20874
21479
|
httpStatus?: number | null;
|
|
20875
21480
|
meta?: unknown;
|
|
20876
21481
|
userFacingMessage?: string | null;
|
|
@@ -20879,6 +21484,7 @@ type $OpenApiTs = {
|
|
|
20879
21484
|
code?: string | null;
|
|
20880
21485
|
errorMessage?: string | null;
|
|
20881
21486
|
isTransient?: boolean | null;
|
|
21487
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20882
21488
|
httpStatus?: number | null;
|
|
20883
21489
|
meta?: unknown;
|
|
20884
21490
|
userFacingMessage?: string | null;
|
|
@@ -20887,6 +21493,7 @@ type $OpenApiTs = {
|
|
|
20887
21493
|
code?: string | null;
|
|
20888
21494
|
errorMessage?: string | null;
|
|
20889
21495
|
isTransient?: boolean | null;
|
|
21496
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20890
21497
|
httpStatus?: number | null;
|
|
20891
21498
|
meta?: unknown;
|
|
20892
21499
|
userFacingMessage?: string | null;
|
|
@@ -20895,6 +21502,7 @@ type $OpenApiTs = {
|
|
|
20895
21502
|
code?: string | null;
|
|
20896
21503
|
errorMessage?: string | null;
|
|
20897
21504
|
isTransient?: boolean | null;
|
|
21505
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20898
21506
|
httpStatus?: number | null;
|
|
20899
21507
|
meta?: unknown;
|
|
20900
21508
|
userFacingMessage?: string | null;
|
|
@@ -20903,6 +21511,7 @@ type $OpenApiTs = {
|
|
|
20903
21511
|
code?: string | null;
|
|
20904
21512
|
errorMessage?: string | null;
|
|
20905
21513
|
isTransient?: boolean | null;
|
|
21514
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20906
21515
|
httpStatus?: number | null;
|
|
20907
21516
|
meta?: unknown;
|
|
20908
21517
|
userFacingMessage?: string | null;
|
|
@@ -20911,6 +21520,7 @@ type $OpenApiTs = {
|
|
|
20911
21520
|
code?: string | null;
|
|
20912
21521
|
errorMessage?: string | null;
|
|
20913
21522
|
isTransient?: boolean | null;
|
|
21523
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20914
21524
|
httpStatus?: number | null;
|
|
20915
21525
|
meta?: unknown;
|
|
20916
21526
|
userFacingMessage?: string | null;
|
|
@@ -20919,6 +21529,7 @@ type $OpenApiTs = {
|
|
|
20919
21529
|
code?: string | null;
|
|
20920
21530
|
errorMessage?: string | null;
|
|
20921
21531
|
isTransient?: boolean | null;
|
|
21532
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20922
21533
|
httpStatus?: number | null;
|
|
20923
21534
|
meta?: unknown;
|
|
20924
21535
|
userFacingMessage?: string | null;
|
|
@@ -20927,6 +21538,7 @@ type $OpenApiTs = {
|
|
|
20927
21538
|
code?: string | null;
|
|
20928
21539
|
errorMessage?: string | null;
|
|
20929
21540
|
isTransient?: boolean | null;
|
|
21541
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20930
21542
|
httpStatus?: number | null;
|
|
20931
21543
|
meta?: unknown;
|
|
20932
21544
|
userFacingMessage?: string | null;
|
|
@@ -20935,6 +21547,7 @@ type $OpenApiTs = {
|
|
|
20935
21547
|
code?: string | null;
|
|
20936
21548
|
errorMessage?: string | null;
|
|
20937
21549
|
isTransient?: boolean | null;
|
|
21550
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20938
21551
|
httpStatus?: number | null;
|
|
20939
21552
|
meta?: unknown;
|
|
20940
21553
|
userFacingMessage?: string | null;
|
|
@@ -20943,6 +21556,7 @@ type $OpenApiTs = {
|
|
|
20943
21556
|
code?: string | null;
|
|
20944
21557
|
errorMessage?: string | null;
|
|
20945
21558
|
isTransient?: boolean | null;
|
|
21559
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
20946
21560
|
httpStatus?: number | null;
|
|
20947
21561
|
meta?: unknown;
|
|
20948
21562
|
userFacingMessage?: string | null;
|
|
@@ -24903,6 +25517,80 @@ type $OpenApiTs = {
|
|
|
24903
25517
|
};
|
|
24904
25518
|
};
|
|
24905
25519
|
};
|
|
25520
|
+
'/api/v1/misc/facebook/token-debug': {
|
|
25521
|
+
get: {
|
|
25522
|
+
req: MiscFacebookGetTokenDebugData;
|
|
25523
|
+
res: {
|
|
25524
|
+
/**
|
|
25525
|
+
* 200
|
|
25526
|
+
*/
|
|
25527
|
+
200: {
|
|
25528
|
+
type?: 'USER' | 'PAGE';
|
|
25529
|
+
application?: string;
|
|
25530
|
+
data_access_expires_at?: number;
|
|
25531
|
+
is_valid: boolean;
|
|
25532
|
+
issued_at?: number;
|
|
25533
|
+
scopes: Array<(string)>;
|
|
25534
|
+
granular_scopes: Array<{
|
|
25535
|
+
scope: string;
|
|
25536
|
+
target_ids?: Array<(string)>;
|
|
25537
|
+
}>;
|
|
25538
|
+
error?: {
|
|
25539
|
+
code: number;
|
|
25540
|
+
message: string;
|
|
25541
|
+
subcode?: number;
|
|
25542
|
+
};
|
|
25543
|
+
};
|
|
25544
|
+
/**
|
|
25545
|
+
* 400
|
|
25546
|
+
*/
|
|
25547
|
+
400: {
|
|
25548
|
+
statusCode?: number | null;
|
|
25549
|
+
message: string;
|
|
25550
|
+
issues?: Array<{
|
|
25551
|
+
code?: 'invalid_type' | 'invalid_literal' | 'custom' | 'invalid_union' | 'invalid_union_discriminator' | 'invalid_enum_value' | 'unrecognized_keys' | 'invalid_arguments' | 'invalid_return_type' | 'invalid_date' | 'invalid_string' | 'too_small' | 'too_big' | 'invalid_intersection_types' | 'not_multiple_of' | 'not_finite' | null;
|
|
25552
|
+
message: string;
|
|
25553
|
+
path?: Array<(string | number)> | null;
|
|
25554
|
+
}> | null;
|
|
25555
|
+
};
|
|
25556
|
+
/**
|
|
25557
|
+
* 401
|
|
25558
|
+
*/
|
|
25559
|
+
401: {
|
|
25560
|
+
statusCode?: number | null;
|
|
25561
|
+
message: string;
|
|
25562
|
+
};
|
|
25563
|
+
/**
|
|
25564
|
+
* 403
|
|
25565
|
+
*/
|
|
25566
|
+
403: {
|
|
25567
|
+
statusCode?: number | null;
|
|
25568
|
+
message: string;
|
|
25569
|
+
};
|
|
25570
|
+
/**
|
|
25571
|
+
* 404
|
|
25572
|
+
*/
|
|
25573
|
+
404: {
|
|
25574
|
+
statusCode?: number | null;
|
|
25575
|
+
message: string;
|
|
25576
|
+
};
|
|
25577
|
+
/**
|
|
25578
|
+
* 429
|
|
25579
|
+
*/
|
|
25580
|
+
429: {
|
|
25581
|
+
statusCode?: number | null;
|
|
25582
|
+
message: string;
|
|
25583
|
+
};
|
|
25584
|
+
/**
|
|
25585
|
+
* 500
|
|
25586
|
+
*/
|
|
25587
|
+
500: {
|
|
25588
|
+
statusCode?: number | null;
|
|
25589
|
+
message: string;
|
|
25590
|
+
};
|
|
25591
|
+
};
|
|
25592
|
+
};
|
|
25593
|
+
};
|
|
24906
25594
|
'/api/v1/misc/facebook/recommendations/import': {
|
|
24907
25595
|
post: {
|
|
24908
25596
|
req: MiscFacebookImportRecommendationsData;
|
|
@@ -27929,6 +28617,15 @@ declare class CommentService {
|
|
|
27929
28617
|
* @throws ApiError
|
|
27930
28618
|
*/
|
|
27931
28619
|
commentImportGetFetchedComments(data: CommentImportGetFetchedCommentsData): CancelablePromise<CommentImportGetFetchedCommentsResponse>;
|
|
28620
|
+
/**
|
|
28621
|
+
* Run an action on a fetched comment
|
|
28622
|
+
* @param data The data for the request.
|
|
28623
|
+
* @param data.commentId
|
|
28624
|
+
* @param data.requestBody Body
|
|
28625
|
+
* @returns unknown 200
|
|
28626
|
+
* @throws ApiError
|
|
28627
|
+
*/
|
|
28628
|
+
commentImportActionFetchedComment(data: CommentImportActionFetchedCommentData): CancelablePromise<CommentImportActionFetchedCommentResponse>;
|
|
27932
28629
|
/**
|
|
27933
28630
|
* Get comment import by ID
|
|
27934
28631
|
* @param data The data for the request.
|
|
@@ -28491,6 +29188,14 @@ declare class MiscService {
|
|
|
28491
29188
|
* @throws ApiError
|
|
28492
29189
|
*/
|
|
28493
29190
|
miscInstagramDeleteComment(data?: MiscInstagramDeleteCommentData): CancelablePromise<MiscInstagramDeleteCommentResponse>;
|
|
29191
|
+
/**
|
|
29192
|
+
* Get Facebook token debug details
|
|
29193
|
+
* @param data The data for the request.
|
|
29194
|
+
* @param data.teamId
|
|
29195
|
+
* @returns unknown 200
|
|
29196
|
+
* @throws ApiError
|
|
29197
|
+
*/
|
|
29198
|
+
miscFacebookGetTokenDebug(data: MiscFacebookGetTokenDebugData): CancelablePromise<MiscFacebookGetTokenDebugResponse>;
|
|
28494
29199
|
/**
|
|
28495
29200
|
* Start a new Facebook recommendations import
|
|
28496
29201
|
* @param data The data for the request.
|
|
@@ -28911,4 +29616,4 @@ declare class Bundlesocial extends Client {
|
|
|
28911
29616
|
constructor(apiKey: string, options?: OpenAPIConfig);
|
|
28912
29617
|
}
|
|
28913
29618
|
|
|
28914
|
-
export { $OpenApiTs, AnalyticsForcePostAnalyticsData, AnalyticsForcePostAnalyticsResponse, AnalyticsForceSocialAccountAnalyticsData, AnalyticsForceSocialAccountAnalyticsResponse, AnalyticsGetBulkPostAnalyticsData, AnalyticsGetBulkPostAnalyticsResponse, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentImportCreateData, CommentImportCreateResponse, CommentImportGetByIdData, CommentImportGetByIdResponse, CommentImportGetFetchedCommentsData, CommentImportGetFetchedCommentsResponse, CommentImportGetListData, CommentImportGetListResponse, CommentUpdateData, CommentUpdateResponse, MiscBlueskyDeleteCommentData, MiscBlueskyDeleteCommentResponse, MiscBlueskyDeletePostData, MiscBlueskyDeletePostResponse, MiscDiscordDeleteMessageData, MiscDiscordDeleteMessageResponse, MiscFacebookDeleteCommentData, MiscFacebookDeleteCommentResponse, MiscFacebookDeletePostData, MiscFacebookDeletePostResponse, MiscFacebookEditCommentData, MiscFacebookEditCommentResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscFacebookGetRecommendationByIdData, MiscFacebookGetRecommendationByIdResponse, MiscFacebookGetRecommendationCommentsData, MiscFacebookGetRecommendationCommentsResponse, MiscFacebookGetRecommendationImportByIdData, MiscFacebookGetRecommendationImportByIdResponse, MiscFacebookGetRecommendationImportStatusData, MiscFacebookGetRecommendationImportStatusResponse, MiscFacebookGetRecommendationsData, MiscFacebookGetRecommendationsResponse, MiscFacebookImportRecommendationsData, MiscFacebookImportRecommendationsResponse, MiscFacebookReplyToRecommendationCommentData, MiscFacebookReplyToRecommendationCommentResponse, MiscFacebookReplyToRecommendationData, MiscFacebookReplyToRecommendationResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscGoogleBusinessCreatePlaceActionLinkData, MiscGoogleBusinessCreatePlaceActionLinkResponse, MiscGoogleBusinessDeleteMediaData, MiscGoogleBusinessDeleteMediaResponse, MiscGoogleBusinessDeletePlaceActionLinkData, MiscGoogleBusinessDeletePlaceActionLinkResponse, MiscGoogleBusinessDeletePostData, MiscGoogleBusinessDeletePostResponse, MiscGoogleBusinessDeleteReviewReplyData, MiscGoogleBusinessDeleteReviewReplyResponse, MiscGoogleBusinessGetAttributesData, MiscGoogleBusinessGetAttributesResponse, MiscGoogleBusinessGetFoodMenusData, MiscGoogleBusinessGetFoodMenusResponse, MiscGoogleBusinessGetLocationData, MiscGoogleBusinessGetLocationResponse, MiscGoogleBusinessGetReviewByIdData, MiscGoogleBusinessGetReviewByIdResponse, MiscGoogleBusinessGetReviewImportByIdData, MiscGoogleBusinessGetReviewImportByIdResponse, MiscGoogleBusinessGetReviewImportStatusData, MiscGoogleBusinessGetReviewImportStatusResponse, MiscGoogleBusinessGetReviewsData, MiscGoogleBusinessGetReviewsResponse, MiscGoogleBusinessGetServiceListData, MiscGoogleBusinessGetServiceListResponse, MiscGoogleBusinessImportReviewsData, MiscGoogleBusinessImportReviewsResponse, MiscGoogleBusinessListAvailableAttributesData, MiscGoogleBusinessListAvailableAttributesResponse, MiscGoogleBusinessListCategoriesData, MiscGoogleBusinessListCategoriesResponse, MiscGoogleBusinessListMediaData, MiscGoogleBusinessListMediaResponse, MiscGoogleBusinessListPlaceActionLinksData, MiscGoogleBusinessListPlaceActionLinksResponse, MiscGoogleBusinessReplyToReviewData, MiscGoogleBusinessReplyToReviewResponse, MiscGoogleBusinessUpdateAttributesData, MiscGoogleBusinessUpdateAttributesResponse, MiscGoogleBusinessUpdateFoodMenusData, MiscGoogleBusinessUpdateFoodMenusResponse, MiscGoogleBusinessUpdateHoursData, MiscGoogleBusinessUpdateHoursResponse, MiscGoogleBusinessUpdateLocationData, MiscGoogleBusinessUpdateLocationResponse, MiscGoogleBusinessUpdatePlaceActionLinkData, MiscGoogleBusinessUpdatePlaceActionLinkResponse, MiscGoogleBusinessUpdateServiceListData, MiscGoogleBusinessUpdateServiceListResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscInstagramDeleteCommentData, MiscInstagramDeleteCommentResponse, MiscInstagramSearchLocationsData, MiscInstagramSearchLocationsResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinDeleteCommentData, MiscLinkedinDeleteCommentResponse, MiscLinkedinDeletePostData, MiscLinkedinDeletePostResponse, MiscLinkedinEditCommentData, MiscLinkedinEditCommentResponse, MiscLinkedinEditPostData, MiscLinkedinEditPostResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscMastodonDeleteCommentData, MiscMastodonDeleteCommentResponse, MiscMastodonDeleteStatusData, MiscMastodonDeleteStatusResponse, MiscMastodonEditCommentData, MiscMastodonEditCommentResponse, MiscMastodonEditStatusData, MiscMastodonEditStatusResponse, MiscPinterestDeletePinData, MiscPinterestDeletePinResponse, MiscPinterestEditPinData, MiscPinterestEditPinResponse, MiscRedditDeleteCommentData, MiscRedditDeleteCommentResponse, MiscRedditDeletePostData, MiscRedditDeletePostResponse, MiscRedditEditCommentData, MiscRedditEditCommentResponse, MiscRedditEditPostData, MiscRedditEditPostResponse, MiscRedditGetPostRequirementsData, MiscRedditGetPostRequirementsResponse, MiscRedditGetSubredditFlairsData, MiscRedditGetSubredditFlairsResponse, MiscSlackDeleteMessageData, MiscSlackDeleteMessageResponse, MiscSlackEditMessageData, MiscSlackEditMessageResponse, MiscTiktokDeleteCommentData, MiscTiktokDeleteCommentResponse, MiscTiktokGetCommercialMusicTrendingListData, MiscTiktokGetCommercialMusicTrendingListResponse, MiscTwitterDeleteTweetData, MiscTwitterDeleteTweetResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteCommentData, MiscYoutubeDeleteCommentResponse, MiscYoutubeDeleteVideoData, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeDeleteVideoResponse, MiscYoutubeEditCommentData, MiscYoutubeEditCommentResponse, MiscYoutubeEditVideoData, MiscYoutubeEditVideoResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetRegionsData, MiscYoutubeGetRegionsResponse, MiscYoutubeGetVideoCategoriesData, MiscYoutubeGetVideoCategoriesResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, OpenAPI, OpenAPIConfig, OrganizationGetCommentsUsageResponse, OrganizationGetImportsUsageData, OrganizationGetImportsUsageResponse, OrganizationGetOrganizationResponse, OrganizationGetPostsUsageResponse, OrganizationGetUploadsUsageResponse, PostCreateData, PostCreateResponse, PostCsvCreateData, PostCsvCreateResponse, PostCsvGetByIdData, PostCsvGetByIdResponse, PostCsvGetListData, PostCsvGetListResponse, PostCsvGetRowsData, PostCsvGetRowsResponse, PostCsvGetStatusData, PostCsvGetStatusResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostImportCreateData, PostImportCreateResponse, PostImportDeleteImportedPostsData, PostImportDeleteImportedPostsResponse, PostImportGetByIdData, PostImportGetByIdResponse, PostImportGetImportedPostsData, PostImportGetImportedPostsResponse, PostImportGetStatusData, PostImportGetStatusResponse, PostImportRetryImportData, PostImportRetryImportResponse, PostRetryData, PostRetryResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountConnectionCheckData, SocialAccountConnectionCheckResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountGetAccountsToDeleteData, SocialAccountGetAccountsToDeleteResponse, SocialAccountGetByTypeData, SocialAccountGetByTypeResponse, SocialAccountProfileRefreshData, SocialAccountProfileRefreshResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, SocialAccountUnsetChannelData, SocialAccountUnsetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateFromUrlData, UploadCreateFromUrlResponse, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };
|
|
29619
|
+
export { $OpenApiTs, AnalyticsForcePostAnalyticsData, AnalyticsForcePostAnalyticsResponse, AnalyticsForceSocialAccountAnalyticsData, AnalyticsForceSocialAccountAnalyticsResponse, AnalyticsGetBulkPostAnalyticsData, AnalyticsGetBulkPostAnalyticsResponse, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentImportActionFetchedCommentData, CommentImportActionFetchedCommentResponse, CommentImportCreateData, CommentImportCreateResponse, CommentImportGetByIdData, CommentImportGetByIdResponse, CommentImportGetFetchedCommentsData, CommentImportGetFetchedCommentsResponse, CommentImportGetListData, CommentImportGetListResponse, CommentUpdateData, CommentUpdateResponse, MiscBlueskyDeleteCommentData, MiscBlueskyDeleteCommentResponse, MiscBlueskyDeletePostData, MiscBlueskyDeletePostResponse, MiscDiscordDeleteMessageData, MiscDiscordDeleteMessageResponse, MiscFacebookDeleteCommentData, MiscFacebookDeleteCommentResponse, MiscFacebookDeletePostData, MiscFacebookDeletePostResponse, MiscFacebookEditCommentData, MiscFacebookEditCommentResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscFacebookGetRecommendationByIdData, MiscFacebookGetRecommendationByIdResponse, MiscFacebookGetRecommendationCommentsData, MiscFacebookGetRecommendationCommentsResponse, MiscFacebookGetRecommendationImportByIdData, MiscFacebookGetRecommendationImportByIdResponse, MiscFacebookGetRecommendationImportStatusData, MiscFacebookGetRecommendationImportStatusResponse, MiscFacebookGetRecommendationsData, MiscFacebookGetRecommendationsResponse, MiscFacebookGetTokenDebugData, MiscFacebookGetTokenDebugResponse, MiscFacebookImportRecommendationsData, MiscFacebookImportRecommendationsResponse, MiscFacebookReplyToRecommendationCommentData, MiscFacebookReplyToRecommendationCommentResponse, MiscFacebookReplyToRecommendationData, MiscFacebookReplyToRecommendationResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscGoogleBusinessCreatePlaceActionLinkData, MiscGoogleBusinessCreatePlaceActionLinkResponse, MiscGoogleBusinessDeleteMediaData, MiscGoogleBusinessDeleteMediaResponse, MiscGoogleBusinessDeletePlaceActionLinkData, MiscGoogleBusinessDeletePlaceActionLinkResponse, MiscGoogleBusinessDeletePostData, MiscGoogleBusinessDeletePostResponse, MiscGoogleBusinessDeleteReviewReplyData, MiscGoogleBusinessDeleteReviewReplyResponse, MiscGoogleBusinessGetAttributesData, MiscGoogleBusinessGetAttributesResponse, MiscGoogleBusinessGetFoodMenusData, MiscGoogleBusinessGetFoodMenusResponse, MiscGoogleBusinessGetLocationData, MiscGoogleBusinessGetLocationResponse, MiscGoogleBusinessGetReviewByIdData, MiscGoogleBusinessGetReviewByIdResponse, MiscGoogleBusinessGetReviewImportByIdData, MiscGoogleBusinessGetReviewImportByIdResponse, MiscGoogleBusinessGetReviewImportStatusData, MiscGoogleBusinessGetReviewImportStatusResponse, MiscGoogleBusinessGetReviewsData, MiscGoogleBusinessGetReviewsResponse, MiscGoogleBusinessGetServiceListData, MiscGoogleBusinessGetServiceListResponse, MiscGoogleBusinessImportReviewsData, MiscGoogleBusinessImportReviewsResponse, MiscGoogleBusinessListAvailableAttributesData, MiscGoogleBusinessListAvailableAttributesResponse, MiscGoogleBusinessListCategoriesData, MiscGoogleBusinessListCategoriesResponse, MiscGoogleBusinessListMediaData, MiscGoogleBusinessListMediaResponse, MiscGoogleBusinessListPlaceActionLinksData, MiscGoogleBusinessListPlaceActionLinksResponse, MiscGoogleBusinessReplyToReviewData, MiscGoogleBusinessReplyToReviewResponse, MiscGoogleBusinessUpdateAttributesData, MiscGoogleBusinessUpdateAttributesResponse, MiscGoogleBusinessUpdateFoodMenusData, MiscGoogleBusinessUpdateFoodMenusResponse, MiscGoogleBusinessUpdateHoursData, MiscGoogleBusinessUpdateHoursResponse, MiscGoogleBusinessUpdateLocationData, MiscGoogleBusinessUpdateLocationResponse, MiscGoogleBusinessUpdatePlaceActionLinkData, MiscGoogleBusinessUpdatePlaceActionLinkResponse, MiscGoogleBusinessUpdateServiceListData, MiscGoogleBusinessUpdateServiceListResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscInstagramDeleteCommentData, MiscInstagramDeleteCommentResponse, MiscInstagramSearchLocationsData, MiscInstagramSearchLocationsResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinDeleteCommentData, MiscLinkedinDeleteCommentResponse, MiscLinkedinDeletePostData, MiscLinkedinDeletePostResponse, MiscLinkedinEditCommentData, MiscLinkedinEditCommentResponse, MiscLinkedinEditPostData, MiscLinkedinEditPostResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscMastodonDeleteCommentData, MiscMastodonDeleteCommentResponse, MiscMastodonDeleteStatusData, MiscMastodonDeleteStatusResponse, MiscMastodonEditCommentData, MiscMastodonEditCommentResponse, MiscMastodonEditStatusData, MiscMastodonEditStatusResponse, MiscPinterestDeletePinData, MiscPinterestDeletePinResponse, MiscPinterestEditPinData, MiscPinterestEditPinResponse, MiscRedditDeleteCommentData, MiscRedditDeleteCommentResponse, MiscRedditDeletePostData, MiscRedditDeletePostResponse, MiscRedditEditCommentData, MiscRedditEditCommentResponse, MiscRedditEditPostData, MiscRedditEditPostResponse, MiscRedditGetPostRequirementsData, MiscRedditGetPostRequirementsResponse, MiscRedditGetSubredditFlairsData, MiscRedditGetSubredditFlairsResponse, MiscSlackDeleteMessageData, MiscSlackDeleteMessageResponse, MiscSlackEditMessageData, MiscSlackEditMessageResponse, MiscTiktokDeleteCommentData, MiscTiktokDeleteCommentResponse, MiscTiktokGetCommercialMusicTrendingListData, MiscTiktokGetCommercialMusicTrendingListResponse, MiscTwitterDeleteTweetData, MiscTwitterDeleteTweetResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteCommentData, MiscYoutubeDeleteCommentResponse, MiscYoutubeDeleteVideoData, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeDeleteVideoResponse, MiscYoutubeEditCommentData, MiscYoutubeEditCommentResponse, MiscYoutubeEditVideoData, MiscYoutubeEditVideoResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetRegionsData, MiscYoutubeGetRegionsResponse, MiscYoutubeGetVideoCategoriesData, MiscYoutubeGetVideoCategoriesResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, OpenAPI, OpenAPIConfig, OrganizationGetCommentsUsageResponse, OrganizationGetImportsUsageData, OrganizationGetImportsUsageResponse, OrganizationGetOrganizationResponse, OrganizationGetPostsUsageResponse, OrganizationGetUploadsUsageResponse, PostCreateData, PostCreateResponse, PostCsvCreateData, PostCsvCreateResponse, PostCsvGetByIdData, PostCsvGetByIdResponse, PostCsvGetListData, PostCsvGetListResponse, PostCsvGetRowsData, PostCsvGetRowsResponse, PostCsvGetStatusData, PostCsvGetStatusResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostImportCreateData, PostImportCreateResponse, PostImportDeleteImportedPostsData, PostImportDeleteImportedPostsResponse, PostImportGetByIdData, PostImportGetByIdResponse, PostImportGetImportedPostsData, PostImportGetImportedPostsResponse, PostImportGetStatusData, PostImportGetStatusResponse, PostImportRetryImportData, PostImportRetryImportResponse, PostRetryData, PostRetryResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountConnectionCheckData, SocialAccountConnectionCheckResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountGetAccountsToDeleteData, SocialAccountGetAccountsToDeleteResponse, SocialAccountGetByTypeData, SocialAccountGetByTypeResponse, SocialAccountProfileRefreshData, SocialAccountProfileRefreshResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, SocialAccountUnsetChannelData, SocialAccountUnsetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateFromUrlData, UploadCreateFromUrlResponse, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };
|