bundlesocial 2.28.0 → 2.30.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
@@ -7467,6 +7467,79 @@ type MiscYoutubeDeleteVideoFromPlaylistData = {
7467
7467
  teamId: string;
7468
7468
  };
7469
7469
  type MiscYoutubeDeleteVideoFromPlaylistResponse = boolean;
7470
+ type MiscYoutubeEditVideoData = {
7471
+ /**
7472
+ * Body
7473
+ */
7474
+ requestBody?: {
7475
+ teamId: string;
7476
+ /**
7477
+ * Post ID for reference
7478
+ */
7479
+ postId: string;
7480
+ /**
7481
+ * The updated video title
7482
+ */
7483
+ title?: string;
7484
+ /**
7485
+ * The updated video description
7486
+ */
7487
+ description?: string;
7488
+ /**
7489
+ * The updated tags
7490
+ */
7491
+ tags?: Array<(string)>;
7492
+ /**
7493
+ * The updated category ID
7494
+ */
7495
+ categoryId?: string;
7496
+ /**
7497
+ * The updated privacy status
7498
+ */
7499
+ privacyStatus?: 'public' | 'unlisted' | 'private';
7500
+ };
7501
+ };
7502
+ type MiscYoutubeEditVideoResponse = {
7503
+ success: boolean;
7504
+ permalink: string;
7505
+ };
7506
+ type MiscYoutubeGetVideoCategoriesData = {
7507
+ /**
7508
+ * ISO 3166-1 alpha-2 country code (e.g., 'US', 'GB', 'PL'). Defaults to 'US'
7509
+ */
7510
+ regionCode?: string;
7511
+ teamId: string;
7512
+ };
7513
+ type MiscYoutubeGetVideoCategoriesResponse = {
7514
+ kind?: string;
7515
+ etag?: string;
7516
+ items?: Array<{
7517
+ kind?: string;
7518
+ etag?: string;
7519
+ id?: string;
7520
+ snippet?: {
7521
+ channelId?: string;
7522
+ title?: string;
7523
+ assignable?: boolean;
7524
+ };
7525
+ }>;
7526
+ };
7527
+ type MiscYoutubeGetRegionsData = {
7528
+ teamId: string;
7529
+ };
7530
+ type MiscYoutubeGetRegionsResponse = {
7531
+ kind?: string;
7532
+ etag?: string;
7533
+ items?: Array<{
7534
+ kind?: string;
7535
+ etag?: string;
7536
+ id?: string;
7537
+ snippet?: {
7538
+ gl?: string;
7539
+ name?: string;
7540
+ };
7541
+ }>;
7542
+ };
7470
7543
  type MiscLinkedinGetTagsData = {
7471
7544
  q: string;
7472
7545
  scope?: 'people' | 'organizations' | 'all';
@@ -7503,6 +7576,26 @@ type MiscLinkedinBuildCommentaryData = {
7503
7576
  type MiscLinkedinBuildCommentaryResponse = {
7504
7577
  commentary: string;
7505
7578
  };
7579
+ type MiscLinkedinEditPostData = {
7580
+ /**
7581
+ * Body
7582
+ */
7583
+ requestBody?: {
7584
+ teamId: string;
7585
+ /**
7586
+ * The URN of the post to edit
7587
+ */
7588
+ postId: string;
7589
+ /**
7590
+ * The updated text content
7591
+ */
7592
+ description: string;
7593
+ };
7594
+ };
7595
+ type MiscLinkedinEditPostResponse = {
7596
+ success: boolean;
7597
+ permalink: string;
7598
+ };
7506
7599
  type MiscGoogleBusinessAddMediaData = {
7507
7600
  /**
7508
7601
  * Body
@@ -7545,6 +7638,172 @@ type MiscRedditGetSubredditFlairsResponse = Array<{
7545
7638
  allowableContent?: string;
7546
7639
  maxEmojis?: number;
7547
7640
  }>;
7641
+ type MiscRedditEditPostData = {
7642
+ /**
7643
+ * Body
7644
+ */
7645
+ requestBody?: {
7646
+ teamId: string;
7647
+ /**
7648
+ * The ID of the post to edit (without prefix)
7649
+ */
7650
+ postId: string;
7651
+ /**
7652
+ * The updated text content (selftext for text posts, works for all editable post types)
7653
+ */
7654
+ description: string;
7655
+ };
7656
+ };
7657
+ type MiscRedditEditPostResponse = {
7658
+ success: boolean;
7659
+ permalink: string;
7660
+ };
7661
+ type MiscInstagramBusinessDiscoveryData = {
7662
+ teamId: string;
7663
+ /**
7664
+ * Instagram username to search for
7665
+ */
7666
+ username: string;
7667
+ };
7668
+ type MiscInstagramBusinessDiscoveryResponse = {
7669
+ /**
7670
+ * Whether the user exists and is a Business/Creator account
7671
+ */
7672
+ exists: boolean;
7673
+ /**
7674
+ * User data if exists, null otherwise
7675
+ */
7676
+ data: {
7677
+ /**
7678
+ * Instagram User ID
7679
+ */
7680
+ id: string;
7681
+ /**
7682
+ * Instagram username
7683
+ */
7684
+ username: string;
7685
+ /**
7686
+ * Number of followers
7687
+ */
7688
+ followers_count: number;
7689
+ /**
7690
+ * Number of media posts
7691
+ */
7692
+ media_count: number;
7693
+ /**
7694
+ * Profile picture URL if available
7695
+ */
7696
+ profile_picture_url?: string;
7697
+ /**
7698
+ * User biography if available
7699
+ */
7700
+ biography?: string;
7701
+ /**
7702
+ * Full name if available
7703
+ */
7704
+ name?: string;
7705
+ } | null;
7706
+ };
7707
+ type MiscFacebookEditPostData = {
7708
+ /**
7709
+ * Body
7710
+ */
7711
+ requestBody?: {
7712
+ teamId: string;
7713
+ /**
7714
+ * The ID of the post/reel to edit
7715
+ */
7716
+ postId: string;
7717
+ /**
7718
+ * The updated message/text content of the post
7719
+ */
7720
+ description?: string;
7721
+ };
7722
+ };
7723
+ type MiscFacebookEditPostResponse = {
7724
+ success: boolean;
7725
+ permalink: string;
7726
+ };
7727
+ type MiscPinterestEditPinData = {
7728
+ /**
7729
+ * Body
7730
+ */
7731
+ requestBody?: {
7732
+ teamId: string;
7733
+ /**
7734
+ * The ID of the post in our database
7735
+ */
7736
+ postId: string;
7737
+ /**
7738
+ * The updated title
7739
+ */
7740
+ title?: string;
7741
+ /**
7742
+ * The updated description
7743
+ */
7744
+ description?: string;
7745
+ /**
7746
+ * The updated destination link
7747
+ */
7748
+ link?: string;
7749
+ /**
7750
+ * The updated alt text
7751
+ */
7752
+ altText?: string;
7753
+ /**
7754
+ * The updated note
7755
+ */
7756
+ note?: string;
7757
+ };
7758
+ };
7759
+ type MiscPinterestEditPinResponse = {
7760
+ success: boolean;
7761
+ permalink: string;
7762
+ };
7763
+ type MiscMastodonEditStatusData = {
7764
+ /**
7765
+ * Body
7766
+ */
7767
+ requestBody?: {
7768
+ teamId: string;
7769
+ /**
7770
+ * The ID of the post in our database
7771
+ */
7772
+ postId: string;
7773
+ /**
7774
+ * The updated status text
7775
+ */
7776
+ description: string;
7777
+ /**
7778
+ * The updated spoiler/content warning text
7779
+ */
7780
+ spoilerText?: string;
7781
+ };
7782
+ };
7783
+ type MiscMastodonEditStatusResponse = {
7784
+ success: boolean;
7785
+ permalink: string;
7786
+ };
7787
+ type MiscSlackEditMessageData = {
7788
+ /**
7789
+ * Body
7790
+ */
7791
+ requestBody?: {
7792
+ teamId: string;
7793
+ /**
7794
+ * The ID of the post in our database
7795
+ */
7796
+ postId: string;
7797
+ /**
7798
+ * The updated message text
7799
+ */
7800
+ description: string;
7801
+ };
7802
+ };
7803
+ type MiscSlackEditMessageResponse = {
7804
+ success: boolean;
7805
+ permalink: string;
7806
+ };
7548
7807
  type $OpenApiTs = {
7549
7808
  '/api/v1/': {
7550
7809
  get: {
@@ -16191,28 +16450,16 @@ type $OpenApiTs = {
16191
16450
  };
16192
16451
  };
16193
16452
  };
16194
- '/api/v1/misc/linkedin/mentions/tags': {
16195
- get: {
16196
- req: MiscLinkedinGetTagsData;
16453
+ '/api/v1/misc/youtube/video': {
16454
+ patch: {
16455
+ req: MiscYoutubeEditVideoData;
16197
16456
  res: {
16198
16457
  /**
16199
16458
  * 200
16200
16459
  */
16201
16460
  200: {
16202
- people?: Array<{
16203
- kind: 'person';
16204
- urn: string;
16205
- display: string;
16206
- headline?: string;
16207
- photoUrl?: string;
16208
- }>;
16209
- organizations?: Array<{
16210
- kind: 'organization';
16211
- urn: string;
16212
- display: string;
16213
- vanityName?: string;
16214
- logoUrl?: string;
16215
- }>;
16461
+ success: boolean;
16462
+ permalink: string;
16216
16463
  };
16217
16464
  /**
16218
16465
  * 400
@@ -16257,15 +16504,26 @@ type $OpenApiTs = {
16257
16504
  };
16258
16505
  };
16259
16506
  };
16260
- '/api/v1/misc/linkedin/mentions/builder': {
16261
- post: {
16262
- req: MiscLinkedinBuildCommentaryData;
16507
+ '/api/v1/misc/youtube/video-categories': {
16508
+ get: {
16509
+ req: MiscYoutubeGetVideoCategoriesData;
16263
16510
  res: {
16264
16511
  /**
16265
16512
  * 200
16266
16513
  */
16267
16514
  200: {
16268
- commentary: string;
16515
+ kind?: string;
16516
+ etag?: string;
16517
+ items?: Array<{
16518
+ kind?: string;
16519
+ etag?: string;
16520
+ id?: string;
16521
+ snippet?: {
16522
+ channelId?: string;
16523
+ title?: string;
16524
+ assignable?: boolean;
16525
+ };
16526
+ }>;
16269
16527
  };
16270
16528
  /**
16271
16529
  * 400
@@ -16310,21 +16568,25 @@ type $OpenApiTs = {
16310
16568
  };
16311
16569
  };
16312
16570
  };
16313
- '/api/v1/misc/google-business/media': {
16314
- post: {
16315
- req: MiscGoogleBusinessAddMediaData;
16571
+ '/api/v1/misc/youtube/regions': {
16572
+ get: {
16573
+ req: MiscYoutubeGetRegionsData;
16316
16574
  res: {
16317
16575
  /**
16318
16576
  * 200
16319
16577
  */
16320
16578
  200: {
16321
- name?: string;
16322
- googleUrl?: string;
16323
- locationAssociation?: {
16324
- category?: 'CATEGORY_UNSPECIFIED' | 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'PRODUCT' | 'AT_WORK' | 'FOOD_AND_DRINK' | 'MENU' | 'COMMON_AREA' | 'ROOMS' | 'TEAMS' | 'ADDITIONAL';
16325
- priceListItemId?: string;
16326
- };
16327
- description?: string;
16579
+ kind?: string;
16580
+ etag?: string;
16581
+ items?: Array<{
16582
+ kind?: string;
16583
+ etag?: string;
16584
+ id?: string;
16585
+ snippet?: {
16586
+ gl?: string;
16587
+ name?: string;
16588
+ };
16589
+ }>;
16328
16590
  };
16329
16591
  /**
16330
16592
  * 400
@@ -16369,16 +16631,28 @@ type $OpenApiTs = {
16369
16631
  };
16370
16632
  };
16371
16633
  };
16372
- '/api/v1/misc/reddit/post-requirements': {
16634
+ '/api/v1/misc/linkedin/mentions/tags': {
16373
16635
  get: {
16374
- req: MiscRedditGetPostRequirementsData;
16636
+ req: MiscLinkedinGetTagsData;
16375
16637
  res: {
16376
16638
  /**
16377
16639
  * 200
16378
16640
  */
16379
16641
  200: {
16380
- isFlairRequired: boolean;
16381
- isFlairEnabled: boolean;
16642
+ people?: Array<{
16643
+ kind: 'person';
16644
+ urn: string;
16645
+ display: string;
16646
+ headline?: string;
16647
+ photoUrl?: string;
16648
+ }>;
16649
+ organizations?: Array<{
16650
+ kind: 'organization';
16651
+ urn: string;
16652
+ display: string;
16653
+ vanityName?: string;
16654
+ logoUrl?: string;
16655
+ }>;
16382
16656
  };
16383
16657
  /**
16384
16658
  * 400
@@ -16423,14 +16697,234 @@ type $OpenApiTs = {
16423
16697
  };
16424
16698
  };
16425
16699
  };
16426
- '/api/v1/misc/reddit/subreddit-flairs': {
16427
- get: {
16428
- req: MiscRedditGetSubredditFlairsData;
16700
+ '/api/v1/misc/linkedin/mentions/builder': {
16701
+ post: {
16702
+ req: MiscLinkedinBuildCommentaryData;
16429
16703
  res: {
16430
16704
  /**
16431
16705
  * 200
16432
16706
  */
16433
- 200: Array<{
16707
+ 200: {
16708
+ commentary: string;
16709
+ };
16710
+ /**
16711
+ * 400
16712
+ */
16713
+ 400: {
16714
+ message: string;
16715
+ issues?: Array<{
16716
+ message: string;
16717
+ path?: Array<(string | number)> | null;
16718
+ }> | null;
16719
+ };
16720
+ /**
16721
+ * 401
16722
+ */
16723
+ 401: {
16724
+ message: string;
16725
+ };
16726
+ /**
16727
+ * 403
16728
+ */
16729
+ 403: {
16730
+ message: string;
16731
+ };
16732
+ /**
16733
+ * 404
16734
+ */
16735
+ 404: {
16736
+ message: string;
16737
+ };
16738
+ /**
16739
+ * 429
16740
+ */
16741
+ 429: {
16742
+ message: string;
16743
+ };
16744
+ /**
16745
+ * 500
16746
+ */
16747
+ 500: {
16748
+ message: string;
16749
+ };
16750
+ };
16751
+ };
16752
+ };
16753
+ '/api/v1/misc/linkedin/post': {
16754
+ patch: {
16755
+ req: MiscLinkedinEditPostData;
16756
+ res: {
16757
+ /**
16758
+ * 200
16759
+ */
16760
+ 200: {
16761
+ success: boolean;
16762
+ permalink: string;
16763
+ };
16764
+ /**
16765
+ * 400
16766
+ */
16767
+ 400: {
16768
+ message: string;
16769
+ issues?: Array<{
16770
+ message: string;
16771
+ path?: Array<(string | number)> | null;
16772
+ }> | null;
16773
+ };
16774
+ /**
16775
+ * 401
16776
+ */
16777
+ 401: {
16778
+ message: string;
16779
+ };
16780
+ /**
16781
+ * 403
16782
+ */
16783
+ 403: {
16784
+ message: string;
16785
+ };
16786
+ /**
16787
+ * 404
16788
+ */
16789
+ 404: {
16790
+ message: string;
16791
+ };
16792
+ /**
16793
+ * 429
16794
+ */
16795
+ 429: {
16796
+ message: string;
16797
+ };
16798
+ /**
16799
+ * 500
16800
+ */
16801
+ 500: {
16802
+ message: string;
16803
+ };
16804
+ };
16805
+ };
16806
+ };
16807
+ '/api/v1/misc/google-business/media': {
16808
+ post: {
16809
+ req: MiscGoogleBusinessAddMediaData;
16810
+ res: {
16811
+ /**
16812
+ * 200
16813
+ */
16814
+ 200: {
16815
+ name?: string;
16816
+ googleUrl?: string;
16817
+ locationAssociation?: {
16818
+ category?: 'CATEGORY_UNSPECIFIED' | 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'PRODUCT' | 'AT_WORK' | 'FOOD_AND_DRINK' | 'MENU' | 'COMMON_AREA' | 'ROOMS' | 'TEAMS' | 'ADDITIONAL';
16819
+ priceListItemId?: string;
16820
+ };
16821
+ description?: string;
16822
+ };
16823
+ /**
16824
+ * 400
16825
+ */
16826
+ 400: {
16827
+ message: string;
16828
+ issues?: Array<{
16829
+ message: string;
16830
+ path?: Array<(string | number)> | null;
16831
+ }> | null;
16832
+ };
16833
+ /**
16834
+ * 401
16835
+ */
16836
+ 401: {
16837
+ message: string;
16838
+ };
16839
+ /**
16840
+ * 403
16841
+ */
16842
+ 403: {
16843
+ message: string;
16844
+ };
16845
+ /**
16846
+ * 404
16847
+ */
16848
+ 404: {
16849
+ message: string;
16850
+ };
16851
+ /**
16852
+ * 429
16853
+ */
16854
+ 429: {
16855
+ message: string;
16856
+ };
16857
+ /**
16858
+ * 500
16859
+ */
16860
+ 500: {
16861
+ message: string;
16862
+ };
16863
+ };
16864
+ };
16865
+ };
16866
+ '/api/v1/misc/reddit/post-requirements': {
16867
+ get: {
16868
+ req: MiscRedditGetPostRequirementsData;
16869
+ res: {
16870
+ /**
16871
+ * 200
16872
+ */
16873
+ 200: {
16874
+ isFlairRequired: boolean;
16875
+ isFlairEnabled: boolean;
16876
+ };
16877
+ /**
16878
+ * 400
16879
+ */
16880
+ 400: {
16881
+ message: string;
16882
+ issues?: Array<{
16883
+ message: string;
16884
+ path?: Array<(string | number)> | null;
16885
+ }> | null;
16886
+ };
16887
+ /**
16888
+ * 401
16889
+ */
16890
+ 401: {
16891
+ message: string;
16892
+ };
16893
+ /**
16894
+ * 403
16895
+ */
16896
+ 403: {
16897
+ message: string;
16898
+ };
16899
+ /**
16900
+ * 404
16901
+ */
16902
+ 404: {
16903
+ message: string;
16904
+ };
16905
+ /**
16906
+ * 429
16907
+ */
16908
+ 429: {
16909
+ message: string;
16910
+ };
16911
+ /**
16912
+ * 500
16913
+ */
16914
+ 500: {
16915
+ message: string;
16916
+ };
16917
+ };
16918
+ };
16919
+ };
16920
+ '/api/v1/misc/reddit/subreddit-flairs': {
16921
+ get: {
16922
+ req: MiscRedditGetSubredditFlairsData;
16923
+ res: {
16924
+ /**
16925
+ * 200
16926
+ */
16927
+ 200: Array<{
16434
16928
  id?: string;
16435
16929
  text?: string;
16436
16930
  cssClass?: string;
@@ -16483,6 +16977,365 @@ type $OpenApiTs = {
16483
16977
  };
16484
16978
  };
16485
16979
  };
16980
+ '/api/v1/misc/reddit/post': {
16981
+ patch: {
16982
+ req: MiscRedditEditPostData;
16983
+ res: {
16984
+ /**
16985
+ * 200
16986
+ */
16987
+ 200: {
16988
+ success: boolean;
16989
+ permalink: string;
16990
+ };
16991
+ /**
16992
+ * 400
16993
+ */
16994
+ 400: {
16995
+ message: string;
16996
+ issues?: Array<{
16997
+ message: string;
16998
+ path?: Array<(string | number)> | null;
16999
+ }> | null;
17000
+ };
17001
+ /**
17002
+ * 401
17003
+ */
17004
+ 401: {
17005
+ message: string;
17006
+ };
17007
+ /**
17008
+ * 403
17009
+ */
17010
+ 403: {
17011
+ message: string;
17012
+ };
17013
+ /**
17014
+ * 404
17015
+ */
17016
+ 404: {
17017
+ message: string;
17018
+ };
17019
+ /**
17020
+ * 429
17021
+ */
17022
+ 429: {
17023
+ message: string;
17024
+ };
17025
+ /**
17026
+ * 500
17027
+ */
17028
+ 500: {
17029
+ message: string;
17030
+ };
17031
+ };
17032
+ };
17033
+ };
17034
+ '/api/v1/misc/instagram/tags': {
17035
+ get: {
17036
+ req: MiscInstagramBusinessDiscoveryData;
17037
+ res: {
17038
+ /**
17039
+ * 200
17040
+ */
17041
+ 200: {
17042
+ /**
17043
+ * Whether the user exists and is a Business/Creator account
17044
+ */
17045
+ exists: boolean;
17046
+ /**
17047
+ * User data if exists, null otherwise
17048
+ */
17049
+ data: {
17050
+ /**
17051
+ * Instagram User ID
17052
+ */
17053
+ id: string;
17054
+ /**
17055
+ * Instagram username
17056
+ */
17057
+ username: string;
17058
+ /**
17059
+ * Number of followers
17060
+ */
17061
+ followers_count: number;
17062
+ /**
17063
+ * Number of media posts
17064
+ */
17065
+ media_count: number;
17066
+ /**
17067
+ * Profile picture URL if available
17068
+ */
17069
+ profile_picture_url?: string;
17070
+ /**
17071
+ * User biography if available
17072
+ */
17073
+ biography?: string;
17074
+ /**
17075
+ * Full name if available
17076
+ */
17077
+ name?: string;
17078
+ } | null;
17079
+ };
17080
+ /**
17081
+ * 400
17082
+ */
17083
+ 400: {
17084
+ message: string;
17085
+ issues?: Array<{
17086
+ message: string;
17087
+ path?: Array<(string | number)> | null;
17088
+ }> | null;
17089
+ };
17090
+ /**
17091
+ * 401
17092
+ */
17093
+ 401: {
17094
+ message: string;
17095
+ };
17096
+ /**
17097
+ * 403
17098
+ */
17099
+ 403: {
17100
+ message: string;
17101
+ };
17102
+ /**
17103
+ * 404
17104
+ */
17105
+ 404: {
17106
+ message: string;
17107
+ };
17108
+ /**
17109
+ * 429
17110
+ */
17111
+ 429: {
17112
+ message: string;
17113
+ };
17114
+ /**
17115
+ * 500
17116
+ */
17117
+ 500: {
17118
+ message: string;
17119
+ };
17120
+ };
17121
+ };
17122
+ };
17123
+ '/api/v1/misc/facebook/post': {
17124
+ patch: {
17125
+ req: MiscFacebookEditPostData;
17126
+ res: {
17127
+ /**
17128
+ * 200
17129
+ */
17130
+ 200: {
17131
+ success: boolean;
17132
+ permalink: string;
17133
+ };
17134
+ /**
17135
+ * 400
17136
+ */
17137
+ 400: {
17138
+ message: string;
17139
+ issues?: Array<{
17140
+ message: string;
17141
+ path?: Array<(string | number)> | null;
17142
+ }> | null;
17143
+ };
17144
+ /**
17145
+ * 401
17146
+ */
17147
+ 401: {
17148
+ message: string;
17149
+ };
17150
+ /**
17151
+ * 403
17152
+ */
17153
+ 403: {
17154
+ message: string;
17155
+ };
17156
+ /**
17157
+ * 404
17158
+ */
17159
+ 404: {
17160
+ message: string;
17161
+ };
17162
+ /**
17163
+ * 429
17164
+ */
17165
+ 429: {
17166
+ message: string;
17167
+ };
17168
+ /**
17169
+ * 500
17170
+ */
17171
+ 500: {
17172
+ message: string;
17173
+ };
17174
+ };
17175
+ };
17176
+ };
17177
+ '/api/v1/misc/pinterest/pin': {
17178
+ patch: {
17179
+ req: MiscPinterestEditPinData;
17180
+ res: {
17181
+ /**
17182
+ * 200
17183
+ */
17184
+ 200: {
17185
+ success: boolean;
17186
+ permalink: string;
17187
+ };
17188
+ /**
17189
+ * 400
17190
+ */
17191
+ 400: {
17192
+ message: string;
17193
+ issues?: Array<{
17194
+ message: string;
17195
+ path?: Array<(string | number)> | null;
17196
+ }> | null;
17197
+ };
17198
+ /**
17199
+ * 401
17200
+ */
17201
+ 401: {
17202
+ message: string;
17203
+ };
17204
+ /**
17205
+ * 403
17206
+ */
17207
+ 403: {
17208
+ message: string;
17209
+ };
17210
+ /**
17211
+ * 404
17212
+ */
17213
+ 404: {
17214
+ message: string;
17215
+ };
17216
+ /**
17217
+ * 429
17218
+ */
17219
+ 429: {
17220
+ message: string;
17221
+ };
17222
+ /**
17223
+ * 500
17224
+ */
17225
+ 500: {
17226
+ message: string;
17227
+ };
17228
+ };
17229
+ };
17230
+ };
17231
+ '/api/v1/misc/mastodon/status': {
17232
+ patch: {
17233
+ req: MiscMastodonEditStatusData;
17234
+ res: {
17235
+ /**
17236
+ * 200
17237
+ */
17238
+ 200: {
17239
+ success: boolean;
17240
+ permalink: string;
17241
+ };
17242
+ /**
17243
+ * 400
17244
+ */
17245
+ 400: {
17246
+ message: string;
17247
+ issues?: Array<{
17248
+ message: string;
17249
+ path?: Array<(string | number)> | null;
17250
+ }> | null;
17251
+ };
17252
+ /**
17253
+ * 401
17254
+ */
17255
+ 401: {
17256
+ message: string;
17257
+ };
17258
+ /**
17259
+ * 403
17260
+ */
17261
+ 403: {
17262
+ message: string;
17263
+ };
17264
+ /**
17265
+ * 404
17266
+ */
17267
+ 404: {
17268
+ message: string;
17269
+ };
17270
+ /**
17271
+ * 429
17272
+ */
17273
+ 429: {
17274
+ message: string;
17275
+ };
17276
+ /**
17277
+ * 500
17278
+ */
17279
+ 500: {
17280
+ message: string;
17281
+ };
17282
+ };
17283
+ };
17284
+ };
17285
+ '/api/v1/misc/slack/message': {
17286
+ patch: {
17287
+ req: MiscSlackEditMessageData;
17288
+ res: {
17289
+ /**
17290
+ * 200
17291
+ */
17292
+ 200: {
17293
+ success: boolean;
17294
+ permalink: string;
17295
+ };
17296
+ /**
17297
+ * 400
17298
+ */
17299
+ 400: {
17300
+ message: string;
17301
+ issues?: Array<{
17302
+ message: string;
17303
+ path?: Array<(string | number)> | null;
17304
+ }> | null;
17305
+ };
17306
+ /**
17307
+ * 401
17308
+ */
17309
+ 401: {
17310
+ message: string;
17311
+ };
17312
+ /**
17313
+ * 403
17314
+ */
17315
+ 403: {
17316
+ message: string;
17317
+ };
17318
+ /**
17319
+ * 404
17320
+ */
17321
+ 404: {
17322
+ message: string;
17323
+ };
17324
+ /**
17325
+ * 429
17326
+ */
17327
+ 429: {
17328
+ message: string;
17329
+ };
17330
+ /**
17331
+ * 500
17332
+ */
17333
+ 500: {
17334
+ message: string;
17335
+ };
17336
+ };
17337
+ };
17338
+ };
16486
17339
  };
16487
17340
 
16488
17341
  declare class AppService {
@@ -16914,6 +17767,34 @@ declare class MiscService {
16914
17767
  * @throws ApiError
16915
17768
  */
16916
17769
  miscYoutubeDeleteVideoFromPlaylist(data: MiscYoutubeDeleteVideoFromPlaylistData): CancelablePromise<MiscYoutubeDeleteVideoFromPlaylistResponse>;
17770
+ /**
17771
+ * Edit YouTube video metadata
17772
+ * Update the title, description, tags, category, or privacy status of a published YouTube video.
17773
+ * @param data The data for the request.
17774
+ * @param data.requestBody Body
17775
+ * @returns unknown 200
17776
+ * @throws ApiError
17777
+ */
17778
+ miscYoutubeEditVideo(data?: MiscYoutubeEditVideoData): CancelablePromise<MiscYoutubeEditVideoResponse>;
17779
+ /**
17780
+ * Get YouTube video categories
17781
+ * Retrieve the list of video categories that can be associated with YouTube videos for a specific region.
17782
+ * @param data The data for the request.
17783
+ * @param data.teamId
17784
+ * @param data.regionCode ISO 3166-1 alpha-2 country code (e.g., 'US', 'GB', 'PL'). Defaults to 'US'
17785
+ * @returns unknown 200
17786
+ * @throws ApiError
17787
+ */
17788
+ miscYoutubeGetVideoCategories(data: MiscYoutubeGetVideoCategoriesData): CancelablePromise<MiscYoutubeGetVideoCategoriesResponse>;
17789
+ /**
17790
+ * Get YouTube regions
17791
+ * Retrieve the list of content regions that the YouTube website supports.
17792
+ * @param data The data for the request.
17793
+ * @param data.teamId
17794
+ * @returns unknown 200
17795
+ * @throws ApiError
17796
+ */
17797
+ miscYoutubeGetRegions(data: MiscYoutubeGetRegionsData): CancelablePromise<MiscYoutubeGetRegionsResponse>;
16917
17798
  /**
16918
17799
  * Get Linkedin mentionable tags (people & organizations)
16919
17800
  * @param data The data for the request.
@@ -16926,13 +17807,22 @@ declare class MiscService {
16926
17807
  miscLinkedinGetTags(data: MiscLinkedinGetTagsData): CancelablePromise<MiscLinkedinGetTagsResponse>;
16927
17808
  /**
16928
17809
  * Build Linkedin text, insert mentions at tag placeholders.
16929
- * If tag already exists (case insensitive), mentions replace it; otherwise theyre appended to the end.
17810
+ * If tag already exists (case insensitive), mentions replace it; otherwise they're appended to the end.
16930
17811
  * @param data The data for the request.
16931
17812
  * @param data.requestBody Body
16932
17813
  * @returns unknown 200
16933
17814
  * @throws ApiError
16934
17815
  */
16935
17816
  miscLinkedinBuildCommentary(data?: MiscLinkedinBuildCommentaryData): CancelablePromise<MiscLinkedinBuildCommentaryResponse>;
17817
+ /**
17818
+ * Edit an existing LinkedIn post
17819
+ * Update the text content of a published LinkedIn post.
17820
+ * @param data The data for the request.
17821
+ * @param data.requestBody Body
17822
+ * @returns unknown 200
17823
+ * @throws ApiError
17824
+ */
17825
+ miscLinkedinEditPost(data?: MiscLinkedinEditPostData): CancelablePromise<MiscLinkedinEditPostResponse>;
16936
17826
  /**
16937
17827
  * Add a media item (photo/video) using uploadId and category
16938
17828
  * @param data The data for the request.
@@ -16959,6 +17849,62 @@ declare class MiscService {
16959
17849
  * @throws ApiError
16960
17850
  */
16961
17851
  miscRedditGetSubredditFlairs(data: MiscRedditGetSubredditFlairsData): CancelablePromise<MiscRedditGetSubredditFlairsResponse>;
17852
+ /**
17853
+ * Edit an existing Reddit post
17854
+ * Update the selftext content of a published Reddit text post. Link and media posts cannot be edited.
17855
+ * @param data The data for the request.
17856
+ * @param data.requestBody Body
17857
+ * @returns unknown 200
17858
+ * @throws ApiError
17859
+ */
17860
+ miscRedditEditPost(data?: MiscRedditEditPostData): CancelablePromise<MiscRedditEditPostResponse>;
17861
+ /**
17862
+ * Search for Instagram Business/Creator user by username
17863
+ * Checks if an Instagram user exists and returns their public profile data. Only works for Business and Creator accounts. Returns followers_count, media_count, and profile picture if available.
17864
+ * @param data The data for the request.
17865
+ * @param data.teamId
17866
+ * @param data.username Instagram username to search for
17867
+ * @returns unknown 200
17868
+ * @throws ApiError
17869
+ */
17870
+ miscInstagramBusinessDiscovery(data: MiscInstagramBusinessDiscoveryData): CancelablePromise<MiscInstagramBusinessDiscoveryResponse>;
17871
+ /**
17872
+ * Edit an existing Facebook post
17873
+ * Update the message/content of a published Facebook post or reel. Note: Only text content can be edited, media cannot be changed.
17874
+ * @param data The data for the request.
17875
+ * @param data.requestBody Body
17876
+ * @returns unknown 200
17877
+ * @throws ApiError
17878
+ */
17879
+ miscFacebookEditPost(data?: MiscFacebookEditPostData): CancelablePromise<MiscFacebookEditPostResponse>;
17880
+ /**
17881
+ * @deprecated
17882
+ * [DISABLED] Edit an existing Pinterest pin
17883
+ * Temporarily disabled
17884
+ * @param data The data for the request.
17885
+ * @param data.requestBody Body
17886
+ * @returns unknown 200
17887
+ * @throws ApiError
17888
+ */
17889
+ miscPinterestEditPin(data?: MiscPinterestEditPinData): CancelablePromise<MiscPinterestEditPinResponse>;
17890
+ /**
17891
+ * Edit an existing Mastodon status
17892
+ * Update the text content and spoiler text of a published Mastodon status.
17893
+ * @param data The data for the request.
17894
+ * @param data.requestBody Body
17895
+ * @returns unknown 200
17896
+ * @throws ApiError
17897
+ */
17898
+ miscMastodonEditStatus(data?: MiscMastodonEditStatusData): CancelablePromise<MiscMastodonEditStatusResponse>;
17899
+ /**
17900
+ * Edit an existing Slack message
17901
+ * Update the text content of a published Slack message.
17902
+ * @param data The data for the request.
17903
+ * @param data.requestBody Body
17904
+ * @returns unknown 200
17905
+ * @throws ApiError
17906
+ */
17907
+ miscSlackEditMessage(data?: MiscSlackEditMessageData): CancelablePromise<MiscSlackEditMessageResponse>;
16962
17908
  }
16963
17909
  declare class YoutubeService {
16964
17910
  readonly httpRequest: BaseHttpRequest;
@@ -17032,6 +17978,34 @@ declare class YoutubeService {
17032
17978
  * @throws ApiError
17033
17979
  */
17034
17980
  miscYoutubeDeleteVideoFromPlaylist(data: MiscYoutubeDeleteVideoFromPlaylistData): CancelablePromise<MiscYoutubeDeleteVideoFromPlaylistResponse>;
17981
+ /**
17982
+ * Edit YouTube video metadata
17983
+ * Update the title, description, tags, category, or privacy status of a published YouTube video.
17984
+ * @param data The data for the request.
17985
+ * @param data.requestBody Body
17986
+ * @returns unknown 200
17987
+ * @throws ApiError
17988
+ */
17989
+ miscYoutubeEditVideo(data?: MiscYoutubeEditVideoData): CancelablePromise<MiscYoutubeEditVideoResponse>;
17990
+ /**
17991
+ * Get YouTube video categories
17992
+ * Retrieve the list of video categories that can be associated with YouTube videos for a specific region.
17993
+ * @param data The data for the request.
17994
+ * @param data.teamId
17995
+ * @param data.regionCode ISO 3166-1 alpha-2 country code (e.g., 'US', 'GB', 'PL'). Defaults to 'US'
17996
+ * @returns unknown 200
17997
+ * @throws ApiError
17998
+ */
17999
+ miscYoutubeGetVideoCategories(data: MiscYoutubeGetVideoCategoriesData): CancelablePromise<MiscYoutubeGetVideoCategoriesResponse>;
18000
+ /**
18001
+ * Get YouTube regions
18002
+ * Retrieve the list of content regions that the YouTube website supports.
18003
+ * @param data The data for the request.
18004
+ * @param data.teamId
18005
+ * @returns unknown 200
18006
+ * @throws ApiError
18007
+ */
18008
+ miscYoutubeGetRegions(data: MiscYoutubeGetRegionsData): CancelablePromise<MiscYoutubeGetRegionsResponse>;
17035
18009
  }
17036
18010
  declare class LinkedinService {
17037
18011
  readonly httpRequest: BaseHttpRequest;
@@ -17048,13 +18022,22 @@ declare class LinkedinService {
17048
18022
  miscLinkedinGetTags(data: MiscLinkedinGetTagsData): CancelablePromise<MiscLinkedinGetTagsResponse>;
17049
18023
  /**
17050
18024
  * Build Linkedin text, insert mentions at tag placeholders.
17051
- * If tag already exists (case insensitive), mentions replace it; otherwise theyre appended to the end.
18025
+ * If tag already exists (case insensitive), mentions replace it; otherwise they're appended to the end.
17052
18026
  * @param data The data for the request.
17053
18027
  * @param data.requestBody Body
17054
18028
  * @returns unknown 200
17055
18029
  * @throws ApiError
17056
18030
  */
17057
18031
  miscLinkedinBuildCommentary(data?: MiscLinkedinBuildCommentaryData): CancelablePromise<MiscLinkedinBuildCommentaryResponse>;
18032
+ /**
18033
+ * Edit an existing LinkedIn post
18034
+ * Update the text content of a published LinkedIn post.
18035
+ * @param data The data for the request.
18036
+ * @param data.requestBody Body
18037
+ * @returns unknown 200
18038
+ * @throws ApiError
18039
+ */
18040
+ miscLinkedinEditPost(data?: MiscLinkedinEditPostData): CancelablePromise<MiscLinkedinEditPostResponse>;
17058
18041
  }
17059
18042
  declare class GoogleBusinessService {
17060
18043
  readonly httpRequest: BaseHttpRequest;
@@ -17089,6 +18072,82 @@ declare class RedditService {
17089
18072
  * @throws ApiError
17090
18073
  */
17091
18074
  miscRedditGetSubredditFlairs(data: MiscRedditGetSubredditFlairsData): CancelablePromise<MiscRedditGetSubredditFlairsResponse>;
18075
+ /**
18076
+ * Edit an existing Reddit post
18077
+ * Update the selftext content of a published Reddit text post. Link and media posts cannot be edited.
18078
+ * @param data The data for the request.
18079
+ * @param data.requestBody Body
18080
+ * @returns unknown 200
18081
+ * @throws ApiError
18082
+ */
18083
+ miscRedditEditPost(data?: MiscRedditEditPostData): CancelablePromise<MiscRedditEditPostResponse>;
18084
+ }
18085
+ declare class InstagramService {
18086
+ readonly httpRequest: BaseHttpRequest;
18087
+ constructor(httpRequest: BaseHttpRequest);
18088
+ /**
18089
+ * Search for Instagram Business/Creator user by username
18090
+ * Checks if an Instagram user exists and returns their public profile data. Only works for Business and Creator accounts. Returns followers_count, media_count, and profile picture if available.
18091
+ * @param data The data for the request.
18092
+ * @param data.teamId
18093
+ * @param data.username Instagram username to search for
18094
+ * @returns unknown 200
18095
+ * @throws ApiError
18096
+ */
18097
+ miscInstagramBusinessDiscovery(data: MiscInstagramBusinessDiscoveryData): CancelablePromise<MiscInstagramBusinessDiscoveryResponse>;
18098
+ }
18099
+ declare class FacebookService {
18100
+ readonly httpRequest: BaseHttpRequest;
18101
+ constructor(httpRequest: BaseHttpRequest);
18102
+ /**
18103
+ * Edit an existing Facebook post
18104
+ * Update the message/content of a published Facebook post or reel. Note: Only text content can be edited, media cannot be changed.
18105
+ * @param data The data for the request.
18106
+ * @param data.requestBody Body
18107
+ * @returns unknown 200
18108
+ * @throws ApiError
18109
+ */
18110
+ miscFacebookEditPost(data?: MiscFacebookEditPostData): CancelablePromise<MiscFacebookEditPostResponse>;
18111
+ }
18112
+ declare class PinterestService {
18113
+ readonly httpRequest: BaseHttpRequest;
18114
+ constructor(httpRequest: BaseHttpRequest);
18115
+ /**
18116
+ * @deprecated
18117
+ * [DISABLED] Edit an existing Pinterest pin
18118
+ * Temporarily disabled
18119
+ * @param data The data for the request.
18120
+ * @param data.requestBody Body
18121
+ * @returns unknown 200
18122
+ * @throws ApiError
18123
+ */
18124
+ miscPinterestEditPin(data?: MiscPinterestEditPinData): CancelablePromise<MiscPinterestEditPinResponse>;
18125
+ }
18126
+ declare class MastodonService {
18127
+ readonly httpRequest: BaseHttpRequest;
18128
+ constructor(httpRequest: BaseHttpRequest);
18129
+ /**
18130
+ * Edit an existing Mastodon status
18131
+ * Update the text content and spoiler text of a published Mastodon status.
18132
+ * @param data The data for the request.
18133
+ * @param data.requestBody Body
18134
+ * @returns unknown 200
18135
+ * @throws ApiError
18136
+ */
18137
+ miscMastodonEditStatus(data?: MiscMastodonEditStatusData): CancelablePromise<MiscMastodonEditStatusResponse>;
18138
+ }
18139
+ declare class SlackService {
18140
+ readonly httpRequest: BaseHttpRequest;
18141
+ constructor(httpRequest: BaseHttpRequest);
18142
+ /**
18143
+ * Edit an existing Slack message
18144
+ * Update the text content of a published Slack message.
18145
+ * @param data The data for the request.
18146
+ * @param data.requestBody Body
18147
+ * @returns unknown 200
18148
+ * @throws ApiError
18149
+ */
18150
+ miscSlackEditMessage(data?: MiscSlackEditMessageData): CancelablePromise<MiscSlackEditMessageResponse>;
17092
18151
  }
17093
18152
 
17094
18153
  type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
@@ -17096,12 +18155,17 @@ declare class Client {
17096
18155
  readonly analytics: AnalyticsService;
17097
18156
  readonly app: AppService;
17098
18157
  readonly comment: CommentService;
18158
+ readonly facebook: FacebookService;
17099
18159
  readonly googleBusiness: GoogleBusinessService;
18160
+ readonly instagram: InstagramService;
17100
18161
  readonly linkedin: LinkedinService;
18162
+ readonly mastodon: MastodonService;
17101
18163
  readonly misc: MiscService;
17102
18164
  readonly organization: OrganizationService;
18165
+ readonly pinterest: PinterestService;
17103
18166
  readonly post: PostService;
17104
18167
  readonly reddit: RedditService;
18168
+ readonly slack: SlackService;
17105
18169
  readonly socialAccount: SocialAccountService;
17106
18170
  readonly team: TeamService;
17107
18171
  readonly upload: UploadService;
@@ -17169,4 +18233,4 @@ declare class Bundlesocial extends Client {
17169
18233
  constructor(apiKey: string, options?: OpenAPIConfig);
17170
18234
  }
17171
18235
 
17172
- export { $OpenApiTs, AnalyticsForcePostAnalyticsData, AnalyticsForcePostAnalyticsResponse, AnalyticsForceSocialAccountAnalyticsData, AnalyticsForceSocialAccountAnalyticsResponse, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentUpdateData, CommentUpdateResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscRedditGetPostRequirementsData, MiscRedditGetPostRequirementsResponse, MiscRedditGetSubredditFlairsData, MiscRedditGetSubredditFlairsResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, OpenAPI, OpenAPIConfig, OrganizationGetOrganizationResponse, PostCreateData, PostCreateResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostRetryData, PostRetryResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };
18236
+ export { $OpenApiTs, AnalyticsForcePostAnalyticsData, AnalyticsForcePostAnalyticsResponse, AnalyticsForceSocialAccountAnalyticsData, AnalyticsForceSocialAccountAnalyticsResponse, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentUpdateData, CommentUpdateResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinEditPostData, MiscLinkedinEditPostResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscMastodonEditStatusData, MiscMastodonEditStatusResponse, MiscPinterestEditPinData, MiscPinterestEditPinResponse, MiscRedditEditPostData, MiscRedditEditPostResponse, MiscRedditGetPostRequirementsData, MiscRedditGetPostRequirementsResponse, MiscRedditGetSubredditFlairsData, MiscRedditGetSubredditFlairsResponse, MiscSlackEditMessageData, MiscSlackEditMessageResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeEditVideoData, MiscYoutubeEditVideoResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetRegionsData, MiscYoutubeGetRegionsResponse, MiscYoutubeGetVideoCategoriesData, MiscYoutubeGetVideoCategoriesResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, OpenAPI, OpenAPIConfig, OrganizationGetOrganizationResponse, PostCreateData, PostCreateResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostRetryData, PostRetryResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };