bundlesocial 2.45.0 → 2.46.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 CHANGED
@@ -137,6 +137,7 @@ type OrganizationGetOrganizationResponse = {
137
137
  firstName?: string | null;
138
138
  lastName?: string | null;
139
139
  avatarUrl?: string | null;
140
+ timezone?: string | null;
140
141
  role: 'ADMIN' | 'CUSTOMER';
141
142
  createdAt: string | null;
142
143
  updatedAt: string | null;
@@ -186,66 +187,24 @@ type OrganizationGetOrganizationResponse = {
186
187
  valid: boolean;
187
188
  createdAt: string | null;
188
189
  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
190
  } | null;
202
191
  promotionCode?: {
203
- id: string;
204
- couponId: string;
205
192
  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
193
  coupon: {
214
- id: string;
215
- name?: string | null;
216
- amountOff?: number | null;
217
- percentOff?: number | null;
194
+ percentOff: number;
218
195
  duration: 'forever' | 'once' | 'repeating';
219
196
  durationInMonths?: number | null;
220
- maxRedemptions?: number | null;
221
197
  valid: boolean;
222
- createdAt: string | null;
223
- updatedAt: string | null;
224
198
  };
225
199
  } | null;
226
200
  } | null;
227
201
  promotionCode?: {
228
- id: string;
229
- couponId: string;
230
202
  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
203
  coupon: {
239
- id: string;
240
- name?: string | null;
241
- amountOff?: number | null;
242
- percentOff?: number | null;
204
+ percentOff: number;
243
205
  duration: 'forever' | 'once' | 'repeating';
244
206
  durationInMonths?: number | null;
245
- maxRedemptions?: number | null;
246
207
  valid: boolean;
247
- createdAt: string | null;
248
- updatedAt: string | null;
249
208
  };
250
209
  } | null;
251
210
  teams: Array<{
@@ -374,6 +333,7 @@ type TeamGetTeamResponse = {
374
333
  firstName?: string | null;
375
334
  lastName?: string | null;
376
335
  avatarUrl?: string | null;
336
+ timezone?: string | null;
377
337
  role: 'ADMIN' | 'CUSTOMER';
378
338
  createdAt: string | null;
379
339
  updatedAt: string | null;
@@ -576,6 +536,7 @@ type TeamGetListResponse = {
576
536
  firstName?: string | null;
577
537
  lastName?: string | null;
578
538
  avatarUrl?: string | null;
539
+ timezone?: string | null;
579
540
  role: 'ADMIN' | 'CUSTOMER';
580
541
  createdAt: string | null;
581
542
  updatedAt: string | null;
@@ -9935,6 +9896,196 @@ type MiscInstagramDeleteCommentData = {
9935
9896
  type MiscInstagramDeleteCommentResponse = {
9936
9897
  success: boolean;
9937
9898
  };
9899
+ type MiscFacebookImportRecommendationsData = {
9900
+ /**
9901
+ * Body
9902
+ */
9903
+ requestBody?: {
9904
+ teamId: string;
9905
+ count: number;
9906
+ };
9907
+ };
9908
+ type MiscFacebookImportRecommendationsResponse = {
9909
+ id: string;
9910
+ teamId: string;
9911
+ socialAccountId: string;
9912
+ requestedCount: number;
9913
+ status: 'PENDING' | 'FETCHING_RECOMMENDATIONS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
9914
+ itemsImported: number;
9915
+ error?: string | null;
9916
+ rateLimitResetAt?: string | null;
9917
+ startedAt?: string | null;
9918
+ completedAt?: string | null;
9919
+ createdAt: string | null;
9920
+ updatedAt: string | null;
9921
+ deletedAt?: string | null;
9922
+ };
9923
+ type MiscFacebookGetRecommendationImportStatusData = {
9924
+ teamId: string;
9925
+ };
9926
+ type MiscFacebookGetRecommendationImportStatusResponse = {
9927
+ imports: Array<{
9928
+ id: string;
9929
+ teamId: string;
9930
+ socialAccountId: string;
9931
+ requestedCount: number;
9932
+ status: 'PENDING' | 'FETCHING_RECOMMENDATIONS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
9933
+ itemsImported: number;
9934
+ error?: string | null;
9935
+ rateLimitResetAt?: string | null;
9936
+ startedAt?: string | null;
9937
+ completedAt?: string | null;
9938
+ createdAt: string | null;
9939
+ updatedAt: string | null;
9940
+ deletedAt?: string | null;
9941
+ }>;
9942
+ };
9943
+ type MiscFacebookGetRecommendationImportByIdData = {
9944
+ importId: string;
9945
+ };
9946
+ type MiscFacebookGetRecommendationImportByIdResponse = {
9947
+ id: string;
9948
+ teamId: string;
9949
+ socialAccountId: string;
9950
+ requestedCount: number;
9951
+ status: 'PENDING' | 'FETCHING_RECOMMENDATIONS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
9952
+ itemsImported: number;
9953
+ error?: string | null;
9954
+ rateLimitResetAt?: string | null;
9955
+ startedAt?: string | null;
9956
+ completedAt?: string | null;
9957
+ createdAt: string | null;
9958
+ updatedAt: string | null;
9959
+ deletedAt?: string | null;
9960
+ };
9961
+ type MiscFacebookGetRecommendationsData = {
9962
+ limit?: number;
9963
+ offset?: number | null;
9964
+ teamId: string;
9965
+ };
9966
+ type MiscFacebookGetRecommendationsResponse = {
9967
+ recommendations: Array<{
9968
+ id: string;
9969
+ socialAccountId: string;
9970
+ teamId: string;
9971
+ externalRecommendationId: string;
9972
+ openGraphStoryId?: string | null;
9973
+ reviewerDisplayName?: string | null;
9974
+ reviewerProfilePhotoUrl?: string | null;
9975
+ recommendationValue?: 'RECOMMEND' | 'NOT_RECOMMEND' | 'UNKNOWN' | null;
9976
+ rating?: number | null;
9977
+ comment?: string | null;
9978
+ hasMedia: boolean;
9979
+ mediaSummary?: Array<(string)> | null;
9980
+ ownerReplyComment?: string | null;
9981
+ ownerReplyCommentId?: string | null;
9982
+ ownerReplyUpdatedAt?: string | null;
9983
+ createTime?: string | null;
9984
+ updateTime?: string | null;
9985
+ importedAt?: string | null;
9986
+ createdAt: string | null;
9987
+ updatedAt: string | null;
9988
+ deletedAt?: string | null;
9989
+ }>;
9990
+ total: number;
9991
+ limit: number;
9992
+ remainingCapacity: number;
9993
+ };
9994
+ type MiscFacebookGetRecommendationByIdData = {
9995
+ recommendationId: string;
9996
+ teamId: string;
9997
+ };
9998
+ type MiscFacebookGetRecommendationByIdResponse = {
9999
+ id: string;
10000
+ socialAccountId: string;
10001
+ teamId: string;
10002
+ externalRecommendationId: string;
10003
+ openGraphStoryId?: string | null;
10004
+ reviewerDisplayName?: string | null;
10005
+ reviewerProfilePhotoUrl?: string | null;
10006
+ recommendationValue?: 'RECOMMEND' | 'NOT_RECOMMEND' | 'UNKNOWN' | null;
10007
+ rating?: number | null;
10008
+ comment?: string | null;
10009
+ hasMedia: boolean;
10010
+ mediaSummary?: Array<(string)> | null;
10011
+ ownerReplyComment?: string | null;
10012
+ ownerReplyCommentId?: string | null;
10013
+ ownerReplyUpdatedAt?: string | null;
10014
+ createTime?: string | null;
10015
+ updateTime?: string | null;
10016
+ importedAt?: string | null;
10017
+ createdAt: string | null;
10018
+ updatedAt: string | null;
10019
+ deletedAt?: string | null;
10020
+ };
10021
+ type MiscFacebookGetRecommendationCommentsData = {
10022
+ recommendationId: string;
10023
+ teamId: string;
10024
+ };
10025
+ type MiscFacebookGetRecommendationCommentsResponse = {
10026
+ comments: Array<{
10027
+ id: string;
10028
+ recommendationId: string;
10029
+ rootObjectId: string;
10030
+ parentCommentId?: string | null;
10031
+ authorName?: string | null;
10032
+ authorExternalId?: string | null;
10033
+ authorAvatarUrl?: string | null;
10034
+ text?: string | null;
10035
+ likesCount: number;
10036
+ repliesCount: number;
10037
+ canReply?: boolean | null;
10038
+ createdTime?: string | null;
10039
+ }>;
10040
+ total: number;
10041
+ };
10042
+ type MiscFacebookReplyToRecommendationData = {
10043
+ recommendationId: string;
10044
+ /**
10045
+ * Body
10046
+ */
10047
+ requestBody?: {
10048
+ teamId: string;
10049
+ comment: string;
10050
+ };
10051
+ };
10052
+ type MiscFacebookReplyToRecommendationResponse = {
10053
+ id: string;
10054
+ socialAccountId: string;
10055
+ teamId: string;
10056
+ externalRecommendationId: string;
10057
+ openGraphStoryId?: string | null;
10058
+ reviewerDisplayName?: string | null;
10059
+ reviewerProfilePhotoUrl?: string | null;
10060
+ recommendationValue?: 'RECOMMEND' | 'NOT_RECOMMEND' | 'UNKNOWN' | null;
10061
+ rating?: number | null;
10062
+ comment?: string | null;
10063
+ hasMedia: boolean;
10064
+ mediaSummary?: Array<(string)> | null;
10065
+ ownerReplyComment?: string | null;
10066
+ ownerReplyCommentId?: string | null;
10067
+ ownerReplyUpdatedAt?: string | null;
10068
+ createTime?: string | null;
10069
+ updateTime?: string | null;
10070
+ importedAt?: string | null;
10071
+ createdAt: string | null;
10072
+ updatedAt: string | null;
10073
+ deletedAt?: string | null;
10074
+ };
10075
+ type MiscFacebookReplyToRecommendationCommentData = {
10076
+ commentId: string;
10077
+ recommendationId: string;
10078
+ /**
10079
+ * Body
10080
+ */
10081
+ requestBody?: {
10082
+ teamId: string;
10083
+ comment: string;
10084
+ };
10085
+ };
10086
+ type MiscFacebookReplyToRecommendationCommentResponse = {
10087
+ id: string;
10088
+ };
9938
10089
  type MiscFacebookEditPostData = {
9939
10090
  /**
9940
10091
  * Body
@@ -10738,6 +10889,7 @@ type $OpenApiTs = {
10738
10889
  firstName?: string | null;
10739
10890
  lastName?: string | null;
10740
10891
  avatarUrl?: string | null;
10892
+ timezone?: string | null;
10741
10893
  role: 'ADMIN' | 'CUSTOMER';
10742
10894
  createdAt: string | null;
10743
10895
  updatedAt: string | null;
@@ -10787,66 +10939,24 @@ type $OpenApiTs = {
10787
10939
  valid: boolean;
10788
10940
  createdAt: string | null;
10789
10941
  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
10942
  } | null;
10803
10943
  promotionCode?: {
10804
- id: string;
10805
- couponId: string;
10806
10944
  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
10945
  coupon: {
10815
- id: string;
10816
- name?: string | null;
10817
- amountOff?: number | null;
10818
- percentOff?: number | null;
10946
+ percentOff: number;
10819
10947
  duration: 'forever' | 'once' | 'repeating';
10820
10948
  durationInMonths?: number | null;
10821
- maxRedemptions?: number | null;
10822
10949
  valid: boolean;
10823
- createdAt: string | null;
10824
- updatedAt: string | null;
10825
10950
  };
10826
10951
  } | null;
10827
10952
  } | null;
10828
10953
  promotionCode?: {
10829
- id: string;
10830
- couponId: string;
10831
10954
  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
10955
  coupon: {
10840
- id: string;
10841
- name?: string | null;
10842
- amountOff?: number | null;
10843
- percentOff?: number | null;
10956
+ percentOff: number;
10844
10957
  duration: 'forever' | 'once' | 'repeating';
10845
10958
  durationInMonths?: number | null;
10846
- maxRedemptions?: number | null;
10847
10959
  valid: boolean;
10848
- createdAt: string | null;
10849
- updatedAt: string | null;
10850
10960
  };
10851
10961
  } | null;
10852
10962
  teams: Array<{
@@ -11246,6 +11356,7 @@ type $OpenApiTs = {
11246
11356
  firstName?: string | null;
11247
11357
  lastName?: string | null;
11248
11358
  avatarUrl?: string | null;
11359
+ timezone?: string | null;
11249
11360
  role: 'ADMIN' | 'CUSTOMER';
11250
11361
  createdAt: string | null;
11251
11362
  updatedAt: string | null;
@@ -11596,6 +11707,7 @@ type $OpenApiTs = {
11596
11707
  firstName?: string | null;
11597
11708
  lastName?: string | null;
11598
11709
  avatarUrl?: string | null;
11710
+ timezone?: string | null;
11599
11711
  role: 'ADMIN' | 'CUSTOMER';
11600
11712
  createdAt: string | null;
11601
11713
  updatedAt: string | null;
@@ -24655,16 +24767,27 @@ type $OpenApiTs = {
24655
24767
  };
24656
24768
  };
24657
24769
  };
24658
- '/api/v1/misc/facebook/post': {
24659
- patch: {
24660
- req: MiscFacebookEditPostData;
24770
+ '/api/v1/misc/facebook/recommendations/import': {
24771
+ post: {
24772
+ req: MiscFacebookImportRecommendationsData;
24661
24773
  res: {
24662
24774
  /**
24663
- * 200
24775
+ * 201
24664
24776
  */
24665
- 200: {
24666
- success: boolean;
24667
- permalink: string;
24777
+ 201: {
24778
+ id: string;
24779
+ teamId: string;
24780
+ socialAccountId: string;
24781
+ requestedCount: number;
24782
+ status: 'PENDING' | 'FETCHING_RECOMMENDATIONS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
24783
+ itemsImported: number;
24784
+ error?: string | null;
24785
+ rateLimitResetAt?: string | null;
24786
+ startedAt?: string | null;
24787
+ completedAt?: string | null;
24788
+ createdAt: string | null;
24789
+ updatedAt: string | null;
24790
+ deletedAt?: string | null;
24668
24791
  };
24669
24792
  /**
24670
24793
  * 400
@@ -24699,6 +24822,13 @@ type $OpenApiTs = {
24699
24822
  statusCode?: number | null;
24700
24823
  message: string;
24701
24824
  };
24825
+ /**
24826
+ * 409
24827
+ */
24828
+ 409: {
24829
+ statusCode?: number | null;
24830
+ message: string;
24831
+ };
24702
24832
  /**
24703
24833
  * 429
24704
24834
  */
@@ -24715,14 +24845,28 @@ type $OpenApiTs = {
24715
24845
  };
24716
24846
  };
24717
24847
  };
24718
- delete: {
24719
- req: MiscFacebookDeletePostData;
24848
+ get: {
24849
+ req: MiscFacebookGetRecommendationImportStatusData;
24720
24850
  res: {
24721
24851
  /**
24722
24852
  * 200
24723
24853
  */
24724
24854
  200: {
24725
- success: boolean;
24855
+ imports: Array<{
24856
+ id: string;
24857
+ teamId: string;
24858
+ socialAccountId: string;
24859
+ requestedCount: number;
24860
+ status: 'PENDING' | 'FETCHING_RECOMMENDATIONS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
24861
+ itemsImported: number;
24862
+ error?: string | null;
24863
+ rateLimitResetAt?: string | null;
24864
+ startedAt?: string | null;
24865
+ completedAt?: string | null;
24866
+ createdAt: string | null;
24867
+ updatedAt: string | null;
24868
+ deletedAt?: string | null;
24869
+ }>;
24726
24870
  };
24727
24871
  /**
24728
24872
  * 400
@@ -24774,16 +24918,27 @@ type $OpenApiTs = {
24774
24918
  };
24775
24919
  };
24776
24920
  };
24777
- '/api/v1/misc/facebook/comment': {
24778
- patch: {
24779
- req: MiscFacebookEditCommentData;
24921
+ '/api/v1/misc/facebook/recommendations/import/{importId}': {
24922
+ get: {
24923
+ req: MiscFacebookGetRecommendationImportByIdData;
24780
24924
  res: {
24781
24925
  /**
24782
24926
  * 200
24783
24927
  */
24784
24928
  200: {
24785
- success: boolean;
24786
- permalink?: string | null;
24929
+ id: string;
24930
+ teamId: string;
24931
+ socialAccountId: string;
24932
+ requestedCount: number;
24933
+ status: 'PENDING' | 'FETCHING_RECOMMENDATIONS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
24934
+ itemsImported: number;
24935
+ error?: string | null;
24936
+ rateLimitResetAt?: string | null;
24937
+ startedAt?: string | null;
24938
+ completedAt?: string | null;
24939
+ createdAt: string | null;
24940
+ updatedAt: string | null;
24941
+ deletedAt?: string | null;
24787
24942
  };
24788
24943
  /**
24789
24944
  * 400
@@ -24834,14 +24989,573 @@ type $OpenApiTs = {
24834
24989
  };
24835
24990
  };
24836
24991
  };
24837
- delete: {
24838
- req: MiscFacebookDeleteCommentData;
24992
+ };
24993
+ '/api/v1/misc/facebook/recommendations': {
24994
+ get: {
24995
+ req: MiscFacebookGetRecommendationsData;
24839
24996
  res: {
24840
24997
  /**
24841
24998
  * 200
24842
24999
  */
24843
25000
  200: {
24844
- success: boolean;
25001
+ recommendations: Array<{
25002
+ id: string;
25003
+ socialAccountId: string;
25004
+ teamId: string;
25005
+ externalRecommendationId: string;
25006
+ openGraphStoryId?: string | null;
25007
+ reviewerDisplayName?: string | null;
25008
+ reviewerProfilePhotoUrl?: string | null;
25009
+ recommendationValue?: 'RECOMMEND' | 'NOT_RECOMMEND' | 'UNKNOWN' | null;
25010
+ rating?: number | null;
25011
+ comment?: string | null;
25012
+ hasMedia: boolean;
25013
+ mediaSummary?: Array<(string)> | null;
25014
+ ownerReplyComment?: string | null;
25015
+ ownerReplyCommentId?: string | null;
25016
+ ownerReplyUpdatedAt?: string | null;
25017
+ createTime?: string | null;
25018
+ updateTime?: string | null;
25019
+ importedAt?: string | null;
25020
+ createdAt: string | null;
25021
+ updatedAt: string | null;
25022
+ deletedAt?: string | null;
25023
+ }>;
25024
+ total: number;
25025
+ limit: number;
25026
+ remainingCapacity: number;
25027
+ };
25028
+ /**
25029
+ * 400
25030
+ */
25031
+ 400: {
25032
+ statusCode?: number | null;
25033
+ message: string;
25034
+ issues?: Array<{
25035
+ 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;
25036
+ message: string;
25037
+ path?: Array<(string | number)> | null;
25038
+ }> | null;
25039
+ };
25040
+ /**
25041
+ * 401
25042
+ */
25043
+ 401: {
25044
+ statusCode?: number | null;
25045
+ message: string;
25046
+ };
25047
+ /**
25048
+ * 403
25049
+ */
25050
+ 403: {
25051
+ statusCode?: number | null;
25052
+ message: string;
25053
+ };
25054
+ /**
25055
+ * 404
25056
+ */
25057
+ 404: {
25058
+ statusCode?: number | null;
25059
+ message: string;
25060
+ };
25061
+ /**
25062
+ * 429
25063
+ */
25064
+ 429: {
25065
+ statusCode?: number | null;
25066
+ message: string;
25067
+ };
25068
+ /**
25069
+ * 500
25070
+ */
25071
+ 500: {
25072
+ statusCode?: number | null;
25073
+ message: string;
25074
+ };
25075
+ };
25076
+ };
25077
+ };
25078
+ '/api/v1/misc/facebook/recommendations/{recommendationId}': {
25079
+ get: {
25080
+ req: MiscFacebookGetRecommendationByIdData;
25081
+ res: {
25082
+ /**
25083
+ * 200
25084
+ */
25085
+ 200: {
25086
+ id: string;
25087
+ socialAccountId: string;
25088
+ teamId: string;
25089
+ externalRecommendationId: string;
25090
+ openGraphStoryId?: string | null;
25091
+ reviewerDisplayName?: string | null;
25092
+ reviewerProfilePhotoUrl?: string | null;
25093
+ recommendationValue?: 'RECOMMEND' | 'NOT_RECOMMEND' | 'UNKNOWN' | null;
25094
+ rating?: number | null;
25095
+ comment?: string | null;
25096
+ hasMedia: boolean;
25097
+ mediaSummary?: Array<(string)> | null;
25098
+ ownerReplyComment?: string | null;
25099
+ ownerReplyCommentId?: string | null;
25100
+ ownerReplyUpdatedAt?: string | null;
25101
+ createTime?: string | null;
25102
+ updateTime?: string | null;
25103
+ importedAt?: string | null;
25104
+ createdAt: string | null;
25105
+ updatedAt: string | null;
25106
+ deletedAt?: string | null;
25107
+ };
25108
+ /**
25109
+ * 400
25110
+ */
25111
+ 400: {
25112
+ statusCode?: number | null;
25113
+ message: string;
25114
+ issues?: Array<{
25115
+ 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;
25116
+ message: string;
25117
+ path?: Array<(string | number)> | null;
25118
+ }> | null;
25119
+ };
25120
+ /**
25121
+ * 401
25122
+ */
25123
+ 401: {
25124
+ statusCode?: number | null;
25125
+ message: string;
25126
+ };
25127
+ /**
25128
+ * 403
25129
+ */
25130
+ 403: {
25131
+ statusCode?: number | null;
25132
+ message: string;
25133
+ };
25134
+ /**
25135
+ * 404
25136
+ */
25137
+ 404: {
25138
+ statusCode?: number | null;
25139
+ message: string;
25140
+ };
25141
+ /**
25142
+ * 429
25143
+ */
25144
+ 429: {
25145
+ statusCode?: number | null;
25146
+ message: string;
25147
+ };
25148
+ /**
25149
+ * 500
25150
+ */
25151
+ 500: {
25152
+ statusCode?: number | null;
25153
+ message: string;
25154
+ };
25155
+ };
25156
+ };
25157
+ };
25158
+ '/api/v1/misc/facebook/recommendations/{recommendationId}/comments': {
25159
+ get: {
25160
+ req: MiscFacebookGetRecommendationCommentsData;
25161
+ res: {
25162
+ /**
25163
+ * 200
25164
+ */
25165
+ 200: {
25166
+ comments: Array<{
25167
+ id: string;
25168
+ recommendationId: string;
25169
+ rootObjectId: string;
25170
+ parentCommentId?: string | null;
25171
+ authorName?: string | null;
25172
+ authorExternalId?: string | null;
25173
+ authorAvatarUrl?: string | null;
25174
+ text?: string | null;
25175
+ likesCount: number;
25176
+ repliesCount: number;
25177
+ canReply?: boolean | null;
25178
+ createdTime?: string | null;
25179
+ }>;
25180
+ total: number;
25181
+ };
25182
+ /**
25183
+ * 400
25184
+ */
25185
+ 400: {
25186
+ statusCode?: number | null;
25187
+ message: string;
25188
+ issues?: Array<{
25189
+ 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;
25190
+ message: string;
25191
+ path?: Array<(string | number)> | null;
25192
+ }> | null;
25193
+ };
25194
+ /**
25195
+ * 401
25196
+ */
25197
+ 401: {
25198
+ statusCode?: number | null;
25199
+ message: string;
25200
+ };
25201
+ /**
25202
+ * 403
25203
+ */
25204
+ 403: {
25205
+ statusCode?: number | null;
25206
+ message: string;
25207
+ };
25208
+ /**
25209
+ * 404
25210
+ */
25211
+ 404: {
25212
+ statusCode?: number | null;
25213
+ message: string;
25214
+ };
25215
+ /**
25216
+ * 429
25217
+ */
25218
+ 429: {
25219
+ statusCode?: number | null;
25220
+ message: string;
25221
+ };
25222
+ /**
25223
+ * 500
25224
+ */
25225
+ 500: {
25226
+ statusCode?: number | null;
25227
+ message: string;
25228
+ };
25229
+ };
25230
+ };
25231
+ };
25232
+ '/api/v1/misc/facebook/recommendations/{recommendationId}/reply': {
25233
+ put: {
25234
+ req: MiscFacebookReplyToRecommendationData;
25235
+ res: {
25236
+ /**
25237
+ * 200
25238
+ */
25239
+ 200: {
25240
+ id: string;
25241
+ socialAccountId: string;
25242
+ teamId: string;
25243
+ externalRecommendationId: string;
25244
+ openGraphStoryId?: string | null;
25245
+ reviewerDisplayName?: string | null;
25246
+ reviewerProfilePhotoUrl?: string | null;
25247
+ recommendationValue?: 'RECOMMEND' | 'NOT_RECOMMEND' | 'UNKNOWN' | null;
25248
+ rating?: number | null;
25249
+ comment?: string | null;
25250
+ hasMedia: boolean;
25251
+ mediaSummary?: Array<(string)> | null;
25252
+ ownerReplyComment?: string | null;
25253
+ ownerReplyCommentId?: string | null;
25254
+ ownerReplyUpdatedAt?: string | null;
25255
+ createTime?: string | null;
25256
+ updateTime?: string | null;
25257
+ importedAt?: string | null;
25258
+ createdAt: string | null;
25259
+ updatedAt: string | null;
25260
+ deletedAt?: string | null;
25261
+ };
25262
+ /**
25263
+ * 400
25264
+ */
25265
+ 400: {
25266
+ statusCode?: number | null;
25267
+ message: string;
25268
+ issues?: Array<{
25269
+ 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;
25270
+ message: string;
25271
+ path?: Array<(string | number)> | null;
25272
+ }> | null;
25273
+ };
25274
+ /**
25275
+ * 401
25276
+ */
25277
+ 401: {
25278
+ statusCode?: number | null;
25279
+ message: string;
25280
+ };
25281
+ /**
25282
+ * 403
25283
+ */
25284
+ 403: {
25285
+ statusCode?: number | null;
25286
+ message: string;
25287
+ };
25288
+ /**
25289
+ * 404
25290
+ */
25291
+ 404: {
25292
+ statusCode?: number | null;
25293
+ message: string;
25294
+ };
25295
+ /**
25296
+ * 429
25297
+ */
25298
+ 429: {
25299
+ statusCode?: number | null;
25300
+ message: string;
25301
+ };
25302
+ /**
25303
+ * 500
25304
+ */
25305
+ 500: {
25306
+ statusCode?: number | null;
25307
+ message: string;
25308
+ };
25309
+ };
25310
+ };
25311
+ };
25312
+ '/api/v1/misc/facebook/recommendations/{recommendationId}/comments/{commentId}/reply': {
25313
+ put: {
25314
+ req: MiscFacebookReplyToRecommendationCommentData;
25315
+ res: {
25316
+ /**
25317
+ * 200
25318
+ */
25319
+ 200: {
25320
+ id: string;
25321
+ };
25322
+ /**
25323
+ * 400
25324
+ */
25325
+ 400: {
25326
+ statusCode?: number | null;
25327
+ message: string;
25328
+ issues?: Array<{
25329
+ 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;
25330
+ message: string;
25331
+ path?: Array<(string | number)> | null;
25332
+ }> | null;
25333
+ };
25334
+ /**
25335
+ * 401
25336
+ */
25337
+ 401: {
25338
+ statusCode?: number | null;
25339
+ message: string;
25340
+ };
25341
+ /**
25342
+ * 403
25343
+ */
25344
+ 403: {
25345
+ statusCode?: number | null;
25346
+ message: string;
25347
+ };
25348
+ /**
25349
+ * 404
25350
+ */
25351
+ 404: {
25352
+ statusCode?: number | null;
25353
+ message: string;
25354
+ };
25355
+ /**
25356
+ * 429
25357
+ */
25358
+ 429: {
25359
+ statusCode?: number | null;
25360
+ message: string;
25361
+ };
25362
+ /**
25363
+ * 500
25364
+ */
25365
+ 500: {
25366
+ statusCode?: number | null;
25367
+ message: string;
25368
+ };
25369
+ };
25370
+ };
25371
+ };
25372
+ '/api/v1/misc/facebook/post': {
25373
+ patch: {
25374
+ req: MiscFacebookEditPostData;
25375
+ res: {
25376
+ /**
25377
+ * 200
25378
+ */
25379
+ 200: {
25380
+ success: boolean;
25381
+ permalink: string;
25382
+ };
25383
+ /**
25384
+ * 400
25385
+ */
25386
+ 400: {
25387
+ statusCode?: number | null;
25388
+ message: string;
25389
+ issues?: Array<{
25390
+ 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;
25391
+ message: string;
25392
+ path?: Array<(string | number)> | null;
25393
+ }> | null;
25394
+ };
25395
+ /**
25396
+ * 401
25397
+ */
25398
+ 401: {
25399
+ statusCode?: number | null;
25400
+ message: string;
25401
+ };
25402
+ /**
25403
+ * 403
25404
+ */
25405
+ 403: {
25406
+ statusCode?: number | null;
25407
+ message: string;
25408
+ };
25409
+ /**
25410
+ * 404
25411
+ */
25412
+ 404: {
25413
+ statusCode?: number | null;
25414
+ message: string;
25415
+ };
25416
+ /**
25417
+ * 429
25418
+ */
25419
+ 429: {
25420
+ statusCode?: number | null;
25421
+ message: string;
25422
+ };
25423
+ /**
25424
+ * 500
25425
+ */
25426
+ 500: {
25427
+ statusCode?: number | null;
25428
+ message: string;
25429
+ };
25430
+ };
25431
+ };
25432
+ delete: {
25433
+ req: MiscFacebookDeletePostData;
25434
+ res: {
25435
+ /**
25436
+ * 200
25437
+ */
25438
+ 200: {
25439
+ success: boolean;
25440
+ };
25441
+ /**
25442
+ * 400
25443
+ */
25444
+ 400: {
25445
+ statusCode?: number | null;
25446
+ message: string;
25447
+ issues?: Array<{
25448
+ 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;
25449
+ message: string;
25450
+ path?: Array<(string | number)> | null;
25451
+ }> | null;
25452
+ };
25453
+ /**
25454
+ * 401
25455
+ */
25456
+ 401: {
25457
+ statusCode?: number | null;
25458
+ message: string;
25459
+ };
25460
+ /**
25461
+ * 403
25462
+ */
25463
+ 403: {
25464
+ statusCode?: number | null;
25465
+ message: string;
25466
+ };
25467
+ /**
25468
+ * 404
25469
+ */
25470
+ 404: {
25471
+ statusCode?: number | null;
25472
+ message: string;
25473
+ };
25474
+ /**
25475
+ * 429
25476
+ */
25477
+ 429: {
25478
+ statusCode?: number | null;
25479
+ message: string;
25480
+ };
25481
+ /**
25482
+ * 500
25483
+ */
25484
+ 500: {
25485
+ statusCode?: number | null;
25486
+ message: string;
25487
+ };
25488
+ };
25489
+ };
25490
+ };
25491
+ '/api/v1/misc/facebook/comment': {
25492
+ patch: {
25493
+ req: MiscFacebookEditCommentData;
25494
+ res: {
25495
+ /**
25496
+ * 200
25497
+ */
25498
+ 200: {
25499
+ success: boolean;
25500
+ permalink?: string | null;
25501
+ };
25502
+ /**
25503
+ * 400
25504
+ */
25505
+ 400: {
25506
+ statusCode?: number | null;
25507
+ message: string;
25508
+ issues?: Array<{
25509
+ 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;
25510
+ message: string;
25511
+ path?: Array<(string | number)> | null;
25512
+ }> | null;
25513
+ };
25514
+ /**
25515
+ * 401
25516
+ */
25517
+ 401: {
25518
+ statusCode?: number | null;
25519
+ message: string;
25520
+ };
25521
+ /**
25522
+ * 403
25523
+ */
25524
+ 403: {
25525
+ statusCode?: number | null;
25526
+ message: string;
25527
+ };
25528
+ /**
25529
+ * 404
25530
+ */
25531
+ 404: {
25532
+ statusCode?: number | null;
25533
+ message: string;
25534
+ };
25535
+ /**
25536
+ * 429
25537
+ */
25538
+ 429: {
25539
+ statusCode?: number | null;
25540
+ message: string;
25541
+ };
25542
+ /**
25543
+ * 500
25544
+ */
25545
+ 500: {
25546
+ statusCode?: number | null;
25547
+ message: string;
25548
+ };
25549
+ };
25550
+ };
25551
+ delete: {
25552
+ req: MiscFacebookDeleteCommentData;
25553
+ res: {
25554
+ /**
25555
+ * 200
25556
+ */
25557
+ 200: {
25558
+ success: boolean;
24845
25559
  };
24846
25560
  /**
24847
25561
  * 400
@@ -27641,6 +28355,77 @@ declare class MiscService {
27641
28355
  * @throws ApiError
27642
28356
  */
27643
28357
  miscInstagramDeleteComment(data?: MiscInstagramDeleteCommentData): CancelablePromise<MiscInstagramDeleteCommentResponse>;
28358
+ /**
28359
+ * Start a new Facebook recommendations import
28360
+ * @param data The data for the request.
28361
+ * @param data.requestBody Body
28362
+ * @returns unknown 201
28363
+ * @throws ApiError
28364
+ */
28365
+ miscFacebookImportRecommendations(data?: MiscFacebookImportRecommendationsData): CancelablePromise<MiscFacebookImportRecommendationsResponse>;
28366
+ /**
28367
+ * Get Facebook recommendations import status list
28368
+ * @param data The data for the request.
28369
+ * @param data.teamId
28370
+ * @returns unknown 200
28371
+ * @throws ApiError
28372
+ */
28373
+ miscFacebookGetRecommendationImportStatus(data: MiscFacebookGetRecommendationImportStatusData): CancelablePromise<MiscFacebookGetRecommendationImportStatusResponse>;
28374
+ /**
28375
+ * Get Facebook recommendations import by ID
28376
+ * @param data The data for the request.
28377
+ * @param data.importId
28378
+ * @returns unknown 200
28379
+ * @throws ApiError
28380
+ */
28381
+ miscFacebookGetRecommendationImportById(data: MiscFacebookGetRecommendationImportByIdData): CancelablePromise<MiscFacebookGetRecommendationImportByIdResponse>;
28382
+ /**
28383
+ * List imported Facebook recommendations
28384
+ * @param data The data for the request.
28385
+ * @param data.teamId
28386
+ * @param data.limit
28387
+ * @param data.offset
28388
+ * @returns unknown 200
28389
+ * @throws ApiError
28390
+ */
28391
+ miscFacebookGetRecommendations(data: MiscFacebookGetRecommendationsData): CancelablePromise<MiscFacebookGetRecommendationsResponse>;
28392
+ /**
28393
+ * Get a single imported Facebook recommendation
28394
+ * @param data The data for the request.
28395
+ * @param data.recommendationId
28396
+ * @param data.teamId
28397
+ * @returns unknown 200
28398
+ * @throws ApiError
28399
+ */
28400
+ miscFacebookGetRecommendationById(data: MiscFacebookGetRecommendationByIdData): CancelablePromise<MiscFacebookGetRecommendationByIdResponse>;
28401
+ /**
28402
+ * Get recommendation thread comments
28403
+ * @param data The data for the request.
28404
+ * @param data.recommendationId
28405
+ * @param data.teamId
28406
+ * @returns unknown 200
28407
+ * @throws ApiError
28408
+ */
28409
+ miscFacebookGetRecommendationComments(data: MiscFacebookGetRecommendationCommentsData): CancelablePromise<MiscFacebookGetRecommendationCommentsResponse>;
28410
+ /**
28411
+ * Reply to a Facebook recommendation
28412
+ * @param data The data for the request.
28413
+ * @param data.recommendationId
28414
+ * @param data.requestBody Body
28415
+ * @returns unknown 200
28416
+ * @throws ApiError
28417
+ */
28418
+ miscFacebookReplyToRecommendation(data: MiscFacebookReplyToRecommendationData): CancelablePromise<MiscFacebookReplyToRecommendationResponse>;
28419
+ /**
28420
+ * Reply to a Facebook recommendation thread comment
28421
+ * @param data The data for the request.
28422
+ * @param data.recommendationId
28423
+ * @param data.commentId
28424
+ * @param data.requestBody Body
28425
+ * @returns unknown 200
28426
+ * @throws ApiError
28427
+ */
28428
+ miscFacebookReplyToRecommendationComment(data: MiscFacebookReplyToRecommendationCommentData): CancelablePromise<MiscFacebookReplyToRecommendationCommentResponse>;
27644
28429
  /**
27645
28430
  * Edit an existing Facebook post
27646
28431
  * Update the message/content of a published Facebook post or reel. Note: Only text content can be edited, media cannot be changed.
@@ -27990,4 +28775,4 @@ declare class Bundlesocial extends Client {
27990
28775
  constructor(apiKey: string, options?: OpenAPIConfig);
27991
28776
  }
27992
28777
 
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 };
28778
+ 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 };