bundlesocial 2.27.0 → 2.28.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;
@@ -7373,6 +7523,28 @@ type MiscGoogleBusinessAddMediaResponse = {
7373
7523
  };
7374
7524
  description?: string;
7375
7525
  };
7526
+ type MiscRedditGetPostRequirementsData = {
7527
+ subreddit: string;
7528
+ teamId: string;
7529
+ };
7530
+ type MiscRedditGetPostRequirementsResponse = {
7531
+ isFlairRequired: boolean;
7532
+ isFlairEnabled: boolean;
7533
+ };
7534
+ type MiscRedditGetSubredditFlairsData = {
7535
+ subreddit: string;
7536
+ teamId: string;
7537
+ };
7538
+ type MiscRedditGetSubredditFlairsResponse = Array<{
7539
+ id?: string;
7540
+ text?: string;
7541
+ cssClass?: string;
7542
+ textColor?: string;
7543
+ backgroundColor?: string;
7544
+ modOnly?: boolean;
7545
+ allowableContent?: string;
7546
+ maxEmojis?: number;
7547
+ }>;
7376
7548
  type $OpenApiTs = {
7377
7549
  '/api/v1/': {
7378
7550
  get: {
@@ -7731,9 +7903,16 @@ type $OpenApiTs = {
7731
7903
  avatar?: string | null;
7732
7904
  url?: string | null;
7733
7905
  } | null;
7906
+ metadata?: {
7907
+ allowImages?: boolean | null;
7908
+ allowVideos?: boolean | null;
7909
+ allowGalleries?: boolean | null;
7910
+ linkFlairEnabled?: boolean | null;
7911
+ } | null;
7734
7912
  }> | null;
7735
7913
  mastodonServerId?: string | null;
7736
7914
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
7915
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
7737
7916
  createdAt: string | null;
7738
7917
  updatedAt: string | null;
7739
7918
  deletedAt?: string | null;
@@ -8029,9 +8208,16 @@ type $OpenApiTs = {
8029
8208
  avatar?: string | null;
8030
8209
  url?: string | null;
8031
8210
  } | null;
8211
+ metadata?: {
8212
+ allowImages?: boolean | null;
8213
+ allowVideos?: boolean | null;
8214
+ allowGalleries?: boolean | null;
8215
+ linkFlairEnabled?: boolean | null;
8216
+ } | null;
8032
8217
  }> | null;
8033
8218
  mastodonServerId?: string | null;
8034
8219
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
8220
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
8035
8221
  createdAt: string | null;
8036
8222
  updatedAt: string | null;
8037
8223
  deletedAt?: string | null;
@@ -8262,9 +8448,16 @@ type $OpenApiTs = {
8262
8448
  avatar?: string | null;
8263
8449
  url?: string | null;
8264
8450
  } | null;
8451
+ metadata?: {
8452
+ allowImages?: boolean | null;
8453
+ allowVideos?: boolean | null;
8454
+ allowGalleries?: boolean | null;
8455
+ linkFlairEnabled?: boolean | null;
8456
+ } | null;
8265
8457
  }> | null;
8266
8458
  mastodonServerId?: string | null;
8267
8459
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
8460
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
8268
8461
  createdAt: string | null;
8269
8462
  updatedAt: string | null;
8270
8463
  deletedAt?: string | null;
@@ -8341,9 +8534,16 @@ type $OpenApiTs = {
8341
8534
  avatar?: string | null;
8342
8535
  url?: string | null;
8343
8536
  } | null;
8537
+ metadata?: {
8538
+ allowImages?: boolean | null;
8539
+ allowVideos?: boolean | null;
8540
+ allowGalleries?: boolean | null;
8541
+ linkFlairEnabled?: boolean | null;
8542
+ } | null;
8344
8543
  }> | null;
8345
8544
  mastodonServerId?: string | null;
8346
8545
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
8546
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
8347
8547
  createdAt: string | null;
8348
8548
  updatedAt: string | null;
8349
8549
  deletedAt?: string | null;
@@ -8420,9 +8620,16 @@ type $OpenApiTs = {
8420
8620
  avatar?: string | null;
8421
8621
  url?: string | null;
8422
8622
  } | null;
8623
+ metadata?: {
8624
+ allowImages?: boolean | null;
8625
+ allowVideos?: boolean | null;
8626
+ allowGalleries?: boolean | null;
8627
+ linkFlairEnabled?: boolean | null;
8628
+ } | null;
8423
8629
  }> | null;
8424
8630
  mastodonServerId?: string | null;
8425
8631
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
8632
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
8426
8633
  createdAt: string | null;
8427
8634
  updatedAt: string | null;
8428
8635
  deletedAt?: string | null;
@@ -8552,9 +8759,16 @@ type $OpenApiTs = {
8552
8759
  avatar?: string | null;
8553
8760
  url?: string | null;
8554
8761
  } | null;
8762
+ metadata?: {
8763
+ allowImages?: boolean | null;
8764
+ allowVideos?: boolean | null;
8765
+ allowGalleries?: boolean | null;
8766
+ linkFlairEnabled?: boolean | null;
8767
+ } | null;
8555
8768
  }> | null;
8556
8769
  mastodonServerId?: string | null;
8557
8770
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
8771
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
8558
8772
  createdAt: string | null;
8559
8773
  updatedAt: string | null;
8560
8774
  deletedAt?: string | null;
@@ -9211,6 +9425,10 @@ type $OpenApiTs = {
9211
9425
  * Set to true if this video is AI generated.
9212
9426
  */
9213
9427
  isAiGenerated?: boolean | null;
9428
+ /**
9429
+ * If set to true, TikTok will automatically add music to the photos.
9430
+ */
9431
+ autoAddMusic?: boolean | null;
9214
9432
  } | null;
9215
9433
  LINKEDIN?: {
9216
9434
  text: string;
@@ -9268,6 +9486,10 @@ type $OpenApiTs = {
9268
9486
  * Set to true if the post is NSFW.
9269
9487
  */
9270
9488
  nsfw?: boolean | null;
9489
+ /**
9490
+ * Flair ID for the post. Required if the subreddit requires flair selection.
9491
+ */
9492
+ flairId?: string | null;
9271
9493
  } | null;
9272
9494
  DISCORD?: {
9273
9495
  channelId: string;
@@ -9637,9 +9859,16 @@ type $OpenApiTs = {
9637
9859
  avatar?: string | null;
9638
9860
  url?: string | null;
9639
9861
  } | null;
9862
+ metadata?: {
9863
+ allowImages?: boolean | null;
9864
+ allowVideos?: boolean | null;
9865
+ allowGalleries?: boolean | null;
9866
+ linkFlairEnabled?: boolean | null;
9867
+ } | null;
9640
9868
  }> | null;
9641
9869
  mastodonServerId?: string | null;
9642
9870
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
9871
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
9643
9872
  createdAt: string | null;
9644
9873
  updatedAt: string | null;
9645
9874
  deletedAt?: string | null;
@@ -9814,6 +10043,10 @@ type $OpenApiTs = {
9814
10043
  * Set to true if this video is AI generated.
9815
10044
  */
9816
10045
  isAiGenerated?: boolean | null;
10046
+ /**
10047
+ * If set to true, TikTok will automatically add music to the photos.
10048
+ */
10049
+ autoAddMusic?: boolean | null;
9817
10050
  } | null;
9818
10051
  LINKEDIN?: {
9819
10052
  text: string;
@@ -9871,6 +10104,10 @@ type $OpenApiTs = {
9871
10104
  * Set to true if the post is NSFW.
9872
10105
  */
9873
10106
  nsfw?: boolean | null;
10107
+ /**
10108
+ * Flair ID for the post. Required if the subreddit requires flair selection.
10109
+ */
10110
+ flairId?: string | null;
9874
10111
  } | null;
9875
10112
  DISCORD?: {
9876
10113
  channelId: string;
@@ -10354,6 +10591,10 @@ type $OpenApiTs = {
10354
10591
  * Set to true if this video is AI generated.
10355
10592
  */
10356
10593
  isAiGenerated?: boolean | null;
10594
+ /**
10595
+ * If set to true, TikTok will automatically add music to the photos.
10596
+ */
10597
+ autoAddMusic?: boolean | null;
10357
10598
  } | null;
10358
10599
  LINKEDIN?: {
10359
10600
  text: string;
@@ -10411,6 +10652,10 @@ type $OpenApiTs = {
10411
10652
  * Set to true if the post is NSFW.
10412
10653
  */
10413
10654
  nsfw?: boolean | null;
10655
+ /**
10656
+ * Flair ID for the post. Required if the subreddit requires flair selection.
10657
+ */
10658
+ flairId?: string | null;
10414
10659
  } | null;
10415
10660
  DISCORD?: {
10416
10661
  channelId: string;
@@ -10897,6 +11142,10 @@ type $OpenApiTs = {
10897
11142
  * Set to true if this video is AI generated.
10898
11143
  */
10899
11144
  isAiGenerated?: boolean | null;
11145
+ /**
11146
+ * If set to true, TikTok will automatically add music to the photos.
11147
+ */
11148
+ autoAddMusic?: boolean | null;
10900
11149
  } | null;
10901
11150
  LINKEDIN?: {
10902
11151
  text: string;
@@ -10954,6 +11203,10 @@ type $OpenApiTs = {
10954
11203
  * Set to true if the post is NSFW.
10955
11204
  */
10956
11205
  nsfw?: boolean | null;
11206
+ /**
11207
+ * Flair ID for the post. Required if the subreddit requires flair selection.
11208
+ */
11209
+ flairId?: string | null;
10957
11210
  } | null;
10958
11211
  DISCORD?: {
10959
11212
  channelId: string;
@@ -11323,9 +11576,16 @@ type $OpenApiTs = {
11323
11576
  avatar?: string | null;
11324
11577
  url?: string | null;
11325
11578
  } | null;
11579
+ metadata?: {
11580
+ allowImages?: boolean | null;
11581
+ allowVideos?: boolean | null;
11582
+ allowGalleries?: boolean | null;
11583
+ linkFlairEnabled?: boolean | null;
11584
+ } | null;
11326
11585
  }> | null;
11327
11586
  mastodonServerId?: string | null;
11328
11587
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
11588
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
11329
11589
  createdAt: string | null;
11330
11590
  updatedAt: string | null;
11331
11591
  deletedAt?: string | null;
@@ -11502,6 +11762,10 @@ type $OpenApiTs = {
11502
11762
  * Set to true if this video is AI generated.
11503
11763
  */
11504
11764
  isAiGenerated?: boolean | null;
11765
+ /**
11766
+ * If set to true, TikTok will automatically add music to the photos.
11767
+ */
11768
+ autoAddMusic?: boolean | null;
11505
11769
  } | null;
11506
11770
  LINKEDIN?: {
11507
11771
  text: string;
@@ -11559,6 +11823,10 @@ type $OpenApiTs = {
11559
11823
  * Set to true if the post is NSFW.
11560
11824
  */
11561
11825
  nsfw?: boolean | null;
11826
+ /**
11827
+ * Flair ID for the post. Required if the subreddit requires flair selection.
11828
+ */
11829
+ flairId?: string | null;
11562
11830
  } | null;
11563
11831
  DISCORD?: {
11564
11832
  channelId: string;
@@ -12044,6 +12312,10 @@ type $OpenApiTs = {
12044
12312
  * Set to true if this video is AI generated.
12045
12313
  */
12046
12314
  isAiGenerated?: boolean | null;
12315
+ /**
12316
+ * If set to true, TikTok will automatically add music to the photos.
12317
+ */
12318
+ autoAddMusic?: boolean | null;
12047
12319
  } | null;
12048
12320
  LINKEDIN?: {
12049
12321
  text: string;
@@ -12101,6 +12373,10 @@ type $OpenApiTs = {
12101
12373
  * Set to true if the post is NSFW.
12102
12374
  */
12103
12375
  nsfw?: boolean | null;
12376
+ /**
12377
+ * Flair ID for the post. Required if the subreddit requires flair selection.
12378
+ */
12379
+ flairId?: string | null;
12104
12380
  } | null;
12105
12381
  DISCORD?: {
12106
12382
  channelId: string;
@@ -12489,9 +12765,16 @@ type $OpenApiTs = {
12489
12765
  avatar?: string | null;
12490
12766
  url?: string | null;
12491
12767
  } | null;
12768
+ metadata?: {
12769
+ allowImages?: boolean | null;
12770
+ allowVideos?: boolean | null;
12771
+ allowGalleries?: boolean | null;
12772
+ linkFlairEnabled?: boolean | null;
12773
+ } | null;
12492
12774
  }> | null;
12493
12775
  mastodonServerId?: string | null;
12494
12776
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
12777
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
12495
12778
  createdAt: string | null;
12496
12779
  updatedAt: string | null;
12497
12780
  deletedAt?: string | null;
@@ -12685,6 +12968,10 @@ type $OpenApiTs = {
12685
12968
  * Set to true if this video is AI generated.
12686
12969
  */
12687
12970
  isAiGenerated?: boolean | null;
12971
+ /**
12972
+ * If set to true, TikTok will automatically add music to the photos.
12973
+ */
12974
+ autoAddMusic?: boolean | null;
12688
12975
  } | null;
12689
12976
  LINKEDIN?: {
12690
12977
  text: string;
@@ -12742,6 +13029,10 @@ type $OpenApiTs = {
12742
13029
  * Set to true if the post is NSFW.
12743
13030
  */
12744
13031
  nsfw?: boolean | null;
13032
+ /**
13033
+ * Flair ID for the post. Required if the subreddit requires flair selection.
13034
+ */
13035
+ flairId?: string | null;
12745
13036
  } | null;
12746
13037
  DISCORD?: {
12747
13038
  channelId: string;
@@ -13149,9 +13440,16 @@ type $OpenApiTs = {
13149
13440
  avatar?: string | null;
13150
13441
  url?: string | null;
13151
13442
  } | null;
13443
+ metadata?: {
13444
+ allowImages?: boolean | null;
13445
+ allowVideos?: boolean | null;
13446
+ allowGalleries?: boolean | null;
13447
+ linkFlairEnabled?: boolean | null;
13448
+ } | null;
13152
13449
  }> | null;
13153
13450
  mastodonServerId?: string | null;
13154
13451
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
13452
+ twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
13155
13453
  createdAt: string | null;
13156
13454
  updatedAt: string | null;
13157
13455
  deletedAt?: string | null;
@@ -13338,6 +13636,10 @@ type $OpenApiTs = {
13338
13636
  * Set to true if this video is AI generated.
13339
13637
  */
13340
13638
  isAiGenerated?: boolean | null;
13639
+ /**
13640
+ * If set to true, TikTok will automatically add music to the photos.
13641
+ */
13642
+ autoAddMusic?: boolean | null;
13341
13643
  } | null;
13342
13644
  LINKEDIN?: {
13343
13645
  text: string;
@@ -13395,6 +13697,10 @@ type $OpenApiTs = {
13395
13697
  * Set to true if the post is NSFW.
13396
13698
  */
13397
13699
  nsfw?: boolean | null;
13700
+ /**
13701
+ * Flair ID for the post. Required if the subreddit requires flair selection.
13702
+ */
13703
+ flairId?: string | null;
13398
13704
  } | null;
13399
13705
  DISCORD?: {
13400
13706
  channelId: string;
@@ -16063,6 +16369,120 @@ type $OpenApiTs = {
16063
16369
  };
16064
16370
  };
16065
16371
  };
16372
+ '/api/v1/misc/reddit/post-requirements': {
16373
+ get: {
16374
+ req: MiscRedditGetPostRequirementsData;
16375
+ res: {
16376
+ /**
16377
+ * 200
16378
+ */
16379
+ 200: {
16380
+ isFlairRequired: boolean;
16381
+ isFlairEnabled: boolean;
16382
+ };
16383
+ /**
16384
+ * 400
16385
+ */
16386
+ 400: {
16387
+ message: string;
16388
+ issues?: Array<{
16389
+ message: string;
16390
+ path?: Array<(string | number)> | null;
16391
+ }> | null;
16392
+ };
16393
+ /**
16394
+ * 401
16395
+ */
16396
+ 401: {
16397
+ message: string;
16398
+ };
16399
+ /**
16400
+ * 403
16401
+ */
16402
+ 403: {
16403
+ message: string;
16404
+ };
16405
+ /**
16406
+ * 404
16407
+ */
16408
+ 404: {
16409
+ message: string;
16410
+ };
16411
+ /**
16412
+ * 429
16413
+ */
16414
+ 429: {
16415
+ message: string;
16416
+ };
16417
+ /**
16418
+ * 500
16419
+ */
16420
+ 500: {
16421
+ message: string;
16422
+ };
16423
+ };
16424
+ };
16425
+ };
16426
+ '/api/v1/misc/reddit/subreddit-flairs': {
16427
+ get: {
16428
+ req: MiscRedditGetSubredditFlairsData;
16429
+ res: {
16430
+ /**
16431
+ * 200
16432
+ */
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
+ }>;
16443
+ /**
16444
+ * 400
16445
+ */
16446
+ 400: {
16447
+ message: string;
16448
+ issues?: Array<{
16449
+ message: string;
16450
+ path?: Array<(string | number)> | null;
16451
+ }> | null;
16452
+ };
16453
+ /**
16454
+ * 401
16455
+ */
16456
+ 401: {
16457
+ message: string;
16458
+ };
16459
+ /**
16460
+ * 403
16461
+ */
16462
+ 403: {
16463
+ message: string;
16464
+ };
16465
+ /**
16466
+ * 404
16467
+ */
16468
+ 404: {
16469
+ message: string;
16470
+ };
16471
+ /**
16472
+ * 429
16473
+ */
16474
+ 429: {
16475
+ message: string;
16476
+ };
16477
+ /**
16478
+ * 500
16479
+ */
16480
+ 500: {
16481
+ message: string;
16482
+ };
16483
+ };
16484
+ };
16485
+ };
16066
16486
  };
16067
16487
 
16068
16488
  declare class AppService {
@@ -16521,6 +16941,24 @@ declare class MiscService {
16521
16941
  * @throws ApiError
16522
16942
  */
16523
16943
  miscGoogleBusinessAddMedia(data?: MiscGoogleBusinessAddMediaData): CancelablePromise<MiscGoogleBusinessAddMediaResponse>;
16944
+ /**
16945
+ * Get subreddit post requirements (flair required/enabled)
16946
+ * @param data The data for the request.
16947
+ * @param data.teamId
16948
+ * @param data.subreddit
16949
+ * @returns unknown 200
16950
+ * @throws ApiError
16951
+ */
16952
+ miscRedditGetPostRequirements(data: MiscRedditGetPostRequirementsData): CancelablePromise<MiscRedditGetPostRequirementsResponse>;
16953
+ /**
16954
+ * Get subreddit flairs list
16955
+ * @param data The data for the request.
16956
+ * @param data.teamId
16957
+ * @param data.subreddit
16958
+ * @returns unknown 200
16959
+ * @throws ApiError
16960
+ */
16961
+ miscRedditGetSubredditFlairs(data: MiscRedditGetSubredditFlairsData): CancelablePromise<MiscRedditGetSubredditFlairsResponse>;
16524
16962
  }
16525
16963
  declare class YoutubeService {
16526
16964
  readonly httpRequest: BaseHttpRequest;
@@ -16630,6 +17068,28 @@ declare class GoogleBusinessService {
16630
17068
  */
16631
17069
  miscGoogleBusinessAddMedia(data?: MiscGoogleBusinessAddMediaData): CancelablePromise<MiscGoogleBusinessAddMediaResponse>;
16632
17070
  }
17071
+ declare class RedditService {
17072
+ readonly httpRequest: BaseHttpRequest;
17073
+ constructor(httpRequest: BaseHttpRequest);
17074
+ /**
17075
+ * Get subreddit post requirements (flair required/enabled)
17076
+ * @param data The data for the request.
17077
+ * @param data.teamId
17078
+ * @param data.subreddit
17079
+ * @returns unknown 200
17080
+ * @throws ApiError
17081
+ */
17082
+ miscRedditGetPostRequirements(data: MiscRedditGetPostRequirementsData): CancelablePromise<MiscRedditGetPostRequirementsResponse>;
17083
+ /**
17084
+ * Get subreddit flairs list
17085
+ * @param data The data for the request.
17086
+ * @param data.teamId
17087
+ * @param data.subreddit
17088
+ * @returns unknown 200
17089
+ * @throws ApiError
17090
+ */
17091
+ miscRedditGetSubredditFlairs(data: MiscRedditGetSubredditFlairsData): CancelablePromise<MiscRedditGetSubredditFlairsResponse>;
17092
+ }
16633
17093
 
16634
17094
  type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
16635
17095
  declare class Client {
@@ -16641,6 +17101,7 @@ declare class Client {
16641
17101
  readonly misc: MiscService;
16642
17102
  readonly organization: OrganizationService;
16643
17103
  readonly post: PostService;
17104
+ readonly reddit: RedditService;
16644
17105
  readonly socialAccount: SocialAccountService;
16645
17106
  readonly team: TeamService;
16646
17107
  readonly upload: UploadService;
@@ -16708,4 +17169,4 @@ declare class Bundlesocial extends Client {
16708
17169
  constructor(apiKey: string, options?: OpenAPIConfig);
16709
17170
  }
16710
17171
 
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 };
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 };