bundlesocial 2.27.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
@@ -326,9 +326,16 @@ type TeamGetTeamResponse = {
326
326
  avatar?: string | null;
327
327
  url?: string | null;
328
328
  } | null;
329
+ metadata?: {
330
+ allowImages?: boolean | null;
331
+ allowVideos?: boolean | null;
332
+ allowGalleries?: boolean | null;
333
+ linkFlairEnabled?: boolean | null;
334
+ } | null;
329
335
  }> | null;
330
336
  mastodonServerId?: string | null;
331
337
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
338
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
332
339
  createdAt: string | null;
333
340
  updatedAt: string | null;
334
341
  deletedAt?: string | null;
@@ -495,9 +502,16 @@ type TeamGetListResponse = {
495
502
  avatar?: string | null;
496
503
  url?: string | null;
497
504
  } | null;
505
+ metadata?: {
506
+ allowImages?: boolean | null;
507
+ allowVideos?: boolean | null;
508
+ allowGalleries?: boolean | null;
509
+ linkFlairEnabled?: boolean | null;
510
+ } | null;
498
511
  }> | null;
499
512
  mastodonServerId?: string | null;
500
513
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
514
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
501
515
  createdAt: string | null;
502
516
  updatedAt: string | null;
503
517
  deletedAt?: string | null;
@@ -617,9 +631,16 @@ type SocialAccountDisconnectResponse = {
617
631
  avatar?: string | null;
618
632
  url?: string | null;
619
633
  } | null;
634
+ metadata?: {
635
+ allowImages?: boolean | null;
636
+ allowVideos?: boolean | null;
637
+ allowGalleries?: boolean | null;
638
+ linkFlairEnabled?: boolean | null;
639
+ } | null;
620
640
  }> | null;
621
641
  mastodonServerId?: string | null;
622
642
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
643
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
623
644
  createdAt: string | null;
624
645
  updatedAt: string | null;
625
646
  deletedAt?: string | null;
@@ -656,9 +677,16 @@ type SocialAccountSetChannelResponse = {
656
677
  avatar?: string | null;
657
678
  url?: string | null;
658
679
  } | null;
680
+ metadata?: {
681
+ allowImages?: boolean | null;
682
+ allowVideos?: boolean | null;
683
+ allowGalleries?: boolean | null;
684
+ linkFlairEnabled?: boolean | null;
685
+ } | null;
659
686
  }> | null;
660
687
  mastodonServerId?: string | null;
661
688
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
689
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
662
690
  createdAt: string | null;
663
691
  updatedAt: string | null;
664
692
  deletedAt?: string | null;
@@ -694,9 +722,16 @@ type SocialAccountRefreshChannelsResponse = {
694
722
  avatar?: string | null;
695
723
  url?: string | null;
696
724
  } | null;
725
+ metadata?: {
726
+ allowImages?: boolean | null;
727
+ allowVideos?: boolean | null;
728
+ allowGalleries?: boolean | null;
729
+ linkFlairEnabled?: boolean | null;
730
+ } | null;
697
731
  }> | null;
698
732
  mastodonServerId?: string | null;
699
733
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
734
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
700
735
  createdAt: string | null;
701
736
  updatedAt: string | null;
702
737
  deletedAt?: string | null;
@@ -762,9 +797,16 @@ type SocialAccountCopyResponse = Array<{
762
797
  avatar?: string | null;
763
798
  url?: string | null;
764
799
  } | null;
800
+ metadata?: {
801
+ allowImages?: boolean | null;
802
+ allowVideos?: boolean | null;
803
+ allowGalleries?: boolean | null;
804
+ linkFlairEnabled?: boolean | null;
805
+ } | null;
765
806
  }> | null;
766
807
  mastodonServerId?: string | null;
767
808
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
809
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
768
810
  createdAt: string | null;
769
811
  updatedAt: string | null;
770
812
  deletedAt?: string | null;
@@ -1077,6 +1119,10 @@ type PostGetResponse = {
1077
1119
  * Set to true if this video is AI generated.
1078
1120
  */
1079
1121
  isAiGenerated?: boolean | null;
1122
+ /**
1123
+ * If set to true, TikTok will automatically add music to the photos.
1124
+ */
1125
+ autoAddMusic?: boolean | null;
1080
1126
  } | null;
1081
1127
  LINKEDIN?: {
1082
1128
  text: string;
@@ -1134,6 +1180,10 @@ type PostGetResponse = {
1134
1180
  * Set to true if the post is NSFW.
1135
1181
  */
1136
1182
  nsfw?: boolean | null;
1183
+ /**
1184
+ * Flair ID for the post. Required if the subreddit requires flair selection.
1185
+ */
1186
+ flairId?: string | null;
1137
1187
  } | null;
1138
1188
  DISCORD?: {
1139
1189
  channelId: string;
@@ -1503,9 +1553,16 @@ type PostGetResponse = {
1503
1553
  avatar?: string | null;
1504
1554
  url?: string | null;
1505
1555
  } | null;
1556
+ metadata?: {
1557
+ allowImages?: boolean | null;
1558
+ allowVideos?: boolean | null;
1559
+ allowGalleries?: boolean | null;
1560
+ linkFlairEnabled?: boolean | null;
1561
+ } | null;
1506
1562
  }> | null;
1507
1563
  mastodonServerId?: string | null;
1508
1564
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
1565
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
1509
1566
  createdAt: string | null;
1510
1567
  updatedAt: string | null;
1511
1568
  deletedAt?: string | null;
@@ -1634,6 +1691,10 @@ type PostUpdateData = {
1634
1691
  * Set to true if this video is AI generated.
1635
1692
  */
1636
1693
  isAiGenerated?: boolean | null;
1694
+ /**
1695
+ * If set to true, TikTok will automatically add music to the photos.
1696
+ */
1697
+ autoAddMusic?: boolean | null;
1637
1698
  } | null;
1638
1699
  LINKEDIN?: {
1639
1700
  text: string;
@@ -1691,6 +1752,10 @@ type PostUpdateData = {
1691
1752
  * Set to true if the post is NSFW.
1692
1753
  */
1693
1754
  nsfw?: boolean | null;
1755
+ /**
1756
+ * Flair ID for the post. Required if the subreddit requires flair selection.
1757
+ */
1758
+ flairId?: string | null;
1694
1759
  } | null;
1695
1760
  DISCORD?: {
1696
1761
  channelId: string;
@@ -1907,6 +1972,10 @@ type PostUpdateResponse = {
1907
1972
  * Set to true if this video is AI generated.
1908
1973
  */
1909
1974
  isAiGenerated?: boolean | null;
1975
+ /**
1976
+ * If set to true, TikTok will automatically add music to the photos.
1977
+ */
1978
+ autoAddMusic?: boolean | null;
1910
1979
  } | null;
1911
1980
  LINKEDIN?: {
1912
1981
  text: string;
@@ -1964,6 +2033,10 @@ type PostUpdateResponse = {
1964
2033
  * Set to true if the post is NSFW.
1965
2034
  */
1966
2035
  nsfw?: boolean | null;
2036
+ /**
2037
+ * Flair ID for the post. Required if the subreddit requires flair selection.
2038
+ */
2039
+ flairId?: string | null;
1967
2040
  } | null;
1968
2041
  DISCORD?: {
1969
2042
  channelId: string;
@@ -2402,6 +2475,10 @@ type PostDeleteResponse = {
2402
2475
  * Set to true if this video is AI generated.
2403
2476
  */
2404
2477
  isAiGenerated?: boolean | null;
2478
+ /**
2479
+ * If set to true, TikTok will automatically add music to the photos.
2480
+ */
2481
+ autoAddMusic?: boolean | null;
2405
2482
  } | null;
2406
2483
  LINKEDIN?: {
2407
2484
  text: string;
@@ -2459,6 +2536,10 @@ type PostDeleteResponse = {
2459
2536
  * Set to true if the post is NSFW.
2460
2537
  */
2461
2538
  nsfw?: boolean | null;
2539
+ /**
2540
+ * Flair ID for the post. Required if the subreddit requires flair selection.
2541
+ */
2542
+ flairId?: string | null;
2462
2543
  } | null;
2463
2544
  DISCORD?: {
2464
2545
  channelId: string;
@@ -2905,6 +2986,10 @@ type PostGetListResponse = {
2905
2986
  * Set to true if this video is AI generated.
2906
2987
  */
2907
2988
  isAiGenerated?: boolean | null;
2989
+ /**
2990
+ * If set to true, TikTok will automatically add music to the photos.
2991
+ */
2992
+ autoAddMusic?: boolean | null;
2908
2993
  } | null;
2909
2994
  LINKEDIN?: {
2910
2995
  text: string;
@@ -2962,6 +3047,10 @@ type PostGetListResponse = {
2962
3047
  * Set to true if the post is NSFW.
2963
3048
  */
2964
3049
  nsfw?: boolean | null;
3050
+ /**
3051
+ * Flair ID for the post. Required if the subreddit requires flair selection.
3052
+ */
3053
+ flairId?: string | null;
2965
3054
  } | null;
2966
3055
  DISCORD?: {
2967
3056
  channelId: string;
@@ -3331,9 +3420,16 @@ type PostGetListResponse = {
3331
3420
  avatar?: string | null;
3332
3421
  url?: string | null;
3333
3422
  } | null;
3423
+ metadata?: {
3424
+ allowImages?: boolean | null;
3425
+ allowVideos?: boolean | null;
3426
+ allowGalleries?: boolean | null;
3427
+ linkFlairEnabled?: boolean | null;
3428
+ } | null;
3334
3429
  }> | null;
3335
3430
  mastodonServerId?: string | null;
3336
3431
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
3432
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
3337
3433
  createdAt: string | null;
3338
3434
  updatedAt: string | null;
3339
3435
  deletedAt?: string | null;
@@ -3464,6 +3560,10 @@ type PostCreateData = {
3464
3560
  * Set to true if this video is AI generated.
3465
3561
  */
3466
3562
  isAiGenerated?: boolean | null;
3563
+ /**
3564
+ * If set to true, TikTok will automatically add music to the photos.
3565
+ */
3566
+ autoAddMusic?: boolean | null;
3467
3567
  } | null;
3468
3568
  LINKEDIN?: {
3469
3569
  text: string;
@@ -3521,6 +3621,10 @@ type PostCreateData = {
3521
3621
  * Set to true if the post is NSFW.
3522
3622
  */
3523
3623
  nsfw?: boolean | null;
3624
+ /**
3625
+ * Flair ID for the post. Required if the subreddit requires flair selection.
3626
+ */
3627
+ flairId?: string | null;
3524
3628
  } | null;
3525
3629
  DISCORD?: {
3526
3630
  channelId: string;
@@ -3737,6 +3841,10 @@ type PostCreateResponse = {
3737
3841
  * Set to true if this video is AI generated.
3738
3842
  */
3739
3843
  isAiGenerated?: boolean | null;
3844
+ /**
3845
+ * If set to true, TikTok will automatically add music to the photos.
3846
+ */
3847
+ autoAddMusic?: boolean | null;
3740
3848
  } | null;
3741
3849
  LINKEDIN?: {
3742
3850
  text: string;
@@ -3794,6 +3902,10 @@ type PostCreateResponse = {
3794
3902
  * Set to true if the post is NSFW.
3795
3903
  */
3796
3904
  nsfw?: boolean | null;
3905
+ /**
3906
+ * Flair ID for the post. Required if the subreddit requires flair selection.
3907
+ */
3908
+ flairId?: string | null;
3797
3909
  } | null;
3798
3910
  DISCORD?: {
3799
3911
  channelId: string;
@@ -4232,6 +4344,10 @@ type PostRetryResponse = {
4232
4344
  * Set to true if this video is AI generated.
4233
4345
  */
4234
4346
  isAiGenerated?: boolean | null;
4347
+ /**
4348
+ * If set to true, TikTok will automatically add music to the photos.
4349
+ */
4350
+ autoAddMusic?: boolean | null;
4235
4351
  } | null;
4236
4352
  LINKEDIN?: {
4237
4353
  text: string;
@@ -4289,6 +4405,10 @@ type PostRetryResponse = {
4289
4405
  * Set to true if the post is NSFW.
4290
4406
  */
4291
4407
  nsfw?: boolean | null;
4408
+ /**
4409
+ * Flair ID for the post. Required if the subreddit requires flair selection.
4410
+ */
4411
+ flairId?: string | null;
4292
4412
  } | null;
4293
4413
  DISCORD?: {
4294
4414
  channelId: string;
@@ -4631,9 +4751,16 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
4631
4751
  avatar?: string | null;
4632
4752
  url?: string | null;
4633
4753
  } | null;
4754
+ metadata?: {
4755
+ allowImages?: boolean | null;
4756
+ allowVideos?: boolean | null;
4757
+ allowGalleries?: boolean | null;
4758
+ linkFlairEnabled?: boolean | null;
4759
+ } | null;
4634
4760
  }> | null;
4635
4761
  mastodonServerId?: string | null;
4636
4762
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
4763
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
4637
4764
  createdAt: string | null;
4638
4765
  updatedAt: string | null;
4639
4766
  deletedAt?: string | null;
@@ -4781,6 +4908,10 @@ type AnalyticsGetPostAnalyticsResponse = {
4781
4908
  * Set to true if this video is AI generated.
4782
4909
  */
4783
4910
  isAiGenerated?: boolean | null;
4911
+ /**
4912
+ * If set to true, TikTok will automatically add music to the photos.
4913
+ */
4914
+ autoAddMusic?: boolean | null;
4784
4915
  } | null;
4785
4916
  LINKEDIN?: {
4786
4917
  text: string;
@@ -4838,6 +4969,10 @@ type AnalyticsGetPostAnalyticsResponse = {
4838
4969
  * Set to true if the post is NSFW.
4839
4970
  */
4840
4971
  nsfw?: boolean | null;
4972
+ /**
4973
+ * Flair ID for the post. Required if the subreddit requires flair selection.
4974
+ */
4975
+ flairId?: string | null;
4841
4976
  } | null;
4842
4977
  DISCORD?: {
4843
4978
  channelId: string;
@@ -5199,9 +5334,16 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
5199
5334
  avatar?: string | null;
5200
5335
  url?: string | null;
5201
5336
  } | null;
5337
+ metadata?: {
5338
+ allowImages?: boolean | null;
5339
+ allowVideos?: boolean | null;
5340
+ allowGalleries?: boolean | null;
5341
+ linkFlairEnabled?: boolean | null;
5342
+ } | null;
5202
5343
  }> | null;
5203
5344
  mastodonServerId?: string | null;
5204
5345
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
5346
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
5205
5347
  createdAt: string | null;
5206
5348
  updatedAt: string | null;
5207
5349
  deletedAt?: string | null;
@@ -5342,6 +5484,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
5342
5484
  * Set to true if this video is AI generated.
5343
5485
  */
5344
5486
  isAiGenerated?: boolean | null;
5487
+ /**
5488
+ * If set to true, TikTok will automatically add music to the photos.
5489
+ */
5490
+ autoAddMusic?: boolean | null;
5345
5491
  } | null;
5346
5492
  LINKEDIN?: {
5347
5493
  text: string;
@@ -5399,6 +5545,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
5399
5545
  * Set to true if the post is NSFW.
5400
5546
  */
5401
5547
  nsfw?: boolean | null;
5548
+ /**
5549
+ * Flair ID for the post. Required if the subreddit requires flair selection.
5550
+ */
5551
+ flairId?: string | null;
5402
5552
  } | null;
5403
5553
  DISCORD?: {
5404
5554
  channelId: string;
@@ -7317,6 +7467,79 @@ type MiscYoutubeDeleteVideoFromPlaylistData = {
7317
7467
  teamId: string;
7318
7468
  };
7319
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
+ };
7320
7543
  type MiscLinkedinGetTagsData = {
7321
7544
  q: string;
7322
7545
  scope?: 'people' | 'organizations' | 'all';
@@ -7353,6 +7576,26 @@ type MiscLinkedinBuildCommentaryData = {
7353
7576
  type MiscLinkedinBuildCommentaryResponse = {
7354
7577
  commentary: string;
7355
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
+ };
7356
7599
  type MiscGoogleBusinessAddMediaData = {
7357
7600
  /**
7358
7601
  * Body
@@ -7373,6 +7616,148 @@ type MiscGoogleBusinessAddMediaResponse = {
7373
7616
  };
7374
7617
  description?: string;
7375
7618
  };
7619
+ type MiscRedditGetPostRequirementsData = {
7620
+ subreddit: string;
7621
+ teamId: string;
7622
+ };
7623
+ type MiscRedditGetPostRequirementsResponse = {
7624
+ isFlairRequired: boolean;
7625
+ isFlairEnabled: boolean;
7626
+ };
7627
+ type MiscRedditGetSubredditFlairsData = {
7628
+ subreddit: string;
7629
+ teamId: string;
7630
+ };
7631
+ type MiscRedditGetSubredditFlairsResponse = Array<{
7632
+ id?: string;
7633
+ text?: string;
7634
+ cssClass?: string;
7635
+ textColor?: string;
7636
+ backgroundColor?: string;
7637
+ modOnly?: boolean;
7638
+ allowableContent?: string;
7639
+ maxEmojis?: number;
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
+ };
7376
7761
  type $OpenApiTs = {
7377
7762
  '/api/v1/': {
7378
7763
  get: {
@@ -7731,9 +8116,16 @@ type $OpenApiTs = {
7731
8116
  avatar?: string | null;
7732
8117
  url?: string | null;
7733
8118
  } | null;
8119
+ metadata?: {
8120
+ allowImages?: boolean | null;
8121
+ allowVideos?: boolean | null;
8122
+ allowGalleries?: boolean | null;
8123
+ linkFlairEnabled?: boolean | null;
8124
+ } | null;
7734
8125
  }> | null;
7735
8126
  mastodonServerId?: string | null;
7736
8127
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
8128
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
7737
8129
  createdAt: string | null;
7738
8130
  updatedAt: string | null;
7739
8131
  deletedAt?: string | null;
@@ -8029,9 +8421,16 @@ type $OpenApiTs = {
8029
8421
  avatar?: string | null;
8030
8422
  url?: string | null;
8031
8423
  } | null;
8424
+ metadata?: {
8425
+ allowImages?: boolean | null;
8426
+ allowVideos?: boolean | null;
8427
+ allowGalleries?: boolean | null;
8428
+ linkFlairEnabled?: boolean | null;
8429
+ } | null;
8032
8430
  }> | null;
8033
8431
  mastodonServerId?: string | null;
8034
8432
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
8433
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
8035
8434
  createdAt: string | null;
8036
8435
  updatedAt: string | null;
8037
8436
  deletedAt?: string | null;
@@ -8262,9 +8661,16 @@ type $OpenApiTs = {
8262
8661
  avatar?: string | null;
8263
8662
  url?: string | null;
8264
8663
  } | null;
8664
+ metadata?: {
8665
+ allowImages?: boolean | null;
8666
+ allowVideos?: boolean | null;
8667
+ allowGalleries?: boolean | null;
8668
+ linkFlairEnabled?: boolean | null;
8669
+ } | null;
8265
8670
  }> | null;
8266
8671
  mastodonServerId?: string | null;
8267
8672
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
8673
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
8268
8674
  createdAt: string | null;
8269
8675
  updatedAt: string | null;
8270
8676
  deletedAt?: string | null;
@@ -8341,9 +8747,16 @@ type $OpenApiTs = {
8341
8747
  avatar?: string | null;
8342
8748
  url?: string | null;
8343
8749
  } | null;
8750
+ metadata?: {
8751
+ allowImages?: boolean | null;
8752
+ allowVideos?: boolean | null;
8753
+ allowGalleries?: boolean | null;
8754
+ linkFlairEnabled?: boolean | null;
8755
+ } | null;
8344
8756
  }> | null;
8345
8757
  mastodonServerId?: string | null;
8346
8758
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
8759
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
8347
8760
  createdAt: string | null;
8348
8761
  updatedAt: string | null;
8349
8762
  deletedAt?: string | null;
@@ -8420,9 +8833,16 @@ type $OpenApiTs = {
8420
8833
  avatar?: string | null;
8421
8834
  url?: string | null;
8422
8835
  } | null;
8836
+ metadata?: {
8837
+ allowImages?: boolean | null;
8838
+ allowVideos?: boolean | null;
8839
+ allowGalleries?: boolean | null;
8840
+ linkFlairEnabled?: boolean | null;
8841
+ } | null;
8423
8842
  }> | null;
8424
8843
  mastodonServerId?: string | null;
8425
8844
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
8845
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
8426
8846
  createdAt: string | null;
8427
8847
  updatedAt: string | null;
8428
8848
  deletedAt?: string | null;
@@ -8552,9 +8972,16 @@ type $OpenApiTs = {
8552
8972
  avatar?: string | null;
8553
8973
  url?: string | null;
8554
8974
  } | null;
8975
+ metadata?: {
8976
+ allowImages?: boolean | null;
8977
+ allowVideos?: boolean | null;
8978
+ allowGalleries?: boolean | null;
8979
+ linkFlairEnabled?: boolean | null;
8980
+ } | null;
8555
8981
  }> | null;
8556
8982
  mastodonServerId?: string | null;
8557
8983
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
8984
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
8558
8985
  createdAt: string | null;
8559
8986
  updatedAt: string | null;
8560
8987
  deletedAt?: string | null;
@@ -9211,6 +9638,10 @@ type $OpenApiTs = {
9211
9638
  * Set to true if this video is AI generated.
9212
9639
  */
9213
9640
  isAiGenerated?: boolean | null;
9641
+ /**
9642
+ * If set to true, TikTok will automatically add music to the photos.
9643
+ */
9644
+ autoAddMusic?: boolean | null;
9214
9645
  } | null;
9215
9646
  LINKEDIN?: {
9216
9647
  text: string;
@@ -9268,6 +9699,10 @@ type $OpenApiTs = {
9268
9699
  * Set to true if the post is NSFW.
9269
9700
  */
9270
9701
  nsfw?: boolean | null;
9702
+ /**
9703
+ * Flair ID for the post. Required if the subreddit requires flair selection.
9704
+ */
9705
+ flairId?: string | null;
9271
9706
  } | null;
9272
9707
  DISCORD?: {
9273
9708
  channelId: string;
@@ -9637,9 +10072,16 @@ type $OpenApiTs = {
9637
10072
  avatar?: string | null;
9638
10073
  url?: string | null;
9639
10074
  } | null;
10075
+ metadata?: {
10076
+ allowImages?: boolean | null;
10077
+ allowVideos?: boolean | null;
10078
+ allowGalleries?: boolean | null;
10079
+ linkFlairEnabled?: boolean | null;
10080
+ } | null;
9640
10081
  }> | null;
9641
10082
  mastodonServerId?: string | null;
9642
10083
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
10084
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
9643
10085
  createdAt: string | null;
9644
10086
  updatedAt: string | null;
9645
10087
  deletedAt?: string | null;
@@ -9814,6 +10256,10 @@ type $OpenApiTs = {
9814
10256
  * Set to true if this video is AI generated.
9815
10257
  */
9816
10258
  isAiGenerated?: boolean | null;
10259
+ /**
10260
+ * If set to true, TikTok will automatically add music to the photos.
10261
+ */
10262
+ autoAddMusic?: boolean | null;
9817
10263
  } | null;
9818
10264
  LINKEDIN?: {
9819
10265
  text: string;
@@ -9871,6 +10317,10 @@ type $OpenApiTs = {
9871
10317
  * Set to true if the post is NSFW.
9872
10318
  */
9873
10319
  nsfw?: boolean | null;
10320
+ /**
10321
+ * Flair ID for the post. Required if the subreddit requires flair selection.
10322
+ */
10323
+ flairId?: string | null;
9874
10324
  } | null;
9875
10325
  DISCORD?: {
9876
10326
  channelId: string;
@@ -10354,6 +10804,10 @@ type $OpenApiTs = {
10354
10804
  * Set to true if this video is AI generated.
10355
10805
  */
10356
10806
  isAiGenerated?: boolean | null;
10807
+ /**
10808
+ * If set to true, TikTok will automatically add music to the photos.
10809
+ */
10810
+ autoAddMusic?: boolean | null;
10357
10811
  } | null;
10358
10812
  LINKEDIN?: {
10359
10813
  text: string;
@@ -10411,6 +10865,10 @@ type $OpenApiTs = {
10411
10865
  * Set to true if the post is NSFW.
10412
10866
  */
10413
10867
  nsfw?: boolean | null;
10868
+ /**
10869
+ * Flair ID for the post. Required if the subreddit requires flair selection.
10870
+ */
10871
+ flairId?: string | null;
10414
10872
  } | null;
10415
10873
  DISCORD?: {
10416
10874
  channelId: string;
@@ -10897,6 +11355,10 @@ type $OpenApiTs = {
10897
11355
  * Set to true if this video is AI generated.
10898
11356
  */
10899
11357
  isAiGenerated?: boolean | null;
11358
+ /**
11359
+ * If set to true, TikTok will automatically add music to the photos.
11360
+ */
11361
+ autoAddMusic?: boolean | null;
10900
11362
  } | null;
10901
11363
  LINKEDIN?: {
10902
11364
  text: string;
@@ -10954,6 +11416,10 @@ type $OpenApiTs = {
10954
11416
  * Set to true if the post is NSFW.
10955
11417
  */
10956
11418
  nsfw?: boolean | null;
11419
+ /**
11420
+ * Flair ID for the post. Required if the subreddit requires flair selection.
11421
+ */
11422
+ flairId?: string | null;
10957
11423
  } | null;
10958
11424
  DISCORD?: {
10959
11425
  channelId: string;
@@ -11323,9 +11789,16 @@ type $OpenApiTs = {
11323
11789
  avatar?: string | null;
11324
11790
  url?: string | null;
11325
11791
  } | null;
11792
+ metadata?: {
11793
+ allowImages?: boolean | null;
11794
+ allowVideos?: boolean | null;
11795
+ allowGalleries?: boolean | null;
11796
+ linkFlairEnabled?: boolean | null;
11797
+ } | null;
11326
11798
  }> | null;
11327
11799
  mastodonServerId?: string | null;
11328
11800
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
11801
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
11329
11802
  createdAt: string | null;
11330
11803
  updatedAt: string | null;
11331
11804
  deletedAt?: string | null;
@@ -11502,6 +11975,10 @@ type $OpenApiTs = {
11502
11975
  * Set to true if this video is AI generated.
11503
11976
  */
11504
11977
  isAiGenerated?: boolean | null;
11978
+ /**
11979
+ * If set to true, TikTok will automatically add music to the photos.
11980
+ */
11981
+ autoAddMusic?: boolean | null;
11505
11982
  } | null;
11506
11983
  LINKEDIN?: {
11507
11984
  text: string;
@@ -11559,6 +12036,10 @@ type $OpenApiTs = {
11559
12036
  * Set to true if the post is NSFW.
11560
12037
  */
11561
12038
  nsfw?: boolean | null;
12039
+ /**
12040
+ * Flair ID for the post. Required if the subreddit requires flair selection.
12041
+ */
12042
+ flairId?: string | null;
11562
12043
  } | null;
11563
12044
  DISCORD?: {
11564
12045
  channelId: string;
@@ -12044,6 +12525,10 @@ type $OpenApiTs = {
12044
12525
  * Set to true if this video is AI generated.
12045
12526
  */
12046
12527
  isAiGenerated?: boolean | null;
12528
+ /**
12529
+ * If set to true, TikTok will automatically add music to the photos.
12530
+ */
12531
+ autoAddMusic?: boolean | null;
12047
12532
  } | null;
12048
12533
  LINKEDIN?: {
12049
12534
  text: string;
@@ -12101,6 +12586,10 @@ type $OpenApiTs = {
12101
12586
  * Set to true if the post is NSFW.
12102
12587
  */
12103
12588
  nsfw?: boolean | null;
12589
+ /**
12590
+ * Flair ID for the post. Required if the subreddit requires flair selection.
12591
+ */
12592
+ flairId?: string | null;
12104
12593
  } | null;
12105
12594
  DISCORD?: {
12106
12595
  channelId: string;
@@ -12489,9 +12978,16 @@ type $OpenApiTs = {
12489
12978
  avatar?: string | null;
12490
12979
  url?: string | null;
12491
12980
  } | null;
12981
+ metadata?: {
12982
+ allowImages?: boolean | null;
12983
+ allowVideos?: boolean | null;
12984
+ allowGalleries?: boolean | null;
12985
+ linkFlairEnabled?: boolean | null;
12986
+ } | null;
12492
12987
  }> | null;
12493
12988
  mastodonServerId?: string | null;
12494
12989
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
12990
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
12495
12991
  createdAt: string | null;
12496
12992
  updatedAt: string | null;
12497
12993
  deletedAt?: string | null;
@@ -12685,6 +13181,10 @@ type $OpenApiTs = {
12685
13181
  * Set to true if this video is AI generated.
12686
13182
  */
12687
13183
  isAiGenerated?: boolean | null;
13184
+ /**
13185
+ * If set to true, TikTok will automatically add music to the photos.
13186
+ */
13187
+ autoAddMusic?: boolean | null;
12688
13188
  } | null;
12689
13189
  LINKEDIN?: {
12690
13190
  text: string;
@@ -12742,6 +13242,10 @@ type $OpenApiTs = {
12742
13242
  * Set to true if the post is NSFW.
12743
13243
  */
12744
13244
  nsfw?: boolean | null;
13245
+ /**
13246
+ * Flair ID for the post. Required if the subreddit requires flair selection.
13247
+ */
13248
+ flairId?: string | null;
12745
13249
  } | null;
12746
13250
  DISCORD?: {
12747
13251
  channelId: string;
@@ -13149,9 +13653,16 @@ type $OpenApiTs = {
13149
13653
  avatar?: string | null;
13150
13654
  url?: string | null;
13151
13655
  } | null;
13656
+ metadata?: {
13657
+ allowImages?: boolean | null;
13658
+ allowVideos?: boolean | null;
13659
+ allowGalleries?: boolean | null;
13660
+ linkFlairEnabled?: boolean | null;
13661
+ } | null;
13152
13662
  }> | null;
13153
13663
  mastodonServerId?: string | null;
13154
13664
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
13665
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
13155
13666
  createdAt: string | null;
13156
13667
  updatedAt: string | null;
13157
13668
  deletedAt?: string | null;
@@ -13338,6 +13849,10 @@ type $OpenApiTs = {
13338
13849
  * Set to true if this video is AI generated.
13339
13850
  */
13340
13851
  isAiGenerated?: boolean | null;
13852
+ /**
13853
+ * If set to true, TikTok will automatically add music to the photos.
13854
+ */
13855
+ autoAddMusic?: boolean | null;
13341
13856
  } | null;
13342
13857
  LINKEDIN?: {
13343
13858
  text: string;
@@ -13395,6 +13910,10 @@ type $OpenApiTs = {
13395
13910
  * Set to true if the post is NSFW.
13396
13911
  */
13397
13912
  nsfw?: boolean | null;
13913
+ /**
13914
+ * Flair ID for the post. Required if the subreddit requires flair selection.
13915
+ */
13916
+ flairId?: string | null;
13398
13917
  } | null;
13399
13918
  DISCORD?: {
13400
13919
  channelId: string;
@@ -15885,20 +16404,201 @@ type $OpenApiTs = {
15885
16404
  };
15886
16405
  };
15887
16406
  };
15888
- '/api/v1/misc/linkedin/mentions/tags': {
15889
- get: {
15890
- req: MiscLinkedinGetTagsData;
16407
+ '/api/v1/misc/youtube/video': {
16408
+ patch: {
16409
+ req: MiscYoutubeEditVideoData;
15891
16410
  res: {
15892
16411
  /**
15893
16412
  * 200
15894
16413
  */
15895
16414
  200: {
15896
- people?: Array<{
15897
- kind: 'person';
15898
- urn: string;
15899
- display: string;
15900
- headline?: string;
15901
- photoUrl?: string;
16415
+ success: boolean;
16416
+ permalink: string;
16417
+ };
16418
+ /**
16419
+ * 400
16420
+ */
16421
+ 400: {
16422
+ message: string;
16423
+ issues?: Array<{
16424
+ message: string;
16425
+ path?: Array<(string | number)> | null;
16426
+ }> | null;
16427
+ };
16428
+ /**
16429
+ * 401
16430
+ */
16431
+ 401: {
16432
+ message: string;
16433
+ };
16434
+ /**
16435
+ * 403
16436
+ */
16437
+ 403: {
16438
+ message: string;
16439
+ };
16440
+ /**
16441
+ * 404
16442
+ */
16443
+ 404: {
16444
+ message: string;
16445
+ };
16446
+ /**
16447
+ * 429
16448
+ */
16449
+ 429: {
16450
+ message: string;
16451
+ };
16452
+ /**
16453
+ * 500
16454
+ */
16455
+ 500: {
16456
+ message: string;
16457
+ };
16458
+ };
16459
+ };
16460
+ };
16461
+ '/api/v1/misc/youtube/video-categories': {
16462
+ get: {
16463
+ req: MiscYoutubeGetVideoCategoriesData;
16464
+ res: {
16465
+ /**
16466
+ * 200
16467
+ */
16468
+ 200: {
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
+ }>;
16481
+ };
16482
+ /**
16483
+ * 400
16484
+ */
16485
+ 400: {
16486
+ message: string;
16487
+ issues?: Array<{
16488
+ message: string;
16489
+ path?: Array<(string | number)> | null;
16490
+ }> | null;
16491
+ };
16492
+ /**
16493
+ * 401
16494
+ */
16495
+ 401: {
16496
+ message: string;
16497
+ };
16498
+ /**
16499
+ * 403
16500
+ */
16501
+ 403: {
16502
+ message: string;
16503
+ };
16504
+ /**
16505
+ * 404
16506
+ */
16507
+ 404: {
16508
+ message: string;
16509
+ };
16510
+ /**
16511
+ * 429
16512
+ */
16513
+ 429: {
16514
+ message: string;
16515
+ };
16516
+ /**
16517
+ * 500
16518
+ */
16519
+ 500: {
16520
+ message: string;
16521
+ };
16522
+ };
16523
+ };
16524
+ };
16525
+ '/api/v1/misc/youtube/regions': {
16526
+ get: {
16527
+ req: MiscYoutubeGetRegionsData;
16528
+ res: {
16529
+ /**
16530
+ * 200
16531
+ */
16532
+ 200: {
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
+ }>;
16544
+ };
16545
+ /**
16546
+ * 400
16547
+ */
16548
+ 400: {
16549
+ message: string;
16550
+ issues?: Array<{
16551
+ message: string;
16552
+ path?: Array<(string | number)> | null;
16553
+ }> | null;
16554
+ };
16555
+ /**
16556
+ * 401
16557
+ */
16558
+ 401: {
16559
+ message: string;
16560
+ };
16561
+ /**
16562
+ * 403
16563
+ */
16564
+ 403: {
16565
+ message: string;
16566
+ };
16567
+ /**
16568
+ * 404
16569
+ */
16570
+ 404: {
16571
+ message: string;
16572
+ };
16573
+ /**
16574
+ * 429
16575
+ */
16576
+ 429: {
16577
+ message: string;
16578
+ };
16579
+ /**
16580
+ * 500
16581
+ */
16582
+ 500: {
16583
+ message: string;
16584
+ };
16585
+ };
16586
+ };
16587
+ };
16588
+ '/api/v1/misc/linkedin/mentions/tags': {
16589
+ get: {
16590
+ req: MiscLinkedinGetTagsData;
16591
+ res: {
16592
+ /**
16593
+ * 200
16594
+ */
16595
+ 200: {
16596
+ people?: Array<{
16597
+ kind: 'person';
16598
+ urn: string;
16599
+ display: string;
16600
+ headline?: string;
16601
+ photoUrl?: string;
15902
16602
  }>;
15903
16603
  organizations?: Array<{
15904
16604
  kind: 'organization';
@@ -15951,15 +16651,404 @@ type $OpenApiTs = {
15951
16651
  };
15952
16652
  };
15953
16653
  };
15954
- '/api/v1/misc/linkedin/mentions/builder': {
15955
- post: {
15956
- req: MiscLinkedinBuildCommentaryData;
16654
+ '/api/v1/misc/linkedin/mentions/builder': {
16655
+ post: {
16656
+ req: MiscLinkedinBuildCommentaryData;
16657
+ res: {
16658
+ /**
16659
+ * 200
16660
+ */
16661
+ 200: {
16662
+ commentary: string;
16663
+ };
16664
+ /**
16665
+ * 400
16666
+ */
16667
+ 400: {
16668
+ message: string;
16669
+ issues?: Array<{
16670
+ message: string;
16671
+ path?: Array<(string | number)> | null;
16672
+ }> | null;
16673
+ };
16674
+ /**
16675
+ * 401
16676
+ */
16677
+ 401: {
16678
+ message: string;
16679
+ };
16680
+ /**
16681
+ * 403
16682
+ */
16683
+ 403: {
16684
+ message: string;
16685
+ };
16686
+ /**
16687
+ * 404
16688
+ */
16689
+ 404: {
16690
+ message: string;
16691
+ };
16692
+ /**
16693
+ * 429
16694
+ */
16695
+ 429: {
16696
+ message: string;
16697
+ };
16698
+ /**
16699
+ * 500
16700
+ */
16701
+ 500: {
16702
+ message: string;
16703
+ };
16704
+ };
16705
+ };
16706
+ };
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;
15957
17045
  res: {
15958
17046
  /**
15959
17047
  * 200
15960
17048
  */
15961
17049
  200: {
15962
- commentary: string;
17050
+ success: boolean;
17051
+ permalink: string;
15963
17052
  };
15964
17053
  /**
15965
17054
  * 400
@@ -16004,21 +17093,70 @@ type $OpenApiTs = {
16004
17093
  };
16005
17094
  };
16006
17095
  };
16007
- '/api/v1/misc/google-business/media': {
16008
- post: {
16009
- req: MiscGoogleBusinessAddMediaData;
17096
+ '/api/v1/misc/mastodon/status': {
17097
+ patch: {
17098
+ req: MiscMastodonEditStatusData;
16010
17099
  res: {
16011
17100
  /**
16012
17101
  * 200
16013
17102
  */
16014
17103
  200: {
16015
- name?: string;
16016
- googleUrl?: string;
16017
- locationAssociation?: {
16018
- category?: 'CATEGORY_UNSPECIFIED' | 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'PRODUCT' | 'AT_WORK' | 'FOOD_AND_DRINK' | 'MENU' | 'COMMON_AREA' | 'ROOMS' | 'TEAMS' | 'ADDITIONAL';
16019
- priceListItemId?: string;
16020
- };
16021
- description?: string;
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;
16022
17160
  };
16023
17161
  /**
16024
17162
  * 400
@@ -16494,6 +17632,34 @@ declare class MiscService {
16494
17632
  * @throws ApiError
16495
17633
  */
16496
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>;
16497
17663
  /**
16498
17664
  * Get Linkedin mentionable tags (people & organizations)
16499
17665
  * @param data The data for the request.
@@ -16506,13 +17672,22 @@ declare class MiscService {
16506
17672
  miscLinkedinGetTags(data: MiscLinkedinGetTagsData): CancelablePromise<MiscLinkedinGetTagsResponse>;
16507
17673
  /**
16508
17674
  * Build Linkedin text, insert mentions at tag placeholders.
16509
- * 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.
16510
17676
  * @param data The data for the request.
16511
17677
  * @param data.requestBody Body
16512
17678
  * @returns unknown 200
16513
17679
  * @throws ApiError
16514
17680
  */
16515
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>;
16516
17691
  /**
16517
17692
  * Add a media item (photo/video) using uploadId and category
16518
17693
  * @param data The data for the request.
@@ -16521,6 +17696,70 @@ declare class MiscService {
16521
17696
  * @throws ApiError
16522
17697
  */
16523
17698
  miscGoogleBusinessAddMedia(data?: MiscGoogleBusinessAddMediaData): CancelablePromise<MiscGoogleBusinessAddMediaResponse>;
17699
+ /**
17700
+ * Get subreddit post requirements (flair required/enabled)
17701
+ * @param data The data for the request.
17702
+ * @param data.teamId
17703
+ * @param data.subreddit
17704
+ * @returns unknown 200
17705
+ * @throws ApiError
17706
+ */
17707
+ miscRedditGetPostRequirements(data: MiscRedditGetPostRequirementsData): CancelablePromise<MiscRedditGetPostRequirementsResponse>;
17708
+ /**
17709
+ * Get subreddit flairs list
17710
+ * @param data The data for the request.
17711
+ * @param data.teamId
17712
+ * @param data.subreddit
17713
+ * @returns unknown 200
17714
+ * @throws ApiError
17715
+ */
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>;
16524
17763
  }
16525
17764
  declare class YoutubeService {
16526
17765
  readonly httpRequest: BaseHttpRequest;
@@ -16594,6 +17833,34 @@ declare class YoutubeService {
16594
17833
  * @throws ApiError
16595
17834
  */
16596
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>;
16597
17864
  }
16598
17865
  declare class LinkedinService {
16599
17866
  readonly httpRequest: BaseHttpRequest;
@@ -16610,13 +17877,22 @@ declare class LinkedinService {
16610
17877
  miscLinkedinGetTags(data: MiscLinkedinGetTagsData): CancelablePromise<MiscLinkedinGetTagsResponse>;
16611
17878
  /**
16612
17879
  * Build Linkedin text, insert mentions at tag placeholders.
16613
- * 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.
16614
17881
  * @param data The data for the request.
16615
17882
  * @param data.requestBody Body
16616
17883
  * @returns unknown 200
16617
17884
  * @throws ApiError
16618
17885
  */
16619
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>;
16620
17896
  }
16621
17897
  declare class GoogleBusinessService {
16622
17898
  readonly httpRequest: BaseHttpRequest;
@@ -16630,17 +17906,106 @@ declare class GoogleBusinessService {
16630
17906
  */
16631
17907
  miscGoogleBusinessAddMedia(data?: MiscGoogleBusinessAddMediaData): CancelablePromise<MiscGoogleBusinessAddMediaResponse>;
16632
17908
  }
17909
+ declare class RedditService {
17910
+ readonly httpRequest: BaseHttpRequest;
17911
+ constructor(httpRequest: BaseHttpRequest);
17912
+ /**
17913
+ * Get subreddit post requirements (flair required/enabled)
17914
+ * @param data The data for the request.
17915
+ * @param data.teamId
17916
+ * @param data.subreddit
17917
+ * @returns unknown 200
17918
+ * @throws ApiError
17919
+ */
17920
+ miscRedditGetPostRequirements(data: MiscRedditGetPostRequirementsData): CancelablePromise<MiscRedditGetPostRequirementsResponse>;
17921
+ /**
17922
+ * Get subreddit flairs list
17923
+ * @param data The data for the request.
17924
+ * @param data.teamId
17925
+ * @param data.subreddit
17926
+ * @returns unknown 200
17927
+ * @throws ApiError
17928
+ */
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>;
17992
+ }
16633
17993
 
16634
17994
  type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
16635
17995
  declare class Client {
16636
17996
  readonly analytics: AnalyticsService;
16637
17997
  readonly app: AppService;
16638
17998
  readonly comment: CommentService;
17999
+ readonly facebook: FacebookService;
16639
18000
  readonly googleBusiness: GoogleBusinessService;
16640
18001
  readonly linkedin: LinkedinService;
18002
+ readonly mastodon: MastodonService;
16641
18003
  readonly misc: MiscService;
16642
18004
  readonly organization: OrganizationService;
18005
+ readonly pinterest: PinterestService;
16643
18006
  readonly post: PostService;
18007
+ readonly reddit: RedditService;
18008
+ readonly slack: SlackService;
16644
18009
  readonly socialAccount: SocialAccountService;
16645
18010
  readonly team: TeamService;
16646
18011
  readonly upload: UploadService;
@@ -16708,4 +18073,4 @@ declare class Bundlesocial extends Client {
16708
18073
  constructor(apiKey: string, options?: OpenAPIConfig);
16709
18074
  }
16710
18075
 
16711
- 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, 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 };