bundlesocial 2.52.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;
@@ -1740,6 +1762,14 @@ type PostGetResponse = {
1740
1762
  */
1741
1763
  thumbnail?: string | null;
1742
1764
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
1765
+ /**
1766
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
1767
+ */
1768
+ defaultLanguage?: string | null;
1769
+ /**
1770
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
1771
+ */
1772
+ defaultAudioLanguage?: string | null;
1743
1773
  /**
1744
1774
  * Set to true if the video is made for kids.
1745
1775
  */
@@ -2429,6 +2459,14 @@ type PostUpdateData = {
2429
2459
  */
2430
2460
  thumbnail?: string | null;
2431
2461
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
2462
+ /**
2463
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
2464
+ */
2465
+ defaultLanguage?: string | null;
2466
+ /**
2467
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
2468
+ */
2469
+ defaultAudioLanguage?: string | null;
2432
2470
  /**
2433
2471
  * Set to true if the video is made for kids.
2434
2472
  */
@@ -2801,6 +2839,14 @@ type PostUpdateResponse = {
2801
2839
  */
2802
2840
  thumbnail?: string | null;
2803
2841
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
2842
+ /**
2843
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
2844
+ */
2845
+ defaultLanguage?: string | null;
2846
+ /**
2847
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
2848
+ */
2849
+ defaultAudioLanguage?: string | null;
2804
2850
  /**
2805
2851
  * Set to true if the video is made for kids.
2806
2852
  */
@@ -3416,6 +3462,14 @@ type PostDeleteResponse = {
3416
3462
  */
3417
3463
  thumbnail?: string | null;
3418
3464
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
3465
+ /**
3466
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
3467
+ */
3468
+ defaultLanguage?: string | null;
3469
+ /**
3470
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
3471
+ */
3472
+ defaultAudioLanguage?: string | null;
3419
3473
  /**
3420
3474
  * Set to true if the video is made for kids.
3421
3475
  */
@@ -4041,6 +4095,14 @@ type PostGetListResponse = {
4041
4095
  */
4042
4096
  thumbnail?: string | null;
4043
4097
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
4098
+ /**
4099
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
4100
+ */
4101
+ defaultLanguage?: string | null;
4102
+ /**
4103
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
4104
+ */
4105
+ defaultAudioLanguage?: string | null;
4044
4106
  /**
4045
4107
  * Set to true if the video is made for kids.
4046
4108
  */
@@ -4732,6 +4794,14 @@ type PostCreateData = {
4732
4794
  */
4733
4795
  thumbnail?: string | null;
4734
4796
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
4797
+ /**
4798
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
4799
+ */
4800
+ defaultLanguage?: string | null;
4801
+ /**
4802
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
4803
+ */
4804
+ defaultAudioLanguage?: string | null;
4735
4805
  /**
4736
4806
  * Set to true if the video is made for kids.
4737
4807
  */
@@ -5104,6 +5174,14 @@ type PostCreateResponse = {
5104
5174
  */
5105
5175
  thumbnail?: string | null;
5106
5176
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
5177
+ /**
5178
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
5179
+ */
5180
+ defaultLanguage?: string | null;
5181
+ /**
5182
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
5183
+ */
5184
+ defaultAudioLanguage?: string | null;
5107
5185
  /**
5108
5186
  * Set to true if the video is made for kids.
5109
5187
  */
@@ -5719,6 +5797,14 @@ type PostRetryResponse = {
5719
5797
  */
5720
5798
  thumbnail?: string | null;
5721
5799
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
5800
+ /**
5801
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
5802
+ */
5803
+ defaultLanguage?: string | null;
5804
+ /**
5805
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
5806
+ */
5807
+ defaultAudioLanguage?: string | null;
5722
5808
  /**
5723
5809
  * Set to true if the video is made for kids.
5724
5810
  */
@@ -6400,6 +6486,14 @@ type AnalyticsGetPostAnalyticsResponse = {
6400
6486
  */
6401
6487
  thumbnail?: string | null;
6402
6488
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
6489
+ /**
6490
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
6491
+ */
6492
+ defaultLanguage?: string | null;
6493
+ /**
6494
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
6495
+ */
6496
+ defaultAudioLanguage?: string | null;
6403
6497
  /**
6404
6498
  * Set to true if the video is made for kids.
6405
6499
  */
@@ -7114,6 +7208,14 @@ type AnalyticsGetPostAnalyticsRawResponse = {
7114
7208
  */
7115
7209
  thumbnail?: string | null;
7116
7210
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
7211
+ /**
7212
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
7213
+ */
7214
+ defaultLanguage?: string | null;
7215
+ /**
7216
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
7217
+ */
7218
+ defaultAudioLanguage?: string | null;
7117
7219
  /**
7118
7220
  * Set to true if the video is made for kids.
7119
7221
  */
@@ -7611,7 +7713,8 @@ type CommentImportCreateData = {
7611
7713
  */
7612
7714
  requestBody?: {
7613
7715
  teamId: string;
7614
- postId: string;
7716
+ postId?: string;
7717
+ importedPostId?: string;
7615
7718
  socialAccountType: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
7616
7719
  };
7617
7720
  };
@@ -7620,7 +7723,8 @@ type CommentImportCreateResponse = {
7620
7723
  teamId: string;
7621
7724
  organizationId?: string | null;
7622
7725
  socialAccountId: string;
7623
- postId: string;
7726
+ postId?: string | null;
7727
+ importedPostId?: string | null;
7624
7728
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
7625
7729
  status: 'PENDING' | 'FETCHING' | 'RETRYING' | 'COMPLETED' | 'SKIPPED' | 'FAILED' | 'RATE_LIMITED';
7626
7730
  commentsImported: number;
@@ -7632,6 +7736,7 @@ type CommentImportCreateResponse = {
7632
7736
  updatedAt: string | null;
7633
7737
  };
7634
7738
  type CommentImportGetListData = {
7739
+ importedPostId?: string;
7635
7740
  limit?: number | null;
7636
7741
  offset?: number | null;
7637
7742
  postId?: string;
@@ -7644,7 +7749,8 @@ type CommentImportGetListResponse = {
7644
7749
  teamId: string;
7645
7750
  organizationId?: string | null;
7646
7751
  socialAccountId: string;
7647
- postId: string;
7752
+ postId?: string | null;
7753
+ importedPostId?: string | null;
7648
7754
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
7649
7755
  status: 'PENDING' | 'FETCHING' | 'RETRYING' | 'COMPLETED' | 'SKIPPED' | 'FAILED' | 'RATE_LIMITED';
7650
7756
  commentsImported: number;
@@ -7657,10 +7763,11 @@ type CommentImportGetListResponse = {
7657
7763
  }>;
7658
7764
  };
7659
7765
  type CommentImportGetFetchedCommentsData = {
7766
+ importedPostId?: string;
7660
7767
  limit?: number | null;
7661
7768
  offset?: number | null;
7662
7769
  platform?: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
7663
- postId: string;
7770
+ postId?: string;
7664
7771
  socialAccountId?: string;
7665
7772
  teamId: string;
7666
7773
  };
@@ -7669,7 +7776,8 @@ type CommentImportGetFetchedCommentsResponse = {
7669
7776
  id: string;
7670
7777
  teamId: string;
7671
7778
  organizationId?: string | null;
7672
- postId: string;
7779
+ postId?: string | null;
7780
+ importedPostId?: string | null;
7673
7781
  socialAccountId: string;
7674
7782
  importId: string;
7675
7783
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
@@ -7731,7 +7839,8 @@ type CommentImportActionFetchedCommentResponse = {
7731
7839
  id: string;
7732
7840
  teamId: string;
7733
7841
  organizationId?: string | null;
7734
- postId: string;
7842
+ postId?: string | null;
7843
+ importedPostId?: string | null;
7735
7844
  socialAccountId: string;
7736
7845
  importId: string;
7737
7846
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
@@ -7782,7 +7891,8 @@ type CommentImportGetByIdResponse = {
7782
7891
  teamId: string;
7783
7892
  organizationId?: string | null;
7784
7893
  socialAccountId: string;
7785
- postId: string;
7894
+ postId?: string | null;
7895
+ importedPostId?: string | null;
7786
7896
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
7787
7897
  status: 'PENDING' | 'FETCHING' | 'RETRYING' | 'COMPLETED' | 'SKIPPED' | 'FAILED' | 'RATE_LIMITED';
7788
7898
  commentsImported: number;
@@ -7800,7 +7910,8 @@ type CommentGetResponse = {
7800
7910
  id: string;
7801
7911
  teamId: string;
7802
7912
  organizationId?: string | null;
7803
- internalPostId: string;
7913
+ internalPostId?: string | null;
7914
+ importedPostId?: string | null;
7804
7915
  internalParentCommentId?: string | null;
7805
7916
  fetchedParentCommentId?: string | null;
7806
7917
  title: string;
@@ -8025,6 +8136,7 @@ type CommentUpdateData = {
8025
8136
  requestBody?: {
8026
8137
  title?: string;
8027
8138
  internalPostId?: string;
8139
+ importedPostId?: string;
8028
8140
  internalParentCommentId?: string | null;
8029
8141
  fetchedParentCommentId?: string | null;
8030
8142
  postDate?: string;
@@ -8072,7 +8184,8 @@ type CommentUpdateResponse = {
8072
8184
  id: string;
8073
8185
  teamId: string;
8074
8186
  organizationId?: string | null;
8075
- internalPostId: string;
8187
+ internalPostId?: string | null;
8188
+ importedPostId?: string | null;
8076
8189
  internalParentCommentId?: string | null;
8077
8190
  fetchedParentCommentId?: string | null;
8078
8191
  title: string;
@@ -8296,7 +8409,8 @@ type CommentDeleteResponse = {
8296
8409
  id: string;
8297
8410
  teamId: string;
8298
8411
  organizationId?: string | null;
8299
- internalPostId: string;
8412
+ internalPostId?: string | null;
8413
+ importedPostId?: string | null;
8300
8414
  internalParentCommentId?: string | null;
8301
8415
  fetchedParentCommentId?: string | null;
8302
8416
  title: string;
@@ -8514,11 +8628,12 @@ type CommentDeleteResponse = {
8514
8628
  deletedAt?: string | null;
8515
8629
  };
8516
8630
  type CommentGetListData = {
8631
+ importedPostId?: string;
8517
8632
  limit?: number | null;
8518
8633
  offset?: number | null;
8519
8634
  order?: 'ASC' | 'DESC';
8520
8635
  orderBy?: 'createdAt' | 'updatedAt' | 'deletedAt';
8521
- 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;
8522
8637
  postId?: string;
8523
8638
  q?: string;
8524
8639
  status?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'RETRYING';
@@ -8529,7 +8644,8 @@ type CommentGetListResponse = {
8529
8644
  id: string;
8530
8645
  teamId: string;
8531
8646
  organizationId?: string | null;
8532
- internalPostId: string;
8647
+ internalPostId?: string | null;
8648
+ importedPostId?: string | null;
8533
8649
  internalParentCommentId?: string | null;
8534
8650
  fetchedParentCommentId?: string | null;
8535
8651
  title: string;
@@ -8756,6 +8872,7 @@ type CommentCreateData = {
8756
8872
  teamId: string;
8757
8873
  title?: string;
8758
8874
  internalPostId?: string;
8875
+ importedPostId?: string;
8759
8876
  internalParentCommentId?: string | null;
8760
8877
  fetchedParentCommentId?: string | null;
8761
8878
  postDate?: string;
@@ -8803,7 +8920,8 @@ type CommentCreateResponse = {
8803
8920
  id: string;
8804
8921
  teamId: string;
8805
8922
  organizationId?: string | null;
8806
- internalPostId: string;
8923
+ internalPostId?: string | null;
8924
+ importedPostId?: string | null;
8807
8925
  internalParentCommentId?: string | null;
8808
8926
  fetchedParentCommentId?: string | null;
8809
8927
  title: string;
@@ -9027,7 +9145,8 @@ type CommentRetryResponse = {
9027
9145
  id: string;
9028
9146
  teamId: string;
9029
9147
  organizationId?: string | null;
9030
- internalPostId: string;
9148
+ internalPostId?: string | null;
9149
+ importedPostId?: string | null;
9031
9150
  internalParentCommentId?: string | null;
9032
9151
  fetchedParentCommentId?: string | null;
9033
9152
  title: string;
@@ -9650,6 +9769,14 @@ type MiscYoutubeEditVideoData = {
9650
9769
  * The updated privacy status
9651
9770
  */
9652
9771
  privacyStatus?: 'public' | 'unlisted' | 'private';
9772
+ /**
9773
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
9774
+ */
9775
+ defaultLanguage?: string;
9776
+ /**
9777
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
9778
+ */
9779
+ defaultAudioLanguage?: string;
9653
9780
  };
9654
9781
  };
9655
9782
  type MiscYoutubeEditVideoResponse = {
@@ -9744,9 +9871,11 @@ type MiscYoutubeGetRegionsResponse = {
9744
9871
  }>;
9745
9872
  };
9746
9873
  type MiscLinkedinGetTagsData = {
9747
- q: string;
9874
+ displayName?: string;
9875
+ q?: string;
9748
9876
  scope?: 'people' | 'organizations' | 'all';
9749
9877
  teamId: string;
9878
+ url?: string;
9750
9879
  };
9751
9880
  type MiscLinkedinGetTagsResponse = {
9752
9881
  people?: Array<{
@@ -11779,6 +11908,7 @@ type $OpenApiTs = {
11779
11908
  createdAt: string | null;
11780
11909
  updatedAt: string | null;
11781
11910
  deletedAt?: string | null;
11911
+ suspended?: boolean;
11782
11912
  createdBy: {
11783
11913
  id: string;
11784
11914
  externalId: string;
@@ -12109,6 +12239,78 @@ type $OpenApiTs = {
12109
12239
  };
12110
12240
  };
12111
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
+ };
12112
12314
  '/api/v1/organization/usage/imports': {
12113
12315
  get: {
12114
12316
  req: OrganizationGetImportsUsageData;
@@ -12254,6 +12456,7 @@ type $OpenApiTs = {
12254
12456
  createdAt: string | null;
12255
12457
  updatedAt: string | null;
12256
12458
  deletedAt?: string | null;
12459
+ suspended?: boolean;
12257
12460
  };
12258
12461
  createdBy: {
12259
12462
  id: string;
@@ -12606,6 +12809,7 @@ type $OpenApiTs = {
12606
12809
  createdAt: string | null;
12607
12810
  updatedAt: string | null;
12608
12811
  deletedAt?: string | null;
12812
+ suspended?: boolean;
12609
12813
  };
12610
12814
  createdBy: {
12611
12815
  id: string;
@@ -14812,6 +15016,14 @@ type $OpenApiTs = {
14812
15016
  */
14813
15017
  thumbnail?: string | null;
14814
15018
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
15019
+ /**
15020
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
15021
+ */
15022
+ defaultLanguage?: string | null;
15023
+ /**
15024
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
15025
+ */
15026
+ defaultAudioLanguage?: string | null;
14815
15027
  /**
14816
15028
  * Set to true if the video is made for kids.
14817
15029
  */
@@ -15554,6 +15766,14 @@ type $OpenApiTs = {
15554
15766
  */
15555
15767
  thumbnail?: string | null;
15556
15768
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
15769
+ /**
15770
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
15771
+ */
15772
+ defaultLanguage?: string | null;
15773
+ /**
15774
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
15775
+ */
15776
+ defaultAudioLanguage?: string | null;
15557
15777
  /**
15558
15778
  * Set to true if the video is made for kids.
15559
15779
  */
@@ -16221,6 +16441,14 @@ type $OpenApiTs = {
16221
16441
  */
16222
16442
  thumbnail?: string | null;
16223
16443
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
16444
+ /**
16445
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
16446
+ */
16447
+ defaultLanguage?: string | null;
16448
+ /**
16449
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
16450
+ */
16451
+ defaultAudioLanguage?: string | null;
16224
16452
  /**
16225
16453
  * Set to true if the video is made for kids.
16226
16454
  */
@@ -16891,6 +17119,14 @@ type $OpenApiTs = {
16891
17119
  */
16892
17120
  thumbnail?: string | null;
16893
17121
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
17122
+ /**
17123
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
17124
+ */
17125
+ defaultLanguage?: string | null;
17126
+ /**
17127
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
17128
+ */
17129
+ defaultAudioLanguage?: string | null;
16894
17130
  /**
16895
17131
  * Set to true if the video is made for kids.
16896
17132
  */
@@ -17635,6 +17871,14 @@ type $OpenApiTs = {
17635
17871
  */
17636
17872
  thumbnail?: string | null;
17637
17873
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
17874
+ /**
17875
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
17876
+ */
17877
+ defaultLanguage?: string | null;
17878
+ /**
17879
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
17880
+ */
17881
+ defaultAudioLanguage?: string | null;
17638
17882
  /**
17639
17883
  * Set to true if the video is made for kids.
17640
17884
  */
@@ -18304,6 +18548,14 @@ type $OpenApiTs = {
18304
18548
  */
18305
18549
  thumbnail?: string | null;
18306
18550
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
18551
+ /**
18552
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
18553
+ */
18554
+ defaultLanguage?: string | null;
18555
+ /**
18556
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
18557
+ */
18558
+ defaultAudioLanguage?: string | null;
18307
18559
  /**
18308
18560
  * Set to true if the video is made for kids.
18309
18561
  */
@@ -19090,6 +19342,14 @@ type $OpenApiTs = {
19090
19342
  */
19091
19343
  thumbnail?: string | null;
19092
19344
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
19345
+ /**
19346
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
19347
+ */
19348
+ defaultLanguage?: string | null;
19349
+ /**
19350
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
19351
+ */
19352
+ defaultAudioLanguage?: string | null;
19093
19353
  /**
19094
19354
  * Set to true if the video is made for kids.
19095
19355
  */
@@ -19909,6 +20169,14 @@ type $OpenApiTs = {
19909
20169
  */
19910
20170
  thumbnail?: string | null;
19911
20171
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
20172
+ /**
20173
+ * BCP-47 language code for the video's title and description, e.g. "en" or "pl".
20174
+ */
20175
+ defaultLanguage?: string | null;
20176
+ /**
20177
+ * BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
20178
+ */
20179
+ defaultAudioLanguage?: string | null;
19912
20180
  /**
19913
20181
  * Set to true if the video is made for kids.
19914
20182
  */
@@ -20608,7 +20876,8 @@ type $OpenApiTs = {
20608
20876
  teamId: string;
20609
20877
  organizationId?: string | null;
20610
20878
  socialAccountId: string;
20611
- postId: string;
20879
+ postId?: string | null;
20880
+ importedPostId?: string | null;
20612
20881
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
20613
20882
  status: 'PENDING' | 'FETCHING' | 'RETRYING' | 'COMPLETED' | 'SKIPPED' | 'FAILED' | 'RATE_LIMITED';
20614
20883
  commentsImported: number;
@@ -20687,7 +20956,8 @@ type $OpenApiTs = {
20687
20956
  teamId: string;
20688
20957
  organizationId?: string | null;
20689
20958
  socialAccountId: string;
20690
- postId: string;
20959
+ postId?: string | null;
20960
+ importedPostId?: string | null;
20691
20961
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
20692
20962
  status: 'PENDING' | 'FETCHING' | 'RETRYING' | 'COMPLETED' | 'SKIPPED' | 'FAILED' | 'RATE_LIMITED';
20693
20963
  commentsImported: number;
@@ -20761,7 +21031,8 @@ type $OpenApiTs = {
20761
21031
  id: string;
20762
21032
  teamId: string;
20763
21033
  organizationId?: string | null;
20764
- postId: string;
21034
+ postId?: string | null;
21035
+ importedPostId?: string | null;
20765
21036
  socialAccountId: string;
20766
21037
  importId: string;
20767
21038
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
@@ -20868,7 +21139,8 @@ type $OpenApiTs = {
20868
21139
  id: string;
20869
21140
  teamId: string;
20870
21141
  organizationId?: string | null;
20871
- postId: string;
21142
+ postId?: string | null;
21143
+ importedPostId?: string | null;
20872
21144
  socialAccountId: string;
20873
21145
  importId: string;
20874
21146
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
@@ -20973,7 +21245,8 @@ type $OpenApiTs = {
20973
21245
  teamId: string;
20974
21246
  organizationId?: string | null;
20975
21247
  socialAccountId: string;
20976
- postId: string;
21248
+ postId?: string | null;
21249
+ importedPostId?: string | null;
20977
21250
  platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
20978
21251
  status: 'PENDING' | 'FETCHING' | 'RETRYING' | 'COMPLETED' | 'SKIPPED' | 'FAILED' | 'RATE_LIMITED';
20979
21252
  commentsImported: number;
@@ -21045,7 +21318,8 @@ type $OpenApiTs = {
21045
21318
  id: string;
21046
21319
  teamId: string;
21047
21320
  organizationId?: string | null;
21048
- internalPostId: string;
21321
+ internalPostId?: string | null;
21322
+ importedPostId?: string | null;
21049
21323
  internalParentCommentId?: string | null;
21050
21324
  fetchedParentCommentId?: string | null;
21051
21325
  title: string;
@@ -21321,7 +21595,8 @@ type $OpenApiTs = {
21321
21595
  id: string;
21322
21596
  teamId: string;
21323
21597
  organizationId?: string | null;
21324
- internalPostId: string;
21598
+ internalPostId?: string | null;
21599
+ importedPostId?: string | null;
21325
21600
  internalParentCommentId?: string | null;
21326
21601
  fetchedParentCommentId?: string | null;
21327
21602
  title: string;
@@ -21597,7 +21872,8 @@ type $OpenApiTs = {
21597
21872
  id: string;
21598
21873
  teamId: string;
21599
21874
  organizationId?: string | null;
21600
- internalPostId: string;
21875
+ internalPostId?: string | null;
21876
+ importedPostId?: string | null;
21601
21877
  internalParentCommentId?: string | null;
21602
21878
  fetchedParentCommentId?: string | null;
21603
21879
  title: string;
@@ -21876,7 +22152,8 @@ type $OpenApiTs = {
21876
22152
  id: string;
21877
22153
  teamId: string;
21878
22154
  organizationId?: string | null;
21879
- internalPostId: string;
22155
+ internalPostId?: string | null;
22156
+ importedPostId?: string | null;
21880
22157
  internalParentCommentId?: string | null;
21881
22158
  fetchedParentCommentId?: string | null;
21882
22159
  title: string;
@@ -22154,7 +22431,8 @@ type $OpenApiTs = {
22154
22431
  id: string;
22155
22432
  teamId: string;
22156
22433
  organizationId?: string | null;
22157
- internalPostId: string;
22434
+ internalPostId?: string | null;
22435
+ importedPostId?: string | null;
22158
22436
  internalParentCommentId?: string | null;
22159
22437
  fetchedParentCommentId?: string | null;
22160
22438
  title: string;
@@ -22432,7 +22710,8 @@ type $OpenApiTs = {
22432
22710
  id: string;
22433
22711
  teamId: string;
22434
22712
  organizationId?: string | null;
22435
- internalPostId: string;
22713
+ internalPostId?: string | null;
22714
+ importedPostId?: string | null;
22436
22715
  internalParentCommentId?: string | null;
22437
22716
  fetchedParentCommentId?: string | null;
22438
22717
  title: string;
@@ -29314,6 +29593,15 @@ declare class OrganizationService {
29314
29593
  * @throws ApiError
29315
29594
  */
29316
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>;
29317
29605
  /**
29318
29606
  * Get organization imports usage per social account (paginated)
29319
29607
  * @param data The data for the request.
@@ -29714,6 +30002,7 @@ declare class CommentService {
29714
30002
  * @param data The data for the request.
29715
30003
  * @param data.teamId
29716
30004
  * @param data.postId
30005
+ * @param data.importedPostId
29717
30006
  * @param data.status
29718
30007
  * @param data.offset
29719
30008
  * @param data.limit
@@ -29726,6 +30015,7 @@ declare class CommentService {
29726
30015
  * @param data The data for the request.
29727
30016
  * @param data.teamId
29728
30017
  * @param data.postId
30018
+ * @param data.importedPostId
29729
30019
  * @param data.platform
29730
30020
  * @param data.socialAccountId
29731
30021
  * @param data.offset
@@ -29781,6 +30071,7 @@ declare class CommentService {
29781
30071
  * @param data The data for the request.
29782
30072
  * @param data.teamId
29783
30073
  * @param data.postId
30074
+ * @param data.importedPostId
29784
30075
  * @param data.status
29785
30076
  * @param data.orderBy
29786
30077
  * @param data.order
@@ -29941,6 +30232,8 @@ declare class MiscService {
29941
30232
  * @param data The data for the request.
29942
30233
  * @param data.teamId
29943
30234
  * @param data.q
30235
+ * @param data.url
30236
+ * @param data.displayName
29944
30237
  * @param data.scope
29945
30238
  * @returns unknown 200
29946
30239
  * @throws ApiError
@@ -30752,4 +31045,4 @@ declare class Bundlesocial extends Client {
30752
31045
  constructor(apiKey: string, options?: OpenAPIConfig);
30753
31046
  }
30754
31047
 
30755
- 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 };