bundlesocial 2.45.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 +1047 -126
- package/dist/index.d.ts +1047 -126
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- 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;
|
|
@@ -137,6 +196,7 @@ type OrganizationGetOrganizationResponse = {
|
|
|
137
196
|
firstName?: string | null;
|
|
138
197
|
lastName?: string | null;
|
|
139
198
|
avatarUrl?: string | null;
|
|
199
|
+
timezone?: string | null;
|
|
140
200
|
role: 'ADMIN' | 'CUSTOMER';
|
|
141
201
|
createdAt: string | null;
|
|
142
202
|
updatedAt: string | null;
|
|
@@ -171,6 +231,11 @@ type OrganizationGetOrganizationResponse = {
|
|
|
171
231
|
maxMonthlyComments?: number | null;
|
|
172
232
|
maxMonthlyUploads?: number | null;
|
|
173
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;
|
|
174
239
|
discountStart?: string | null;
|
|
175
240
|
discountEnd?: string | null;
|
|
176
241
|
createdAt: string | null;
|
|
@@ -186,66 +251,24 @@ type OrganizationGetOrganizationResponse = {
|
|
|
186
251
|
valid: boolean;
|
|
187
252
|
createdAt: string | null;
|
|
188
253
|
updatedAt: string | null;
|
|
189
|
-
promotionCodes: Array<{
|
|
190
|
-
id: string;
|
|
191
|
-
couponId: string;
|
|
192
|
-
code: string;
|
|
193
|
-
active: boolean;
|
|
194
|
-
expiresAt?: string | null;
|
|
195
|
-
maxRedemptions?: number | null;
|
|
196
|
-
firstTimeTransaction: boolean;
|
|
197
|
-
minimumAmount?: number | null;
|
|
198
|
-
createdAt: string | null;
|
|
199
|
-
updatedAt: string | null;
|
|
200
|
-
}>;
|
|
201
254
|
} | null;
|
|
202
255
|
promotionCode?: {
|
|
203
|
-
id: string;
|
|
204
|
-
couponId: string;
|
|
205
256
|
code: string;
|
|
206
|
-
active: boolean;
|
|
207
|
-
expiresAt?: string | null;
|
|
208
|
-
maxRedemptions?: number | null;
|
|
209
|
-
firstTimeTransaction: boolean;
|
|
210
|
-
minimumAmount?: number | null;
|
|
211
|
-
createdAt: string | null;
|
|
212
|
-
updatedAt: string | null;
|
|
213
257
|
coupon: {
|
|
214
|
-
|
|
215
|
-
name?: string | null;
|
|
216
|
-
amountOff?: number | null;
|
|
217
|
-
percentOff?: number | null;
|
|
258
|
+
percentOff: number;
|
|
218
259
|
duration: 'forever' | 'once' | 'repeating';
|
|
219
260
|
durationInMonths?: number | null;
|
|
220
|
-
maxRedemptions?: number | null;
|
|
221
261
|
valid: boolean;
|
|
222
|
-
createdAt: string | null;
|
|
223
|
-
updatedAt: string | null;
|
|
224
262
|
};
|
|
225
263
|
} | null;
|
|
226
264
|
} | null;
|
|
227
265
|
promotionCode?: {
|
|
228
|
-
id: string;
|
|
229
|
-
couponId: string;
|
|
230
266
|
code: string;
|
|
231
|
-
active: boolean;
|
|
232
|
-
expiresAt?: string | null;
|
|
233
|
-
maxRedemptions?: number | null;
|
|
234
|
-
firstTimeTransaction: boolean;
|
|
235
|
-
minimumAmount?: number | null;
|
|
236
|
-
createdAt: string | null;
|
|
237
|
-
updatedAt: string | null;
|
|
238
267
|
coupon: {
|
|
239
|
-
|
|
240
|
-
name?: string | null;
|
|
241
|
-
amountOff?: number | null;
|
|
242
|
-
percentOff?: number | null;
|
|
268
|
+
percentOff: number;
|
|
243
269
|
duration: 'forever' | 'once' | 'repeating';
|
|
244
270
|
durationInMonths?: number | null;
|
|
245
|
-
maxRedemptions?: number | null;
|
|
246
271
|
valid: boolean;
|
|
247
|
-
createdAt: string | null;
|
|
248
|
-
updatedAt: string | null;
|
|
249
272
|
};
|
|
250
273
|
} | null;
|
|
251
274
|
teams: Array<{
|
|
@@ -374,6 +397,7 @@ type TeamGetTeamResponse = {
|
|
|
374
397
|
firstName?: string | null;
|
|
375
398
|
lastName?: string | null;
|
|
376
399
|
avatarUrl?: string | null;
|
|
400
|
+
timezone?: string | null;
|
|
377
401
|
role: 'ADMIN' | 'CUSTOMER';
|
|
378
402
|
createdAt: string | null;
|
|
379
403
|
updatedAt: string | null;
|
|
@@ -576,6 +600,7 @@ type TeamGetListResponse = {
|
|
|
576
600
|
firstName?: string | null;
|
|
577
601
|
lastName?: string | null;
|
|
578
602
|
avatarUrl?: string | null;
|
|
603
|
+
timezone?: string | null;
|
|
579
604
|
role: 'ADMIN' | 'CUSTOMER';
|
|
580
605
|
createdAt: string | null;
|
|
581
606
|
updatedAt: string | null;
|
|
@@ -705,6 +730,10 @@ type SocialAccountConnectData = {
|
|
|
705
730
|
* Optional. When true, adds provider-specific flags to avoid automatic login/auto-approval where supported.
|
|
706
731
|
*/
|
|
707
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;
|
|
708
737
|
/**
|
|
709
738
|
* Instagram only - connection method
|
|
710
739
|
*/
|
|
@@ -926,6 +955,10 @@ type SocialAccountCreatePortalLinkData = {
|
|
|
926
955
|
* Optional. If true, portal will request provider-specific anti-auto-login behavior where supported.
|
|
927
956
|
*/
|
|
928
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;
|
|
929
962
|
/**
|
|
930
963
|
* Optional. Facebook and Instagram only - when provided, portal skips business scope selection modal for Facebook login paths.
|
|
931
964
|
*/
|
|
@@ -8908,7 +8941,7 @@ type MiscYoutubeDeleteVideoData = {
|
|
|
8908
8941
|
requestBody?: {
|
|
8909
8942
|
teamId: string;
|
|
8910
8943
|
/**
|
|
8911
|
-
* The ID of the post in
|
|
8944
|
+
* The ID of the post in bundle.social
|
|
8912
8945
|
*/
|
|
8913
8946
|
postId: string;
|
|
8914
8947
|
};
|
|
@@ -8923,7 +8956,7 @@ type MiscYoutubeEditCommentData = {
|
|
|
8923
8956
|
requestBody?: {
|
|
8924
8957
|
teamId: string;
|
|
8925
8958
|
/**
|
|
8926
|
-
* The ID of the comment in
|
|
8959
|
+
* The ID of the comment in bundle.social
|
|
8927
8960
|
*/
|
|
8928
8961
|
commentId: string;
|
|
8929
8962
|
/**
|
|
@@ -8943,7 +8976,7 @@ type MiscYoutubeDeleteCommentData = {
|
|
|
8943
8976
|
requestBody?: {
|
|
8944
8977
|
teamId: string;
|
|
8945
8978
|
/**
|
|
8946
|
-
* The ID of the comment in
|
|
8979
|
+
* The ID of the comment in bundle.social
|
|
8947
8980
|
*/
|
|
8948
8981
|
commentId: string;
|
|
8949
8982
|
};
|
|
@@ -9051,7 +9084,7 @@ type MiscLinkedinDeletePostData = {
|
|
|
9051
9084
|
requestBody?: {
|
|
9052
9085
|
teamId: string;
|
|
9053
9086
|
/**
|
|
9054
|
-
* The ID of the post in
|
|
9087
|
+
* The ID of the post in bundle.social
|
|
9055
9088
|
*/
|
|
9056
9089
|
postId: string;
|
|
9057
9090
|
};
|
|
@@ -9066,7 +9099,7 @@ type MiscLinkedinEditCommentData = {
|
|
|
9066
9099
|
requestBody?: {
|
|
9067
9100
|
teamId: string;
|
|
9068
9101
|
/**
|
|
9069
|
-
* The ID of the comment in
|
|
9102
|
+
* The ID of the comment in bundle.social
|
|
9070
9103
|
*/
|
|
9071
9104
|
commentId: string;
|
|
9072
9105
|
/**
|
|
@@ -9086,7 +9119,7 @@ type MiscLinkedinDeleteCommentData = {
|
|
|
9086
9119
|
requestBody?: {
|
|
9087
9120
|
teamId: string;
|
|
9088
9121
|
/**
|
|
9089
|
-
* The ID of the comment in
|
|
9122
|
+
* The ID of the comment in bundle.social
|
|
9090
9123
|
*/
|
|
9091
9124
|
commentId: string;
|
|
9092
9125
|
};
|
|
@@ -9160,7 +9193,7 @@ type MiscGoogleBusinessDeletePostData = {
|
|
|
9160
9193
|
requestBody?: {
|
|
9161
9194
|
teamId: string;
|
|
9162
9195
|
/**
|
|
9163
|
-
* The ID of the post in
|
|
9196
|
+
* The ID of the post in bundle.social
|
|
9164
9197
|
*/
|
|
9165
9198
|
postId: string;
|
|
9166
9199
|
};
|
|
@@ -9795,7 +9828,7 @@ type MiscRedditDeletePostData = {
|
|
|
9795
9828
|
requestBody?: {
|
|
9796
9829
|
teamId: string;
|
|
9797
9830
|
/**
|
|
9798
|
-
* The ID of the post in
|
|
9831
|
+
* The ID of the post in bundle.social
|
|
9799
9832
|
*/
|
|
9800
9833
|
postId: string;
|
|
9801
9834
|
};
|
|
@@ -9810,7 +9843,7 @@ type MiscRedditEditCommentData = {
|
|
|
9810
9843
|
requestBody?: {
|
|
9811
9844
|
teamId: string;
|
|
9812
9845
|
/**
|
|
9813
|
-
* The ID of the comment in
|
|
9846
|
+
* The ID of the comment in bundle.social
|
|
9814
9847
|
*/
|
|
9815
9848
|
commentId: string;
|
|
9816
9849
|
/**
|
|
@@ -9830,7 +9863,7 @@ type MiscRedditDeleteCommentData = {
|
|
|
9830
9863
|
requestBody?: {
|
|
9831
9864
|
teamId: string;
|
|
9832
9865
|
/**
|
|
9833
|
-
* The ID of the comment in
|
|
9866
|
+
* The ID of the comment in bundle.social
|
|
9834
9867
|
*/
|
|
9835
9868
|
commentId: string;
|
|
9836
9869
|
};
|
|
@@ -9927,7 +9960,7 @@ type MiscInstagramDeleteCommentData = {
|
|
|
9927
9960
|
requestBody?: {
|
|
9928
9961
|
teamId: string;
|
|
9929
9962
|
/**
|
|
9930
|
-
* The ID of the comment in
|
|
9963
|
+
* The ID of the comment in bundle.social
|
|
9931
9964
|
*/
|
|
9932
9965
|
commentId: string;
|
|
9933
9966
|
};
|
|
@@ -9935,6 +9968,196 @@ type MiscInstagramDeleteCommentData = {
|
|
|
9935
9968
|
type MiscInstagramDeleteCommentResponse = {
|
|
9936
9969
|
success: boolean;
|
|
9937
9970
|
};
|
|
9971
|
+
type MiscFacebookImportRecommendationsData = {
|
|
9972
|
+
/**
|
|
9973
|
+
* Body
|
|
9974
|
+
*/
|
|
9975
|
+
requestBody?: {
|
|
9976
|
+
teamId: string;
|
|
9977
|
+
count: number;
|
|
9978
|
+
};
|
|
9979
|
+
};
|
|
9980
|
+
type MiscFacebookImportRecommendationsResponse = {
|
|
9981
|
+
id: string;
|
|
9982
|
+
teamId: string;
|
|
9983
|
+
socialAccountId: string;
|
|
9984
|
+
requestedCount: number;
|
|
9985
|
+
status: 'PENDING' | 'FETCHING_RECOMMENDATIONS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
9986
|
+
itemsImported: number;
|
|
9987
|
+
error?: string | null;
|
|
9988
|
+
rateLimitResetAt?: string | null;
|
|
9989
|
+
startedAt?: string | null;
|
|
9990
|
+
completedAt?: string | null;
|
|
9991
|
+
createdAt: string | null;
|
|
9992
|
+
updatedAt: string | null;
|
|
9993
|
+
deletedAt?: string | null;
|
|
9994
|
+
};
|
|
9995
|
+
type MiscFacebookGetRecommendationImportStatusData = {
|
|
9996
|
+
teamId: string;
|
|
9997
|
+
};
|
|
9998
|
+
type MiscFacebookGetRecommendationImportStatusResponse = {
|
|
9999
|
+
imports: Array<{
|
|
10000
|
+
id: string;
|
|
10001
|
+
teamId: string;
|
|
10002
|
+
socialAccountId: string;
|
|
10003
|
+
requestedCount: number;
|
|
10004
|
+
status: 'PENDING' | 'FETCHING_RECOMMENDATIONS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
10005
|
+
itemsImported: number;
|
|
10006
|
+
error?: string | null;
|
|
10007
|
+
rateLimitResetAt?: string | null;
|
|
10008
|
+
startedAt?: string | null;
|
|
10009
|
+
completedAt?: string | null;
|
|
10010
|
+
createdAt: string | null;
|
|
10011
|
+
updatedAt: string | null;
|
|
10012
|
+
deletedAt?: string | null;
|
|
10013
|
+
}>;
|
|
10014
|
+
};
|
|
10015
|
+
type MiscFacebookGetRecommendationImportByIdData = {
|
|
10016
|
+
importId: string;
|
|
10017
|
+
};
|
|
10018
|
+
type MiscFacebookGetRecommendationImportByIdResponse = {
|
|
10019
|
+
id: string;
|
|
10020
|
+
teamId: string;
|
|
10021
|
+
socialAccountId: string;
|
|
10022
|
+
requestedCount: number;
|
|
10023
|
+
status: 'PENDING' | 'FETCHING_RECOMMENDATIONS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
10024
|
+
itemsImported: number;
|
|
10025
|
+
error?: string | null;
|
|
10026
|
+
rateLimitResetAt?: string | null;
|
|
10027
|
+
startedAt?: string | null;
|
|
10028
|
+
completedAt?: string | null;
|
|
10029
|
+
createdAt: string | null;
|
|
10030
|
+
updatedAt: string | null;
|
|
10031
|
+
deletedAt?: string | null;
|
|
10032
|
+
};
|
|
10033
|
+
type MiscFacebookGetRecommendationsData = {
|
|
10034
|
+
limit?: number;
|
|
10035
|
+
offset?: number | null;
|
|
10036
|
+
teamId: string;
|
|
10037
|
+
};
|
|
10038
|
+
type MiscFacebookGetRecommendationsResponse = {
|
|
10039
|
+
recommendations: Array<{
|
|
10040
|
+
id: string;
|
|
10041
|
+
socialAccountId: string;
|
|
10042
|
+
teamId: string;
|
|
10043
|
+
externalRecommendationId: string;
|
|
10044
|
+
openGraphStoryId?: string | null;
|
|
10045
|
+
reviewerDisplayName?: string | null;
|
|
10046
|
+
reviewerProfilePhotoUrl?: string | null;
|
|
10047
|
+
recommendationValue?: 'RECOMMEND' | 'NOT_RECOMMEND' | 'UNKNOWN' | null;
|
|
10048
|
+
rating?: number | null;
|
|
10049
|
+
comment?: string | null;
|
|
10050
|
+
hasMedia: boolean;
|
|
10051
|
+
mediaSummary?: Array<(string)> | null;
|
|
10052
|
+
ownerReplyComment?: string | null;
|
|
10053
|
+
ownerReplyCommentId?: string | null;
|
|
10054
|
+
ownerReplyUpdatedAt?: string | null;
|
|
10055
|
+
createTime?: string | null;
|
|
10056
|
+
updateTime?: string | null;
|
|
10057
|
+
importedAt?: string | null;
|
|
10058
|
+
createdAt: string | null;
|
|
10059
|
+
updatedAt: string | null;
|
|
10060
|
+
deletedAt?: string | null;
|
|
10061
|
+
}>;
|
|
10062
|
+
total: number;
|
|
10063
|
+
limit: number;
|
|
10064
|
+
remainingCapacity: number;
|
|
10065
|
+
};
|
|
10066
|
+
type MiscFacebookGetRecommendationByIdData = {
|
|
10067
|
+
recommendationId: string;
|
|
10068
|
+
teamId: string;
|
|
10069
|
+
};
|
|
10070
|
+
type MiscFacebookGetRecommendationByIdResponse = {
|
|
10071
|
+
id: string;
|
|
10072
|
+
socialAccountId: string;
|
|
10073
|
+
teamId: string;
|
|
10074
|
+
externalRecommendationId: string;
|
|
10075
|
+
openGraphStoryId?: string | null;
|
|
10076
|
+
reviewerDisplayName?: string | null;
|
|
10077
|
+
reviewerProfilePhotoUrl?: string | null;
|
|
10078
|
+
recommendationValue?: 'RECOMMEND' | 'NOT_RECOMMEND' | 'UNKNOWN' | null;
|
|
10079
|
+
rating?: number | null;
|
|
10080
|
+
comment?: string | null;
|
|
10081
|
+
hasMedia: boolean;
|
|
10082
|
+
mediaSummary?: Array<(string)> | null;
|
|
10083
|
+
ownerReplyComment?: string | null;
|
|
10084
|
+
ownerReplyCommentId?: string | null;
|
|
10085
|
+
ownerReplyUpdatedAt?: string | null;
|
|
10086
|
+
createTime?: string | null;
|
|
10087
|
+
updateTime?: string | null;
|
|
10088
|
+
importedAt?: string | null;
|
|
10089
|
+
createdAt: string | null;
|
|
10090
|
+
updatedAt: string | null;
|
|
10091
|
+
deletedAt?: string | null;
|
|
10092
|
+
};
|
|
10093
|
+
type MiscFacebookGetRecommendationCommentsData = {
|
|
10094
|
+
recommendationId: string;
|
|
10095
|
+
teamId: string;
|
|
10096
|
+
};
|
|
10097
|
+
type MiscFacebookGetRecommendationCommentsResponse = {
|
|
10098
|
+
comments: Array<{
|
|
10099
|
+
id: string;
|
|
10100
|
+
recommendationId: string;
|
|
10101
|
+
rootObjectId: string;
|
|
10102
|
+
parentCommentId?: string | null;
|
|
10103
|
+
authorName?: string | null;
|
|
10104
|
+
authorExternalId?: string | null;
|
|
10105
|
+
authorAvatarUrl?: string | null;
|
|
10106
|
+
text?: string | null;
|
|
10107
|
+
likesCount: number;
|
|
10108
|
+
repliesCount: number;
|
|
10109
|
+
canReply?: boolean | null;
|
|
10110
|
+
createdTime?: string | null;
|
|
10111
|
+
}>;
|
|
10112
|
+
total: number;
|
|
10113
|
+
};
|
|
10114
|
+
type MiscFacebookReplyToRecommendationData = {
|
|
10115
|
+
recommendationId: string;
|
|
10116
|
+
/**
|
|
10117
|
+
* Body
|
|
10118
|
+
*/
|
|
10119
|
+
requestBody?: {
|
|
10120
|
+
teamId: string;
|
|
10121
|
+
comment: string;
|
|
10122
|
+
};
|
|
10123
|
+
};
|
|
10124
|
+
type MiscFacebookReplyToRecommendationResponse = {
|
|
10125
|
+
id: string;
|
|
10126
|
+
socialAccountId: string;
|
|
10127
|
+
teamId: string;
|
|
10128
|
+
externalRecommendationId: string;
|
|
10129
|
+
openGraphStoryId?: string | null;
|
|
10130
|
+
reviewerDisplayName?: string | null;
|
|
10131
|
+
reviewerProfilePhotoUrl?: string | null;
|
|
10132
|
+
recommendationValue?: 'RECOMMEND' | 'NOT_RECOMMEND' | 'UNKNOWN' | null;
|
|
10133
|
+
rating?: number | null;
|
|
10134
|
+
comment?: string | null;
|
|
10135
|
+
hasMedia: boolean;
|
|
10136
|
+
mediaSummary?: Array<(string)> | null;
|
|
10137
|
+
ownerReplyComment?: string | null;
|
|
10138
|
+
ownerReplyCommentId?: string | null;
|
|
10139
|
+
ownerReplyUpdatedAt?: string | null;
|
|
10140
|
+
createTime?: string | null;
|
|
10141
|
+
updateTime?: string | null;
|
|
10142
|
+
importedAt?: string | null;
|
|
10143
|
+
createdAt: string | null;
|
|
10144
|
+
updatedAt: string | null;
|
|
10145
|
+
deletedAt?: string | null;
|
|
10146
|
+
};
|
|
10147
|
+
type MiscFacebookReplyToRecommendationCommentData = {
|
|
10148
|
+
commentId: string;
|
|
10149
|
+
recommendationId: string;
|
|
10150
|
+
/**
|
|
10151
|
+
* Body
|
|
10152
|
+
*/
|
|
10153
|
+
requestBody?: {
|
|
10154
|
+
teamId: string;
|
|
10155
|
+
comment: string;
|
|
10156
|
+
};
|
|
10157
|
+
};
|
|
10158
|
+
type MiscFacebookReplyToRecommendationCommentResponse = {
|
|
10159
|
+
id: string;
|
|
10160
|
+
};
|
|
9938
10161
|
type MiscFacebookEditPostData = {
|
|
9939
10162
|
/**
|
|
9940
10163
|
* Body
|
|
@@ -9962,7 +10185,7 @@ type MiscFacebookDeletePostData = {
|
|
|
9962
10185
|
requestBody?: {
|
|
9963
10186
|
teamId: string;
|
|
9964
10187
|
/**
|
|
9965
|
-
* The ID of the post in
|
|
10188
|
+
* The ID of the post in bundle.social
|
|
9966
10189
|
*/
|
|
9967
10190
|
postId: string;
|
|
9968
10191
|
};
|
|
@@ -9977,7 +10200,7 @@ type MiscFacebookEditCommentData = {
|
|
|
9977
10200
|
requestBody?: {
|
|
9978
10201
|
teamId: string;
|
|
9979
10202
|
/**
|
|
9980
|
-
* The ID of the comment in
|
|
10203
|
+
* The ID of the comment in bundle.social
|
|
9981
10204
|
*/
|
|
9982
10205
|
commentId: string;
|
|
9983
10206
|
/**
|
|
@@ -9997,7 +10220,7 @@ type MiscFacebookDeleteCommentData = {
|
|
|
9997
10220
|
requestBody?: {
|
|
9998
10221
|
teamId: string;
|
|
9999
10222
|
/**
|
|
10000
|
-
* The ID of the comment in
|
|
10223
|
+
* The ID of the comment in bundle.social
|
|
10001
10224
|
*/
|
|
10002
10225
|
commentId: string;
|
|
10003
10226
|
};
|
|
@@ -10048,7 +10271,7 @@ type MiscPinterestDeletePinData = {
|
|
|
10048
10271
|
requestBody?: {
|
|
10049
10272
|
teamId: string;
|
|
10050
10273
|
/**
|
|
10051
|
-
* The ID of the post in
|
|
10274
|
+
* The ID of the post in bundle.social
|
|
10052
10275
|
*/
|
|
10053
10276
|
postId: string;
|
|
10054
10277
|
};
|
|
@@ -10087,7 +10310,7 @@ type MiscMastodonDeleteStatusData = {
|
|
|
10087
10310
|
requestBody?: {
|
|
10088
10311
|
teamId: string;
|
|
10089
10312
|
/**
|
|
10090
|
-
* The ID of the post in
|
|
10313
|
+
* The ID of the post in bundle.social
|
|
10091
10314
|
*/
|
|
10092
10315
|
postId: string;
|
|
10093
10316
|
};
|
|
@@ -10102,7 +10325,7 @@ type MiscMastodonEditCommentData = {
|
|
|
10102
10325
|
requestBody?: {
|
|
10103
10326
|
teamId: string;
|
|
10104
10327
|
/**
|
|
10105
|
-
* The ID of the comment in
|
|
10328
|
+
* The ID of the comment in bundle.social
|
|
10106
10329
|
*/
|
|
10107
10330
|
commentId: string;
|
|
10108
10331
|
/**
|
|
@@ -10126,7 +10349,7 @@ type MiscMastodonDeleteCommentData = {
|
|
|
10126
10349
|
requestBody?: {
|
|
10127
10350
|
teamId: string;
|
|
10128
10351
|
/**
|
|
10129
|
-
* The ID of the comment in
|
|
10352
|
+
* The ID of the comment in bundle.social
|
|
10130
10353
|
*/
|
|
10131
10354
|
commentId: string;
|
|
10132
10355
|
};
|
|
@@ -10161,7 +10384,7 @@ type MiscSlackDeleteMessageData = {
|
|
|
10161
10384
|
requestBody?: {
|
|
10162
10385
|
teamId: string;
|
|
10163
10386
|
/**
|
|
10164
|
-
* The ID of the post in
|
|
10387
|
+
* The ID of the post in bundle.social
|
|
10165
10388
|
*/
|
|
10166
10389
|
postId: string;
|
|
10167
10390
|
};
|
|
@@ -10176,7 +10399,7 @@ type MiscBlueskyDeletePostData = {
|
|
|
10176
10399
|
requestBody?: {
|
|
10177
10400
|
teamId: string;
|
|
10178
10401
|
/**
|
|
10179
|
-
* The ID of the post in
|
|
10402
|
+
* The ID of the post in bundle.social
|
|
10180
10403
|
*/
|
|
10181
10404
|
postId: string;
|
|
10182
10405
|
};
|
|
@@ -10191,7 +10414,7 @@ type MiscBlueskyDeleteCommentData = {
|
|
|
10191
10414
|
requestBody?: {
|
|
10192
10415
|
teamId: string;
|
|
10193
10416
|
/**
|
|
10194
|
-
* The ID of the comment in
|
|
10417
|
+
* The ID of the comment in bundle.social
|
|
10195
10418
|
*/
|
|
10196
10419
|
commentId: string;
|
|
10197
10420
|
};
|
|
@@ -10206,7 +10429,7 @@ type MiscTwitterDeleteTweetData = {
|
|
|
10206
10429
|
requestBody?: {
|
|
10207
10430
|
teamId: string;
|
|
10208
10431
|
/**
|
|
10209
|
-
* The ID of the post in
|
|
10432
|
+
* The ID of the post in bundle.social
|
|
10210
10433
|
*/
|
|
10211
10434
|
postId: string;
|
|
10212
10435
|
};
|
|
@@ -10221,7 +10444,7 @@ type MiscDiscordDeleteMessageData = {
|
|
|
10221
10444
|
requestBody?: {
|
|
10222
10445
|
teamId: string;
|
|
10223
10446
|
/**
|
|
10224
|
-
* The ID of the post in
|
|
10447
|
+
* The ID of the post in bundle.social
|
|
10225
10448
|
*/
|
|
10226
10449
|
postId: string;
|
|
10227
10450
|
};
|
|
@@ -10318,7 +10541,7 @@ type MiscTiktokDeleteCommentData = {
|
|
|
10318
10541
|
requestBody?: {
|
|
10319
10542
|
teamId: string;
|
|
10320
10543
|
/**
|
|
10321
|
-
* The ID of the comment in
|
|
10544
|
+
* The ID of the comment in bundle.social
|
|
10322
10545
|
*/
|
|
10323
10546
|
commentId: string;
|
|
10324
10547
|
};
|
|
@@ -10619,6 +10842,65 @@ type $OpenApiTs = {
|
|
|
10619
10842
|
200: {
|
|
10620
10843
|
status: string;
|
|
10621
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
|
+
};
|
|
10622
10904
|
};
|
|
10623
10905
|
/**
|
|
10624
10906
|
* 400
|
|
@@ -10738,6 +11020,7 @@ type $OpenApiTs = {
|
|
|
10738
11020
|
firstName?: string | null;
|
|
10739
11021
|
lastName?: string | null;
|
|
10740
11022
|
avatarUrl?: string | null;
|
|
11023
|
+
timezone?: string | null;
|
|
10741
11024
|
role: 'ADMIN' | 'CUSTOMER';
|
|
10742
11025
|
createdAt: string | null;
|
|
10743
11026
|
updatedAt: string | null;
|
|
@@ -10772,6 +11055,11 @@ type $OpenApiTs = {
|
|
|
10772
11055
|
maxMonthlyComments?: number | null;
|
|
10773
11056
|
maxMonthlyUploads?: number | null;
|
|
10774
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;
|
|
10775
11063
|
discountStart?: string | null;
|
|
10776
11064
|
discountEnd?: string | null;
|
|
10777
11065
|
createdAt: string | null;
|
|
@@ -10787,66 +11075,24 @@ type $OpenApiTs = {
|
|
|
10787
11075
|
valid: boolean;
|
|
10788
11076
|
createdAt: string | null;
|
|
10789
11077
|
updatedAt: string | null;
|
|
10790
|
-
promotionCodes: Array<{
|
|
10791
|
-
id: string;
|
|
10792
|
-
couponId: string;
|
|
10793
|
-
code: string;
|
|
10794
|
-
active: boolean;
|
|
10795
|
-
expiresAt?: string | null;
|
|
10796
|
-
maxRedemptions?: number | null;
|
|
10797
|
-
firstTimeTransaction: boolean;
|
|
10798
|
-
minimumAmount?: number | null;
|
|
10799
|
-
createdAt: string | null;
|
|
10800
|
-
updatedAt: string | null;
|
|
10801
|
-
}>;
|
|
10802
11078
|
} | null;
|
|
10803
11079
|
promotionCode?: {
|
|
10804
|
-
id: string;
|
|
10805
|
-
couponId: string;
|
|
10806
11080
|
code: string;
|
|
10807
|
-
active: boolean;
|
|
10808
|
-
expiresAt?: string | null;
|
|
10809
|
-
maxRedemptions?: number | null;
|
|
10810
|
-
firstTimeTransaction: boolean;
|
|
10811
|
-
minimumAmount?: number | null;
|
|
10812
|
-
createdAt: string | null;
|
|
10813
|
-
updatedAt: string | null;
|
|
10814
11081
|
coupon: {
|
|
10815
|
-
|
|
10816
|
-
name?: string | null;
|
|
10817
|
-
amountOff?: number | null;
|
|
10818
|
-
percentOff?: number | null;
|
|
11082
|
+
percentOff: number;
|
|
10819
11083
|
duration: 'forever' | 'once' | 'repeating';
|
|
10820
11084
|
durationInMonths?: number | null;
|
|
10821
|
-
maxRedemptions?: number | null;
|
|
10822
11085
|
valid: boolean;
|
|
10823
|
-
createdAt: string | null;
|
|
10824
|
-
updatedAt: string | null;
|
|
10825
11086
|
};
|
|
10826
11087
|
} | null;
|
|
10827
11088
|
} | null;
|
|
10828
11089
|
promotionCode?: {
|
|
10829
|
-
id: string;
|
|
10830
|
-
couponId: string;
|
|
10831
11090
|
code: string;
|
|
10832
|
-
active: boolean;
|
|
10833
|
-
expiresAt?: string | null;
|
|
10834
|
-
maxRedemptions?: number | null;
|
|
10835
|
-
firstTimeTransaction: boolean;
|
|
10836
|
-
minimumAmount?: number | null;
|
|
10837
|
-
createdAt: string | null;
|
|
10838
|
-
updatedAt: string | null;
|
|
10839
11091
|
coupon: {
|
|
10840
|
-
|
|
10841
|
-
name?: string | null;
|
|
10842
|
-
amountOff?: number | null;
|
|
10843
|
-
percentOff?: number | null;
|
|
11092
|
+
percentOff: number;
|
|
10844
11093
|
duration: 'forever' | 'once' | 'repeating';
|
|
10845
11094
|
durationInMonths?: number | null;
|
|
10846
|
-
maxRedemptions?: number | null;
|
|
10847
11095
|
valid: boolean;
|
|
10848
|
-
createdAt: string | null;
|
|
10849
|
-
updatedAt: string | null;
|
|
10850
11096
|
};
|
|
10851
11097
|
} | null;
|
|
10852
11098
|
teams: Array<{
|
|
@@ -11246,6 +11492,7 @@ type $OpenApiTs = {
|
|
|
11246
11492
|
firstName?: string | null;
|
|
11247
11493
|
lastName?: string | null;
|
|
11248
11494
|
avatarUrl?: string | null;
|
|
11495
|
+
timezone?: string | null;
|
|
11249
11496
|
role: 'ADMIN' | 'CUSTOMER';
|
|
11250
11497
|
createdAt: string | null;
|
|
11251
11498
|
updatedAt: string | null;
|
|
@@ -11596,6 +11843,7 @@ type $OpenApiTs = {
|
|
|
11596
11843
|
firstName?: string | null;
|
|
11597
11844
|
lastName?: string | null;
|
|
11598
11845
|
avatarUrl?: string | null;
|
|
11846
|
+
timezone?: string | null;
|
|
11599
11847
|
role: 'ADMIN' | 'CUSTOMER';
|
|
11600
11848
|
createdAt: string | null;
|
|
11601
11849
|
updatedAt: string | null;
|
|
@@ -24655,16 +24903,27 @@ type $OpenApiTs = {
|
|
|
24655
24903
|
};
|
|
24656
24904
|
};
|
|
24657
24905
|
};
|
|
24658
|
-
'/api/v1/misc/facebook/
|
|
24659
|
-
|
|
24660
|
-
req:
|
|
24906
|
+
'/api/v1/misc/facebook/recommendations/import': {
|
|
24907
|
+
post: {
|
|
24908
|
+
req: MiscFacebookImportRecommendationsData;
|
|
24661
24909
|
res: {
|
|
24662
24910
|
/**
|
|
24663
|
-
*
|
|
24911
|
+
* 201
|
|
24664
24912
|
*/
|
|
24665
|
-
|
|
24666
|
-
|
|
24667
|
-
|
|
24913
|
+
201: {
|
|
24914
|
+
id: string;
|
|
24915
|
+
teamId: string;
|
|
24916
|
+
socialAccountId: string;
|
|
24917
|
+
requestedCount: number;
|
|
24918
|
+
status: 'PENDING' | 'FETCHING_RECOMMENDATIONS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
24919
|
+
itemsImported: number;
|
|
24920
|
+
error?: string | null;
|
|
24921
|
+
rateLimitResetAt?: string | null;
|
|
24922
|
+
startedAt?: string | null;
|
|
24923
|
+
completedAt?: string | null;
|
|
24924
|
+
createdAt: string | null;
|
|
24925
|
+
updatedAt: string | null;
|
|
24926
|
+
deletedAt?: string | null;
|
|
24668
24927
|
};
|
|
24669
24928
|
/**
|
|
24670
24929
|
* 400
|
|
@@ -24699,6 +24958,13 @@ type $OpenApiTs = {
|
|
|
24699
24958
|
statusCode?: number | null;
|
|
24700
24959
|
message: string;
|
|
24701
24960
|
};
|
|
24961
|
+
/**
|
|
24962
|
+
* 409
|
|
24963
|
+
*/
|
|
24964
|
+
409: {
|
|
24965
|
+
statusCode?: number | null;
|
|
24966
|
+
message: string;
|
|
24967
|
+
};
|
|
24702
24968
|
/**
|
|
24703
24969
|
* 429
|
|
24704
24970
|
*/
|
|
@@ -24715,14 +24981,28 @@ type $OpenApiTs = {
|
|
|
24715
24981
|
};
|
|
24716
24982
|
};
|
|
24717
24983
|
};
|
|
24718
|
-
|
|
24719
|
-
req:
|
|
24984
|
+
get: {
|
|
24985
|
+
req: MiscFacebookGetRecommendationImportStatusData;
|
|
24720
24986
|
res: {
|
|
24721
24987
|
/**
|
|
24722
24988
|
* 200
|
|
24723
24989
|
*/
|
|
24724
24990
|
200: {
|
|
24725
|
-
|
|
24991
|
+
imports: Array<{
|
|
24992
|
+
id: string;
|
|
24993
|
+
teamId: string;
|
|
24994
|
+
socialAccountId: string;
|
|
24995
|
+
requestedCount: number;
|
|
24996
|
+
status: 'PENDING' | 'FETCHING_RECOMMENDATIONS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
24997
|
+
itemsImported: number;
|
|
24998
|
+
error?: string | null;
|
|
24999
|
+
rateLimitResetAt?: string | null;
|
|
25000
|
+
startedAt?: string | null;
|
|
25001
|
+
completedAt?: string | null;
|
|
25002
|
+
createdAt: string | null;
|
|
25003
|
+
updatedAt: string | null;
|
|
25004
|
+
deletedAt?: string | null;
|
|
25005
|
+
}>;
|
|
24726
25006
|
};
|
|
24727
25007
|
/**
|
|
24728
25008
|
* 400
|
|
@@ -24774,9 +25054,579 @@ type $OpenApiTs = {
|
|
|
24774
25054
|
};
|
|
24775
25055
|
};
|
|
24776
25056
|
};
|
|
24777
|
-
'/api/v1/misc/facebook/
|
|
24778
|
-
|
|
24779
|
-
req:
|
|
25057
|
+
'/api/v1/misc/facebook/recommendations/import/{importId}': {
|
|
25058
|
+
get: {
|
|
25059
|
+
req: MiscFacebookGetRecommendationImportByIdData;
|
|
25060
|
+
res: {
|
|
25061
|
+
/**
|
|
25062
|
+
* 200
|
|
25063
|
+
*/
|
|
25064
|
+
200: {
|
|
25065
|
+
id: string;
|
|
25066
|
+
teamId: string;
|
|
25067
|
+
socialAccountId: string;
|
|
25068
|
+
requestedCount: number;
|
|
25069
|
+
status: 'PENDING' | 'FETCHING_RECOMMENDATIONS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
25070
|
+
itemsImported: number;
|
|
25071
|
+
error?: string | null;
|
|
25072
|
+
rateLimitResetAt?: string | null;
|
|
25073
|
+
startedAt?: string | null;
|
|
25074
|
+
completedAt?: string | null;
|
|
25075
|
+
createdAt: string | null;
|
|
25076
|
+
updatedAt: string | null;
|
|
25077
|
+
deletedAt?: string | null;
|
|
25078
|
+
};
|
|
25079
|
+
/**
|
|
25080
|
+
* 400
|
|
25081
|
+
*/
|
|
25082
|
+
400: {
|
|
25083
|
+
statusCode?: number | null;
|
|
25084
|
+
message: string;
|
|
25085
|
+
issues?: Array<{
|
|
25086
|
+
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;
|
|
25087
|
+
message: string;
|
|
25088
|
+
path?: Array<(string | number)> | null;
|
|
25089
|
+
}> | null;
|
|
25090
|
+
};
|
|
25091
|
+
/**
|
|
25092
|
+
* 401
|
|
25093
|
+
*/
|
|
25094
|
+
401: {
|
|
25095
|
+
statusCode?: number | null;
|
|
25096
|
+
message: string;
|
|
25097
|
+
};
|
|
25098
|
+
/**
|
|
25099
|
+
* 403
|
|
25100
|
+
*/
|
|
25101
|
+
403: {
|
|
25102
|
+
statusCode?: number | null;
|
|
25103
|
+
message: string;
|
|
25104
|
+
};
|
|
25105
|
+
/**
|
|
25106
|
+
* 404
|
|
25107
|
+
*/
|
|
25108
|
+
404: {
|
|
25109
|
+
statusCode?: number | null;
|
|
25110
|
+
message: string;
|
|
25111
|
+
};
|
|
25112
|
+
/**
|
|
25113
|
+
* 429
|
|
25114
|
+
*/
|
|
25115
|
+
429: {
|
|
25116
|
+
statusCode?: number | null;
|
|
25117
|
+
message: string;
|
|
25118
|
+
};
|
|
25119
|
+
/**
|
|
25120
|
+
* 500
|
|
25121
|
+
*/
|
|
25122
|
+
500: {
|
|
25123
|
+
statusCode?: number | null;
|
|
25124
|
+
message: string;
|
|
25125
|
+
};
|
|
25126
|
+
};
|
|
25127
|
+
};
|
|
25128
|
+
};
|
|
25129
|
+
'/api/v1/misc/facebook/recommendations': {
|
|
25130
|
+
get: {
|
|
25131
|
+
req: MiscFacebookGetRecommendationsData;
|
|
25132
|
+
res: {
|
|
25133
|
+
/**
|
|
25134
|
+
* 200
|
|
25135
|
+
*/
|
|
25136
|
+
200: {
|
|
25137
|
+
recommendations: Array<{
|
|
25138
|
+
id: string;
|
|
25139
|
+
socialAccountId: string;
|
|
25140
|
+
teamId: string;
|
|
25141
|
+
externalRecommendationId: string;
|
|
25142
|
+
openGraphStoryId?: string | null;
|
|
25143
|
+
reviewerDisplayName?: string | null;
|
|
25144
|
+
reviewerProfilePhotoUrl?: string | null;
|
|
25145
|
+
recommendationValue?: 'RECOMMEND' | 'NOT_RECOMMEND' | 'UNKNOWN' | null;
|
|
25146
|
+
rating?: number | null;
|
|
25147
|
+
comment?: string | null;
|
|
25148
|
+
hasMedia: boolean;
|
|
25149
|
+
mediaSummary?: Array<(string)> | null;
|
|
25150
|
+
ownerReplyComment?: string | null;
|
|
25151
|
+
ownerReplyCommentId?: string | null;
|
|
25152
|
+
ownerReplyUpdatedAt?: string | null;
|
|
25153
|
+
createTime?: string | null;
|
|
25154
|
+
updateTime?: string | null;
|
|
25155
|
+
importedAt?: string | null;
|
|
25156
|
+
createdAt: string | null;
|
|
25157
|
+
updatedAt: string | null;
|
|
25158
|
+
deletedAt?: string | null;
|
|
25159
|
+
}>;
|
|
25160
|
+
total: number;
|
|
25161
|
+
limit: number;
|
|
25162
|
+
remainingCapacity: number;
|
|
25163
|
+
};
|
|
25164
|
+
/**
|
|
25165
|
+
* 400
|
|
25166
|
+
*/
|
|
25167
|
+
400: {
|
|
25168
|
+
statusCode?: number | null;
|
|
25169
|
+
message: string;
|
|
25170
|
+
issues?: Array<{
|
|
25171
|
+
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;
|
|
25172
|
+
message: string;
|
|
25173
|
+
path?: Array<(string | number)> | null;
|
|
25174
|
+
}> | null;
|
|
25175
|
+
};
|
|
25176
|
+
/**
|
|
25177
|
+
* 401
|
|
25178
|
+
*/
|
|
25179
|
+
401: {
|
|
25180
|
+
statusCode?: number | null;
|
|
25181
|
+
message: string;
|
|
25182
|
+
};
|
|
25183
|
+
/**
|
|
25184
|
+
* 403
|
|
25185
|
+
*/
|
|
25186
|
+
403: {
|
|
25187
|
+
statusCode?: number | null;
|
|
25188
|
+
message: string;
|
|
25189
|
+
};
|
|
25190
|
+
/**
|
|
25191
|
+
* 404
|
|
25192
|
+
*/
|
|
25193
|
+
404: {
|
|
25194
|
+
statusCode?: number | null;
|
|
25195
|
+
message: string;
|
|
25196
|
+
};
|
|
25197
|
+
/**
|
|
25198
|
+
* 429
|
|
25199
|
+
*/
|
|
25200
|
+
429: {
|
|
25201
|
+
statusCode?: number | null;
|
|
25202
|
+
message: string;
|
|
25203
|
+
};
|
|
25204
|
+
/**
|
|
25205
|
+
* 500
|
|
25206
|
+
*/
|
|
25207
|
+
500: {
|
|
25208
|
+
statusCode?: number | null;
|
|
25209
|
+
message: string;
|
|
25210
|
+
};
|
|
25211
|
+
};
|
|
25212
|
+
};
|
|
25213
|
+
};
|
|
25214
|
+
'/api/v1/misc/facebook/recommendations/{recommendationId}': {
|
|
25215
|
+
get: {
|
|
25216
|
+
req: MiscFacebookGetRecommendationByIdData;
|
|
25217
|
+
res: {
|
|
25218
|
+
/**
|
|
25219
|
+
* 200
|
|
25220
|
+
*/
|
|
25221
|
+
200: {
|
|
25222
|
+
id: string;
|
|
25223
|
+
socialAccountId: string;
|
|
25224
|
+
teamId: string;
|
|
25225
|
+
externalRecommendationId: string;
|
|
25226
|
+
openGraphStoryId?: string | null;
|
|
25227
|
+
reviewerDisplayName?: string | null;
|
|
25228
|
+
reviewerProfilePhotoUrl?: string | null;
|
|
25229
|
+
recommendationValue?: 'RECOMMEND' | 'NOT_RECOMMEND' | 'UNKNOWN' | null;
|
|
25230
|
+
rating?: number | null;
|
|
25231
|
+
comment?: string | null;
|
|
25232
|
+
hasMedia: boolean;
|
|
25233
|
+
mediaSummary?: Array<(string)> | null;
|
|
25234
|
+
ownerReplyComment?: string | null;
|
|
25235
|
+
ownerReplyCommentId?: string | null;
|
|
25236
|
+
ownerReplyUpdatedAt?: string | null;
|
|
25237
|
+
createTime?: string | null;
|
|
25238
|
+
updateTime?: string | null;
|
|
25239
|
+
importedAt?: string | null;
|
|
25240
|
+
createdAt: string | null;
|
|
25241
|
+
updatedAt: string | null;
|
|
25242
|
+
deletedAt?: string | null;
|
|
25243
|
+
};
|
|
25244
|
+
/**
|
|
25245
|
+
* 400
|
|
25246
|
+
*/
|
|
25247
|
+
400: {
|
|
25248
|
+
statusCode?: number | null;
|
|
25249
|
+
message: string;
|
|
25250
|
+
issues?: Array<{
|
|
25251
|
+
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;
|
|
25252
|
+
message: string;
|
|
25253
|
+
path?: Array<(string | number)> | null;
|
|
25254
|
+
}> | null;
|
|
25255
|
+
};
|
|
25256
|
+
/**
|
|
25257
|
+
* 401
|
|
25258
|
+
*/
|
|
25259
|
+
401: {
|
|
25260
|
+
statusCode?: number | null;
|
|
25261
|
+
message: string;
|
|
25262
|
+
};
|
|
25263
|
+
/**
|
|
25264
|
+
* 403
|
|
25265
|
+
*/
|
|
25266
|
+
403: {
|
|
25267
|
+
statusCode?: number | null;
|
|
25268
|
+
message: string;
|
|
25269
|
+
};
|
|
25270
|
+
/**
|
|
25271
|
+
* 404
|
|
25272
|
+
*/
|
|
25273
|
+
404: {
|
|
25274
|
+
statusCode?: number | null;
|
|
25275
|
+
message: string;
|
|
25276
|
+
};
|
|
25277
|
+
/**
|
|
25278
|
+
* 429
|
|
25279
|
+
*/
|
|
25280
|
+
429: {
|
|
25281
|
+
statusCode?: number | null;
|
|
25282
|
+
message: string;
|
|
25283
|
+
};
|
|
25284
|
+
/**
|
|
25285
|
+
* 500
|
|
25286
|
+
*/
|
|
25287
|
+
500: {
|
|
25288
|
+
statusCode?: number | null;
|
|
25289
|
+
message: string;
|
|
25290
|
+
};
|
|
25291
|
+
};
|
|
25292
|
+
};
|
|
25293
|
+
};
|
|
25294
|
+
'/api/v1/misc/facebook/recommendations/{recommendationId}/comments': {
|
|
25295
|
+
get: {
|
|
25296
|
+
req: MiscFacebookGetRecommendationCommentsData;
|
|
25297
|
+
res: {
|
|
25298
|
+
/**
|
|
25299
|
+
* 200
|
|
25300
|
+
*/
|
|
25301
|
+
200: {
|
|
25302
|
+
comments: Array<{
|
|
25303
|
+
id: string;
|
|
25304
|
+
recommendationId: string;
|
|
25305
|
+
rootObjectId: string;
|
|
25306
|
+
parentCommentId?: string | null;
|
|
25307
|
+
authorName?: string | null;
|
|
25308
|
+
authorExternalId?: string | null;
|
|
25309
|
+
authorAvatarUrl?: string | null;
|
|
25310
|
+
text?: string | null;
|
|
25311
|
+
likesCount: number;
|
|
25312
|
+
repliesCount: number;
|
|
25313
|
+
canReply?: boolean | null;
|
|
25314
|
+
createdTime?: string | null;
|
|
25315
|
+
}>;
|
|
25316
|
+
total: number;
|
|
25317
|
+
};
|
|
25318
|
+
/**
|
|
25319
|
+
* 400
|
|
25320
|
+
*/
|
|
25321
|
+
400: {
|
|
25322
|
+
statusCode?: number | null;
|
|
25323
|
+
message: string;
|
|
25324
|
+
issues?: Array<{
|
|
25325
|
+
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;
|
|
25326
|
+
message: string;
|
|
25327
|
+
path?: Array<(string | number)> | null;
|
|
25328
|
+
}> | null;
|
|
25329
|
+
};
|
|
25330
|
+
/**
|
|
25331
|
+
* 401
|
|
25332
|
+
*/
|
|
25333
|
+
401: {
|
|
25334
|
+
statusCode?: number | null;
|
|
25335
|
+
message: string;
|
|
25336
|
+
};
|
|
25337
|
+
/**
|
|
25338
|
+
* 403
|
|
25339
|
+
*/
|
|
25340
|
+
403: {
|
|
25341
|
+
statusCode?: number | null;
|
|
25342
|
+
message: string;
|
|
25343
|
+
};
|
|
25344
|
+
/**
|
|
25345
|
+
* 404
|
|
25346
|
+
*/
|
|
25347
|
+
404: {
|
|
25348
|
+
statusCode?: number | null;
|
|
25349
|
+
message: string;
|
|
25350
|
+
};
|
|
25351
|
+
/**
|
|
25352
|
+
* 429
|
|
25353
|
+
*/
|
|
25354
|
+
429: {
|
|
25355
|
+
statusCode?: number | null;
|
|
25356
|
+
message: string;
|
|
25357
|
+
};
|
|
25358
|
+
/**
|
|
25359
|
+
* 500
|
|
25360
|
+
*/
|
|
25361
|
+
500: {
|
|
25362
|
+
statusCode?: number | null;
|
|
25363
|
+
message: string;
|
|
25364
|
+
};
|
|
25365
|
+
};
|
|
25366
|
+
};
|
|
25367
|
+
};
|
|
25368
|
+
'/api/v1/misc/facebook/recommendations/{recommendationId}/reply': {
|
|
25369
|
+
put: {
|
|
25370
|
+
req: MiscFacebookReplyToRecommendationData;
|
|
25371
|
+
res: {
|
|
25372
|
+
/**
|
|
25373
|
+
* 200
|
|
25374
|
+
*/
|
|
25375
|
+
200: {
|
|
25376
|
+
id: string;
|
|
25377
|
+
socialAccountId: string;
|
|
25378
|
+
teamId: string;
|
|
25379
|
+
externalRecommendationId: string;
|
|
25380
|
+
openGraphStoryId?: string | null;
|
|
25381
|
+
reviewerDisplayName?: string | null;
|
|
25382
|
+
reviewerProfilePhotoUrl?: string | null;
|
|
25383
|
+
recommendationValue?: 'RECOMMEND' | 'NOT_RECOMMEND' | 'UNKNOWN' | null;
|
|
25384
|
+
rating?: number | null;
|
|
25385
|
+
comment?: string | null;
|
|
25386
|
+
hasMedia: boolean;
|
|
25387
|
+
mediaSummary?: Array<(string)> | null;
|
|
25388
|
+
ownerReplyComment?: string | null;
|
|
25389
|
+
ownerReplyCommentId?: string | null;
|
|
25390
|
+
ownerReplyUpdatedAt?: string | null;
|
|
25391
|
+
createTime?: string | null;
|
|
25392
|
+
updateTime?: string | null;
|
|
25393
|
+
importedAt?: string | null;
|
|
25394
|
+
createdAt: string | null;
|
|
25395
|
+
updatedAt: string | null;
|
|
25396
|
+
deletedAt?: string | null;
|
|
25397
|
+
};
|
|
25398
|
+
/**
|
|
25399
|
+
* 400
|
|
25400
|
+
*/
|
|
25401
|
+
400: {
|
|
25402
|
+
statusCode?: number | null;
|
|
25403
|
+
message: string;
|
|
25404
|
+
issues?: Array<{
|
|
25405
|
+
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;
|
|
25406
|
+
message: string;
|
|
25407
|
+
path?: Array<(string | number)> | null;
|
|
25408
|
+
}> | null;
|
|
25409
|
+
};
|
|
25410
|
+
/**
|
|
25411
|
+
* 401
|
|
25412
|
+
*/
|
|
25413
|
+
401: {
|
|
25414
|
+
statusCode?: number | null;
|
|
25415
|
+
message: string;
|
|
25416
|
+
};
|
|
25417
|
+
/**
|
|
25418
|
+
* 403
|
|
25419
|
+
*/
|
|
25420
|
+
403: {
|
|
25421
|
+
statusCode?: number | null;
|
|
25422
|
+
message: string;
|
|
25423
|
+
};
|
|
25424
|
+
/**
|
|
25425
|
+
* 404
|
|
25426
|
+
*/
|
|
25427
|
+
404: {
|
|
25428
|
+
statusCode?: number | null;
|
|
25429
|
+
message: string;
|
|
25430
|
+
};
|
|
25431
|
+
/**
|
|
25432
|
+
* 429
|
|
25433
|
+
*/
|
|
25434
|
+
429: {
|
|
25435
|
+
statusCode?: number | null;
|
|
25436
|
+
message: string;
|
|
25437
|
+
};
|
|
25438
|
+
/**
|
|
25439
|
+
* 500
|
|
25440
|
+
*/
|
|
25441
|
+
500: {
|
|
25442
|
+
statusCode?: number | null;
|
|
25443
|
+
message: string;
|
|
25444
|
+
};
|
|
25445
|
+
};
|
|
25446
|
+
};
|
|
25447
|
+
};
|
|
25448
|
+
'/api/v1/misc/facebook/recommendations/{recommendationId}/comments/{commentId}/reply': {
|
|
25449
|
+
put: {
|
|
25450
|
+
req: MiscFacebookReplyToRecommendationCommentData;
|
|
25451
|
+
res: {
|
|
25452
|
+
/**
|
|
25453
|
+
* 200
|
|
25454
|
+
*/
|
|
25455
|
+
200: {
|
|
25456
|
+
id: string;
|
|
25457
|
+
};
|
|
25458
|
+
/**
|
|
25459
|
+
* 400
|
|
25460
|
+
*/
|
|
25461
|
+
400: {
|
|
25462
|
+
statusCode?: number | null;
|
|
25463
|
+
message: string;
|
|
25464
|
+
issues?: Array<{
|
|
25465
|
+
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;
|
|
25466
|
+
message: string;
|
|
25467
|
+
path?: Array<(string | number)> | null;
|
|
25468
|
+
}> | null;
|
|
25469
|
+
};
|
|
25470
|
+
/**
|
|
25471
|
+
* 401
|
|
25472
|
+
*/
|
|
25473
|
+
401: {
|
|
25474
|
+
statusCode?: number | null;
|
|
25475
|
+
message: string;
|
|
25476
|
+
};
|
|
25477
|
+
/**
|
|
25478
|
+
* 403
|
|
25479
|
+
*/
|
|
25480
|
+
403: {
|
|
25481
|
+
statusCode?: number | null;
|
|
25482
|
+
message: string;
|
|
25483
|
+
};
|
|
25484
|
+
/**
|
|
25485
|
+
* 404
|
|
25486
|
+
*/
|
|
25487
|
+
404: {
|
|
25488
|
+
statusCode?: number | null;
|
|
25489
|
+
message: string;
|
|
25490
|
+
};
|
|
25491
|
+
/**
|
|
25492
|
+
* 429
|
|
25493
|
+
*/
|
|
25494
|
+
429: {
|
|
25495
|
+
statusCode?: number | null;
|
|
25496
|
+
message: string;
|
|
25497
|
+
};
|
|
25498
|
+
/**
|
|
25499
|
+
* 500
|
|
25500
|
+
*/
|
|
25501
|
+
500: {
|
|
25502
|
+
statusCode?: number | null;
|
|
25503
|
+
message: string;
|
|
25504
|
+
};
|
|
25505
|
+
};
|
|
25506
|
+
};
|
|
25507
|
+
};
|
|
25508
|
+
'/api/v1/misc/facebook/post': {
|
|
25509
|
+
patch: {
|
|
25510
|
+
req: MiscFacebookEditPostData;
|
|
25511
|
+
res: {
|
|
25512
|
+
/**
|
|
25513
|
+
* 200
|
|
25514
|
+
*/
|
|
25515
|
+
200: {
|
|
25516
|
+
success: boolean;
|
|
25517
|
+
permalink: string;
|
|
25518
|
+
};
|
|
25519
|
+
/**
|
|
25520
|
+
* 400
|
|
25521
|
+
*/
|
|
25522
|
+
400: {
|
|
25523
|
+
statusCode?: number | null;
|
|
25524
|
+
message: string;
|
|
25525
|
+
issues?: Array<{
|
|
25526
|
+
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;
|
|
25527
|
+
message: string;
|
|
25528
|
+
path?: Array<(string | number)> | null;
|
|
25529
|
+
}> | null;
|
|
25530
|
+
};
|
|
25531
|
+
/**
|
|
25532
|
+
* 401
|
|
25533
|
+
*/
|
|
25534
|
+
401: {
|
|
25535
|
+
statusCode?: number | null;
|
|
25536
|
+
message: string;
|
|
25537
|
+
};
|
|
25538
|
+
/**
|
|
25539
|
+
* 403
|
|
25540
|
+
*/
|
|
25541
|
+
403: {
|
|
25542
|
+
statusCode?: number | null;
|
|
25543
|
+
message: string;
|
|
25544
|
+
};
|
|
25545
|
+
/**
|
|
25546
|
+
* 404
|
|
25547
|
+
*/
|
|
25548
|
+
404: {
|
|
25549
|
+
statusCode?: number | null;
|
|
25550
|
+
message: string;
|
|
25551
|
+
};
|
|
25552
|
+
/**
|
|
25553
|
+
* 429
|
|
25554
|
+
*/
|
|
25555
|
+
429: {
|
|
25556
|
+
statusCode?: number | null;
|
|
25557
|
+
message: string;
|
|
25558
|
+
};
|
|
25559
|
+
/**
|
|
25560
|
+
* 500
|
|
25561
|
+
*/
|
|
25562
|
+
500: {
|
|
25563
|
+
statusCode?: number | null;
|
|
25564
|
+
message: string;
|
|
25565
|
+
};
|
|
25566
|
+
};
|
|
25567
|
+
};
|
|
25568
|
+
delete: {
|
|
25569
|
+
req: MiscFacebookDeletePostData;
|
|
25570
|
+
res: {
|
|
25571
|
+
/**
|
|
25572
|
+
* 200
|
|
25573
|
+
*/
|
|
25574
|
+
200: {
|
|
25575
|
+
success: boolean;
|
|
25576
|
+
};
|
|
25577
|
+
/**
|
|
25578
|
+
* 400
|
|
25579
|
+
*/
|
|
25580
|
+
400: {
|
|
25581
|
+
statusCode?: number | null;
|
|
25582
|
+
message: string;
|
|
25583
|
+
issues?: Array<{
|
|
25584
|
+
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;
|
|
25585
|
+
message: string;
|
|
25586
|
+
path?: Array<(string | number)> | null;
|
|
25587
|
+
}> | null;
|
|
25588
|
+
};
|
|
25589
|
+
/**
|
|
25590
|
+
* 401
|
|
25591
|
+
*/
|
|
25592
|
+
401: {
|
|
25593
|
+
statusCode?: number | null;
|
|
25594
|
+
message: string;
|
|
25595
|
+
};
|
|
25596
|
+
/**
|
|
25597
|
+
* 403
|
|
25598
|
+
*/
|
|
25599
|
+
403: {
|
|
25600
|
+
statusCode?: number | null;
|
|
25601
|
+
message: string;
|
|
25602
|
+
};
|
|
25603
|
+
/**
|
|
25604
|
+
* 404
|
|
25605
|
+
*/
|
|
25606
|
+
404: {
|
|
25607
|
+
statusCode?: number | null;
|
|
25608
|
+
message: string;
|
|
25609
|
+
};
|
|
25610
|
+
/**
|
|
25611
|
+
* 429
|
|
25612
|
+
*/
|
|
25613
|
+
429: {
|
|
25614
|
+
statusCode?: number | null;
|
|
25615
|
+
message: string;
|
|
25616
|
+
};
|
|
25617
|
+
/**
|
|
25618
|
+
* 500
|
|
25619
|
+
*/
|
|
25620
|
+
500: {
|
|
25621
|
+
statusCode?: number | null;
|
|
25622
|
+
message: string;
|
|
25623
|
+
};
|
|
25624
|
+
};
|
|
25625
|
+
};
|
|
25626
|
+
};
|
|
25627
|
+
'/api/v1/misc/facebook/comment': {
|
|
25628
|
+
patch: {
|
|
25629
|
+
req: MiscFacebookEditCommentData;
|
|
24780
25630
|
res: {
|
|
24781
25631
|
/**
|
|
24782
25632
|
* 200
|
|
@@ -27641,6 +28491,77 @@ declare class MiscService {
|
|
|
27641
28491
|
* @throws ApiError
|
|
27642
28492
|
*/
|
|
27643
28493
|
miscInstagramDeleteComment(data?: MiscInstagramDeleteCommentData): CancelablePromise<MiscInstagramDeleteCommentResponse>;
|
|
28494
|
+
/**
|
|
28495
|
+
* Start a new Facebook recommendations import
|
|
28496
|
+
* @param data The data for the request.
|
|
28497
|
+
* @param data.requestBody Body
|
|
28498
|
+
* @returns unknown 201
|
|
28499
|
+
* @throws ApiError
|
|
28500
|
+
*/
|
|
28501
|
+
miscFacebookImportRecommendations(data?: MiscFacebookImportRecommendationsData): CancelablePromise<MiscFacebookImportRecommendationsResponse>;
|
|
28502
|
+
/**
|
|
28503
|
+
* Get Facebook recommendations import status list
|
|
28504
|
+
* @param data The data for the request.
|
|
28505
|
+
* @param data.teamId
|
|
28506
|
+
* @returns unknown 200
|
|
28507
|
+
* @throws ApiError
|
|
28508
|
+
*/
|
|
28509
|
+
miscFacebookGetRecommendationImportStatus(data: MiscFacebookGetRecommendationImportStatusData): CancelablePromise<MiscFacebookGetRecommendationImportStatusResponse>;
|
|
28510
|
+
/**
|
|
28511
|
+
* Get Facebook recommendations import by ID
|
|
28512
|
+
* @param data The data for the request.
|
|
28513
|
+
* @param data.importId
|
|
28514
|
+
* @returns unknown 200
|
|
28515
|
+
* @throws ApiError
|
|
28516
|
+
*/
|
|
28517
|
+
miscFacebookGetRecommendationImportById(data: MiscFacebookGetRecommendationImportByIdData): CancelablePromise<MiscFacebookGetRecommendationImportByIdResponse>;
|
|
28518
|
+
/**
|
|
28519
|
+
* List imported Facebook recommendations
|
|
28520
|
+
* @param data The data for the request.
|
|
28521
|
+
* @param data.teamId
|
|
28522
|
+
* @param data.limit
|
|
28523
|
+
* @param data.offset
|
|
28524
|
+
* @returns unknown 200
|
|
28525
|
+
* @throws ApiError
|
|
28526
|
+
*/
|
|
28527
|
+
miscFacebookGetRecommendations(data: MiscFacebookGetRecommendationsData): CancelablePromise<MiscFacebookGetRecommendationsResponse>;
|
|
28528
|
+
/**
|
|
28529
|
+
* Get a single imported Facebook recommendation
|
|
28530
|
+
* @param data The data for the request.
|
|
28531
|
+
* @param data.recommendationId
|
|
28532
|
+
* @param data.teamId
|
|
28533
|
+
* @returns unknown 200
|
|
28534
|
+
* @throws ApiError
|
|
28535
|
+
*/
|
|
28536
|
+
miscFacebookGetRecommendationById(data: MiscFacebookGetRecommendationByIdData): CancelablePromise<MiscFacebookGetRecommendationByIdResponse>;
|
|
28537
|
+
/**
|
|
28538
|
+
* Get recommendation thread comments
|
|
28539
|
+
* @param data The data for the request.
|
|
28540
|
+
* @param data.recommendationId
|
|
28541
|
+
* @param data.teamId
|
|
28542
|
+
* @returns unknown 200
|
|
28543
|
+
* @throws ApiError
|
|
28544
|
+
*/
|
|
28545
|
+
miscFacebookGetRecommendationComments(data: MiscFacebookGetRecommendationCommentsData): CancelablePromise<MiscFacebookGetRecommendationCommentsResponse>;
|
|
28546
|
+
/**
|
|
28547
|
+
* Reply to a Facebook recommendation
|
|
28548
|
+
* @param data The data for the request.
|
|
28549
|
+
* @param data.recommendationId
|
|
28550
|
+
* @param data.requestBody Body
|
|
28551
|
+
* @returns unknown 200
|
|
28552
|
+
* @throws ApiError
|
|
28553
|
+
*/
|
|
28554
|
+
miscFacebookReplyToRecommendation(data: MiscFacebookReplyToRecommendationData): CancelablePromise<MiscFacebookReplyToRecommendationResponse>;
|
|
28555
|
+
/**
|
|
28556
|
+
* Reply to a Facebook recommendation thread comment
|
|
28557
|
+
* @param data The data for the request.
|
|
28558
|
+
* @param data.recommendationId
|
|
28559
|
+
* @param data.commentId
|
|
28560
|
+
* @param data.requestBody Body
|
|
28561
|
+
* @returns unknown 200
|
|
28562
|
+
* @throws ApiError
|
|
28563
|
+
*/
|
|
28564
|
+
miscFacebookReplyToRecommendationComment(data: MiscFacebookReplyToRecommendationCommentData): CancelablePromise<MiscFacebookReplyToRecommendationCommentResponse>;
|
|
27644
28565
|
/**
|
|
27645
28566
|
* Edit an existing Facebook post
|
|
27646
28567
|
* Update the message/content of a published Facebook post or reel. Note: Only text content can be edited, media cannot be changed.
|
|
@@ -27990,4 +28911,4 @@ declare class Bundlesocial extends Client {
|
|
|
27990
28911
|
constructor(apiKey: string, options?: OpenAPIConfig);
|
|
27991
28912
|
}
|
|
27992
28913
|
|
|
27993
|
-
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, 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 };
|
|
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 };
|