bundlesocial 2.58.0 → 2.60.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
@@ -1044,7 +1044,7 @@ type SocialAccountCreatePortalLinkData = {
1044
1044
  hideUserName?: boolean;
1045
1045
  hideLanguageSwitcher?: boolean;
1046
1046
  showModalOnConnectSuccess?: boolean;
1047
- language?: 'en' | 'pl' | 'fr' | 'hi' | 'sv' | 'de' | 'es' | 'it' | 'nl' | 'pt' | 'ru' | 'tr' | 'zh';
1047
+ language?: 'en' | 'pl' | 'fr' | 'hi' | 'sv' | 'de' | 'es' | 'it' | 'nl' | 'pt' | 'ru' | 'tr' | 'zh' | 'da' | 'th' | 'ko' | 'he';
1048
1048
  maxSocialAccountsConnected?: number;
1049
1049
  };
1050
1050
  };
@@ -1561,6 +1561,10 @@ type PostGetByReferenceKeyResponse = {
1561
1561
  text?: string | null;
1562
1562
  uploadIds?: Array<(string)> | null;
1563
1563
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
1564
+ /**
1565
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
1566
+ */
1567
+ isAiGenerated?: boolean | null;
1564
1568
  } | null;
1565
1569
  PINTEREST?: {
1566
1570
  text?: string | null;
@@ -1587,6 +1591,10 @@ type PostGetByReferenceKeyResponse = {
1587
1591
  * The dominant color of the image. This is used to display the image before it's loaded.
1588
1592
  */
1589
1593
  dominantColor?: string | null;
1594
+ /**
1595
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
1596
+ */
1597
+ isAiGenerated?: boolean | null;
1590
1598
  } | null;
1591
1599
  FACEBOOK?: {
1592
1600
  type?: 'POST' | 'REEL' | 'STORY';
@@ -1657,6 +1665,14 @@ type PostGetByReferenceKeyResponse = {
1657
1665
  trialParams?: {
1658
1666
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
1659
1667
  } | null;
1668
+ /**
1669
+ * Enables the native "Paid partnership" disclosure label.
1670
+ */
1671
+ isPaidPartnership?: boolean | null;
1672
+ /**
1673
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
1674
+ */
1675
+ brandedContentSponsors?: Array<(string)> | null;
1660
1676
  /**
1661
1677
  * Information about the Instagram audio asset used for Reels publishing.
1662
1678
  */
@@ -1674,6 +1690,10 @@ type PostGetByReferenceKeyResponse = {
1674
1690
  */
1675
1691
  videoOriginalSoundVolume?: number | null;
1676
1692
  } | null;
1693
+ /**
1694
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
1695
+ */
1696
+ isAiGenerated?: boolean | null;
1677
1697
  } | null;
1678
1698
  THREADS?: {
1679
1699
  text?: string | null;
@@ -2316,6 +2336,10 @@ type PostGetResponse = {
2316
2336
  text?: string | null;
2317
2337
  uploadIds?: Array<(string)> | null;
2318
2338
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
2339
+ /**
2340
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
2341
+ */
2342
+ isAiGenerated?: boolean | null;
2319
2343
  } | null;
2320
2344
  PINTEREST?: {
2321
2345
  text?: string | null;
@@ -2342,6 +2366,10 @@ type PostGetResponse = {
2342
2366
  * The dominant color of the image. This is used to display the image before it's loaded.
2343
2367
  */
2344
2368
  dominantColor?: string | null;
2369
+ /**
2370
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
2371
+ */
2372
+ isAiGenerated?: boolean | null;
2345
2373
  } | null;
2346
2374
  FACEBOOK?: {
2347
2375
  type?: 'POST' | 'REEL' | 'STORY';
@@ -2412,6 +2440,14 @@ type PostGetResponse = {
2412
2440
  trialParams?: {
2413
2441
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
2414
2442
  } | null;
2443
+ /**
2444
+ * Enables the native "Paid partnership" disclosure label.
2445
+ */
2446
+ isPaidPartnership?: boolean | null;
2447
+ /**
2448
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
2449
+ */
2450
+ brandedContentSponsors?: Array<(string)> | null;
2415
2451
  /**
2416
2452
  * Information about the Instagram audio asset used for Reels publishing.
2417
2453
  */
@@ -2429,6 +2465,10 @@ type PostGetResponse = {
2429
2465
  */
2430
2466
  videoOriginalSoundVolume?: number | null;
2431
2467
  } | null;
2468
+ /**
2469
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
2470
+ */
2471
+ isAiGenerated?: boolean | null;
2432
2472
  } | null;
2433
2473
  THREADS?: {
2434
2474
  text?: string | null;
@@ -3070,6 +3110,10 @@ type PostUpdateData = {
3070
3110
  text?: string | null;
3071
3111
  uploadIds?: Array<(string)> | null;
3072
3112
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
3113
+ /**
3114
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
3115
+ */
3116
+ isAiGenerated?: boolean | null;
3073
3117
  } | null;
3074
3118
  PINTEREST?: {
3075
3119
  text?: string | null;
@@ -3096,6 +3140,10 @@ type PostUpdateData = {
3096
3140
  * The dominant color of the image. This is used to display the image before it's loaded.
3097
3141
  */
3098
3142
  dominantColor?: string | null;
3143
+ /**
3144
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
3145
+ */
3146
+ isAiGenerated?: boolean | null;
3099
3147
  } | null;
3100
3148
  FACEBOOK?: {
3101
3149
  type?: 'POST' | 'REEL' | 'STORY';
@@ -3166,6 +3214,14 @@ type PostUpdateData = {
3166
3214
  trialParams?: {
3167
3215
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
3168
3216
  } | null;
3217
+ /**
3218
+ * Enables the native "Paid partnership" disclosure label.
3219
+ */
3220
+ isPaidPartnership?: boolean | null;
3221
+ /**
3222
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
3223
+ */
3224
+ brandedContentSponsors?: Array<(string)> | null;
3169
3225
  /**
3170
3226
  * Information about the Instagram audio asset used for Reels publishing.
3171
3227
  */
@@ -3183,6 +3239,10 @@ type PostUpdateData = {
3183
3239
  */
3184
3240
  videoOriginalSoundVolume?: number | null;
3185
3241
  } | null;
3242
+ /**
3243
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
3244
+ */
3245
+ isAiGenerated?: boolean | null;
3186
3246
  } | null;
3187
3247
  THREADS?: {
3188
3248
  text?: string | null;
@@ -3479,6 +3539,10 @@ type PostUpdateResponse = {
3479
3539
  text?: string | null;
3480
3540
  uploadIds?: Array<(string)> | null;
3481
3541
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
3542
+ /**
3543
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
3544
+ */
3545
+ isAiGenerated?: boolean | null;
3482
3546
  } | null;
3483
3547
  PINTEREST?: {
3484
3548
  text?: string | null;
@@ -3505,6 +3569,10 @@ type PostUpdateResponse = {
3505
3569
  * The dominant color of the image. This is used to display the image before it's loaded.
3506
3570
  */
3507
3571
  dominantColor?: string | null;
3572
+ /**
3573
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
3574
+ */
3575
+ isAiGenerated?: boolean | null;
3508
3576
  } | null;
3509
3577
  FACEBOOK?: {
3510
3578
  type?: 'POST' | 'REEL' | 'STORY';
@@ -3575,6 +3643,14 @@ type PostUpdateResponse = {
3575
3643
  trialParams?: {
3576
3644
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
3577
3645
  } | null;
3646
+ /**
3647
+ * Enables the native "Paid partnership" disclosure label.
3648
+ */
3649
+ isPaidPartnership?: boolean | null;
3650
+ /**
3651
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
3652
+ */
3653
+ brandedContentSponsors?: Array<(string)> | null;
3578
3654
  /**
3579
3655
  * Information about the Instagram audio asset used for Reels publishing.
3580
3656
  */
@@ -3592,6 +3668,10 @@ type PostUpdateResponse = {
3592
3668
  */
3593
3669
  videoOriginalSoundVolume?: number | null;
3594
3670
  } | null;
3671
+ /**
3672
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
3673
+ */
3674
+ isAiGenerated?: boolean | null;
3595
3675
  } | null;
3596
3676
  THREADS?: {
3597
3677
  text?: string | null;
@@ -4158,6 +4238,10 @@ type PostDeleteResponse = {
4158
4238
  text?: string | null;
4159
4239
  uploadIds?: Array<(string)> | null;
4160
4240
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
4241
+ /**
4242
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
4243
+ */
4244
+ isAiGenerated?: boolean | null;
4161
4245
  } | null;
4162
4246
  PINTEREST?: {
4163
4247
  text?: string | null;
@@ -4184,6 +4268,10 @@ type PostDeleteResponse = {
4184
4268
  * The dominant color of the image. This is used to display the image before it's loaded.
4185
4269
  */
4186
4270
  dominantColor?: string | null;
4271
+ /**
4272
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
4273
+ */
4274
+ isAiGenerated?: boolean | null;
4187
4275
  } | null;
4188
4276
  FACEBOOK?: {
4189
4277
  type?: 'POST' | 'REEL' | 'STORY';
@@ -4254,6 +4342,14 @@ type PostDeleteResponse = {
4254
4342
  trialParams?: {
4255
4343
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
4256
4344
  } | null;
4345
+ /**
4346
+ * Enables the native "Paid partnership" disclosure label.
4347
+ */
4348
+ isPaidPartnership?: boolean | null;
4349
+ /**
4350
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
4351
+ */
4352
+ brandedContentSponsors?: Array<(string)> | null;
4257
4353
  /**
4258
4354
  * Information about the Instagram audio asset used for Reels publishing.
4259
4355
  */
@@ -4271,6 +4367,10 @@ type PostDeleteResponse = {
4271
4367
  */
4272
4368
  videoOriginalSoundVolume?: number | null;
4273
4369
  } | null;
4370
+ /**
4371
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
4372
+ */
4373
+ isAiGenerated?: boolean | null;
4274
4374
  } | null;
4275
4375
  THREADS?: {
4276
4376
  text?: string | null;
@@ -4847,6 +4947,10 @@ type PostGetListResponse = {
4847
4947
  text?: string | null;
4848
4948
  uploadIds?: Array<(string)> | null;
4849
4949
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
4950
+ /**
4951
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
4952
+ */
4953
+ isAiGenerated?: boolean | null;
4850
4954
  } | null;
4851
4955
  PINTEREST?: {
4852
4956
  text?: string | null;
@@ -4873,6 +4977,10 @@ type PostGetListResponse = {
4873
4977
  * The dominant color of the image. This is used to display the image before it's loaded.
4874
4978
  */
4875
4979
  dominantColor?: string | null;
4980
+ /**
4981
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
4982
+ */
4983
+ isAiGenerated?: boolean | null;
4876
4984
  } | null;
4877
4985
  FACEBOOK?: {
4878
4986
  type?: 'POST' | 'REEL' | 'STORY';
@@ -4943,6 +5051,14 @@ type PostGetListResponse = {
4943
5051
  trialParams?: {
4944
5052
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
4945
5053
  } | null;
5054
+ /**
5055
+ * Enables the native "Paid partnership" disclosure label.
5056
+ */
5057
+ isPaidPartnership?: boolean | null;
5058
+ /**
5059
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
5060
+ */
5061
+ brandedContentSponsors?: Array<(string)> | null;
4946
5062
  /**
4947
5063
  * Information about the Instagram audio asset used for Reels publishing.
4948
5064
  */
@@ -4960,6 +5076,10 @@ type PostGetListResponse = {
4960
5076
  */
4961
5077
  videoOriginalSoundVolume?: number | null;
4962
5078
  } | null;
5079
+ /**
5080
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
5081
+ */
5082
+ isAiGenerated?: boolean | null;
4963
5083
  } | null;
4964
5084
  THREADS?: {
4965
5085
  text?: string | null;
@@ -5603,6 +5723,10 @@ type PostCreateData = {
5603
5723
  text?: string | null;
5604
5724
  uploadIds?: Array<(string)> | null;
5605
5725
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
5726
+ /**
5727
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
5728
+ */
5729
+ isAiGenerated?: boolean | null;
5606
5730
  } | null;
5607
5731
  PINTEREST?: {
5608
5732
  text?: string | null;
@@ -5629,6 +5753,10 @@ type PostCreateData = {
5629
5753
  * The dominant color of the image. This is used to display the image before it's loaded.
5630
5754
  */
5631
5755
  dominantColor?: string | null;
5756
+ /**
5757
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
5758
+ */
5759
+ isAiGenerated?: boolean | null;
5632
5760
  } | null;
5633
5761
  FACEBOOK?: {
5634
5762
  type?: 'POST' | 'REEL' | 'STORY';
@@ -5699,6 +5827,14 @@ type PostCreateData = {
5699
5827
  trialParams?: {
5700
5828
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
5701
5829
  } | null;
5830
+ /**
5831
+ * Enables the native "Paid partnership" disclosure label.
5832
+ */
5833
+ isPaidPartnership?: boolean | null;
5834
+ /**
5835
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
5836
+ */
5837
+ brandedContentSponsors?: Array<(string)> | null;
5702
5838
  /**
5703
5839
  * Information about the Instagram audio asset used for Reels publishing.
5704
5840
  */
@@ -5716,6 +5852,10 @@ type PostCreateData = {
5716
5852
  */
5717
5853
  videoOriginalSoundVolume?: number | null;
5718
5854
  } | null;
5855
+ /**
5856
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
5857
+ */
5858
+ isAiGenerated?: boolean | null;
5719
5859
  } | null;
5720
5860
  THREADS?: {
5721
5861
  text?: string | null;
@@ -6012,6 +6152,10 @@ type PostCreateResponse = {
6012
6152
  text?: string | null;
6013
6153
  uploadIds?: Array<(string)> | null;
6014
6154
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
6155
+ /**
6156
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
6157
+ */
6158
+ isAiGenerated?: boolean | null;
6015
6159
  } | null;
6016
6160
  PINTEREST?: {
6017
6161
  text?: string | null;
@@ -6038,6 +6182,10 @@ type PostCreateResponse = {
6038
6182
  * The dominant color of the image. This is used to display the image before it's loaded.
6039
6183
  */
6040
6184
  dominantColor?: string | null;
6185
+ /**
6186
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
6187
+ */
6188
+ isAiGenerated?: boolean | null;
6041
6189
  } | null;
6042
6190
  FACEBOOK?: {
6043
6191
  type?: 'POST' | 'REEL' | 'STORY';
@@ -6108,6 +6256,14 @@ type PostCreateResponse = {
6108
6256
  trialParams?: {
6109
6257
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
6110
6258
  } | null;
6259
+ /**
6260
+ * Enables the native "Paid partnership" disclosure label.
6261
+ */
6262
+ isPaidPartnership?: boolean | null;
6263
+ /**
6264
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
6265
+ */
6266
+ brandedContentSponsors?: Array<(string)> | null;
6111
6267
  /**
6112
6268
  * Information about the Instagram audio asset used for Reels publishing.
6113
6269
  */
@@ -6125,6 +6281,10 @@ type PostCreateResponse = {
6125
6281
  */
6126
6282
  videoOriginalSoundVolume?: number | null;
6127
6283
  } | null;
6284
+ /**
6285
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
6286
+ */
6287
+ isAiGenerated?: boolean | null;
6128
6288
  } | null;
6129
6289
  THREADS?: {
6130
6290
  text?: string | null;
@@ -6691,6 +6851,10 @@ type PostRetryResponse = {
6691
6851
  text?: string | null;
6692
6852
  uploadIds?: Array<(string)> | null;
6693
6853
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
6854
+ /**
6855
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
6856
+ */
6857
+ isAiGenerated?: boolean | null;
6694
6858
  } | null;
6695
6859
  PINTEREST?: {
6696
6860
  text?: string | null;
@@ -6717,6 +6881,10 @@ type PostRetryResponse = {
6717
6881
  * The dominant color of the image. This is used to display the image before it's loaded.
6718
6882
  */
6719
6883
  dominantColor?: string | null;
6884
+ /**
6885
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
6886
+ */
6887
+ isAiGenerated?: boolean | null;
6720
6888
  } | null;
6721
6889
  FACEBOOK?: {
6722
6890
  type?: 'POST' | 'REEL' | 'STORY';
@@ -6787,6 +6955,14 @@ type PostRetryResponse = {
6787
6955
  trialParams?: {
6788
6956
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
6789
6957
  } | null;
6958
+ /**
6959
+ * Enables the native "Paid partnership" disclosure label.
6960
+ */
6961
+ isPaidPartnership?: boolean | null;
6962
+ /**
6963
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
6964
+ */
6965
+ brandedContentSponsors?: Array<(string)> | null;
6790
6966
  /**
6791
6967
  * Information about the Instagram audio asset used for Reels publishing.
6792
6968
  */
@@ -6804,6 +6980,10 @@ type PostRetryResponse = {
6804
6980
  */
6805
6981
  videoOriginalSoundVolume?: number | null;
6806
6982
  } | null;
6983
+ /**
6984
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
6985
+ */
6986
+ isAiGenerated?: boolean | null;
6807
6987
  } | null;
6808
6988
  THREADS?: {
6809
6989
  text?: string | null;
@@ -7437,6 +7617,10 @@ type AnalyticsGetPostAnalyticsResponse = {
7437
7617
  text?: string | null;
7438
7618
  uploadIds?: Array<(string)> | null;
7439
7619
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
7620
+ /**
7621
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
7622
+ */
7623
+ isAiGenerated?: boolean | null;
7440
7624
  } | null;
7441
7625
  PINTEREST?: {
7442
7626
  text?: string | null;
@@ -7463,6 +7647,10 @@ type AnalyticsGetPostAnalyticsResponse = {
7463
7647
  * The dominant color of the image. This is used to display the image before it's loaded.
7464
7648
  */
7465
7649
  dominantColor?: string | null;
7650
+ /**
7651
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
7652
+ */
7653
+ isAiGenerated?: boolean | null;
7466
7654
  } | null;
7467
7655
  FACEBOOK?: {
7468
7656
  type?: 'POST' | 'REEL' | 'STORY';
@@ -7533,6 +7721,14 @@ type AnalyticsGetPostAnalyticsResponse = {
7533
7721
  trialParams?: {
7534
7722
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
7535
7723
  } | null;
7724
+ /**
7725
+ * Enables the native "Paid partnership" disclosure label.
7726
+ */
7727
+ isPaidPartnership?: boolean | null;
7728
+ /**
7729
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
7730
+ */
7731
+ brandedContentSponsors?: Array<(string)> | null;
7536
7732
  /**
7537
7733
  * Information about the Instagram audio asset used for Reels publishing.
7538
7734
  */
@@ -7550,6 +7746,10 @@ type AnalyticsGetPostAnalyticsResponse = {
7550
7746
  */
7551
7747
  videoOriginalSoundVolume?: number | null;
7552
7748
  } | null;
7749
+ /**
7750
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
7751
+ */
7752
+ isAiGenerated?: boolean | null;
7553
7753
  } | null;
7554
7754
  THREADS?: {
7555
7755
  text?: string | null;
@@ -8216,6 +8416,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
8216
8416
  text?: string | null;
8217
8417
  uploadIds?: Array<(string)> | null;
8218
8418
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
8419
+ /**
8420
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
8421
+ */
8422
+ isAiGenerated?: boolean | null;
8219
8423
  } | null;
8220
8424
  PINTEREST?: {
8221
8425
  text?: string | null;
@@ -8242,6 +8446,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
8242
8446
  * The dominant color of the image. This is used to display the image before it's loaded.
8243
8447
  */
8244
8448
  dominantColor?: string | null;
8449
+ /**
8450
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
8451
+ */
8452
+ isAiGenerated?: boolean | null;
8245
8453
  } | null;
8246
8454
  FACEBOOK?: {
8247
8455
  type?: 'POST' | 'REEL' | 'STORY';
@@ -8312,6 +8520,14 @@ type AnalyticsGetPostAnalyticsRawResponse = {
8312
8520
  trialParams?: {
8313
8521
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
8314
8522
  } | null;
8523
+ /**
8524
+ * Enables the native "Paid partnership" disclosure label.
8525
+ */
8526
+ isPaidPartnership?: boolean | null;
8527
+ /**
8528
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
8529
+ */
8530
+ brandedContentSponsors?: Array<(string)> | null;
8315
8531
  /**
8316
8532
  * Information about the Instagram audio asset used for Reels publishing.
8317
8533
  */
@@ -8329,6 +8545,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
8329
8545
  */
8330
8546
  videoOriginalSoundVolume?: number | null;
8331
8547
  } | null;
8548
+ /**
8549
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
8550
+ */
8551
+ isAiGenerated?: boolean | null;
8332
8552
  } | null;
8333
8553
  THREADS?: {
8334
8554
  text?: string | null;
@@ -16159,6 +16379,10 @@ type $OpenApiTs = {
16159
16379
  text?: string | null;
16160
16380
  uploadIds?: Array<(string)> | null;
16161
16381
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
16382
+ /**
16383
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
16384
+ */
16385
+ isAiGenerated?: boolean | null;
16162
16386
  } | null;
16163
16387
  PINTEREST?: {
16164
16388
  text?: string | null;
@@ -16185,6 +16409,10 @@ type $OpenApiTs = {
16185
16409
  * The dominant color of the image. This is used to display the image before it's loaded.
16186
16410
  */
16187
16411
  dominantColor?: string | null;
16412
+ /**
16413
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
16414
+ */
16415
+ isAiGenerated?: boolean | null;
16188
16416
  } | null;
16189
16417
  FACEBOOK?: {
16190
16418
  type?: 'POST' | 'REEL' | 'STORY';
@@ -16255,6 +16483,14 @@ type $OpenApiTs = {
16255
16483
  trialParams?: {
16256
16484
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
16257
16485
  } | null;
16486
+ /**
16487
+ * Enables the native "Paid partnership" disclosure label.
16488
+ */
16489
+ isPaidPartnership?: boolean | null;
16490
+ /**
16491
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
16492
+ */
16493
+ brandedContentSponsors?: Array<(string)> | null;
16258
16494
  /**
16259
16495
  * Information about the Instagram audio asset used for Reels publishing.
16260
16496
  */
@@ -16272,6 +16508,10 @@ type $OpenApiTs = {
16272
16508
  */
16273
16509
  videoOriginalSoundVolume?: number | null;
16274
16510
  } | null;
16511
+ /**
16512
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
16513
+ */
16514
+ isAiGenerated?: boolean | null;
16275
16515
  } | null;
16276
16516
  THREADS?: {
16277
16517
  text?: string | null;
@@ -16968,6 +17208,10 @@ type $OpenApiTs = {
16968
17208
  text?: string | null;
16969
17209
  uploadIds?: Array<(string)> | null;
16970
17210
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
17211
+ /**
17212
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
17213
+ */
17214
+ isAiGenerated?: boolean | null;
16971
17215
  } | null;
16972
17216
  PINTEREST?: {
16973
17217
  text?: string | null;
@@ -16994,6 +17238,10 @@ type $OpenApiTs = {
16994
17238
  * The dominant color of the image. This is used to display the image before it's loaded.
16995
17239
  */
16996
17240
  dominantColor?: string | null;
17241
+ /**
17242
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
17243
+ */
17244
+ isAiGenerated?: boolean | null;
16997
17245
  } | null;
16998
17246
  FACEBOOK?: {
16999
17247
  type?: 'POST' | 'REEL' | 'STORY';
@@ -17064,6 +17312,14 @@ type $OpenApiTs = {
17064
17312
  trialParams?: {
17065
17313
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
17066
17314
  } | null;
17315
+ /**
17316
+ * Enables the native "Paid partnership" disclosure label.
17317
+ */
17318
+ isPaidPartnership?: boolean | null;
17319
+ /**
17320
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
17321
+ */
17322
+ brandedContentSponsors?: Array<(string)> | null;
17067
17323
  /**
17068
17324
  * Information about the Instagram audio asset used for Reels publishing.
17069
17325
  */
@@ -17081,6 +17337,10 @@ type $OpenApiTs = {
17081
17337
  */
17082
17338
  videoOriginalSoundVolume?: number | null;
17083
17339
  } | null;
17340
+ /**
17341
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
17342
+ */
17343
+ isAiGenerated?: boolean | null;
17084
17344
  } | null;
17085
17345
  THREADS?: {
17086
17346
  text?: string | null;
@@ -17775,6 +18035,10 @@ type $OpenApiTs = {
17775
18035
  text?: string | null;
17776
18036
  uploadIds?: Array<(string)> | null;
17777
18037
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
18038
+ /**
18039
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
18040
+ */
18041
+ isAiGenerated?: boolean | null;
17778
18042
  } | null;
17779
18043
  PINTEREST?: {
17780
18044
  text?: string | null;
@@ -17801,6 +18065,10 @@ type $OpenApiTs = {
17801
18065
  * The dominant color of the image. This is used to display the image before it's loaded.
17802
18066
  */
17803
18067
  dominantColor?: string | null;
18068
+ /**
18069
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
18070
+ */
18071
+ isAiGenerated?: boolean | null;
17804
18072
  } | null;
17805
18073
  FACEBOOK?: {
17806
18074
  type?: 'POST' | 'REEL' | 'STORY';
@@ -17871,6 +18139,14 @@ type $OpenApiTs = {
17871
18139
  trialParams?: {
17872
18140
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
17873
18141
  } | null;
18142
+ /**
18143
+ * Enables the native "Paid partnership" disclosure label.
18144
+ */
18145
+ isPaidPartnership?: boolean | null;
18146
+ /**
18147
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
18148
+ */
18149
+ brandedContentSponsors?: Array<(string)> | null;
17874
18150
  /**
17875
18151
  * Information about the Instagram audio asset used for Reels publishing.
17876
18152
  */
@@ -17888,6 +18164,10 @@ type $OpenApiTs = {
17888
18164
  */
17889
18165
  videoOriginalSoundVolume?: number | null;
17890
18166
  } | null;
18167
+ /**
18168
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
18169
+ */
18170
+ isAiGenerated?: boolean | null;
17891
18171
  } | null;
17892
18172
  THREADS?: {
17893
18173
  text?: string | null;
@@ -18513,6 +18793,10 @@ type $OpenApiTs = {
18513
18793
  text?: string | null;
18514
18794
  uploadIds?: Array<(string)> | null;
18515
18795
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
18796
+ /**
18797
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
18798
+ */
18799
+ isAiGenerated?: boolean | null;
18516
18800
  } | null;
18517
18801
  PINTEREST?: {
18518
18802
  text?: string | null;
@@ -18539,6 +18823,10 @@ type $OpenApiTs = {
18539
18823
  * The dominant color of the image. This is used to display the image before it's loaded.
18540
18824
  */
18541
18825
  dominantColor?: string | null;
18826
+ /**
18827
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
18828
+ */
18829
+ isAiGenerated?: boolean | null;
18542
18830
  } | null;
18543
18831
  FACEBOOK?: {
18544
18832
  type?: 'POST' | 'REEL' | 'STORY';
@@ -18609,6 +18897,14 @@ type $OpenApiTs = {
18609
18897
  trialParams?: {
18610
18898
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
18611
18899
  } | null;
18900
+ /**
18901
+ * Enables the native "Paid partnership" disclosure label.
18902
+ */
18903
+ isPaidPartnership?: boolean | null;
18904
+ /**
18905
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
18906
+ */
18907
+ brandedContentSponsors?: Array<(string)> | null;
18612
18908
  /**
18613
18909
  * Information about the Instagram audio asset used for Reels publishing.
18614
18910
  */
@@ -18626,6 +18922,10 @@ type $OpenApiTs = {
18626
18922
  */
18627
18923
  videoOriginalSoundVolume?: number | null;
18628
18924
  } | null;
18925
+ /**
18926
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
18927
+ */
18928
+ isAiGenerated?: boolean | null;
18629
18929
  } | null;
18630
18930
  THREADS?: {
18631
18931
  text?: string | null;
@@ -19247,6 +19547,10 @@ type $OpenApiTs = {
19247
19547
  text?: string | null;
19248
19548
  uploadIds?: Array<(string)> | null;
19249
19549
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
19550
+ /**
19551
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
19552
+ */
19553
+ isAiGenerated?: boolean | null;
19250
19554
  } | null;
19251
19555
  PINTEREST?: {
19252
19556
  text?: string | null;
@@ -19273,6 +19577,10 @@ type $OpenApiTs = {
19273
19577
  * The dominant color of the image. This is used to display the image before it's loaded.
19274
19578
  */
19275
19579
  dominantColor?: string | null;
19580
+ /**
19581
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
19582
+ */
19583
+ isAiGenerated?: boolean | null;
19276
19584
  } | null;
19277
19585
  FACEBOOK?: {
19278
19586
  type?: 'POST' | 'REEL' | 'STORY';
@@ -19343,6 +19651,14 @@ type $OpenApiTs = {
19343
19651
  trialParams?: {
19344
19652
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
19345
19653
  } | null;
19654
+ /**
19655
+ * Enables the native "Paid partnership" disclosure label.
19656
+ */
19657
+ isPaidPartnership?: boolean | null;
19658
+ /**
19659
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
19660
+ */
19661
+ brandedContentSponsors?: Array<(string)> | null;
19346
19662
  /**
19347
19663
  * Information about the Instagram audio asset used for Reels publishing.
19348
19664
  */
@@ -19360,6 +19676,10 @@ type $OpenApiTs = {
19360
19676
  */
19361
19677
  videoOriginalSoundVolume?: number | null;
19362
19678
  } | null;
19679
+ /**
19680
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
19681
+ */
19682
+ isAiGenerated?: boolean | null;
19363
19683
  } | null;
19364
19684
  THREADS?: {
19365
19685
  text?: string | null;
@@ -20056,6 +20376,10 @@ type $OpenApiTs = {
20056
20376
  text?: string | null;
20057
20377
  uploadIds?: Array<(string)> | null;
20058
20378
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
20379
+ /**
20380
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
20381
+ */
20382
+ isAiGenerated?: boolean | null;
20059
20383
  } | null;
20060
20384
  PINTEREST?: {
20061
20385
  text?: string | null;
@@ -20082,6 +20406,10 @@ type $OpenApiTs = {
20082
20406
  * The dominant color of the image. This is used to display the image before it's loaded.
20083
20407
  */
20084
20408
  dominantColor?: string | null;
20409
+ /**
20410
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
20411
+ */
20412
+ isAiGenerated?: boolean | null;
20085
20413
  } | null;
20086
20414
  FACEBOOK?: {
20087
20415
  type?: 'POST' | 'REEL' | 'STORY';
@@ -20152,6 +20480,14 @@ type $OpenApiTs = {
20152
20480
  trialParams?: {
20153
20481
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
20154
20482
  } | null;
20483
+ /**
20484
+ * Enables the native "Paid partnership" disclosure label.
20485
+ */
20486
+ isPaidPartnership?: boolean | null;
20487
+ /**
20488
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
20489
+ */
20490
+ brandedContentSponsors?: Array<(string)> | null;
20155
20491
  /**
20156
20492
  * Information about the Instagram audio asset used for Reels publishing.
20157
20493
  */
@@ -20169,6 +20505,10 @@ type $OpenApiTs = {
20169
20505
  */
20170
20506
  videoOriginalSoundVolume?: number | null;
20171
20507
  } | null;
20508
+ /**
20509
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
20510
+ */
20511
+ isAiGenerated?: boolean | null;
20172
20512
  } | null;
20173
20513
  THREADS?: {
20174
20514
  text?: string | null;
@@ -20796,6 +21136,10 @@ type $OpenApiTs = {
20796
21136
  text?: string | null;
20797
21137
  uploadIds?: Array<(string)> | null;
20798
21138
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
21139
+ /**
21140
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
21141
+ */
21142
+ isAiGenerated?: boolean | null;
20799
21143
  } | null;
20800
21144
  PINTEREST?: {
20801
21145
  text?: string | null;
@@ -20822,6 +21166,10 @@ type $OpenApiTs = {
20822
21166
  * The dominant color of the image. This is used to display the image before it's loaded.
20823
21167
  */
20824
21168
  dominantColor?: string | null;
21169
+ /**
21170
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
21171
+ */
21172
+ isAiGenerated?: boolean | null;
20825
21173
  } | null;
20826
21174
  FACEBOOK?: {
20827
21175
  type?: 'POST' | 'REEL' | 'STORY';
@@ -20892,6 +21240,14 @@ type $OpenApiTs = {
20892
21240
  trialParams?: {
20893
21241
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
20894
21242
  } | null;
21243
+ /**
21244
+ * Enables the native "Paid partnership" disclosure label.
21245
+ */
21246
+ isPaidPartnership?: boolean | null;
21247
+ /**
21248
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
21249
+ */
21250
+ brandedContentSponsors?: Array<(string)> | null;
20895
21251
  /**
20896
21252
  * Information about the Instagram audio asset used for Reels publishing.
20897
21253
  */
@@ -20909,6 +21265,10 @@ type $OpenApiTs = {
20909
21265
  */
20910
21266
  videoOriginalSoundVolume?: number | null;
20911
21267
  } | null;
21268
+ /**
21269
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
21270
+ */
21271
+ isAiGenerated?: boolean | null;
20912
21272
  } | null;
20913
21273
  THREADS?: {
20914
21274
  text?: string | null;
@@ -21647,6 +22007,10 @@ type $OpenApiTs = {
21647
22007
  text?: string | null;
21648
22008
  uploadIds?: Array<(string)> | null;
21649
22009
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
22010
+ /**
22011
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
22012
+ */
22013
+ isAiGenerated?: boolean | null;
21650
22014
  } | null;
21651
22015
  PINTEREST?: {
21652
22016
  text?: string | null;
@@ -21673,6 +22037,10 @@ type $OpenApiTs = {
21673
22037
  * The dominant color of the image. This is used to display the image before it's loaded.
21674
22038
  */
21675
22039
  dominantColor?: string | null;
22040
+ /**
22041
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
22042
+ */
22043
+ isAiGenerated?: boolean | null;
21676
22044
  } | null;
21677
22045
  FACEBOOK?: {
21678
22046
  type?: 'POST' | 'REEL' | 'STORY';
@@ -21743,6 +22111,14 @@ type $OpenApiTs = {
21743
22111
  trialParams?: {
21744
22112
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
21745
22113
  } | null;
22114
+ /**
22115
+ * Enables the native "Paid partnership" disclosure label.
22116
+ */
22117
+ isPaidPartnership?: boolean | null;
22118
+ /**
22119
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
22120
+ */
22121
+ brandedContentSponsors?: Array<(string)> | null;
21746
22122
  /**
21747
22123
  * Information about the Instagram audio asset used for Reels publishing.
21748
22124
  */
@@ -21760,6 +22136,10 @@ type $OpenApiTs = {
21760
22136
  */
21761
22137
  videoOriginalSoundVolume?: number | null;
21762
22138
  } | null;
22139
+ /**
22140
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
22141
+ */
22142
+ isAiGenerated?: boolean | null;
21763
22143
  } | null;
21764
22144
  THREADS?: {
21765
22145
  text?: string | null;
@@ -22531,6 +22911,10 @@ type $OpenApiTs = {
22531
22911
  text?: string | null;
22532
22912
  uploadIds?: Array<(string)> | null;
22533
22913
  replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
22914
+ /**
22915
+ * Set to true if the post contains AI-generated media. Adds X's 'made with AI' label.
22916
+ */
22917
+ isAiGenerated?: boolean | null;
22534
22918
  } | null;
22535
22919
  PINTEREST?: {
22536
22920
  text?: string | null;
@@ -22557,6 +22941,10 @@ type $OpenApiTs = {
22557
22941
  * The dominant color of the image. This is used to display the image before it's loaded.
22558
22942
  */
22559
22943
  dominantColor?: string | null;
22944
+ /**
22945
+ * Set to true if the Pin content was generated or modified by AI. Adds Pinterest's AI disclosure label.
22946
+ */
22947
+ isAiGenerated?: boolean | null;
22560
22948
  } | null;
22561
22949
  FACEBOOK?: {
22562
22950
  type?: 'POST' | 'REEL' | 'STORY';
@@ -22627,6 +23015,14 @@ type $OpenApiTs = {
22627
23015
  trialParams?: {
22628
23016
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
22629
23017
  } | null;
23018
+ /**
23019
+ * Enables the native "Paid partnership" disclosure label.
23020
+ */
23021
+ isPaidPartnership?: boolean | null;
23022
+ /**
23023
+ * Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
23024
+ */
23025
+ brandedContentSponsors?: Array<(string)> | null;
22630
23026
  /**
22631
23027
  * Information about the Instagram audio asset used for Reels publishing.
22632
23028
  */
@@ -22644,6 +23040,10 @@ type $OpenApiTs = {
22644
23040
  */
22645
23041
  videoOriginalSoundVolume?: number | null;
22646
23042
  } | null;
23043
+ /**
23044
+ * Set to true if the content was generated or modified by AI. Adds Instagram's AI content label.
23045
+ */
23046
+ isAiGenerated?: boolean | null;
22647
23047
  } | null;
22648
23048
  THREADS?: {
22649
23049
  text?: string | null;