bundlesocial 2.46.0 → 2.47.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 +160 -24
- package/dist/index.d.ts +160 -24
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -74,6 +74,65 @@ declare abstract class BaseHttpRequest {
|
|
|
74
74
|
type AppGetHealthResponse = {
|
|
75
75
|
status: string;
|
|
76
76
|
createdAt: string;
|
|
77
|
+
note: string;
|
|
78
|
+
platforms: {
|
|
79
|
+
FACEBOOK: {
|
|
80
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
81
|
+
note: string;
|
|
82
|
+
};
|
|
83
|
+
INSTAGRAM: {
|
|
84
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
85
|
+
note: string;
|
|
86
|
+
};
|
|
87
|
+
TIKTOK: {
|
|
88
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
89
|
+
note: string;
|
|
90
|
+
};
|
|
91
|
+
YOUTUBE: {
|
|
92
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
93
|
+
note: string;
|
|
94
|
+
};
|
|
95
|
+
TWITTER: {
|
|
96
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
97
|
+
note: string;
|
|
98
|
+
};
|
|
99
|
+
PINTEREST: {
|
|
100
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
101
|
+
note: string;
|
|
102
|
+
};
|
|
103
|
+
REDDIT: {
|
|
104
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
105
|
+
note: string;
|
|
106
|
+
};
|
|
107
|
+
MASTODON: {
|
|
108
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
109
|
+
note: string;
|
|
110
|
+
};
|
|
111
|
+
DISCORD: {
|
|
112
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
113
|
+
note: string;
|
|
114
|
+
};
|
|
115
|
+
SLACK: {
|
|
116
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
117
|
+
note: string;
|
|
118
|
+
};
|
|
119
|
+
BLUESKY: {
|
|
120
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
121
|
+
note: string;
|
|
122
|
+
};
|
|
123
|
+
GOOGLE_BUSINESS: {
|
|
124
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
125
|
+
note: string;
|
|
126
|
+
};
|
|
127
|
+
LINKEDIN: {
|
|
128
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
129
|
+
note: string;
|
|
130
|
+
};
|
|
131
|
+
THREADS: {
|
|
132
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
133
|
+
note: string;
|
|
134
|
+
};
|
|
135
|
+
};
|
|
77
136
|
};
|
|
78
137
|
type OrganizationGetOrganizationResponse = {
|
|
79
138
|
id: string;
|
|
@@ -172,6 +231,11 @@ type OrganizationGetOrganizationResponse = {
|
|
|
172
231
|
maxMonthlyComments?: number | null;
|
|
173
232
|
maxMonthlyUploads?: number | null;
|
|
174
233
|
maxMonthlyImportedPosts?: number | null;
|
|
234
|
+
pendingTier?: 'PRO' | 'BUSINESS' | null;
|
|
235
|
+
pendingBillingInterval?: 'MONTHLY' | 'YEARLY' | null;
|
|
236
|
+
pendingPriceId?: string | null;
|
|
237
|
+
pendingEffectiveAt?: string | null;
|
|
238
|
+
pendingScheduleId?: string | null;
|
|
175
239
|
discountStart?: string | null;
|
|
176
240
|
discountEnd?: string | null;
|
|
177
241
|
createdAt: string | null;
|
|
@@ -666,6 +730,10 @@ type SocialAccountConnectData = {
|
|
|
666
730
|
* Optional. When true, adds provider-specific flags to avoid automatic login/auto-approval where supported.
|
|
667
731
|
*/
|
|
668
732
|
disableAutoLogin?: boolean;
|
|
733
|
+
/**
|
|
734
|
+
* Optional. Instagram only. When true, direct Instagram connections on phones will try to force browser login to avoid the Instagram iOS app deep-link bug.
|
|
735
|
+
*/
|
|
736
|
+
forceBrowserOAuth?: boolean;
|
|
669
737
|
/**
|
|
670
738
|
* Instagram only - connection method
|
|
671
739
|
*/
|
|
@@ -887,6 +955,10 @@ type SocialAccountCreatePortalLinkData = {
|
|
|
887
955
|
* Optional. If true, portal will request provider-specific anti-auto-login behavior where supported.
|
|
888
956
|
*/
|
|
889
957
|
disableAutoLogin?: boolean;
|
|
958
|
+
/**
|
|
959
|
+
* Optional. Instagram only. When true, direct Instagram connections on phones will try to force browser login to avoid the Instagram iOS app deep-link bug.
|
|
960
|
+
*/
|
|
961
|
+
forceBrowserOAuth?: boolean;
|
|
890
962
|
/**
|
|
891
963
|
* Optional. Facebook and Instagram only - when provided, portal skips business scope selection modal for Facebook login paths.
|
|
892
964
|
*/
|
|
@@ -8869,7 +8941,7 @@ type MiscYoutubeDeleteVideoData = {
|
|
|
8869
8941
|
requestBody?: {
|
|
8870
8942
|
teamId: string;
|
|
8871
8943
|
/**
|
|
8872
|
-
* The ID of the post in
|
|
8944
|
+
* The ID of the post in bundle.social
|
|
8873
8945
|
*/
|
|
8874
8946
|
postId: string;
|
|
8875
8947
|
};
|
|
@@ -8884,7 +8956,7 @@ type MiscYoutubeEditCommentData = {
|
|
|
8884
8956
|
requestBody?: {
|
|
8885
8957
|
teamId: string;
|
|
8886
8958
|
/**
|
|
8887
|
-
* The ID of the comment in
|
|
8959
|
+
* The ID of the comment in bundle.social
|
|
8888
8960
|
*/
|
|
8889
8961
|
commentId: string;
|
|
8890
8962
|
/**
|
|
@@ -8904,7 +8976,7 @@ type MiscYoutubeDeleteCommentData = {
|
|
|
8904
8976
|
requestBody?: {
|
|
8905
8977
|
teamId: string;
|
|
8906
8978
|
/**
|
|
8907
|
-
* The ID of the comment in
|
|
8979
|
+
* The ID of the comment in bundle.social
|
|
8908
8980
|
*/
|
|
8909
8981
|
commentId: string;
|
|
8910
8982
|
};
|
|
@@ -9012,7 +9084,7 @@ type MiscLinkedinDeletePostData = {
|
|
|
9012
9084
|
requestBody?: {
|
|
9013
9085
|
teamId: string;
|
|
9014
9086
|
/**
|
|
9015
|
-
* The ID of the post in
|
|
9087
|
+
* The ID of the post in bundle.social
|
|
9016
9088
|
*/
|
|
9017
9089
|
postId: string;
|
|
9018
9090
|
};
|
|
@@ -9027,7 +9099,7 @@ type MiscLinkedinEditCommentData = {
|
|
|
9027
9099
|
requestBody?: {
|
|
9028
9100
|
teamId: string;
|
|
9029
9101
|
/**
|
|
9030
|
-
* The ID of the comment in
|
|
9102
|
+
* The ID of the comment in bundle.social
|
|
9031
9103
|
*/
|
|
9032
9104
|
commentId: string;
|
|
9033
9105
|
/**
|
|
@@ -9047,7 +9119,7 @@ type MiscLinkedinDeleteCommentData = {
|
|
|
9047
9119
|
requestBody?: {
|
|
9048
9120
|
teamId: string;
|
|
9049
9121
|
/**
|
|
9050
|
-
* The ID of the comment in
|
|
9122
|
+
* The ID of the comment in bundle.social
|
|
9051
9123
|
*/
|
|
9052
9124
|
commentId: string;
|
|
9053
9125
|
};
|
|
@@ -9121,7 +9193,7 @@ type MiscGoogleBusinessDeletePostData = {
|
|
|
9121
9193
|
requestBody?: {
|
|
9122
9194
|
teamId: string;
|
|
9123
9195
|
/**
|
|
9124
|
-
* The ID of the post in
|
|
9196
|
+
* The ID of the post in bundle.social
|
|
9125
9197
|
*/
|
|
9126
9198
|
postId: string;
|
|
9127
9199
|
};
|
|
@@ -9756,7 +9828,7 @@ type MiscRedditDeletePostData = {
|
|
|
9756
9828
|
requestBody?: {
|
|
9757
9829
|
teamId: string;
|
|
9758
9830
|
/**
|
|
9759
|
-
* The ID of the post in
|
|
9831
|
+
* The ID of the post in bundle.social
|
|
9760
9832
|
*/
|
|
9761
9833
|
postId: string;
|
|
9762
9834
|
};
|
|
@@ -9771,7 +9843,7 @@ type MiscRedditEditCommentData = {
|
|
|
9771
9843
|
requestBody?: {
|
|
9772
9844
|
teamId: string;
|
|
9773
9845
|
/**
|
|
9774
|
-
* The ID of the comment in
|
|
9846
|
+
* The ID of the comment in bundle.social
|
|
9775
9847
|
*/
|
|
9776
9848
|
commentId: string;
|
|
9777
9849
|
/**
|
|
@@ -9791,7 +9863,7 @@ type MiscRedditDeleteCommentData = {
|
|
|
9791
9863
|
requestBody?: {
|
|
9792
9864
|
teamId: string;
|
|
9793
9865
|
/**
|
|
9794
|
-
* The ID of the comment in
|
|
9866
|
+
* The ID of the comment in bundle.social
|
|
9795
9867
|
*/
|
|
9796
9868
|
commentId: string;
|
|
9797
9869
|
};
|
|
@@ -9888,7 +9960,7 @@ type MiscInstagramDeleteCommentData = {
|
|
|
9888
9960
|
requestBody?: {
|
|
9889
9961
|
teamId: string;
|
|
9890
9962
|
/**
|
|
9891
|
-
* The ID of the comment in
|
|
9963
|
+
* The ID of the comment in bundle.social
|
|
9892
9964
|
*/
|
|
9893
9965
|
commentId: string;
|
|
9894
9966
|
};
|
|
@@ -10113,7 +10185,7 @@ type MiscFacebookDeletePostData = {
|
|
|
10113
10185
|
requestBody?: {
|
|
10114
10186
|
teamId: string;
|
|
10115
10187
|
/**
|
|
10116
|
-
* The ID of the post in
|
|
10188
|
+
* The ID of the post in bundle.social
|
|
10117
10189
|
*/
|
|
10118
10190
|
postId: string;
|
|
10119
10191
|
};
|
|
@@ -10128,7 +10200,7 @@ type MiscFacebookEditCommentData = {
|
|
|
10128
10200
|
requestBody?: {
|
|
10129
10201
|
teamId: string;
|
|
10130
10202
|
/**
|
|
10131
|
-
* The ID of the comment in
|
|
10203
|
+
* The ID of the comment in bundle.social
|
|
10132
10204
|
*/
|
|
10133
10205
|
commentId: string;
|
|
10134
10206
|
/**
|
|
@@ -10148,7 +10220,7 @@ type MiscFacebookDeleteCommentData = {
|
|
|
10148
10220
|
requestBody?: {
|
|
10149
10221
|
teamId: string;
|
|
10150
10222
|
/**
|
|
10151
|
-
* The ID of the comment in
|
|
10223
|
+
* The ID of the comment in bundle.social
|
|
10152
10224
|
*/
|
|
10153
10225
|
commentId: string;
|
|
10154
10226
|
};
|
|
@@ -10199,7 +10271,7 @@ type MiscPinterestDeletePinData = {
|
|
|
10199
10271
|
requestBody?: {
|
|
10200
10272
|
teamId: string;
|
|
10201
10273
|
/**
|
|
10202
|
-
* The ID of the post in
|
|
10274
|
+
* The ID of the post in bundle.social
|
|
10203
10275
|
*/
|
|
10204
10276
|
postId: string;
|
|
10205
10277
|
};
|
|
@@ -10238,7 +10310,7 @@ type MiscMastodonDeleteStatusData = {
|
|
|
10238
10310
|
requestBody?: {
|
|
10239
10311
|
teamId: string;
|
|
10240
10312
|
/**
|
|
10241
|
-
* The ID of the post in
|
|
10313
|
+
* The ID of the post in bundle.social
|
|
10242
10314
|
*/
|
|
10243
10315
|
postId: string;
|
|
10244
10316
|
};
|
|
@@ -10253,7 +10325,7 @@ type MiscMastodonEditCommentData = {
|
|
|
10253
10325
|
requestBody?: {
|
|
10254
10326
|
teamId: string;
|
|
10255
10327
|
/**
|
|
10256
|
-
* The ID of the comment in
|
|
10328
|
+
* The ID of the comment in bundle.social
|
|
10257
10329
|
*/
|
|
10258
10330
|
commentId: string;
|
|
10259
10331
|
/**
|
|
@@ -10277,7 +10349,7 @@ type MiscMastodonDeleteCommentData = {
|
|
|
10277
10349
|
requestBody?: {
|
|
10278
10350
|
teamId: string;
|
|
10279
10351
|
/**
|
|
10280
|
-
* The ID of the comment in
|
|
10352
|
+
* The ID of the comment in bundle.social
|
|
10281
10353
|
*/
|
|
10282
10354
|
commentId: string;
|
|
10283
10355
|
};
|
|
@@ -10312,7 +10384,7 @@ type MiscSlackDeleteMessageData = {
|
|
|
10312
10384
|
requestBody?: {
|
|
10313
10385
|
teamId: string;
|
|
10314
10386
|
/**
|
|
10315
|
-
* The ID of the post in
|
|
10387
|
+
* The ID of the post in bundle.social
|
|
10316
10388
|
*/
|
|
10317
10389
|
postId: string;
|
|
10318
10390
|
};
|
|
@@ -10327,7 +10399,7 @@ type MiscBlueskyDeletePostData = {
|
|
|
10327
10399
|
requestBody?: {
|
|
10328
10400
|
teamId: string;
|
|
10329
10401
|
/**
|
|
10330
|
-
* The ID of the post in
|
|
10402
|
+
* The ID of the post in bundle.social
|
|
10331
10403
|
*/
|
|
10332
10404
|
postId: string;
|
|
10333
10405
|
};
|
|
@@ -10342,7 +10414,7 @@ type MiscBlueskyDeleteCommentData = {
|
|
|
10342
10414
|
requestBody?: {
|
|
10343
10415
|
teamId: string;
|
|
10344
10416
|
/**
|
|
10345
|
-
* The ID of the comment in
|
|
10417
|
+
* The ID of the comment in bundle.social
|
|
10346
10418
|
*/
|
|
10347
10419
|
commentId: string;
|
|
10348
10420
|
};
|
|
@@ -10357,7 +10429,7 @@ type MiscTwitterDeleteTweetData = {
|
|
|
10357
10429
|
requestBody?: {
|
|
10358
10430
|
teamId: string;
|
|
10359
10431
|
/**
|
|
10360
|
-
* The ID of the post in
|
|
10432
|
+
* The ID of the post in bundle.social
|
|
10361
10433
|
*/
|
|
10362
10434
|
postId: string;
|
|
10363
10435
|
};
|
|
@@ -10372,7 +10444,7 @@ type MiscDiscordDeleteMessageData = {
|
|
|
10372
10444
|
requestBody?: {
|
|
10373
10445
|
teamId: string;
|
|
10374
10446
|
/**
|
|
10375
|
-
* The ID of the post in
|
|
10447
|
+
* The ID of the post in bundle.social
|
|
10376
10448
|
*/
|
|
10377
10449
|
postId: string;
|
|
10378
10450
|
};
|
|
@@ -10469,7 +10541,7 @@ type MiscTiktokDeleteCommentData = {
|
|
|
10469
10541
|
requestBody?: {
|
|
10470
10542
|
teamId: string;
|
|
10471
10543
|
/**
|
|
10472
|
-
* The ID of the comment in
|
|
10544
|
+
* The ID of the comment in bundle.social
|
|
10473
10545
|
*/
|
|
10474
10546
|
commentId: string;
|
|
10475
10547
|
};
|
|
@@ -10770,6 +10842,65 @@ type $OpenApiTs = {
|
|
|
10770
10842
|
200: {
|
|
10771
10843
|
status: string;
|
|
10772
10844
|
createdAt: string;
|
|
10845
|
+
note: string;
|
|
10846
|
+
platforms: {
|
|
10847
|
+
FACEBOOK: {
|
|
10848
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10849
|
+
note: string;
|
|
10850
|
+
};
|
|
10851
|
+
INSTAGRAM: {
|
|
10852
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10853
|
+
note: string;
|
|
10854
|
+
};
|
|
10855
|
+
TIKTOK: {
|
|
10856
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10857
|
+
note: string;
|
|
10858
|
+
};
|
|
10859
|
+
YOUTUBE: {
|
|
10860
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10861
|
+
note: string;
|
|
10862
|
+
};
|
|
10863
|
+
TWITTER: {
|
|
10864
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10865
|
+
note: string;
|
|
10866
|
+
};
|
|
10867
|
+
PINTEREST: {
|
|
10868
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10869
|
+
note: string;
|
|
10870
|
+
};
|
|
10871
|
+
REDDIT: {
|
|
10872
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10873
|
+
note: string;
|
|
10874
|
+
};
|
|
10875
|
+
MASTODON: {
|
|
10876
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10877
|
+
note: string;
|
|
10878
|
+
};
|
|
10879
|
+
DISCORD: {
|
|
10880
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10881
|
+
note: string;
|
|
10882
|
+
};
|
|
10883
|
+
SLACK: {
|
|
10884
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10885
|
+
note: string;
|
|
10886
|
+
};
|
|
10887
|
+
BLUESKY: {
|
|
10888
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10889
|
+
note: string;
|
|
10890
|
+
};
|
|
10891
|
+
GOOGLE_BUSINESS: {
|
|
10892
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10893
|
+
note: string;
|
|
10894
|
+
};
|
|
10895
|
+
LINKEDIN: {
|
|
10896
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10897
|
+
note: string;
|
|
10898
|
+
};
|
|
10899
|
+
THREADS: {
|
|
10900
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10901
|
+
note: string;
|
|
10902
|
+
};
|
|
10903
|
+
};
|
|
10773
10904
|
};
|
|
10774
10905
|
/**
|
|
10775
10906
|
* 400
|
|
@@ -10924,6 +11055,11 @@ type $OpenApiTs = {
|
|
|
10924
11055
|
maxMonthlyComments?: number | null;
|
|
10925
11056
|
maxMonthlyUploads?: number | null;
|
|
10926
11057
|
maxMonthlyImportedPosts?: number | null;
|
|
11058
|
+
pendingTier?: 'PRO' | 'BUSINESS' | null;
|
|
11059
|
+
pendingBillingInterval?: 'MONTHLY' | 'YEARLY' | null;
|
|
11060
|
+
pendingPriceId?: string | null;
|
|
11061
|
+
pendingEffectiveAt?: string | null;
|
|
11062
|
+
pendingScheduleId?: string | null;
|
|
10927
11063
|
discountStart?: string | null;
|
|
10928
11064
|
discountEnd?: string | null;
|
|
10929
11065
|
createdAt: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -74,6 +74,65 @@ declare abstract class BaseHttpRequest {
|
|
|
74
74
|
type AppGetHealthResponse = {
|
|
75
75
|
status: string;
|
|
76
76
|
createdAt: string;
|
|
77
|
+
note: string;
|
|
78
|
+
platforms: {
|
|
79
|
+
FACEBOOK: {
|
|
80
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
81
|
+
note: string;
|
|
82
|
+
};
|
|
83
|
+
INSTAGRAM: {
|
|
84
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
85
|
+
note: string;
|
|
86
|
+
};
|
|
87
|
+
TIKTOK: {
|
|
88
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
89
|
+
note: string;
|
|
90
|
+
};
|
|
91
|
+
YOUTUBE: {
|
|
92
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
93
|
+
note: string;
|
|
94
|
+
};
|
|
95
|
+
TWITTER: {
|
|
96
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
97
|
+
note: string;
|
|
98
|
+
};
|
|
99
|
+
PINTEREST: {
|
|
100
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
101
|
+
note: string;
|
|
102
|
+
};
|
|
103
|
+
REDDIT: {
|
|
104
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
105
|
+
note: string;
|
|
106
|
+
};
|
|
107
|
+
MASTODON: {
|
|
108
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
109
|
+
note: string;
|
|
110
|
+
};
|
|
111
|
+
DISCORD: {
|
|
112
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
113
|
+
note: string;
|
|
114
|
+
};
|
|
115
|
+
SLACK: {
|
|
116
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
117
|
+
note: string;
|
|
118
|
+
};
|
|
119
|
+
BLUESKY: {
|
|
120
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
121
|
+
note: string;
|
|
122
|
+
};
|
|
123
|
+
GOOGLE_BUSINESS: {
|
|
124
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
125
|
+
note: string;
|
|
126
|
+
};
|
|
127
|
+
LINKEDIN: {
|
|
128
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
129
|
+
note: string;
|
|
130
|
+
};
|
|
131
|
+
THREADS: {
|
|
132
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
133
|
+
note: string;
|
|
134
|
+
};
|
|
135
|
+
};
|
|
77
136
|
};
|
|
78
137
|
type OrganizationGetOrganizationResponse = {
|
|
79
138
|
id: string;
|
|
@@ -172,6 +231,11 @@ type OrganizationGetOrganizationResponse = {
|
|
|
172
231
|
maxMonthlyComments?: number | null;
|
|
173
232
|
maxMonthlyUploads?: number | null;
|
|
174
233
|
maxMonthlyImportedPosts?: number | null;
|
|
234
|
+
pendingTier?: 'PRO' | 'BUSINESS' | null;
|
|
235
|
+
pendingBillingInterval?: 'MONTHLY' | 'YEARLY' | null;
|
|
236
|
+
pendingPriceId?: string | null;
|
|
237
|
+
pendingEffectiveAt?: string | null;
|
|
238
|
+
pendingScheduleId?: string | null;
|
|
175
239
|
discountStart?: string | null;
|
|
176
240
|
discountEnd?: string | null;
|
|
177
241
|
createdAt: string | null;
|
|
@@ -666,6 +730,10 @@ type SocialAccountConnectData = {
|
|
|
666
730
|
* Optional. When true, adds provider-specific flags to avoid automatic login/auto-approval where supported.
|
|
667
731
|
*/
|
|
668
732
|
disableAutoLogin?: boolean;
|
|
733
|
+
/**
|
|
734
|
+
* Optional. Instagram only. When true, direct Instagram connections on phones will try to force browser login to avoid the Instagram iOS app deep-link bug.
|
|
735
|
+
*/
|
|
736
|
+
forceBrowserOAuth?: boolean;
|
|
669
737
|
/**
|
|
670
738
|
* Instagram only - connection method
|
|
671
739
|
*/
|
|
@@ -887,6 +955,10 @@ type SocialAccountCreatePortalLinkData = {
|
|
|
887
955
|
* Optional. If true, portal will request provider-specific anti-auto-login behavior where supported.
|
|
888
956
|
*/
|
|
889
957
|
disableAutoLogin?: boolean;
|
|
958
|
+
/**
|
|
959
|
+
* Optional. Instagram only. When true, direct Instagram connections on phones will try to force browser login to avoid the Instagram iOS app deep-link bug.
|
|
960
|
+
*/
|
|
961
|
+
forceBrowserOAuth?: boolean;
|
|
890
962
|
/**
|
|
891
963
|
* Optional. Facebook and Instagram only - when provided, portal skips business scope selection modal for Facebook login paths.
|
|
892
964
|
*/
|
|
@@ -8869,7 +8941,7 @@ type MiscYoutubeDeleteVideoData = {
|
|
|
8869
8941
|
requestBody?: {
|
|
8870
8942
|
teamId: string;
|
|
8871
8943
|
/**
|
|
8872
|
-
* The ID of the post in
|
|
8944
|
+
* The ID of the post in bundle.social
|
|
8873
8945
|
*/
|
|
8874
8946
|
postId: string;
|
|
8875
8947
|
};
|
|
@@ -8884,7 +8956,7 @@ type MiscYoutubeEditCommentData = {
|
|
|
8884
8956
|
requestBody?: {
|
|
8885
8957
|
teamId: string;
|
|
8886
8958
|
/**
|
|
8887
|
-
* The ID of the comment in
|
|
8959
|
+
* The ID of the comment in bundle.social
|
|
8888
8960
|
*/
|
|
8889
8961
|
commentId: string;
|
|
8890
8962
|
/**
|
|
@@ -8904,7 +8976,7 @@ type MiscYoutubeDeleteCommentData = {
|
|
|
8904
8976
|
requestBody?: {
|
|
8905
8977
|
teamId: string;
|
|
8906
8978
|
/**
|
|
8907
|
-
* The ID of the comment in
|
|
8979
|
+
* The ID of the comment in bundle.social
|
|
8908
8980
|
*/
|
|
8909
8981
|
commentId: string;
|
|
8910
8982
|
};
|
|
@@ -9012,7 +9084,7 @@ type MiscLinkedinDeletePostData = {
|
|
|
9012
9084
|
requestBody?: {
|
|
9013
9085
|
teamId: string;
|
|
9014
9086
|
/**
|
|
9015
|
-
* The ID of the post in
|
|
9087
|
+
* The ID of the post in bundle.social
|
|
9016
9088
|
*/
|
|
9017
9089
|
postId: string;
|
|
9018
9090
|
};
|
|
@@ -9027,7 +9099,7 @@ type MiscLinkedinEditCommentData = {
|
|
|
9027
9099
|
requestBody?: {
|
|
9028
9100
|
teamId: string;
|
|
9029
9101
|
/**
|
|
9030
|
-
* The ID of the comment in
|
|
9102
|
+
* The ID of the comment in bundle.social
|
|
9031
9103
|
*/
|
|
9032
9104
|
commentId: string;
|
|
9033
9105
|
/**
|
|
@@ -9047,7 +9119,7 @@ type MiscLinkedinDeleteCommentData = {
|
|
|
9047
9119
|
requestBody?: {
|
|
9048
9120
|
teamId: string;
|
|
9049
9121
|
/**
|
|
9050
|
-
* The ID of the comment in
|
|
9122
|
+
* The ID of the comment in bundle.social
|
|
9051
9123
|
*/
|
|
9052
9124
|
commentId: string;
|
|
9053
9125
|
};
|
|
@@ -9121,7 +9193,7 @@ type MiscGoogleBusinessDeletePostData = {
|
|
|
9121
9193
|
requestBody?: {
|
|
9122
9194
|
teamId: string;
|
|
9123
9195
|
/**
|
|
9124
|
-
* The ID of the post in
|
|
9196
|
+
* The ID of the post in bundle.social
|
|
9125
9197
|
*/
|
|
9126
9198
|
postId: string;
|
|
9127
9199
|
};
|
|
@@ -9756,7 +9828,7 @@ type MiscRedditDeletePostData = {
|
|
|
9756
9828
|
requestBody?: {
|
|
9757
9829
|
teamId: string;
|
|
9758
9830
|
/**
|
|
9759
|
-
* The ID of the post in
|
|
9831
|
+
* The ID of the post in bundle.social
|
|
9760
9832
|
*/
|
|
9761
9833
|
postId: string;
|
|
9762
9834
|
};
|
|
@@ -9771,7 +9843,7 @@ type MiscRedditEditCommentData = {
|
|
|
9771
9843
|
requestBody?: {
|
|
9772
9844
|
teamId: string;
|
|
9773
9845
|
/**
|
|
9774
|
-
* The ID of the comment in
|
|
9846
|
+
* The ID of the comment in bundle.social
|
|
9775
9847
|
*/
|
|
9776
9848
|
commentId: string;
|
|
9777
9849
|
/**
|
|
@@ -9791,7 +9863,7 @@ type MiscRedditDeleteCommentData = {
|
|
|
9791
9863
|
requestBody?: {
|
|
9792
9864
|
teamId: string;
|
|
9793
9865
|
/**
|
|
9794
|
-
* The ID of the comment in
|
|
9866
|
+
* The ID of the comment in bundle.social
|
|
9795
9867
|
*/
|
|
9796
9868
|
commentId: string;
|
|
9797
9869
|
};
|
|
@@ -9888,7 +9960,7 @@ type MiscInstagramDeleteCommentData = {
|
|
|
9888
9960
|
requestBody?: {
|
|
9889
9961
|
teamId: string;
|
|
9890
9962
|
/**
|
|
9891
|
-
* The ID of the comment in
|
|
9963
|
+
* The ID of the comment in bundle.social
|
|
9892
9964
|
*/
|
|
9893
9965
|
commentId: string;
|
|
9894
9966
|
};
|
|
@@ -10113,7 +10185,7 @@ type MiscFacebookDeletePostData = {
|
|
|
10113
10185
|
requestBody?: {
|
|
10114
10186
|
teamId: string;
|
|
10115
10187
|
/**
|
|
10116
|
-
* The ID of the post in
|
|
10188
|
+
* The ID of the post in bundle.social
|
|
10117
10189
|
*/
|
|
10118
10190
|
postId: string;
|
|
10119
10191
|
};
|
|
@@ -10128,7 +10200,7 @@ type MiscFacebookEditCommentData = {
|
|
|
10128
10200
|
requestBody?: {
|
|
10129
10201
|
teamId: string;
|
|
10130
10202
|
/**
|
|
10131
|
-
* The ID of the comment in
|
|
10203
|
+
* The ID of the comment in bundle.social
|
|
10132
10204
|
*/
|
|
10133
10205
|
commentId: string;
|
|
10134
10206
|
/**
|
|
@@ -10148,7 +10220,7 @@ type MiscFacebookDeleteCommentData = {
|
|
|
10148
10220
|
requestBody?: {
|
|
10149
10221
|
teamId: string;
|
|
10150
10222
|
/**
|
|
10151
|
-
* The ID of the comment in
|
|
10223
|
+
* The ID of the comment in bundle.social
|
|
10152
10224
|
*/
|
|
10153
10225
|
commentId: string;
|
|
10154
10226
|
};
|
|
@@ -10199,7 +10271,7 @@ type MiscPinterestDeletePinData = {
|
|
|
10199
10271
|
requestBody?: {
|
|
10200
10272
|
teamId: string;
|
|
10201
10273
|
/**
|
|
10202
|
-
* The ID of the post in
|
|
10274
|
+
* The ID of the post in bundle.social
|
|
10203
10275
|
*/
|
|
10204
10276
|
postId: string;
|
|
10205
10277
|
};
|
|
@@ -10238,7 +10310,7 @@ type MiscMastodonDeleteStatusData = {
|
|
|
10238
10310
|
requestBody?: {
|
|
10239
10311
|
teamId: string;
|
|
10240
10312
|
/**
|
|
10241
|
-
* The ID of the post in
|
|
10313
|
+
* The ID of the post in bundle.social
|
|
10242
10314
|
*/
|
|
10243
10315
|
postId: string;
|
|
10244
10316
|
};
|
|
@@ -10253,7 +10325,7 @@ type MiscMastodonEditCommentData = {
|
|
|
10253
10325
|
requestBody?: {
|
|
10254
10326
|
teamId: string;
|
|
10255
10327
|
/**
|
|
10256
|
-
* The ID of the comment in
|
|
10328
|
+
* The ID of the comment in bundle.social
|
|
10257
10329
|
*/
|
|
10258
10330
|
commentId: string;
|
|
10259
10331
|
/**
|
|
@@ -10277,7 +10349,7 @@ type MiscMastodonDeleteCommentData = {
|
|
|
10277
10349
|
requestBody?: {
|
|
10278
10350
|
teamId: string;
|
|
10279
10351
|
/**
|
|
10280
|
-
* The ID of the comment in
|
|
10352
|
+
* The ID of the comment in bundle.social
|
|
10281
10353
|
*/
|
|
10282
10354
|
commentId: string;
|
|
10283
10355
|
};
|
|
@@ -10312,7 +10384,7 @@ type MiscSlackDeleteMessageData = {
|
|
|
10312
10384
|
requestBody?: {
|
|
10313
10385
|
teamId: string;
|
|
10314
10386
|
/**
|
|
10315
|
-
* The ID of the post in
|
|
10387
|
+
* The ID of the post in bundle.social
|
|
10316
10388
|
*/
|
|
10317
10389
|
postId: string;
|
|
10318
10390
|
};
|
|
@@ -10327,7 +10399,7 @@ type MiscBlueskyDeletePostData = {
|
|
|
10327
10399
|
requestBody?: {
|
|
10328
10400
|
teamId: string;
|
|
10329
10401
|
/**
|
|
10330
|
-
* The ID of the post in
|
|
10402
|
+
* The ID of the post in bundle.social
|
|
10331
10403
|
*/
|
|
10332
10404
|
postId: string;
|
|
10333
10405
|
};
|
|
@@ -10342,7 +10414,7 @@ type MiscBlueskyDeleteCommentData = {
|
|
|
10342
10414
|
requestBody?: {
|
|
10343
10415
|
teamId: string;
|
|
10344
10416
|
/**
|
|
10345
|
-
* The ID of the comment in
|
|
10417
|
+
* The ID of the comment in bundle.social
|
|
10346
10418
|
*/
|
|
10347
10419
|
commentId: string;
|
|
10348
10420
|
};
|
|
@@ -10357,7 +10429,7 @@ type MiscTwitterDeleteTweetData = {
|
|
|
10357
10429
|
requestBody?: {
|
|
10358
10430
|
teamId: string;
|
|
10359
10431
|
/**
|
|
10360
|
-
* The ID of the post in
|
|
10432
|
+
* The ID of the post in bundle.social
|
|
10361
10433
|
*/
|
|
10362
10434
|
postId: string;
|
|
10363
10435
|
};
|
|
@@ -10372,7 +10444,7 @@ type MiscDiscordDeleteMessageData = {
|
|
|
10372
10444
|
requestBody?: {
|
|
10373
10445
|
teamId: string;
|
|
10374
10446
|
/**
|
|
10375
|
-
* The ID of the post in
|
|
10447
|
+
* The ID of the post in bundle.social
|
|
10376
10448
|
*/
|
|
10377
10449
|
postId: string;
|
|
10378
10450
|
};
|
|
@@ -10469,7 +10541,7 @@ type MiscTiktokDeleteCommentData = {
|
|
|
10469
10541
|
requestBody?: {
|
|
10470
10542
|
teamId: string;
|
|
10471
10543
|
/**
|
|
10472
|
-
* The ID of the comment in
|
|
10544
|
+
* The ID of the comment in bundle.social
|
|
10473
10545
|
*/
|
|
10474
10546
|
commentId: string;
|
|
10475
10547
|
};
|
|
@@ -10770,6 +10842,65 @@ type $OpenApiTs = {
|
|
|
10770
10842
|
200: {
|
|
10771
10843
|
status: string;
|
|
10772
10844
|
createdAt: string;
|
|
10845
|
+
note: string;
|
|
10846
|
+
platforms: {
|
|
10847
|
+
FACEBOOK: {
|
|
10848
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10849
|
+
note: string;
|
|
10850
|
+
};
|
|
10851
|
+
INSTAGRAM: {
|
|
10852
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10853
|
+
note: string;
|
|
10854
|
+
};
|
|
10855
|
+
TIKTOK: {
|
|
10856
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10857
|
+
note: string;
|
|
10858
|
+
};
|
|
10859
|
+
YOUTUBE: {
|
|
10860
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10861
|
+
note: string;
|
|
10862
|
+
};
|
|
10863
|
+
TWITTER: {
|
|
10864
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10865
|
+
note: string;
|
|
10866
|
+
};
|
|
10867
|
+
PINTEREST: {
|
|
10868
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10869
|
+
note: string;
|
|
10870
|
+
};
|
|
10871
|
+
REDDIT: {
|
|
10872
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10873
|
+
note: string;
|
|
10874
|
+
};
|
|
10875
|
+
MASTODON: {
|
|
10876
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10877
|
+
note: string;
|
|
10878
|
+
};
|
|
10879
|
+
DISCORD: {
|
|
10880
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10881
|
+
note: string;
|
|
10882
|
+
};
|
|
10883
|
+
SLACK: {
|
|
10884
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10885
|
+
note: string;
|
|
10886
|
+
};
|
|
10887
|
+
BLUESKY: {
|
|
10888
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10889
|
+
note: string;
|
|
10890
|
+
};
|
|
10891
|
+
GOOGLE_BUSINESS: {
|
|
10892
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10893
|
+
note: string;
|
|
10894
|
+
};
|
|
10895
|
+
LINKEDIN: {
|
|
10896
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10897
|
+
note: string;
|
|
10898
|
+
};
|
|
10899
|
+
THREADS: {
|
|
10900
|
+
status: 'operational' | 'degraded' | 'outage' | 'maintenance';
|
|
10901
|
+
note: string;
|
|
10902
|
+
};
|
|
10903
|
+
};
|
|
10773
10904
|
};
|
|
10774
10905
|
/**
|
|
10775
10906
|
* 400
|
|
@@ -10924,6 +11055,11 @@ type $OpenApiTs = {
|
|
|
10924
11055
|
maxMonthlyComments?: number | null;
|
|
10925
11056
|
maxMonthlyUploads?: number | null;
|
|
10926
11057
|
maxMonthlyImportedPosts?: number | null;
|
|
11058
|
+
pendingTier?: 'PRO' | 'BUSINESS' | null;
|
|
11059
|
+
pendingBillingInterval?: 'MONTHLY' | 'YEARLY' | null;
|
|
11060
|
+
pendingPriceId?: string | null;
|
|
11061
|
+
pendingEffectiveAt?: string | null;
|
|
11062
|
+
pendingScheduleId?: string | null;
|
|
10927
11063
|
discountStart?: string | null;
|
|
10928
11064
|
discountEnd?: string | null;
|
|
10929
11065
|
createdAt: string | null;
|