bundlesocial 2.41.0 → 2.42.1

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
@@ -380,6 +380,7 @@ type TeamGetTeamResponse = {
380
380
  mastodonServerId?: string | null;
381
381
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
382
382
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
383
+ disconnectedCheckTryAt?: string | null;
383
384
  deleteOn?: string | null;
384
385
  createdAt: string | null;
385
386
  updatedAt: string | null;
@@ -562,6 +563,7 @@ type TeamGetListResponse = {
562
563
  mastodonServerId?: string | null;
563
564
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
564
565
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
566
+ disconnectedCheckTryAt?: string | null;
565
567
  deleteOn?: string | null;
566
568
  createdAt: string | null;
567
569
  updatedAt: string | null;
@@ -700,6 +702,7 @@ type SocialAccountDisconnectResponse = {
700
702
  mastodonServerId?: string | null;
701
703
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
702
704
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
705
+ disconnectedCheckTryAt?: string | null;
703
706
  deleteOn?: string | null;
704
707
  createdAt: string | null;
705
708
  updatedAt: string | null;
@@ -747,6 +750,7 @@ type SocialAccountSetChannelResponse = {
747
750
  mastodonServerId?: string | null;
748
751
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
749
752
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
753
+ disconnectedCheckTryAt?: string | null;
750
754
  deleteOn?: string | null;
751
755
  createdAt: string | null;
752
756
  updatedAt: string | null;
@@ -793,6 +797,7 @@ type SocialAccountUnsetChannelResponse = {
793
797
  mastodonServerId?: string | null;
794
798
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
795
799
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
800
+ disconnectedCheckTryAt?: string | null;
796
801
  deleteOn?: string | null;
797
802
  createdAt: string | null;
798
803
  updatedAt: string | null;
@@ -839,6 +844,7 @@ type SocialAccountRefreshChannelsResponse = {
839
844
  mastodonServerId?: string | null;
840
845
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
841
846
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
847
+ disconnectedCheckTryAt?: string | null;
842
848
  deleteOn?: string | null;
843
849
  createdAt: string | null;
844
850
  updatedAt: string | null;
@@ -942,6 +948,7 @@ type SocialAccountCopyResponse = Array<{
942
948
  mastodonServerId?: string | null;
943
949
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
944
950
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
951
+ disconnectedCheckTryAt?: string | null;
945
952
  deleteOn?: string | null;
946
953
  createdAt: string | null;
947
954
  updatedAt: string | null;
@@ -984,6 +991,7 @@ type SocialAccountGetAccountsToDeleteResponse = {
984
991
  mastodonServerId?: string | null;
985
992
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
986
993
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
994
+ disconnectedCheckTryAt?: string | null;
987
995
  deleteOn?: string | null;
988
996
  createdAt: string | null;
989
997
  updatedAt: string | null;
@@ -1145,7 +1153,7 @@ type UploadInitLargeUploadData = {
1145
1153
  requestBody?: {
1146
1154
  teamId?: string | null;
1147
1155
  fileName: string;
1148
- mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'video/mp4' | 'application/pdf';
1156
+ mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'image/gif' | 'video/mp4' | 'application/pdf';
1149
1157
  };
1150
1158
  };
1151
1159
  type UploadInitLargeUploadResponse = {
@@ -1331,6 +1339,7 @@ type PostGetResponse = {
1331
1339
  * If set to true, TikTok will automatically add music to the photos.
1332
1340
  */
1333
1341
  autoAddMusic?: boolean | null;
1342
+ autoScale?: boolean | null;
1334
1343
  /**
1335
1344
  * If set to true, upload post as draft.
1336
1345
  */
@@ -1814,6 +1823,7 @@ type PostGetResponse = {
1814
1823
  mastodonServerId?: string | null;
1815
1824
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
1816
1825
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
1826
+ disconnectedCheckTryAt?: string | null;
1817
1827
  deleteOn?: string | null;
1818
1828
  createdAt: string | null;
1819
1829
  updatedAt: string | null;
@@ -1970,6 +1980,7 @@ type PostUpdateData = {
1970
1980
  * If set to true, TikTok will automatically add music to the photos.
1971
1981
  */
1972
1982
  autoAddMusic?: boolean | null;
1983
+ autoScale?: boolean | null;
1973
1984
  /**
1974
1985
  * If set to true, upload post as draft.
1975
1986
  */
@@ -2311,6 +2322,7 @@ type PostUpdateResponse = {
2311
2322
  * If set to true, TikTok will automatically add music to the photos.
2312
2323
  */
2313
2324
  autoAddMusic?: boolean | null;
2325
+ autoScale?: boolean | null;
2314
2326
  /**
2315
2327
  * If set to true, upload post as draft.
2316
2328
  */
@@ -2880,6 +2892,7 @@ type PostDeleteResponse = {
2880
2892
  * If set to true, TikTok will automatically add music to the photos.
2881
2893
  */
2882
2894
  autoAddMusic?: boolean | null;
2895
+ autoScale?: boolean | null;
2883
2896
  /**
2884
2897
  * If set to true, upload post as draft.
2885
2898
  */
@@ -3457,6 +3470,7 @@ type PostGetListResponse = {
3457
3470
  * If set to true, TikTok will automatically add music to the photos.
3458
3471
  */
3459
3472
  autoAddMusic?: boolean | null;
3473
+ autoScale?: boolean | null;
3460
3474
  /**
3461
3475
  * If set to true, upload post as draft.
3462
3476
  */
@@ -3940,6 +3954,7 @@ type PostGetListResponse = {
3940
3954
  mastodonServerId?: string | null;
3941
3955
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
3942
3956
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
3957
+ disconnectedCheckTryAt?: string | null;
3943
3958
  deleteOn?: string | null;
3944
3959
  createdAt: string | null;
3945
3960
  updatedAt: string | null;
@@ -4098,6 +4113,7 @@ type PostCreateData = {
4098
4113
  * If set to true, TikTok will automatically add music to the photos.
4099
4114
  */
4100
4115
  autoAddMusic?: boolean | null;
4116
+ autoScale?: boolean | null;
4101
4117
  /**
4102
4118
  * If set to true, upload post as draft.
4103
4119
  */
@@ -4439,6 +4455,7 @@ type PostCreateResponse = {
4439
4455
  * If set to true, TikTok will automatically add music to the photos.
4440
4456
  */
4441
4457
  autoAddMusic?: boolean | null;
4458
+ autoScale?: boolean | null;
4442
4459
  /**
4443
4460
  * If set to true, upload post as draft.
4444
4461
  */
@@ -5008,6 +5025,7 @@ type PostRetryResponse = {
5008
5025
  * If set to true, TikTok will automatically add music to the photos.
5009
5026
  */
5010
5027
  autoAddMusic?: boolean | null;
5028
+ autoScale?: boolean | null;
5011
5029
  /**
5012
5030
  * If set to true, upload post as draft.
5013
5031
  */
@@ -5464,6 +5482,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
5464
5482
  mastodonServerId?: string | null;
5465
5483
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
5466
5484
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
5485
+ disconnectedCheckTryAt?: string | null;
5467
5486
  deleteOn?: string | null;
5468
5487
  createdAt: string | null;
5469
5488
  updatedAt: string | null;
@@ -5640,6 +5659,7 @@ type AnalyticsGetPostAnalyticsResponse = {
5640
5659
  * If set to true, TikTok will automatically add music to the photos.
5641
5660
  */
5642
5661
  autoAddMusic?: boolean | null;
5662
+ autoScale?: boolean | null;
5643
5663
  /**
5644
5664
  * If set to true, upload post as draft.
5645
5665
  */
@@ -6136,6 +6156,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
6136
6156
  mastodonServerId?: string | null;
6137
6157
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
6138
6158
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
6159
+ disconnectedCheckTryAt?: string | null;
6139
6160
  deleteOn?: string | null;
6140
6161
  createdAt: string | null;
6141
6162
  updatedAt: string | null;
@@ -6305,6 +6326,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
6305
6326
  * If set to true, TikTok will automatically add music to the photos.
6306
6327
  */
6307
6328
  autoAddMusic?: boolean | null;
6329
+ autoScale?: boolean | null;
6308
6330
  /**
6309
6331
  * If set to true, upload post as draft.
6310
6332
  */
@@ -9933,6 +9955,7 @@ type $OpenApiTs = {
9933
9955
  mastodonServerId?: string | null;
9934
9956
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
9935
9957
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
9958
+ disconnectedCheckTryAt?: string | null;
9936
9959
  deleteOn?: string | null;
9937
9960
  createdAt: string | null;
9938
9961
  updatedAt: string | null;
@@ -10263,6 +10286,7 @@ type $OpenApiTs = {
10263
10286
  mastodonServerId?: string | null;
10264
10287
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
10265
10288
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
10289
+ disconnectedCheckTryAt?: string | null;
10266
10290
  deleteOn?: string | null;
10267
10291
  createdAt: string | null;
10268
10292
  updatedAt: string | null;
@@ -10525,6 +10549,7 @@ type $OpenApiTs = {
10525
10549
  mastodonServerId?: string | null;
10526
10550
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
10527
10551
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
10552
+ disconnectedCheckTryAt?: string | null;
10528
10553
  deleteOn?: string | null;
10529
10554
  createdAt: string | null;
10530
10555
  updatedAt: string | null;
@@ -10619,6 +10644,7 @@ type $OpenApiTs = {
10619
10644
  mastodonServerId?: string | null;
10620
10645
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
10621
10646
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
10647
+ disconnectedCheckTryAt?: string | null;
10622
10648
  deleteOn?: string | null;
10623
10649
  createdAt: string | null;
10624
10650
  updatedAt: string | null;
@@ -10713,6 +10739,7 @@ type $OpenApiTs = {
10713
10739
  mastodonServerId?: string | null;
10714
10740
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
10715
10741
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
10742
+ disconnectedCheckTryAt?: string | null;
10716
10743
  deleteOn?: string | null;
10717
10744
  createdAt: string | null;
10718
10745
  updatedAt: string | null;
@@ -10807,6 +10834,7 @@ type $OpenApiTs = {
10807
10834
  mastodonServerId?: string | null;
10808
10835
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
10809
10836
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
10837
+ disconnectedCheckTryAt?: string | null;
10810
10838
  deleteOn?: string | null;
10811
10839
  createdAt: string | null;
10812
10840
  updatedAt: string | null;
@@ -11028,6 +11056,7 @@ type $OpenApiTs = {
11028
11056
  mastodonServerId?: string | null;
11029
11057
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
11030
11058
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
11059
+ disconnectedCheckTryAt?: string | null;
11031
11060
  deleteOn?: string | null;
11032
11061
  createdAt: string | null;
11033
11062
  updatedAt: string | null;
@@ -11123,6 +11152,7 @@ type $OpenApiTs = {
11123
11152
  mastodonServerId?: string | null;
11124
11153
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
11125
11154
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
11155
+ disconnectedCheckTryAt?: string | null;
11126
11156
  deleteOn?: string | null;
11127
11157
  createdAt: string | null;
11128
11158
  updatedAt: string | null;
@@ -11870,6 +11900,7 @@ type $OpenApiTs = {
11870
11900
  * If set to true, TikTok will automatically add music to the photos.
11871
11901
  */
11872
11902
  autoAddMusic?: boolean | null;
11903
+ autoScale?: boolean | null;
11873
11904
  /**
11874
11905
  * If set to true, upload post as draft.
11875
11906
  */
@@ -12353,6 +12384,7 @@ type $OpenApiTs = {
12353
12384
  mastodonServerId?: string | null;
12354
12385
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
12355
12386
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
12387
+ disconnectedCheckTryAt?: string | null;
12356
12388
  deleteOn?: string | null;
12357
12389
  createdAt: string | null;
12358
12390
  updatedAt: string | null;
@@ -12562,6 +12594,7 @@ type $OpenApiTs = {
12562
12594
  * If set to true, TikTok will automatically add music to the photos.
12563
12595
  */
12564
12596
  autoAddMusic?: boolean | null;
12597
+ autoScale?: boolean | null;
12565
12598
  /**
12566
12599
  * If set to true, upload post as draft.
12567
12600
  */
@@ -13183,6 +13216,7 @@ type $OpenApiTs = {
13183
13216
  * If set to true, TikTok will automatically add music to the photos.
13184
13217
  */
13185
13218
  autoAddMusic?: boolean | null;
13219
+ autoScale?: boolean | null;
13186
13220
  /**
13187
13221
  * If set to true, upload post as draft.
13188
13222
  */
@@ -13807,6 +13841,7 @@ type $OpenApiTs = {
13807
13841
  * If set to true, TikTok will automatically add music to the photos.
13808
13842
  */
13809
13843
  autoAddMusic?: boolean | null;
13844
+ autoScale?: boolean | null;
13810
13845
  /**
13811
13846
  * If set to true, upload post as draft.
13812
13847
  */
@@ -14290,6 +14325,7 @@ type $OpenApiTs = {
14290
14325
  mastodonServerId?: string | null;
14291
14326
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
14292
14327
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
14328
+ disconnectedCheckTryAt?: string | null;
14293
14329
  deleteOn?: string | null;
14294
14330
  createdAt: string | null;
14295
14331
  updatedAt: string | null;
@@ -14501,6 +14537,7 @@ type $OpenApiTs = {
14501
14537
  * If set to true, TikTok will automatically add music to the photos.
14502
14538
  */
14503
14539
  autoAddMusic?: boolean | null;
14540
+ autoScale?: boolean | null;
14504
14541
  /**
14505
14542
  * If set to true, upload post as draft.
14506
14543
  */
@@ -15124,6 +15161,7 @@ type $OpenApiTs = {
15124
15161
  * If set to true, TikTok will automatically add music to the photos.
15125
15162
  */
15126
15163
  autoAddMusic?: boolean | null;
15164
+ autoScale?: boolean | null;
15127
15165
  /**
15128
15166
  * If set to true, upload post as draft.
15129
15167
  */
@@ -15633,6 +15671,7 @@ type $OpenApiTs = {
15633
15671
  mastodonServerId?: string | null;
15634
15672
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
15635
15673
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
15674
+ disconnectedCheckTryAt?: string | null;
15636
15675
  deleteOn?: string | null;
15637
15676
  createdAt: string | null;
15638
15677
  updatedAt: string | null;
@@ -15861,6 +15900,7 @@ type $OpenApiTs = {
15861
15900
  * If set to true, TikTok will automatically add music to the photos.
15862
15901
  */
15863
15902
  autoAddMusic?: boolean | null;
15903
+ autoScale?: boolean | null;
15864
15904
  /**
15865
15905
  * If set to true, upload post as draft.
15866
15906
  */
@@ -16410,6 +16450,7 @@ type $OpenApiTs = {
16410
16450
  mastodonServerId?: string | null;
16411
16451
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
16412
16452
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
16453
+ disconnectedCheckTryAt?: string | null;
16413
16454
  deleteOn?: string | null;
16414
16455
  createdAt: string | null;
16415
16456
  updatedAt: string | null;
@@ -16631,6 +16672,7 @@ type $OpenApiTs = {
16631
16672
  * If set to true, TikTok will automatically add music to the photos.
16632
16673
  */
16633
16674
  autoAddMusic?: boolean | null;
16675
+ autoScale?: boolean | null;
16634
16676
  /**
16635
16677
  * If set to true, upload post as draft.
16636
16678
  */
package/dist/index.d.ts CHANGED
@@ -380,6 +380,7 @@ type TeamGetTeamResponse = {
380
380
  mastodonServerId?: string | null;
381
381
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
382
382
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
383
+ disconnectedCheckTryAt?: string | null;
383
384
  deleteOn?: string | null;
384
385
  createdAt: string | null;
385
386
  updatedAt: string | null;
@@ -562,6 +563,7 @@ type TeamGetListResponse = {
562
563
  mastodonServerId?: string | null;
563
564
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
564
565
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
566
+ disconnectedCheckTryAt?: string | null;
565
567
  deleteOn?: string | null;
566
568
  createdAt: string | null;
567
569
  updatedAt: string | null;
@@ -700,6 +702,7 @@ type SocialAccountDisconnectResponse = {
700
702
  mastodonServerId?: string | null;
701
703
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
702
704
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
705
+ disconnectedCheckTryAt?: string | null;
703
706
  deleteOn?: string | null;
704
707
  createdAt: string | null;
705
708
  updatedAt: string | null;
@@ -747,6 +750,7 @@ type SocialAccountSetChannelResponse = {
747
750
  mastodonServerId?: string | null;
748
751
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
749
752
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
753
+ disconnectedCheckTryAt?: string | null;
750
754
  deleteOn?: string | null;
751
755
  createdAt: string | null;
752
756
  updatedAt: string | null;
@@ -793,6 +797,7 @@ type SocialAccountUnsetChannelResponse = {
793
797
  mastodonServerId?: string | null;
794
798
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
795
799
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
800
+ disconnectedCheckTryAt?: string | null;
796
801
  deleteOn?: string | null;
797
802
  createdAt: string | null;
798
803
  updatedAt: string | null;
@@ -839,6 +844,7 @@ type SocialAccountRefreshChannelsResponse = {
839
844
  mastodonServerId?: string | null;
840
845
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
841
846
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
847
+ disconnectedCheckTryAt?: string | null;
842
848
  deleteOn?: string | null;
843
849
  createdAt: string | null;
844
850
  updatedAt: string | null;
@@ -942,6 +948,7 @@ type SocialAccountCopyResponse = Array<{
942
948
  mastodonServerId?: string | null;
943
949
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
944
950
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
951
+ disconnectedCheckTryAt?: string | null;
945
952
  deleteOn?: string | null;
946
953
  createdAt: string | null;
947
954
  updatedAt: string | null;
@@ -984,6 +991,7 @@ type SocialAccountGetAccountsToDeleteResponse = {
984
991
  mastodonServerId?: string | null;
985
992
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
986
993
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
994
+ disconnectedCheckTryAt?: string | null;
987
995
  deleteOn?: string | null;
988
996
  createdAt: string | null;
989
997
  updatedAt: string | null;
@@ -1145,7 +1153,7 @@ type UploadInitLargeUploadData = {
1145
1153
  requestBody?: {
1146
1154
  teamId?: string | null;
1147
1155
  fileName: string;
1148
- mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'video/mp4' | 'application/pdf';
1156
+ mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'image/gif' | 'video/mp4' | 'application/pdf';
1149
1157
  };
1150
1158
  };
1151
1159
  type UploadInitLargeUploadResponse = {
@@ -1331,6 +1339,7 @@ type PostGetResponse = {
1331
1339
  * If set to true, TikTok will automatically add music to the photos.
1332
1340
  */
1333
1341
  autoAddMusic?: boolean | null;
1342
+ autoScale?: boolean | null;
1334
1343
  /**
1335
1344
  * If set to true, upload post as draft.
1336
1345
  */
@@ -1814,6 +1823,7 @@ type PostGetResponse = {
1814
1823
  mastodonServerId?: string | null;
1815
1824
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
1816
1825
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
1826
+ disconnectedCheckTryAt?: string | null;
1817
1827
  deleteOn?: string | null;
1818
1828
  createdAt: string | null;
1819
1829
  updatedAt: string | null;
@@ -1970,6 +1980,7 @@ type PostUpdateData = {
1970
1980
  * If set to true, TikTok will automatically add music to the photos.
1971
1981
  */
1972
1982
  autoAddMusic?: boolean | null;
1983
+ autoScale?: boolean | null;
1973
1984
  /**
1974
1985
  * If set to true, upload post as draft.
1975
1986
  */
@@ -2311,6 +2322,7 @@ type PostUpdateResponse = {
2311
2322
  * If set to true, TikTok will automatically add music to the photos.
2312
2323
  */
2313
2324
  autoAddMusic?: boolean | null;
2325
+ autoScale?: boolean | null;
2314
2326
  /**
2315
2327
  * If set to true, upload post as draft.
2316
2328
  */
@@ -2880,6 +2892,7 @@ type PostDeleteResponse = {
2880
2892
  * If set to true, TikTok will automatically add music to the photos.
2881
2893
  */
2882
2894
  autoAddMusic?: boolean | null;
2895
+ autoScale?: boolean | null;
2883
2896
  /**
2884
2897
  * If set to true, upload post as draft.
2885
2898
  */
@@ -3457,6 +3470,7 @@ type PostGetListResponse = {
3457
3470
  * If set to true, TikTok will automatically add music to the photos.
3458
3471
  */
3459
3472
  autoAddMusic?: boolean | null;
3473
+ autoScale?: boolean | null;
3460
3474
  /**
3461
3475
  * If set to true, upload post as draft.
3462
3476
  */
@@ -3940,6 +3954,7 @@ type PostGetListResponse = {
3940
3954
  mastodonServerId?: string | null;
3941
3955
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
3942
3956
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
3957
+ disconnectedCheckTryAt?: string | null;
3943
3958
  deleteOn?: string | null;
3944
3959
  createdAt: string | null;
3945
3960
  updatedAt: string | null;
@@ -4098,6 +4113,7 @@ type PostCreateData = {
4098
4113
  * If set to true, TikTok will automatically add music to the photos.
4099
4114
  */
4100
4115
  autoAddMusic?: boolean | null;
4116
+ autoScale?: boolean | null;
4101
4117
  /**
4102
4118
  * If set to true, upload post as draft.
4103
4119
  */
@@ -4439,6 +4455,7 @@ type PostCreateResponse = {
4439
4455
  * If set to true, TikTok will automatically add music to the photos.
4440
4456
  */
4441
4457
  autoAddMusic?: boolean | null;
4458
+ autoScale?: boolean | null;
4442
4459
  /**
4443
4460
  * If set to true, upload post as draft.
4444
4461
  */
@@ -5008,6 +5025,7 @@ type PostRetryResponse = {
5008
5025
  * If set to true, TikTok will automatically add music to the photos.
5009
5026
  */
5010
5027
  autoAddMusic?: boolean | null;
5028
+ autoScale?: boolean | null;
5011
5029
  /**
5012
5030
  * If set to true, upload post as draft.
5013
5031
  */
@@ -5464,6 +5482,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
5464
5482
  mastodonServerId?: string | null;
5465
5483
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
5466
5484
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
5485
+ disconnectedCheckTryAt?: string | null;
5467
5486
  deleteOn?: string | null;
5468
5487
  createdAt: string | null;
5469
5488
  updatedAt: string | null;
@@ -5640,6 +5659,7 @@ type AnalyticsGetPostAnalyticsResponse = {
5640
5659
  * If set to true, TikTok will automatically add music to the photos.
5641
5660
  */
5642
5661
  autoAddMusic?: boolean | null;
5662
+ autoScale?: boolean | null;
5643
5663
  /**
5644
5664
  * If set to true, upload post as draft.
5645
5665
  */
@@ -6136,6 +6156,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
6136
6156
  mastodonServerId?: string | null;
6137
6157
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
6138
6158
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
6159
+ disconnectedCheckTryAt?: string | null;
6139
6160
  deleteOn?: string | null;
6140
6161
  createdAt: string | null;
6141
6162
  updatedAt: string | null;
@@ -6305,6 +6326,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
6305
6326
  * If set to true, TikTok will automatically add music to the photos.
6306
6327
  */
6307
6328
  autoAddMusic?: boolean | null;
6329
+ autoScale?: boolean | null;
6308
6330
  /**
6309
6331
  * If set to true, upload post as draft.
6310
6332
  */
@@ -9933,6 +9955,7 @@ type $OpenApiTs = {
9933
9955
  mastodonServerId?: string | null;
9934
9956
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
9935
9957
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
9958
+ disconnectedCheckTryAt?: string | null;
9936
9959
  deleteOn?: string | null;
9937
9960
  createdAt: string | null;
9938
9961
  updatedAt: string | null;
@@ -10263,6 +10286,7 @@ type $OpenApiTs = {
10263
10286
  mastodonServerId?: string | null;
10264
10287
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
10265
10288
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
10289
+ disconnectedCheckTryAt?: string | null;
10266
10290
  deleteOn?: string | null;
10267
10291
  createdAt: string | null;
10268
10292
  updatedAt: string | null;
@@ -10525,6 +10549,7 @@ type $OpenApiTs = {
10525
10549
  mastodonServerId?: string | null;
10526
10550
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
10527
10551
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
10552
+ disconnectedCheckTryAt?: string | null;
10528
10553
  deleteOn?: string | null;
10529
10554
  createdAt: string | null;
10530
10555
  updatedAt: string | null;
@@ -10619,6 +10644,7 @@ type $OpenApiTs = {
10619
10644
  mastodonServerId?: string | null;
10620
10645
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
10621
10646
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
10647
+ disconnectedCheckTryAt?: string | null;
10622
10648
  deleteOn?: string | null;
10623
10649
  createdAt: string | null;
10624
10650
  updatedAt: string | null;
@@ -10713,6 +10739,7 @@ type $OpenApiTs = {
10713
10739
  mastodonServerId?: string | null;
10714
10740
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
10715
10741
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
10742
+ disconnectedCheckTryAt?: string | null;
10716
10743
  deleteOn?: string | null;
10717
10744
  createdAt: string | null;
10718
10745
  updatedAt: string | null;
@@ -10807,6 +10834,7 @@ type $OpenApiTs = {
10807
10834
  mastodonServerId?: string | null;
10808
10835
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
10809
10836
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
10837
+ disconnectedCheckTryAt?: string | null;
10810
10838
  deleteOn?: string | null;
10811
10839
  createdAt: string | null;
10812
10840
  updatedAt: string | null;
@@ -11028,6 +11056,7 @@ type $OpenApiTs = {
11028
11056
  mastodonServerId?: string | null;
11029
11057
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
11030
11058
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
11059
+ disconnectedCheckTryAt?: string | null;
11031
11060
  deleteOn?: string | null;
11032
11061
  createdAt: string | null;
11033
11062
  updatedAt: string | null;
@@ -11123,6 +11152,7 @@ type $OpenApiTs = {
11123
11152
  mastodonServerId?: string | null;
11124
11153
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
11125
11154
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
11155
+ disconnectedCheckTryAt?: string | null;
11126
11156
  deleteOn?: string | null;
11127
11157
  createdAt: string | null;
11128
11158
  updatedAt: string | null;
@@ -11870,6 +11900,7 @@ type $OpenApiTs = {
11870
11900
  * If set to true, TikTok will automatically add music to the photos.
11871
11901
  */
11872
11902
  autoAddMusic?: boolean | null;
11903
+ autoScale?: boolean | null;
11873
11904
  /**
11874
11905
  * If set to true, upload post as draft.
11875
11906
  */
@@ -12353,6 +12384,7 @@ type $OpenApiTs = {
12353
12384
  mastodonServerId?: string | null;
12354
12385
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
12355
12386
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
12387
+ disconnectedCheckTryAt?: string | null;
12356
12388
  deleteOn?: string | null;
12357
12389
  createdAt: string | null;
12358
12390
  updatedAt: string | null;
@@ -12562,6 +12594,7 @@ type $OpenApiTs = {
12562
12594
  * If set to true, TikTok will automatically add music to the photos.
12563
12595
  */
12564
12596
  autoAddMusic?: boolean | null;
12597
+ autoScale?: boolean | null;
12565
12598
  /**
12566
12599
  * If set to true, upload post as draft.
12567
12600
  */
@@ -13183,6 +13216,7 @@ type $OpenApiTs = {
13183
13216
  * If set to true, TikTok will automatically add music to the photos.
13184
13217
  */
13185
13218
  autoAddMusic?: boolean | null;
13219
+ autoScale?: boolean | null;
13186
13220
  /**
13187
13221
  * If set to true, upload post as draft.
13188
13222
  */
@@ -13807,6 +13841,7 @@ type $OpenApiTs = {
13807
13841
  * If set to true, TikTok will automatically add music to the photos.
13808
13842
  */
13809
13843
  autoAddMusic?: boolean | null;
13844
+ autoScale?: boolean | null;
13810
13845
  /**
13811
13846
  * If set to true, upload post as draft.
13812
13847
  */
@@ -14290,6 +14325,7 @@ type $OpenApiTs = {
14290
14325
  mastodonServerId?: string | null;
14291
14326
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
14292
14327
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
14328
+ disconnectedCheckTryAt?: string | null;
14293
14329
  deleteOn?: string | null;
14294
14330
  createdAt: string | null;
14295
14331
  updatedAt: string | null;
@@ -14501,6 +14537,7 @@ type $OpenApiTs = {
14501
14537
  * If set to true, TikTok will automatically add music to the photos.
14502
14538
  */
14503
14539
  autoAddMusic?: boolean | null;
14540
+ autoScale?: boolean | null;
14504
14541
  /**
14505
14542
  * If set to true, upload post as draft.
14506
14543
  */
@@ -15124,6 +15161,7 @@ type $OpenApiTs = {
15124
15161
  * If set to true, TikTok will automatically add music to the photos.
15125
15162
  */
15126
15163
  autoAddMusic?: boolean | null;
15164
+ autoScale?: boolean | null;
15127
15165
  /**
15128
15166
  * If set to true, upload post as draft.
15129
15167
  */
@@ -15633,6 +15671,7 @@ type $OpenApiTs = {
15633
15671
  mastodonServerId?: string | null;
15634
15672
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
15635
15673
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
15674
+ disconnectedCheckTryAt?: string | null;
15636
15675
  deleteOn?: string | null;
15637
15676
  createdAt: string | null;
15638
15677
  updatedAt: string | null;
@@ -15861,6 +15900,7 @@ type $OpenApiTs = {
15861
15900
  * If set to true, TikTok will automatically add music to the photos.
15862
15901
  */
15863
15902
  autoAddMusic?: boolean | null;
15903
+ autoScale?: boolean | null;
15864
15904
  /**
15865
15905
  * If set to true, upload post as draft.
15866
15906
  */
@@ -16410,6 +16450,7 @@ type $OpenApiTs = {
16410
16450
  mastodonServerId?: string | null;
16411
16451
  instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
16412
16452
  twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
16453
+ disconnectedCheckTryAt?: string | null;
16413
16454
  deleteOn?: string | null;
16414
16455
  createdAt: string | null;
16415
16456
  updatedAt: string | null;
@@ -16631,6 +16672,7 @@ type $OpenApiTs = {
16631
16672
  * If set to true, TikTok will automatically add music to the photos.
16632
16673
  */
16633
16674
  autoAddMusic?: boolean | null;
16675
+ autoScale?: boolean | null;
16634
16676
  /**
16635
16677
  * If set to true, upload post as draft.
16636
16678
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bundlesocial",
3
- "version": "2.41.0",
3
+ "version": "2.42.1",
4
4
  "description": "Node.js library for the bundle.social API",
5
5
  "keywords": [
6
6
  "bundle.social",