bundlesocial 2.53.0 → 2.54.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
@@ -188,6 +188,7 @@ type OrganizationGetOrganizationResponse = {
188
188
  createdAt: string | null;
189
189
  updatedAt: string | null;
190
190
  deletedAt?: string | null;
191
+ suspended?: boolean;
191
192
  createdBy: {
192
193
  id: string;
193
194
  externalId: string;
@@ -301,6 +302,25 @@ type OrganizationGetUploadsUsageResponse = {
301
302
  limit: number;
302
303
  remaining: number;
303
304
  };
305
+ type OrganizationGetDailyLimitsUsageData = {
306
+ date?: string | null;
307
+ socialAccountId: string;
308
+ };
309
+ type OrganizationGetDailyLimitsUsageResponse = {
310
+ date: string;
311
+ socialAccountId: string;
312
+ type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
313
+ posts: {
314
+ used: number;
315
+ limit: number;
316
+ remaining: number;
317
+ };
318
+ comments: {
319
+ used: number;
320
+ limit: number;
321
+ remaining: number;
322
+ };
323
+ };
304
324
  type OrganizationGetImportsUsageData = {
305
325
  page?: number;
306
326
  pageSize?: number;
@@ -392,6 +412,7 @@ type TeamGetTeamResponse = {
392
412
  createdAt: string | null;
393
413
  updatedAt: string | null;
394
414
  deletedAt?: string | null;
415
+ suspended?: boolean;
395
416
  };
396
417
  createdBy: {
397
418
  id: string;
@@ -596,6 +617,7 @@ type TeamGetListResponse = {
596
617
  createdAt: string | null;
597
618
  updatedAt: string | null;
598
619
  deletedAt?: string | null;
620
+ suspended?: boolean;
599
621
  };
600
622
  createdBy: {
601
623
  id: string;
@@ -7691,7 +7713,8 @@ type CommentImportCreateData = {
7691
7713
  */
7692
7714
  requestBody?: {
7693
7715
  teamId: string;
7694
- postId: string;
7716
+ postId?: string;
7717
+ importedPostId?: string;
7695
7718
  socialAccountType: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
7696
7719
  };
7697
7720
  };
@@ -7700,7 +7723,8 @@ type CommentImportCreateResponse = {
7700
7723
  teamId: string;
7701
7724
  organizationId?: string | null;
7702
7725
  socialAccountId: string;
7703
- postId: string;
7726
+ postId?: string | null;
7727
+ importedPostId?: string | null;
7704
7728
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
7705
7729
  status: 'PENDING' | 'FETCHING' | 'RETRYING' | 'COMPLETED' | 'SKIPPED' | 'FAILED' | 'RATE_LIMITED';
7706
7730
  commentsImported: number;
@@ -7712,6 +7736,7 @@ type CommentImportCreateResponse = {
7712
7736
  updatedAt: string | null;
7713
7737
  };
7714
7738
  type CommentImportGetListData = {
7739
+ importedPostId?: string;
7715
7740
  limit?: number | null;
7716
7741
  offset?: number | null;
7717
7742
  postId?: string;
@@ -7724,7 +7749,8 @@ type CommentImportGetListResponse = {
7724
7749
  teamId: string;
7725
7750
  organizationId?: string | null;
7726
7751
  socialAccountId: string;
7727
- postId: string;
7752
+ postId?: string | null;
7753
+ importedPostId?: string | null;
7728
7754
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
7729
7755
  status: 'PENDING' | 'FETCHING' | 'RETRYING' | 'COMPLETED' | 'SKIPPED' | 'FAILED' | 'RATE_LIMITED';
7730
7756
  commentsImported: number;
@@ -7737,10 +7763,11 @@ type CommentImportGetListResponse = {
7737
7763
  }>;
7738
7764
  };
7739
7765
  type CommentImportGetFetchedCommentsData = {
7766
+ importedPostId?: string;
7740
7767
  limit?: number | null;
7741
7768
  offset?: number | null;
7742
7769
  platform?: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
7743
- postId: string;
7770
+ postId?: string;
7744
7771
  socialAccountId?: string;
7745
7772
  teamId: string;
7746
7773
  };
@@ -7749,7 +7776,8 @@ type CommentImportGetFetchedCommentsResponse = {
7749
7776
  id: string;
7750
7777
  teamId: string;
7751
7778
  organizationId?: string | null;
7752
- postId: string;
7779
+ postId?: string | null;
7780
+ importedPostId?: string | null;
7753
7781
  socialAccountId: string;
7754
7782
  importId: string;
7755
7783
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
@@ -7811,7 +7839,8 @@ type CommentImportActionFetchedCommentResponse = {
7811
7839
  id: string;
7812
7840
  teamId: string;
7813
7841
  organizationId?: string | null;
7814
- postId: string;
7842
+ postId?: string | null;
7843
+ importedPostId?: string | null;
7815
7844
  socialAccountId: string;
7816
7845
  importId: string;
7817
7846
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
@@ -7862,7 +7891,8 @@ type CommentImportGetByIdResponse = {
7862
7891
  teamId: string;
7863
7892
  organizationId?: string | null;
7864
7893
  socialAccountId: string;
7865
- postId: string;
7894
+ postId?: string | null;
7895
+ importedPostId?: string | null;
7866
7896
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
7867
7897
  status: 'PENDING' | 'FETCHING' | 'RETRYING' | 'COMPLETED' | 'SKIPPED' | 'FAILED' | 'RATE_LIMITED';
7868
7898
  commentsImported: number;
@@ -7880,7 +7910,8 @@ type CommentGetResponse = {
7880
7910
  id: string;
7881
7911
  teamId: string;
7882
7912
  organizationId?: string | null;
7883
- internalPostId: string;
7913
+ internalPostId?: string | null;
7914
+ importedPostId?: string | null;
7884
7915
  internalParentCommentId?: string | null;
7885
7916
  fetchedParentCommentId?: string | null;
7886
7917
  title: string;
@@ -8105,6 +8136,7 @@ type CommentUpdateData = {
8105
8136
  requestBody?: {
8106
8137
  title?: string;
8107
8138
  internalPostId?: string;
8139
+ importedPostId?: string;
8108
8140
  internalParentCommentId?: string | null;
8109
8141
  fetchedParentCommentId?: string | null;
8110
8142
  postDate?: string;
@@ -8152,7 +8184,8 @@ type CommentUpdateResponse = {
8152
8184
  id: string;
8153
8185
  teamId: string;
8154
8186
  organizationId?: string | null;
8155
- internalPostId: string;
8187
+ internalPostId?: string | null;
8188
+ importedPostId?: string | null;
8156
8189
  internalParentCommentId?: string | null;
8157
8190
  fetchedParentCommentId?: string | null;
8158
8191
  title: string;
@@ -8376,7 +8409,8 @@ type CommentDeleteResponse = {
8376
8409
  id: string;
8377
8410
  teamId: string;
8378
8411
  organizationId?: string | null;
8379
- internalPostId: string;
8412
+ internalPostId?: string | null;
8413
+ importedPostId?: string | null;
8380
8414
  internalParentCommentId?: string | null;
8381
8415
  fetchedParentCommentId?: string | null;
8382
8416
  title: string;
@@ -8594,11 +8628,12 @@ type CommentDeleteResponse = {
8594
8628
  deletedAt?: string | null;
8595
8629
  };
8596
8630
  type CommentGetListData = {
8631
+ importedPostId?: string;
8597
8632
  limit?: number | null;
8598
8633
  offset?: number | null;
8599
8634
  order?: 'ASC' | 'DESC';
8600
8635
  orderBy?: 'createdAt' | 'updatedAt' | 'deletedAt';
8601
- platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY')>;
8636
+ platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY')> | null;
8602
8637
  postId?: string;
8603
8638
  q?: string;
8604
8639
  status?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'RETRYING';
@@ -8609,7 +8644,8 @@ type CommentGetListResponse = {
8609
8644
  id: string;
8610
8645
  teamId: string;
8611
8646
  organizationId?: string | null;
8612
- internalPostId: string;
8647
+ internalPostId?: string | null;
8648
+ importedPostId?: string | null;
8613
8649
  internalParentCommentId?: string | null;
8614
8650
  fetchedParentCommentId?: string | null;
8615
8651
  title: string;
@@ -8836,6 +8872,7 @@ type CommentCreateData = {
8836
8872
  teamId: string;
8837
8873
  title?: string;
8838
8874
  internalPostId?: string;
8875
+ importedPostId?: string;
8839
8876
  internalParentCommentId?: string | null;
8840
8877
  fetchedParentCommentId?: string | null;
8841
8878
  postDate?: string;
@@ -8883,7 +8920,8 @@ type CommentCreateResponse = {
8883
8920
  id: string;
8884
8921
  teamId: string;
8885
8922
  organizationId?: string | null;
8886
- internalPostId: string;
8923
+ internalPostId?: string | null;
8924
+ importedPostId?: string | null;
8887
8925
  internalParentCommentId?: string | null;
8888
8926
  fetchedParentCommentId?: string | null;
8889
8927
  title: string;
@@ -9107,7 +9145,8 @@ type CommentRetryResponse = {
9107
9145
  id: string;
9108
9146
  teamId: string;
9109
9147
  organizationId?: string | null;
9110
- internalPostId: string;
9148
+ internalPostId?: string | null;
9149
+ importedPostId?: string | null;
9111
9150
  internalParentCommentId?: string | null;
9112
9151
  fetchedParentCommentId?: string | null;
9113
9152
  title: string;
@@ -9832,9 +9871,11 @@ type MiscYoutubeGetRegionsResponse = {
9832
9871
  }>;
9833
9872
  };
9834
9873
  type MiscLinkedinGetTagsData = {
9835
- q: string;
9874
+ displayName?: string;
9875
+ q?: string;
9836
9876
  scope?: 'people' | 'organizations' | 'all';
9837
9877
  teamId: string;
9878
+ url?: string;
9838
9879
  };
9839
9880
  type MiscLinkedinGetTagsResponse = {
9840
9881
  people?: Array<{
@@ -11867,6 +11908,7 @@ type $OpenApiTs = {
11867
11908
  createdAt: string | null;
11868
11909
  updatedAt: string | null;
11869
11910
  deletedAt?: string | null;
11911
+ suspended?: boolean;
11870
11912
  createdBy: {
11871
11913
  id: string;
11872
11914
  externalId: string;
@@ -12197,6 +12239,78 @@ type $OpenApiTs = {
12197
12239
  };
12198
12240
  };
12199
12241
  };
12242
+ '/api/v1/organization/usage/daily-limits': {
12243
+ get: {
12244
+ req: OrganizationGetDailyLimitsUsageData;
12245
+ res: {
12246
+ /**
12247
+ * 200
12248
+ */
12249
+ 200: {
12250
+ date: string;
12251
+ socialAccountId: string;
12252
+ type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
12253
+ posts: {
12254
+ used: number;
12255
+ limit: number;
12256
+ remaining: number;
12257
+ };
12258
+ comments: {
12259
+ used: number;
12260
+ limit: number;
12261
+ remaining: number;
12262
+ };
12263
+ };
12264
+ /**
12265
+ * 400
12266
+ */
12267
+ 400: {
12268
+ statusCode?: number | null;
12269
+ message: string;
12270
+ issues?: Array<{
12271
+ 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;
12272
+ message: string;
12273
+ path?: Array<(string | number)> | null;
12274
+ }> | null;
12275
+ };
12276
+ /**
12277
+ * 401
12278
+ */
12279
+ 401: {
12280
+ statusCode?: number | null;
12281
+ message: string;
12282
+ };
12283
+ /**
12284
+ * 403
12285
+ */
12286
+ 403: {
12287
+ statusCode?: number | null;
12288
+ message: string;
12289
+ };
12290
+ /**
12291
+ * 404
12292
+ */
12293
+ 404: {
12294
+ statusCode?: number | null;
12295
+ message: string;
12296
+ };
12297
+ /**
12298
+ * 429
12299
+ */
12300
+ 429: {
12301
+ statusCode?: number | null;
12302
+ message: string;
12303
+ };
12304
+ /**
12305
+ * 500
12306
+ */
12307
+ 500: {
12308
+ statusCode?: number | null;
12309
+ message: string;
12310
+ };
12311
+ };
12312
+ };
12313
+ };
12200
12314
  '/api/v1/organization/usage/imports': {
12201
12315
  get: {
12202
12316
  req: OrganizationGetImportsUsageData;
@@ -12342,6 +12456,7 @@ type $OpenApiTs = {
12342
12456
  createdAt: string | null;
12343
12457
  updatedAt: string | null;
12344
12458
  deletedAt?: string | null;
12459
+ suspended?: boolean;
12345
12460
  };
12346
12461
  createdBy: {
12347
12462
  id: string;
@@ -12694,6 +12809,7 @@ type $OpenApiTs = {
12694
12809
  createdAt: string | null;
12695
12810
  updatedAt: string | null;
12696
12811
  deletedAt?: string | null;
12812
+ suspended?: boolean;
12697
12813
  };
12698
12814
  createdBy: {
12699
12815
  id: string;
@@ -20760,7 +20876,8 @@ type $OpenApiTs = {
20760
20876
  teamId: string;
20761
20877
  organizationId?: string | null;
20762
20878
  socialAccountId: string;
20763
- postId: string;
20879
+ postId?: string | null;
20880
+ importedPostId?: string | null;
20764
20881
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
20765
20882
  status: 'PENDING' | 'FETCHING' | 'RETRYING' | 'COMPLETED' | 'SKIPPED' | 'FAILED' | 'RATE_LIMITED';
20766
20883
  commentsImported: number;
@@ -20839,7 +20956,8 @@ type $OpenApiTs = {
20839
20956
  teamId: string;
20840
20957
  organizationId?: string | null;
20841
20958
  socialAccountId: string;
20842
- postId: string;
20959
+ postId?: string | null;
20960
+ importedPostId?: string | null;
20843
20961
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
20844
20962
  status: 'PENDING' | 'FETCHING' | 'RETRYING' | 'COMPLETED' | 'SKIPPED' | 'FAILED' | 'RATE_LIMITED';
20845
20963
  commentsImported: number;
@@ -20913,7 +21031,8 @@ type $OpenApiTs = {
20913
21031
  id: string;
20914
21032
  teamId: string;
20915
21033
  organizationId?: string | null;
20916
- postId: string;
21034
+ postId?: string | null;
21035
+ importedPostId?: string | null;
20917
21036
  socialAccountId: string;
20918
21037
  importId: string;
20919
21038
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
@@ -21020,7 +21139,8 @@ type $OpenApiTs = {
21020
21139
  id: string;
21021
21140
  teamId: string;
21022
21141
  organizationId?: string | null;
21023
- postId: string;
21142
+ postId?: string | null;
21143
+ importedPostId?: string | null;
21024
21144
  socialAccountId: string;
21025
21145
  importId: string;
21026
21146
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
@@ -21125,7 +21245,8 @@ type $OpenApiTs = {
21125
21245
  teamId: string;
21126
21246
  organizationId?: string | null;
21127
21247
  socialAccountId: string;
21128
- postId: string;
21248
+ postId?: string | null;
21249
+ importedPostId?: string | null;
21129
21250
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
21130
21251
  status: 'PENDING' | 'FETCHING' | 'RETRYING' | 'COMPLETED' | 'SKIPPED' | 'FAILED' | 'RATE_LIMITED';
21131
21252
  commentsImported: number;
@@ -21197,7 +21318,8 @@ type $OpenApiTs = {
21197
21318
  id: string;
21198
21319
  teamId: string;
21199
21320
  organizationId?: string | null;
21200
- internalPostId: string;
21321
+ internalPostId?: string | null;
21322
+ importedPostId?: string | null;
21201
21323
  internalParentCommentId?: string | null;
21202
21324
  fetchedParentCommentId?: string | null;
21203
21325
  title: string;
@@ -21473,7 +21595,8 @@ type $OpenApiTs = {
21473
21595
  id: string;
21474
21596
  teamId: string;
21475
21597
  organizationId?: string | null;
21476
- internalPostId: string;
21598
+ internalPostId?: string | null;
21599
+ importedPostId?: string | null;
21477
21600
  internalParentCommentId?: string | null;
21478
21601
  fetchedParentCommentId?: string | null;
21479
21602
  title: string;
@@ -21749,7 +21872,8 @@ type $OpenApiTs = {
21749
21872
  id: string;
21750
21873
  teamId: string;
21751
21874
  organizationId?: string | null;
21752
- internalPostId: string;
21875
+ internalPostId?: string | null;
21876
+ importedPostId?: string | null;
21753
21877
  internalParentCommentId?: string | null;
21754
21878
  fetchedParentCommentId?: string | null;
21755
21879
  title: string;
@@ -22028,7 +22152,8 @@ type $OpenApiTs = {
22028
22152
  id: string;
22029
22153
  teamId: string;
22030
22154
  organizationId?: string | null;
22031
- internalPostId: string;
22155
+ internalPostId?: string | null;
22156
+ importedPostId?: string | null;
22032
22157
  internalParentCommentId?: string | null;
22033
22158
  fetchedParentCommentId?: string | null;
22034
22159
  title: string;
@@ -22306,7 +22431,8 @@ type $OpenApiTs = {
22306
22431
  id: string;
22307
22432
  teamId: string;
22308
22433
  organizationId?: string | null;
22309
- internalPostId: string;
22434
+ internalPostId?: string | null;
22435
+ importedPostId?: string | null;
22310
22436
  internalParentCommentId?: string | null;
22311
22437
  fetchedParentCommentId?: string | null;
22312
22438
  title: string;
@@ -22584,7 +22710,8 @@ type $OpenApiTs = {
22584
22710
  id: string;
22585
22711
  teamId: string;
22586
22712
  organizationId?: string | null;
22587
- internalPostId: string;
22713
+ internalPostId?: string | null;
22714
+ importedPostId?: string | null;
22588
22715
  internalParentCommentId?: string | null;
22589
22716
  fetchedParentCommentId?: string | null;
22590
22717
  title: string;
@@ -29466,6 +29593,15 @@ declare class OrganizationService {
29466
29593
  * @throws ApiError
29467
29594
  */
29468
29595
  organizationGetUploadsUsage(): CancelablePromise<OrganizationGetUploadsUsageResponse>;
29596
+ /**
29597
+ * Get daily limits usage for one social account on a given day
29598
+ * @param data The data for the request.
29599
+ * @param data.socialAccountId
29600
+ * @param data.date
29601
+ * @returns unknown 200
29602
+ * @throws ApiError
29603
+ */
29604
+ organizationGetDailyLimitsUsage(data: OrganizationGetDailyLimitsUsageData): CancelablePromise<OrganizationGetDailyLimitsUsageResponse>;
29469
29605
  /**
29470
29606
  * Get organization imports usage per social account (paginated)
29471
29607
  * @param data The data for the request.
@@ -29866,6 +30002,7 @@ declare class CommentService {
29866
30002
  * @param data The data for the request.
29867
30003
  * @param data.teamId
29868
30004
  * @param data.postId
30005
+ * @param data.importedPostId
29869
30006
  * @param data.status
29870
30007
  * @param data.offset
29871
30008
  * @param data.limit
@@ -29878,6 +30015,7 @@ declare class CommentService {
29878
30015
  * @param data The data for the request.
29879
30016
  * @param data.teamId
29880
30017
  * @param data.postId
30018
+ * @param data.importedPostId
29881
30019
  * @param data.platform
29882
30020
  * @param data.socialAccountId
29883
30021
  * @param data.offset
@@ -29933,6 +30071,7 @@ declare class CommentService {
29933
30071
  * @param data The data for the request.
29934
30072
  * @param data.teamId
29935
30073
  * @param data.postId
30074
+ * @param data.importedPostId
29936
30075
  * @param data.status
29937
30076
  * @param data.orderBy
29938
30077
  * @param data.order
@@ -30093,6 +30232,8 @@ declare class MiscService {
30093
30232
  * @param data The data for the request.
30094
30233
  * @param data.teamId
30095
30234
  * @param data.q
30235
+ * @param data.url
30236
+ * @param data.displayName
30096
30237
  * @param data.scope
30097
30238
  * @returns unknown 200
30098
30239
  * @throws ApiError
@@ -30904,4 +31045,4 @@ declare class Bundlesocial extends Client {
30904
31045
  constructor(apiKey: string, options?: OpenAPIConfig);
30905
31046
  }
30906
31047
 
30907
- export { $OpenApiTs, AnalyticsForcePostAnalyticsData, AnalyticsForcePostAnalyticsResponse, AnalyticsForceSocialAccountAnalyticsData, AnalyticsForceSocialAccountAnalyticsResponse, AnalyticsGetBulkPostAnalyticsData, AnalyticsGetBulkPostAnalyticsResponse, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentImportActionFetchedCommentData, CommentImportActionFetchedCommentResponse, CommentImportCreateData, CommentImportCreateResponse, CommentImportGetByIdData, CommentImportGetByIdResponse, CommentImportGetFetchedCommentsData, CommentImportGetFetchedCommentsResponse, CommentImportGetListData, CommentImportGetListResponse, CommentRetryData, CommentRetryResponse, CommentUpdateData, CommentUpdateResponse, MiscBlueskyDeleteCommentData, MiscBlueskyDeleteCommentResponse, MiscBlueskyDeletePostData, MiscBlueskyDeletePostResponse, MiscDiscordDeleteMessageData, MiscDiscordDeleteMessageResponse, MiscFacebookDeleteCommentData, MiscFacebookDeleteCommentResponse, MiscFacebookDeletePostData, MiscFacebookDeletePostResponse, MiscFacebookEditCommentData, MiscFacebookEditCommentResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscFacebookGetRecommendationByIdData, MiscFacebookGetRecommendationByIdResponse, MiscFacebookGetRecommendationCommentsData, MiscFacebookGetRecommendationCommentsResponse, MiscFacebookGetRecommendationImportByIdData, MiscFacebookGetRecommendationImportByIdResponse, MiscFacebookGetRecommendationImportStatusData, MiscFacebookGetRecommendationImportStatusResponse, MiscFacebookGetRecommendationsData, MiscFacebookGetRecommendationsResponse, MiscFacebookGetTokenDebugData, MiscFacebookGetTokenDebugResponse, MiscFacebookImportRecommendationsData, MiscFacebookImportRecommendationsResponse, MiscFacebookReplyToRecommendationCommentData, MiscFacebookReplyToRecommendationCommentResponse, MiscFacebookReplyToRecommendationData, MiscFacebookReplyToRecommendationResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscGoogleBusinessCreatePlaceActionLinkData, MiscGoogleBusinessCreatePlaceActionLinkResponse, MiscGoogleBusinessDeleteMediaData, MiscGoogleBusinessDeleteMediaResponse, MiscGoogleBusinessDeletePlaceActionLinkData, MiscGoogleBusinessDeletePlaceActionLinkResponse, MiscGoogleBusinessDeletePostData, MiscGoogleBusinessDeletePostResponse, MiscGoogleBusinessDeleteReviewReplyData, MiscGoogleBusinessDeleteReviewReplyResponse, MiscGoogleBusinessGetAttributesData, MiscGoogleBusinessGetAttributesResponse, MiscGoogleBusinessGetFoodMenusData, MiscGoogleBusinessGetFoodMenusResponse, MiscGoogleBusinessGetLocationData, MiscGoogleBusinessGetLocationResponse, MiscGoogleBusinessGetReviewByIdData, MiscGoogleBusinessGetReviewByIdResponse, MiscGoogleBusinessGetReviewImportByIdData, MiscGoogleBusinessGetReviewImportByIdResponse, MiscGoogleBusinessGetReviewImportStatusData, MiscGoogleBusinessGetReviewImportStatusResponse, MiscGoogleBusinessGetReviewsData, MiscGoogleBusinessGetReviewsResponse, MiscGoogleBusinessGetServiceListData, MiscGoogleBusinessGetServiceListResponse, MiscGoogleBusinessImportReviewsData, MiscGoogleBusinessImportReviewsResponse, MiscGoogleBusinessListAvailableAttributesData, MiscGoogleBusinessListAvailableAttributesResponse, MiscGoogleBusinessListCategoriesData, MiscGoogleBusinessListCategoriesResponse, MiscGoogleBusinessListMediaData, MiscGoogleBusinessListMediaResponse, MiscGoogleBusinessListPlaceActionLinksData, MiscGoogleBusinessListPlaceActionLinksResponse, MiscGoogleBusinessReplyToReviewData, MiscGoogleBusinessReplyToReviewResponse, MiscGoogleBusinessUpdateAttributesData, MiscGoogleBusinessUpdateAttributesResponse, MiscGoogleBusinessUpdateFoodMenusData, MiscGoogleBusinessUpdateFoodMenusResponse, MiscGoogleBusinessUpdateHoursData, MiscGoogleBusinessUpdateHoursResponse, MiscGoogleBusinessUpdateLocationData, MiscGoogleBusinessUpdateLocationResponse, MiscGoogleBusinessUpdatePlaceActionLinkData, MiscGoogleBusinessUpdatePlaceActionLinkResponse, MiscGoogleBusinessUpdateServiceListData, MiscGoogleBusinessUpdateServiceListResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscInstagramDeleteCommentData, MiscInstagramDeleteCommentResponse, MiscInstagramSearchAudioData, MiscInstagramSearchAudioResponse, 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, PostGetReconnectSocialAccountCandidatesData, PostGetReconnectSocialAccountCandidatesResponse, PostGetResponse, PostImportCreateData, PostImportCreateResponse, PostImportDeleteImportedPostsData, PostImportDeleteImportedPostsResponse, PostImportGetByIdData, PostImportGetByIdResponse, PostImportGetImportedPostsData, PostImportGetImportedPostsResponse, PostImportGetStatusData, PostImportGetStatusResponse, PostImportRetryImportData, PostImportRetryImportResponse, PostReconnectSocialAccountData, PostReconnectSocialAccountResponse, 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 };
31048
+ export { $OpenApiTs, AnalyticsForcePostAnalyticsData, AnalyticsForcePostAnalyticsResponse, AnalyticsForceSocialAccountAnalyticsData, AnalyticsForceSocialAccountAnalyticsResponse, AnalyticsGetBulkPostAnalyticsData, AnalyticsGetBulkPostAnalyticsResponse, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentImportActionFetchedCommentData, CommentImportActionFetchedCommentResponse, CommentImportCreateData, CommentImportCreateResponse, CommentImportGetByIdData, CommentImportGetByIdResponse, CommentImportGetFetchedCommentsData, CommentImportGetFetchedCommentsResponse, CommentImportGetListData, CommentImportGetListResponse, CommentRetryData, CommentRetryResponse, CommentUpdateData, CommentUpdateResponse, MiscBlueskyDeleteCommentData, MiscBlueskyDeleteCommentResponse, MiscBlueskyDeletePostData, MiscBlueskyDeletePostResponse, MiscDiscordDeleteMessageData, MiscDiscordDeleteMessageResponse, MiscFacebookDeleteCommentData, MiscFacebookDeleteCommentResponse, MiscFacebookDeletePostData, MiscFacebookDeletePostResponse, MiscFacebookEditCommentData, MiscFacebookEditCommentResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscFacebookGetRecommendationByIdData, MiscFacebookGetRecommendationByIdResponse, MiscFacebookGetRecommendationCommentsData, MiscFacebookGetRecommendationCommentsResponse, MiscFacebookGetRecommendationImportByIdData, MiscFacebookGetRecommendationImportByIdResponse, MiscFacebookGetRecommendationImportStatusData, MiscFacebookGetRecommendationImportStatusResponse, MiscFacebookGetRecommendationsData, MiscFacebookGetRecommendationsResponse, MiscFacebookGetTokenDebugData, MiscFacebookGetTokenDebugResponse, MiscFacebookImportRecommendationsData, MiscFacebookImportRecommendationsResponse, MiscFacebookReplyToRecommendationCommentData, MiscFacebookReplyToRecommendationCommentResponse, MiscFacebookReplyToRecommendationData, MiscFacebookReplyToRecommendationResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscGoogleBusinessCreatePlaceActionLinkData, MiscGoogleBusinessCreatePlaceActionLinkResponse, MiscGoogleBusinessDeleteMediaData, MiscGoogleBusinessDeleteMediaResponse, MiscGoogleBusinessDeletePlaceActionLinkData, MiscGoogleBusinessDeletePlaceActionLinkResponse, MiscGoogleBusinessDeletePostData, MiscGoogleBusinessDeletePostResponse, MiscGoogleBusinessDeleteReviewReplyData, MiscGoogleBusinessDeleteReviewReplyResponse, MiscGoogleBusinessGetAttributesData, MiscGoogleBusinessGetAttributesResponse, MiscGoogleBusinessGetFoodMenusData, MiscGoogleBusinessGetFoodMenusResponse, MiscGoogleBusinessGetLocationData, MiscGoogleBusinessGetLocationResponse, MiscGoogleBusinessGetReviewByIdData, MiscGoogleBusinessGetReviewByIdResponse, MiscGoogleBusinessGetReviewImportByIdData, MiscGoogleBusinessGetReviewImportByIdResponse, MiscGoogleBusinessGetReviewImportStatusData, MiscGoogleBusinessGetReviewImportStatusResponse, MiscGoogleBusinessGetReviewsData, MiscGoogleBusinessGetReviewsResponse, MiscGoogleBusinessGetServiceListData, MiscGoogleBusinessGetServiceListResponse, MiscGoogleBusinessImportReviewsData, MiscGoogleBusinessImportReviewsResponse, MiscGoogleBusinessListAvailableAttributesData, MiscGoogleBusinessListAvailableAttributesResponse, MiscGoogleBusinessListCategoriesData, MiscGoogleBusinessListCategoriesResponse, MiscGoogleBusinessListMediaData, MiscGoogleBusinessListMediaResponse, MiscGoogleBusinessListPlaceActionLinksData, MiscGoogleBusinessListPlaceActionLinksResponse, MiscGoogleBusinessReplyToReviewData, MiscGoogleBusinessReplyToReviewResponse, MiscGoogleBusinessUpdateAttributesData, MiscGoogleBusinessUpdateAttributesResponse, MiscGoogleBusinessUpdateFoodMenusData, MiscGoogleBusinessUpdateFoodMenusResponse, MiscGoogleBusinessUpdateHoursData, MiscGoogleBusinessUpdateHoursResponse, MiscGoogleBusinessUpdateLocationData, MiscGoogleBusinessUpdateLocationResponse, MiscGoogleBusinessUpdatePlaceActionLinkData, MiscGoogleBusinessUpdatePlaceActionLinkResponse, MiscGoogleBusinessUpdateServiceListData, MiscGoogleBusinessUpdateServiceListResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscInstagramDeleteCommentData, MiscInstagramDeleteCommentResponse, MiscInstagramSearchAudioData, MiscInstagramSearchAudioResponse, 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, OrganizationGetDailyLimitsUsageData, OrganizationGetDailyLimitsUsageResponse, OrganizationGetImportsUsageData, OrganizationGetImportsUsageResponse, OrganizationGetOrganizationResponse, OrganizationGetPostsUsageResponse, OrganizationGetUploadsUsageResponse, PostCreateData, PostCreateResponse, PostCsvCreateData, PostCsvCreateResponse, PostCsvGetByIdData, PostCsvGetByIdResponse, PostCsvGetListData, PostCsvGetListResponse, PostCsvGetRowsData, PostCsvGetRowsResponse, PostCsvGetStatusData, PostCsvGetStatusResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetReconnectSocialAccountCandidatesData, PostGetReconnectSocialAccountCandidatesResponse, PostGetResponse, PostImportCreateData, PostImportCreateResponse, PostImportDeleteImportedPostsData, PostImportDeleteImportedPostsResponse, PostImportGetByIdData, PostImportGetByIdResponse, PostImportGetImportedPostsData, PostImportGetImportedPostsResponse, PostImportGetStatusData, PostImportGetStatusResponse, PostImportRetryImportData, PostImportRetryImportResponse, PostReconnectSocialAccountData, PostReconnectSocialAccountResponse, 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 };