bundlesocial 2.28.0 → 2.29.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,126 @@ 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 MiscFacebookEditPostData = {
7662
+ /**
7663
+ * Body
7664
+ */
7665
+ requestBody?: {
7666
+ teamId: string;
7667
+ /**
7668
+ * The ID of the post/reel to edit
7669
+ */
7670
+ postId: string;
7671
+ /**
7672
+ * The updated message/text content of the post
7673
+ */
7674
+ description?: string;
7675
+ };
7676
+ };
7677
+ type MiscFacebookEditPostResponse = {
7678
+ success: boolean;
7679
+ permalink: string;
7680
+ };
7681
+ type MiscPinterestEditPinData = {
7682
+ /**
7683
+ * Body
7684
+ */
7685
+ requestBody?: {
7686
+ teamId: string;
7687
+ /**
7688
+ * The ID of the post in our database
7689
+ */
7690
+ postId: string;
7691
+ /**
7692
+ * The updated title
7693
+ */
7694
+ title?: string;
7695
+ /**
7696
+ * The updated description
7697
+ */
7698
+ description?: string;
7699
+ /**
7700
+ * The updated destination link
7701
+ */
7702
+ link?: string;
7703
+ /**
7704
+ * The updated alt text
7705
+ */
7706
+ altText?: string;
7707
+ /**
7708
+ * The updated note
7709
+ */
7710
+ note?: string;
7711
+ };
7712
+ };
7713
+ type MiscPinterestEditPinResponse = {
7714
+ success: boolean;
7715
+ permalink: string;
7716
+ };
7717
+ type MiscMastodonEditStatusData = {
7718
+ /**
7719
+ * Body
7720
+ */
7721
+ requestBody?: {
7722
+ teamId: string;
7723
+ /**
7724
+ * The ID of the post in our database
7725
+ */
7726
+ postId: string;
7727
+ /**
7728
+ * The updated status text
7729
+ */
7730
+ description: string;
7731
+ /**
7732
+ * The updated spoiler/content warning text
7733
+ */
7734
+ spoilerText?: string;
7735
+ };
7736
+ };
7737
+ type MiscMastodonEditStatusResponse = {
7738
+ success: boolean;
7739
+ permalink: string;
7740
+ };
7741
+ type MiscSlackEditMessageData = {
7742
+ /**
7743
+ * Body
7744
+ */
7745
+ requestBody?: {
7746
+ teamId: string;
7747
+ /**
7748
+ * The ID of the post in our database
7749
+ */
7750
+ postId: string;
7751
+ /**
7752
+ * The updated message text
7753
+ */
7754
+ description: string;
7755
+ };
7756
+ };
7757
+ type MiscSlackEditMessageResponse = {
7758
+ success: boolean;
7759
+ permalink: string;
7760
+ };
7548
7761
  type $OpenApiTs = {
7549
7762
  '/api/v1/': {
7550
7763
  get: {
@@ -16191,28 +16404,16 @@ type $OpenApiTs = {
16191
16404
  };
16192
16405
  };
16193
16406
  };
16194
- '/api/v1/misc/linkedin/mentions/tags': {
16195
- get: {
16196
- req: MiscLinkedinGetTagsData;
16407
+ '/api/v1/misc/youtube/video': {
16408
+ patch: {
16409
+ req: MiscYoutubeEditVideoData;
16197
16410
  res: {
16198
16411
  /**
16199
16412
  * 200
16200
16413
  */
16201
16414
  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
- }>;
16415
+ success: boolean;
16416
+ permalink: string;
16216
16417
  };
16217
16418
  /**
16218
16419
  * 400
@@ -16257,15 +16458,26 @@ type $OpenApiTs = {
16257
16458
  };
16258
16459
  };
16259
16460
  };
16260
- '/api/v1/misc/linkedin/mentions/builder': {
16261
- post: {
16262
- req: MiscLinkedinBuildCommentaryData;
16461
+ '/api/v1/misc/youtube/video-categories': {
16462
+ get: {
16463
+ req: MiscYoutubeGetVideoCategoriesData;
16263
16464
  res: {
16264
16465
  /**
16265
16466
  * 200
16266
16467
  */
16267
16468
  200: {
16268
- commentary: string;
16469
+ kind?: string;
16470
+ etag?: string;
16471
+ items?: Array<{
16472
+ kind?: string;
16473
+ etag?: string;
16474
+ id?: string;
16475
+ snippet?: {
16476
+ channelId?: string;
16477
+ title?: string;
16478
+ assignable?: boolean;
16479
+ };
16480
+ }>;
16269
16481
  };
16270
16482
  /**
16271
16483
  * 400
@@ -16310,21 +16522,25 @@ type $OpenApiTs = {
16310
16522
  };
16311
16523
  };
16312
16524
  };
16313
- '/api/v1/misc/google-business/media': {
16314
- post: {
16315
- req: MiscGoogleBusinessAddMediaData;
16525
+ '/api/v1/misc/youtube/regions': {
16526
+ get: {
16527
+ req: MiscYoutubeGetRegionsData;
16316
16528
  res: {
16317
16529
  /**
16318
16530
  * 200
16319
16531
  */
16320
16532
  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;
16533
+ kind?: string;
16534
+ etag?: string;
16535
+ items?: Array<{
16536
+ kind?: string;
16537
+ etag?: string;
16538
+ id?: string;
16539
+ snippet?: {
16540
+ gl?: string;
16541
+ name?: string;
16542
+ };
16543
+ }>;
16328
16544
  };
16329
16545
  /**
16330
16546
  * 400
@@ -16369,16 +16585,28 @@ type $OpenApiTs = {
16369
16585
  };
16370
16586
  };
16371
16587
  };
16372
- '/api/v1/misc/reddit/post-requirements': {
16588
+ '/api/v1/misc/linkedin/mentions/tags': {
16373
16589
  get: {
16374
- req: MiscRedditGetPostRequirementsData;
16590
+ req: MiscLinkedinGetTagsData;
16375
16591
  res: {
16376
16592
  /**
16377
16593
  * 200
16378
16594
  */
16379
16595
  200: {
16380
- isFlairRequired: boolean;
16381
- isFlairEnabled: boolean;
16596
+ people?: Array<{
16597
+ kind: 'person';
16598
+ urn: string;
16599
+ display: string;
16600
+ headline?: string;
16601
+ photoUrl?: string;
16602
+ }>;
16603
+ organizations?: Array<{
16604
+ kind: 'organization';
16605
+ urn: string;
16606
+ display: string;
16607
+ vanityName?: string;
16608
+ logoUrl?: string;
16609
+ }>;
16382
16610
  };
16383
16611
  /**
16384
16612
  * 400
@@ -16423,23 +16651,16 @@ type $OpenApiTs = {
16423
16651
  };
16424
16652
  };
16425
16653
  };
16426
- '/api/v1/misc/reddit/subreddit-flairs': {
16427
- get: {
16428
- req: MiscRedditGetSubredditFlairsData;
16654
+ '/api/v1/misc/linkedin/mentions/builder': {
16655
+ post: {
16656
+ req: MiscLinkedinBuildCommentaryData;
16429
16657
  res: {
16430
16658
  /**
16431
16659
  * 200
16432
16660
  */
16433
- 200: Array<{
16434
- id?: string;
16435
- text?: string;
16436
- cssClass?: string;
16437
- textColor?: string;
16438
- backgroundColor?: string;
16439
- modOnly?: boolean;
16440
- allowableContent?: string;
16441
- maxEmojis?: number;
16442
- }>;
16661
+ 200: {
16662
+ commentary: string;
16663
+ };
16443
16664
  /**
16444
16665
  * 400
16445
16666
  */
@@ -16483,22 +16704,519 @@ type $OpenApiTs = {
16483
16704
  };
16484
16705
  };
16485
16706
  };
16486
- };
16487
-
16488
- declare class AppService {
16489
- readonly httpRequest: BaseHttpRequest;
16490
- constructor(httpRequest: BaseHttpRequest);
16491
- /**
16492
- * Get health
16493
- * @returns unknown 200
16494
- * @throws ApiError
16495
- */
16496
- appGetHealth(): CancelablePromise<AppGetHealthResponse>;
16497
- }
16498
- declare class OrganizationService {
16499
- readonly httpRequest: BaseHttpRequest;
16500
- constructor(httpRequest: BaseHttpRequest);
16501
- /**
16707
+ '/api/v1/misc/linkedin/post': {
16708
+ patch: {
16709
+ req: MiscLinkedinEditPostData;
16710
+ res: {
16711
+ /**
16712
+ * 200
16713
+ */
16714
+ 200: {
16715
+ success: boolean;
16716
+ permalink: string;
16717
+ };
16718
+ /**
16719
+ * 400
16720
+ */
16721
+ 400: {
16722
+ message: string;
16723
+ issues?: Array<{
16724
+ message: string;
16725
+ path?: Array<(string | number)> | null;
16726
+ }> | null;
16727
+ };
16728
+ /**
16729
+ * 401
16730
+ */
16731
+ 401: {
16732
+ message: string;
16733
+ };
16734
+ /**
16735
+ * 403
16736
+ */
16737
+ 403: {
16738
+ message: string;
16739
+ };
16740
+ /**
16741
+ * 404
16742
+ */
16743
+ 404: {
16744
+ message: string;
16745
+ };
16746
+ /**
16747
+ * 429
16748
+ */
16749
+ 429: {
16750
+ message: string;
16751
+ };
16752
+ /**
16753
+ * 500
16754
+ */
16755
+ 500: {
16756
+ message: string;
16757
+ };
16758
+ };
16759
+ };
16760
+ };
16761
+ '/api/v1/misc/google-business/media': {
16762
+ post: {
16763
+ req: MiscGoogleBusinessAddMediaData;
16764
+ res: {
16765
+ /**
16766
+ * 200
16767
+ */
16768
+ 200: {
16769
+ name?: string;
16770
+ googleUrl?: string;
16771
+ locationAssociation?: {
16772
+ category?: 'CATEGORY_UNSPECIFIED' | 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'PRODUCT' | 'AT_WORK' | 'FOOD_AND_DRINK' | 'MENU' | 'COMMON_AREA' | 'ROOMS' | 'TEAMS' | 'ADDITIONAL';
16773
+ priceListItemId?: string;
16774
+ };
16775
+ description?: string;
16776
+ };
16777
+ /**
16778
+ * 400
16779
+ */
16780
+ 400: {
16781
+ message: string;
16782
+ issues?: Array<{
16783
+ message: string;
16784
+ path?: Array<(string | number)> | null;
16785
+ }> | null;
16786
+ };
16787
+ /**
16788
+ * 401
16789
+ */
16790
+ 401: {
16791
+ message: string;
16792
+ };
16793
+ /**
16794
+ * 403
16795
+ */
16796
+ 403: {
16797
+ message: string;
16798
+ };
16799
+ /**
16800
+ * 404
16801
+ */
16802
+ 404: {
16803
+ message: string;
16804
+ };
16805
+ /**
16806
+ * 429
16807
+ */
16808
+ 429: {
16809
+ message: string;
16810
+ };
16811
+ /**
16812
+ * 500
16813
+ */
16814
+ 500: {
16815
+ message: string;
16816
+ };
16817
+ };
16818
+ };
16819
+ };
16820
+ '/api/v1/misc/reddit/post-requirements': {
16821
+ get: {
16822
+ req: MiscRedditGetPostRequirementsData;
16823
+ res: {
16824
+ /**
16825
+ * 200
16826
+ */
16827
+ 200: {
16828
+ isFlairRequired: boolean;
16829
+ isFlairEnabled: boolean;
16830
+ };
16831
+ /**
16832
+ * 400
16833
+ */
16834
+ 400: {
16835
+ message: string;
16836
+ issues?: Array<{
16837
+ message: string;
16838
+ path?: Array<(string | number)> | null;
16839
+ }> | null;
16840
+ };
16841
+ /**
16842
+ * 401
16843
+ */
16844
+ 401: {
16845
+ message: string;
16846
+ };
16847
+ /**
16848
+ * 403
16849
+ */
16850
+ 403: {
16851
+ message: string;
16852
+ };
16853
+ /**
16854
+ * 404
16855
+ */
16856
+ 404: {
16857
+ message: string;
16858
+ };
16859
+ /**
16860
+ * 429
16861
+ */
16862
+ 429: {
16863
+ message: string;
16864
+ };
16865
+ /**
16866
+ * 500
16867
+ */
16868
+ 500: {
16869
+ message: string;
16870
+ };
16871
+ };
16872
+ };
16873
+ };
16874
+ '/api/v1/misc/reddit/subreddit-flairs': {
16875
+ get: {
16876
+ req: MiscRedditGetSubredditFlairsData;
16877
+ res: {
16878
+ /**
16879
+ * 200
16880
+ */
16881
+ 200: Array<{
16882
+ id?: string;
16883
+ text?: string;
16884
+ cssClass?: string;
16885
+ textColor?: string;
16886
+ backgroundColor?: string;
16887
+ modOnly?: boolean;
16888
+ allowableContent?: string;
16889
+ maxEmojis?: number;
16890
+ }>;
16891
+ /**
16892
+ * 400
16893
+ */
16894
+ 400: {
16895
+ message: string;
16896
+ issues?: Array<{
16897
+ message: string;
16898
+ path?: Array<(string | number)> | null;
16899
+ }> | null;
16900
+ };
16901
+ /**
16902
+ * 401
16903
+ */
16904
+ 401: {
16905
+ message: string;
16906
+ };
16907
+ /**
16908
+ * 403
16909
+ */
16910
+ 403: {
16911
+ message: string;
16912
+ };
16913
+ /**
16914
+ * 404
16915
+ */
16916
+ 404: {
16917
+ message: string;
16918
+ };
16919
+ /**
16920
+ * 429
16921
+ */
16922
+ 429: {
16923
+ message: string;
16924
+ };
16925
+ /**
16926
+ * 500
16927
+ */
16928
+ 500: {
16929
+ message: string;
16930
+ };
16931
+ };
16932
+ };
16933
+ };
16934
+ '/api/v1/misc/reddit/post': {
16935
+ patch: {
16936
+ req: MiscRedditEditPostData;
16937
+ res: {
16938
+ /**
16939
+ * 200
16940
+ */
16941
+ 200: {
16942
+ success: boolean;
16943
+ permalink: string;
16944
+ };
16945
+ /**
16946
+ * 400
16947
+ */
16948
+ 400: {
16949
+ message: string;
16950
+ issues?: Array<{
16951
+ message: string;
16952
+ path?: Array<(string | number)> | null;
16953
+ }> | null;
16954
+ };
16955
+ /**
16956
+ * 401
16957
+ */
16958
+ 401: {
16959
+ message: string;
16960
+ };
16961
+ /**
16962
+ * 403
16963
+ */
16964
+ 403: {
16965
+ message: string;
16966
+ };
16967
+ /**
16968
+ * 404
16969
+ */
16970
+ 404: {
16971
+ message: string;
16972
+ };
16973
+ /**
16974
+ * 429
16975
+ */
16976
+ 429: {
16977
+ message: string;
16978
+ };
16979
+ /**
16980
+ * 500
16981
+ */
16982
+ 500: {
16983
+ message: string;
16984
+ };
16985
+ };
16986
+ };
16987
+ };
16988
+ '/api/v1/misc/facebook/post': {
16989
+ patch: {
16990
+ req: MiscFacebookEditPostData;
16991
+ res: {
16992
+ /**
16993
+ * 200
16994
+ */
16995
+ 200: {
16996
+ success: boolean;
16997
+ permalink: string;
16998
+ };
16999
+ /**
17000
+ * 400
17001
+ */
17002
+ 400: {
17003
+ message: string;
17004
+ issues?: Array<{
17005
+ message: string;
17006
+ path?: Array<(string | number)> | null;
17007
+ }> | null;
17008
+ };
17009
+ /**
17010
+ * 401
17011
+ */
17012
+ 401: {
17013
+ message: string;
17014
+ };
17015
+ /**
17016
+ * 403
17017
+ */
17018
+ 403: {
17019
+ message: string;
17020
+ };
17021
+ /**
17022
+ * 404
17023
+ */
17024
+ 404: {
17025
+ message: string;
17026
+ };
17027
+ /**
17028
+ * 429
17029
+ */
17030
+ 429: {
17031
+ message: string;
17032
+ };
17033
+ /**
17034
+ * 500
17035
+ */
17036
+ 500: {
17037
+ message: string;
17038
+ };
17039
+ };
17040
+ };
17041
+ };
17042
+ '/api/v1/misc/pinterest/pin': {
17043
+ patch: {
17044
+ req: MiscPinterestEditPinData;
17045
+ res: {
17046
+ /**
17047
+ * 200
17048
+ */
17049
+ 200: {
17050
+ success: boolean;
17051
+ permalink: string;
17052
+ };
17053
+ /**
17054
+ * 400
17055
+ */
17056
+ 400: {
17057
+ message: string;
17058
+ issues?: Array<{
17059
+ message: string;
17060
+ path?: Array<(string | number)> | null;
17061
+ }> | null;
17062
+ };
17063
+ /**
17064
+ * 401
17065
+ */
17066
+ 401: {
17067
+ message: string;
17068
+ };
17069
+ /**
17070
+ * 403
17071
+ */
17072
+ 403: {
17073
+ message: string;
17074
+ };
17075
+ /**
17076
+ * 404
17077
+ */
17078
+ 404: {
17079
+ message: string;
17080
+ };
17081
+ /**
17082
+ * 429
17083
+ */
17084
+ 429: {
17085
+ message: string;
17086
+ };
17087
+ /**
17088
+ * 500
17089
+ */
17090
+ 500: {
17091
+ message: string;
17092
+ };
17093
+ };
17094
+ };
17095
+ };
17096
+ '/api/v1/misc/mastodon/status': {
17097
+ patch: {
17098
+ req: MiscMastodonEditStatusData;
17099
+ res: {
17100
+ /**
17101
+ * 200
17102
+ */
17103
+ 200: {
17104
+ success: boolean;
17105
+ permalink: string;
17106
+ };
17107
+ /**
17108
+ * 400
17109
+ */
17110
+ 400: {
17111
+ message: string;
17112
+ issues?: Array<{
17113
+ message: string;
17114
+ path?: Array<(string | number)> | null;
17115
+ }> | null;
17116
+ };
17117
+ /**
17118
+ * 401
17119
+ */
17120
+ 401: {
17121
+ message: string;
17122
+ };
17123
+ /**
17124
+ * 403
17125
+ */
17126
+ 403: {
17127
+ message: string;
17128
+ };
17129
+ /**
17130
+ * 404
17131
+ */
17132
+ 404: {
17133
+ message: string;
17134
+ };
17135
+ /**
17136
+ * 429
17137
+ */
17138
+ 429: {
17139
+ message: string;
17140
+ };
17141
+ /**
17142
+ * 500
17143
+ */
17144
+ 500: {
17145
+ message: string;
17146
+ };
17147
+ };
17148
+ };
17149
+ };
17150
+ '/api/v1/misc/slack/message': {
17151
+ patch: {
17152
+ req: MiscSlackEditMessageData;
17153
+ res: {
17154
+ /**
17155
+ * 200
17156
+ */
17157
+ 200: {
17158
+ success: boolean;
17159
+ permalink: string;
17160
+ };
17161
+ /**
17162
+ * 400
17163
+ */
17164
+ 400: {
17165
+ message: string;
17166
+ issues?: Array<{
17167
+ message: string;
17168
+ path?: Array<(string | number)> | null;
17169
+ }> | null;
17170
+ };
17171
+ /**
17172
+ * 401
17173
+ */
17174
+ 401: {
17175
+ message: string;
17176
+ };
17177
+ /**
17178
+ * 403
17179
+ */
17180
+ 403: {
17181
+ message: string;
17182
+ };
17183
+ /**
17184
+ * 404
17185
+ */
17186
+ 404: {
17187
+ message: string;
17188
+ };
17189
+ /**
17190
+ * 429
17191
+ */
17192
+ 429: {
17193
+ message: string;
17194
+ };
17195
+ /**
17196
+ * 500
17197
+ */
17198
+ 500: {
17199
+ message: string;
17200
+ };
17201
+ };
17202
+ };
17203
+ };
17204
+ };
17205
+
17206
+ declare class AppService {
17207
+ readonly httpRequest: BaseHttpRequest;
17208
+ constructor(httpRequest: BaseHttpRequest);
17209
+ /**
17210
+ * Get health
17211
+ * @returns unknown 200
17212
+ * @throws ApiError
17213
+ */
17214
+ appGetHealth(): CancelablePromise<AppGetHealthResponse>;
17215
+ }
17216
+ declare class OrganizationService {
17217
+ readonly httpRequest: BaseHttpRequest;
17218
+ constructor(httpRequest: BaseHttpRequest);
17219
+ /**
16502
17220
  * Get organization
16503
17221
  * @returns unknown 200
16504
17222
  * @throws ApiError
@@ -16914,6 +17632,34 @@ declare class MiscService {
16914
17632
  * @throws ApiError
16915
17633
  */
16916
17634
  miscYoutubeDeleteVideoFromPlaylist(data: MiscYoutubeDeleteVideoFromPlaylistData): CancelablePromise<MiscYoutubeDeleteVideoFromPlaylistResponse>;
17635
+ /**
17636
+ * Edit YouTube video metadata
17637
+ * Update the title, description, tags, category, or privacy status of a published YouTube video.
17638
+ * @param data The data for the request.
17639
+ * @param data.requestBody Body
17640
+ * @returns unknown 200
17641
+ * @throws ApiError
17642
+ */
17643
+ miscYoutubeEditVideo(data?: MiscYoutubeEditVideoData): CancelablePromise<MiscYoutubeEditVideoResponse>;
17644
+ /**
17645
+ * Get YouTube video categories
17646
+ * Retrieve the list of video categories that can be associated with YouTube videos for a specific region.
17647
+ * @param data The data for the request.
17648
+ * @param data.teamId
17649
+ * @param data.regionCode ISO 3166-1 alpha-2 country code (e.g., 'US', 'GB', 'PL'). Defaults to 'US'
17650
+ * @returns unknown 200
17651
+ * @throws ApiError
17652
+ */
17653
+ miscYoutubeGetVideoCategories(data: MiscYoutubeGetVideoCategoriesData): CancelablePromise<MiscYoutubeGetVideoCategoriesResponse>;
17654
+ /**
17655
+ * Get YouTube regions
17656
+ * Retrieve the list of content regions that the YouTube website supports.
17657
+ * @param data The data for the request.
17658
+ * @param data.teamId
17659
+ * @returns unknown 200
17660
+ * @throws ApiError
17661
+ */
17662
+ miscYoutubeGetRegions(data: MiscYoutubeGetRegionsData): CancelablePromise<MiscYoutubeGetRegionsResponse>;
16917
17663
  /**
16918
17664
  * Get Linkedin mentionable tags (people & organizations)
16919
17665
  * @param data The data for the request.
@@ -16926,13 +17672,22 @@ declare class MiscService {
16926
17672
  miscLinkedinGetTags(data: MiscLinkedinGetTagsData): CancelablePromise<MiscLinkedinGetTagsResponse>;
16927
17673
  /**
16928
17674
  * Build Linkedin text, insert mentions at tag placeholders.
16929
- * If tag already exists (case insensitive), mentions replace it; otherwise theyre appended to the end.
17675
+ * If tag already exists (case insensitive), mentions replace it; otherwise they're appended to the end.
16930
17676
  * @param data The data for the request.
16931
17677
  * @param data.requestBody Body
16932
17678
  * @returns unknown 200
16933
17679
  * @throws ApiError
16934
17680
  */
16935
17681
  miscLinkedinBuildCommentary(data?: MiscLinkedinBuildCommentaryData): CancelablePromise<MiscLinkedinBuildCommentaryResponse>;
17682
+ /**
17683
+ * Edit an existing LinkedIn post
17684
+ * Update the text content of a published LinkedIn post.
17685
+ * @param data The data for the request.
17686
+ * @param data.requestBody Body
17687
+ * @returns unknown 200
17688
+ * @throws ApiError
17689
+ */
17690
+ miscLinkedinEditPost(data?: MiscLinkedinEditPostData): CancelablePromise<MiscLinkedinEditPostResponse>;
16936
17691
  /**
16937
17692
  * Add a media item (photo/video) using uploadId and category
16938
17693
  * @param data The data for the request.
@@ -16959,6 +17714,52 @@ declare class MiscService {
16959
17714
  * @throws ApiError
16960
17715
  */
16961
17716
  miscRedditGetSubredditFlairs(data: MiscRedditGetSubredditFlairsData): CancelablePromise<MiscRedditGetSubredditFlairsResponse>;
17717
+ /**
17718
+ * Edit an existing Reddit post
17719
+ * Update the selftext content of a published Reddit text post. Link and media posts cannot be edited.
17720
+ * @param data The data for the request.
17721
+ * @param data.requestBody Body
17722
+ * @returns unknown 200
17723
+ * @throws ApiError
17724
+ */
17725
+ miscRedditEditPost(data?: MiscRedditEditPostData): CancelablePromise<MiscRedditEditPostResponse>;
17726
+ /**
17727
+ * Edit an existing Facebook post
17728
+ * Update the message/content of a published Facebook post or reel. Note: Only text content can be edited, media cannot be changed.
17729
+ * @param data The data for the request.
17730
+ * @param data.requestBody Body
17731
+ * @returns unknown 200
17732
+ * @throws ApiError
17733
+ */
17734
+ miscFacebookEditPost(data?: MiscFacebookEditPostData): CancelablePromise<MiscFacebookEditPostResponse>;
17735
+ /**
17736
+ * @deprecated
17737
+ * [DISABLED] Edit an existing Pinterest pin
17738
+ * Temporarily disabled
17739
+ * @param data The data for the request.
17740
+ * @param data.requestBody Body
17741
+ * @returns unknown 200
17742
+ * @throws ApiError
17743
+ */
17744
+ miscPinterestEditPin(data?: MiscPinterestEditPinData): CancelablePromise<MiscPinterestEditPinResponse>;
17745
+ /**
17746
+ * Edit an existing Mastodon status
17747
+ * Update the text content and spoiler text of a published Mastodon status.
17748
+ * @param data The data for the request.
17749
+ * @param data.requestBody Body
17750
+ * @returns unknown 200
17751
+ * @throws ApiError
17752
+ */
17753
+ miscMastodonEditStatus(data?: MiscMastodonEditStatusData): CancelablePromise<MiscMastodonEditStatusResponse>;
17754
+ /**
17755
+ * Edit an existing Slack message
17756
+ * Update the text content of a published Slack message.
17757
+ * @param data The data for the request.
17758
+ * @param data.requestBody Body
17759
+ * @returns unknown 200
17760
+ * @throws ApiError
17761
+ */
17762
+ miscSlackEditMessage(data?: MiscSlackEditMessageData): CancelablePromise<MiscSlackEditMessageResponse>;
16962
17763
  }
16963
17764
  declare class YoutubeService {
16964
17765
  readonly httpRequest: BaseHttpRequest;
@@ -17032,6 +17833,34 @@ declare class YoutubeService {
17032
17833
  * @throws ApiError
17033
17834
  */
17034
17835
  miscYoutubeDeleteVideoFromPlaylist(data: MiscYoutubeDeleteVideoFromPlaylistData): CancelablePromise<MiscYoutubeDeleteVideoFromPlaylistResponse>;
17836
+ /**
17837
+ * Edit YouTube video metadata
17838
+ * Update the title, description, tags, category, or privacy status of a published YouTube video.
17839
+ * @param data The data for the request.
17840
+ * @param data.requestBody Body
17841
+ * @returns unknown 200
17842
+ * @throws ApiError
17843
+ */
17844
+ miscYoutubeEditVideo(data?: MiscYoutubeEditVideoData): CancelablePromise<MiscYoutubeEditVideoResponse>;
17845
+ /**
17846
+ * Get YouTube video categories
17847
+ * Retrieve the list of video categories that can be associated with YouTube videos for a specific region.
17848
+ * @param data The data for the request.
17849
+ * @param data.teamId
17850
+ * @param data.regionCode ISO 3166-1 alpha-2 country code (e.g., 'US', 'GB', 'PL'). Defaults to 'US'
17851
+ * @returns unknown 200
17852
+ * @throws ApiError
17853
+ */
17854
+ miscYoutubeGetVideoCategories(data: MiscYoutubeGetVideoCategoriesData): CancelablePromise<MiscYoutubeGetVideoCategoriesResponse>;
17855
+ /**
17856
+ * Get YouTube regions
17857
+ * Retrieve the list of content regions that the YouTube website supports.
17858
+ * @param data The data for the request.
17859
+ * @param data.teamId
17860
+ * @returns unknown 200
17861
+ * @throws ApiError
17862
+ */
17863
+ miscYoutubeGetRegions(data: MiscYoutubeGetRegionsData): CancelablePromise<MiscYoutubeGetRegionsResponse>;
17035
17864
  }
17036
17865
  declare class LinkedinService {
17037
17866
  readonly httpRequest: BaseHttpRequest;
@@ -17048,13 +17877,22 @@ declare class LinkedinService {
17048
17877
  miscLinkedinGetTags(data: MiscLinkedinGetTagsData): CancelablePromise<MiscLinkedinGetTagsResponse>;
17049
17878
  /**
17050
17879
  * Build Linkedin text, insert mentions at tag placeholders.
17051
- * If tag already exists (case insensitive), mentions replace it; otherwise theyre appended to the end.
17880
+ * If tag already exists (case insensitive), mentions replace it; otherwise they're appended to the end.
17052
17881
  * @param data The data for the request.
17053
17882
  * @param data.requestBody Body
17054
17883
  * @returns unknown 200
17055
17884
  * @throws ApiError
17056
17885
  */
17057
17886
  miscLinkedinBuildCommentary(data?: MiscLinkedinBuildCommentaryData): CancelablePromise<MiscLinkedinBuildCommentaryResponse>;
17887
+ /**
17888
+ * Edit an existing LinkedIn post
17889
+ * Update the text content of a published LinkedIn post.
17890
+ * @param data The data for the request.
17891
+ * @param data.requestBody Body
17892
+ * @returns unknown 200
17893
+ * @throws ApiError
17894
+ */
17895
+ miscLinkedinEditPost(data?: MiscLinkedinEditPostData): CancelablePromise<MiscLinkedinEditPostResponse>;
17058
17896
  }
17059
17897
  declare class GoogleBusinessService {
17060
17898
  readonly httpRequest: BaseHttpRequest;
@@ -17089,6 +17927,68 @@ declare class RedditService {
17089
17927
  * @throws ApiError
17090
17928
  */
17091
17929
  miscRedditGetSubredditFlairs(data: MiscRedditGetSubredditFlairsData): CancelablePromise<MiscRedditGetSubredditFlairsResponse>;
17930
+ /**
17931
+ * Edit an existing Reddit post
17932
+ * Update the selftext content of a published Reddit text post. Link and media posts cannot be edited.
17933
+ * @param data The data for the request.
17934
+ * @param data.requestBody Body
17935
+ * @returns unknown 200
17936
+ * @throws ApiError
17937
+ */
17938
+ miscRedditEditPost(data?: MiscRedditEditPostData): CancelablePromise<MiscRedditEditPostResponse>;
17939
+ }
17940
+ declare class FacebookService {
17941
+ readonly httpRequest: BaseHttpRequest;
17942
+ constructor(httpRequest: BaseHttpRequest);
17943
+ /**
17944
+ * Edit an existing Facebook post
17945
+ * Update the message/content of a published Facebook post or reel. Note: Only text content can be edited, media cannot be changed.
17946
+ * @param data The data for the request.
17947
+ * @param data.requestBody Body
17948
+ * @returns unknown 200
17949
+ * @throws ApiError
17950
+ */
17951
+ miscFacebookEditPost(data?: MiscFacebookEditPostData): CancelablePromise<MiscFacebookEditPostResponse>;
17952
+ }
17953
+ declare class PinterestService {
17954
+ readonly httpRequest: BaseHttpRequest;
17955
+ constructor(httpRequest: BaseHttpRequest);
17956
+ /**
17957
+ * @deprecated
17958
+ * [DISABLED] Edit an existing Pinterest pin
17959
+ * Temporarily disabled
17960
+ * @param data The data for the request.
17961
+ * @param data.requestBody Body
17962
+ * @returns unknown 200
17963
+ * @throws ApiError
17964
+ */
17965
+ miscPinterestEditPin(data?: MiscPinterestEditPinData): CancelablePromise<MiscPinterestEditPinResponse>;
17966
+ }
17967
+ declare class MastodonService {
17968
+ readonly httpRequest: BaseHttpRequest;
17969
+ constructor(httpRequest: BaseHttpRequest);
17970
+ /**
17971
+ * Edit an existing Mastodon status
17972
+ * Update the text content and spoiler text of a published Mastodon status.
17973
+ * @param data The data for the request.
17974
+ * @param data.requestBody Body
17975
+ * @returns unknown 200
17976
+ * @throws ApiError
17977
+ */
17978
+ miscMastodonEditStatus(data?: MiscMastodonEditStatusData): CancelablePromise<MiscMastodonEditStatusResponse>;
17979
+ }
17980
+ declare class SlackService {
17981
+ readonly httpRequest: BaseHttpRequest;
17982
+ constructor(httpRequest: BaseHttpRequest);
17983
+ /**
17984
+ * Edit an existing Slack message
17985
+ * Update the text content of a published Slack message.
17986
+ * @param data The data for the request.
17987
+ * @param data.requestBody Body
17988
+ * @returns unknown 200
17989
+ * @throws ApiError
17990
+ */
17991
+ miscSlackEditMessage(data?: MiscSlackEditMessageData): CancelablePromise<MiscSlackEditMessageResponse>;
17092
17992
  }
17093
17993
 
17094
17994
  type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
@@ -17096,12 +17996,16 @@ declare class Client {
17096
17996
  readonly analytics: AnalyticsService;
17097
17997
  readonly app: AppService;
17098
17998
  readonly comment: CommentService;
17999
+ readonly facebook: FacebookService;
17099
18000
  readonly googleBusiness: GoogleBusinessService;
17100
18001
  readonly linkedin: LinkedinService;
18002
+ readonly mastodon: MastodonService;
17101
18003
  readonly misc: MiscService;
17102
18004
  readonly organization: OrganizationService;
18005
+ readonly pinterest: PinterestService;
17103
18006
  readonly post: PostService;
17104
18007
  readonly reddit: RedditService;
18008
+ readonly slack: SlackService;
17105
18009
  readonly socialAccount: SocialAccountService;
17106
18010
  readonly team: TeamService;
17107
18011
  readonly upload: UploadService;
@@ -17169,4 +18073,4 @@ declare class Bundlesocial extends Client {
17169
18073
  constructor(apiKey: string, options?: OpenAPIConfig);
17170
18074
  }
17171
18075
 
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 };
18076
+ 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, 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 };