bundlesocial 2.57.0 → 2.59.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 +626 -2
- package/dist/index.d.ts +626 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -786,7 +786,7 @@ type SocialAccountConnectData = {
|
|
|
786
786
|
*/
|
|
787
787
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM';
|
|
788
788
|
/**
|
|
789
|
-
* Facebook and Instagram
|
|
789
|
+
* Facebook and Instagram: include business_management, ads_management, ads_read scopes. YouTube: include the monetary analytics scope (enables revenue/monetization data).
|
|
790
790
|
*/
|
|
791
791
|
withBusinessScope?: boolean;
|
|
792
792
|
};
|
|
@@ -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
|
};
|
|
@@ -1657,6 +1657,14 @@ type PostGetByReferenceKeyResponse = {
|
|
|
1657
1657
|
trialParams?: {
|
|
1658
1658
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
1659
1659
|
} | null;
|
|
1660
|
+
/**
|
|
1661
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
1662
|
+
*/
|
|
1663
|
+
isPaidPartnership?: boolean | null;
|
|
1664
|
+
/**
|
|
1665
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
1666
|
+
*/
|
|
1667
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
1660
1668
|
/**
|
|
1661
1669
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
1662
1670
|
*/
|
|
@@ -1682,6 +1690,22 @@ type PostGetByReferenceKeyResponse = {
|
|
|
1682
1690
|
uploadId: string;
|
|
1683
1691
|
altText?: string | null;
|
|
1684
1692
|
}> | null;
|
|
1693
|
+
topicTag?: string | null;
|
|
1694
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
1695
|
+
linkAttachment?: string | null;
|
|
1696
|
+
poll?: {
|
|
1697
|
+
optionA: string;
|
|
1698
|
+
optionB: string;
|
|
1699
|
+
optionC?: string | null;
|
|
1700
|
+
optionD?: string | null;
|
|
1701
|
+
} | null;
|
|
1702
|
+
gif?: {
|
|
1703
|
+
gifId: string;
|
|
1704
|
+
provider?: 'GIPHY';
|
|
1705
|
+
} | null;
|
|
1706
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
1707
|
+
crosspostToInstagramStory?: boolean | null;
|
|
1708
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
1685
1709
|
} | null;
|
|
1686
1710
|
TIKTOK?: {
|
|
1687
1711
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -2114,6 +2138,10 @@ type PostGetByReferenceKeyResponse = {
|
|
|
2114
2138
|
id?: string | null;
|
|
2115
2139
|
permalink?: string | null;
|
|
2116
2140
|
thumbnail?: string | null;
|
|
2141
|
+
/**
|
|
2142
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
2143
|
+
*/
|
|
2144
|
+
creationId?: string | null;
|
|
2117
2145
|
} | null;
|
|
2118
2146
|
TIKTOK?: {
|
|
2119
2147
|
id?: string | null;
|
|
@@ -2160,6 +2188,10 @@ type PostGetByReferenceKeyResponse = {
|
|
|
2160
2188
|
THREADS?: {
|
|
2161
2189
|
id?: string | null;
|
|
2162
2190
|
permalink?: string | null;
|
|
2191
|
+
/**
|
|
2192
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
2193
|
+
*/
|
|
2194
|
+
creationId?: string | null;
|
|
2163
2195
|
} | null;
|
|
2164
2196
|
BLUESKY?: {
|
|
2165
2197
|
id?: string | null;
|
|
@@ -2388,6 +2420,14 @@ type PostGetResponse = {
|
|
|
2388
2420
|
trialParams?: {
|
|
2389
2421
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
2390
2422
|
} | null;
|
|
2423
|
+
/**
|
|
2424
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
2425
|
+
*/
|
|
2426
|
+
isPaidPartnership?: boolean | null;
|
|
2427
|
+
/**
|
|
2428
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
2429
|
+
*/
|
|
2430
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
2391
2431
|
/**
|
|
2392
2432
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
2393
2433
|
*/
|
|
@@ -2413,6 +2453,22 @@ type PostGetResponse = {
|
|
|
2413
2453
|
uploadId: string;
|
|
2414
2454
|
altText?: string | null;
|
|
2415
2455
|
}> | null;
|
|
2456
|
+
topicTag?: string | null;
|
|
2457
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
2458
|
+
linkAttachment?: string | null;
|
|
2459
|
+
poll?: {
|
|
2460
|
+
optionA: string;
|
|
2461
|
+
optionB: string;
|
|
2462
|
+
optionC?: string | null;
|
|
2463
|
+
optionD?: string | null;
|
|
2464
|
+
} | null;
|
|
2465
|
+
gif?: {
|
|
2466
|
+
gifId: string;
|
|
2467
|
+
provider?: 'GIPHY';
|
|
2468
|
+
} | null;
|
|
2469
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
2470
|
+
crosspostToInstagramStory?: boolean | null;
|
|
2471
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
2416
2472
|
} | null;
|
|
2417
2473
|
TIKTOK?: {
|
|
2418
2474
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -2845,6 +2901,10 @@ type PostGetResponse = {
|
|
|
2845
2901
|
id?: string | null;
|
|
2846
2902
|
permalink?: string | null;
|
|
2847
2903
|
thumbnail?: string | null;
|
|
2904
|
+
/**
|
|
2905
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
2906
|
+
*/
|
|
2907
|
+
creationId?: string | null;
|
|
2848
2908
|
} | null;
|
|
2849
2909
|
TIKTOK?: {
|
|
2850
2910
|
id?: string | null;
|
|
@@ -2891,6 +2951,10 @@ type PostGetResponse = {
|
|
|
2891
2951
|
THREADS?: {
|
|
2892
2952
|
id?: string | null;
|
|
2893
2953
|
permalink?: string | null;
|
|
2954
|
+
/**
|
|
2955
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
2956
|
+
*/
|
|
2957
|
+
creationId?: string | null;
|
|
2894
2958
|
} | null;
|
|
2895
2959
|
BLUESKY?: {
|
|
2896
2960
|
id?: string | null;
|
|
@@ -3118,6 +3182,14 @@ type PostUpdateData = {
|
|
|
3118
3182
|
trialParams?: {
|
|
3119
3183
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
3120
3184
|
} | null;
|
|
3185
|
+
/**
|
|
3186
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
3187
|
+
*/
|
|
3188
|
+
isPaidPartnership?: boolean | null;
|
|
3189
|
+
/**
|
|
3190
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
3191
|
+
*/
|
|
3192
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
3121
3193
|
/**
|
|
3122
3194
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
3123
3195
|
*/
|
|
@@ -3143,6 +3215,22 @@ type PostUpdateData = {
|
|
|
3143
3215
|
uploadId: string;
|
|
3144
3216
|
altText?: string | null;
|
|
3145
3217
|
}> | null;
|
|
3218
|
+
topicTag?: string | null;
|
|
3219
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
3220
|
+
linkAttachment?: string | null;
|
|
3221
|
+
poll?: {
|
|
3222
|
+
optionA: string;
|
|
3223
|
+
optionB: string;
|
|
3224
|
+
optionC?: string | null;
|
|
3225
|
+
optionD?: string | null;
|
|
3226
|
+
} | null;
|
|
3227
|
+
gif?: {
|
|
3228
|
+
gifId: string;
|
|
3229
|
+
provider?: 'GIPHY';
|
|
3230
|
+
} | null;
|
|
3231
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
3232
|
+
crosspostToInstagramStory?: boolean | null;
|
|
3233
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
3146
3234
|
} | null;
|
|
3147
3235
|
TIKTOK?: {
|
|
3148
3236
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -3511,6 +3599,14 @@ type PostUpdateResponse = {
|
|
|
3511
3599
|
trialParams?: {
|
|
3512
3600
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
3513
3601
|
} | null;
|
|
3602
|
+
/**
|
|
3603
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
3604
|
+
*/
|
|
3605
|
+
isPaidPartnership?: boolean | null;
|
|
3606
|
+
/**
|
|
3607
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
3608
|
+
*/
|
|
3609
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
3514
3610
|
/**
|
|
3515
3611
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
3516
3612
|
*/
|
|
@@ -3536,6 +3632,22 @@ type PostUpdateResponse = {
|
|
|
3536
3632
|
uploadId: string;
|
|
3537
3633
|
altText?: string | null;
|
|
3538
3634
|
}> | null;
|
|
3635
|
+
topicTag?: string | null;
|
|
3636
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
3637
|
+
linkAttachment?: string | null;
|
|
3638
|
+
poll?: {
|
|
3639
|
+
optionA: string;
|
|
3640
|
+
optionB: string;
|
|
3641
|
+
optionC?: string | null;
|
|
3642
|
+
optionD?: string | null;
|
|
3643
|
+
} | null;
|
|
3644
|
+
gif?: {
|
|
3645
|
+
gifId: string;
|
|
3646
|
+
provider?: 'GIPHY';
|
|
3647
|
+
} | null;
|
|
3648
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
3649
|
+
crosspostToInstagramStory?: boolean | null;
|
|
3650
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
3539
3651
|
} | null;
|
|
3540
3652
|
TIKTOK?: {
|
|
3541
3653
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -3968,6 +4080,10 @@ type PostUpdateResponse = {
|
|
|
3968
4080
|
id?: string | null;
|
|
3969
4081
|
permalink?: string | null;
|
|
3970
4082
|
thumbnail?: string | null;
|
|
4083
|
+
/**
|
|
4084
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
4085
|
+
*/
|
|
4086
|
+
creationId?: string | null;
|
|
3971
4087
|
} | null;
|
|
3972
4088
|
TIKTOK?: {
|
|
3973
4089
|
id?: string | null;
|
|
@@ -4014,6 +4130,10 @@ type PostUpdateResponse = {
|
|
|
4014
4130
|
THREADS?: {
|
|
4015
4131
|
id?: string | null;
|
|
4016
4132
|
permalink?: string | null;
|
|
4133
|
+
/**
|
|
4134
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
4135
|
+
*/
|
|
4136
|
+
creationId?: string | null;
|
|
4017
4137
|
} | null;
|
|
4018
4138
|
BLUESKY?: {
|
|
4019
4139
|
id?: string | null;
|
|
@@ -4166,6 +4286,14 @@ type PostDeleteResponse = {
|
|
|
4166
4286
|
trialParams?: {
|
|
4167
4287
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
4168
4288
|
} | null;
|
|
4289
|
+
/**
|
|
4290
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
4291
|
+
*/
|
|
4292
|
+
isPaidPartnership?: boolean | null;
|
|
4293
|
+
/**
|
|
4294
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
4295
|
+
*/
|
|
4296
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
4169
4297
|
/**
|
|
4170
4298
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
4171
4299
|
*/
|
|
@@ -4191,6 +4319,22 @@ type PostDeleteResponse = {
|
|
|
4191
4319
|
uploadId: string;
|
|
4192
4320
|
altText?: string | null;
|
|
4193
4321
|
}> | null;
|
|
4322
|
+
topicTag?: string | null;
|
|
4323
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
4324
|
+
linkAttachment?: string | null;
|
|
4325
|
+
poll?: {
|
|
4326
|
+
optionA: string;
|
|
4327
|
+
optionB: string;
|
|
4328
|
+
optionC?: string | null;
|
|
4329
|
+
optionD?: string | null;
|
|
4330
|
+
} | null;
|
|
4331
|
+
gif?: {
|
|
4332
|
+
gifId: string;
|
|
4333
|
+
provider?: 'GIPHY';
|
|
4334
|
+
} | null;
|
|
4335
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
4336
|
+
crosspostToInstagramStory?: boolean | null;
|
|
4337
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
4194
4338
|
} | null;
|
|
4195
4339
|
TIKTOK?: {
|
|
4196
4340
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -4623,6 +4767,10 @@ type PostDeleteResponse = {
|
|
|
4623
4767
|
id?: string | null;
|
|
4624
4768
|
permalink?: string | null;
|
|
4625
4769
|
thumbnail?: string | null;
|
|
4770
|
+
/**
|
|
4771
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
4772
|
+
*/
|
|
4773
|
+
creationId?: string | null;
|
|
4626
4774
|
} | null;
|
|
4627
4775
|
TIKTOK?: {
|
|
4628
4776
|
id?: string | null;
|
|
@@ -4669,6 +4817,10 @@ type PostDeleteResponse = {
|
|
|
4669
4817
|
THREADS?: {
|
|
4670
4818
|
id?: string | null;
|
|
4671
4819
|
permalink?: string | null;
|
|
4820
|
+
/**
|
|
4821
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
4822
|
+
*/
|
|
4823
|
+
creationId?: string | null;
|
|
4672
4824
|
} | null;
|
|
4673
4825
|
BLUESKY?: {
|
|
4674
4826
|
id?: string | null;
|
|
@@ -4831,6 +4983,14 @@ type PostGetListResponse = {
|
|
|
4831
4983
|
trialParams?: {
|
|
4832
4984
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
4833
4985
|
} | null;
|
|
4986
|
+
/**
|
|
4987
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
4988
|
+
*/
|
|
4989
|
+
isPaidPartnership?: boolean | null;
|
|
4990
|
+
/**
|
|
4991
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
4992
|
+
*/
|
|
4993
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
4834
4994
|
/**
|
|
4835
4995
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
4836
4996
|
*/
|
|
@@ -4856,6 +5016,22 @@ type PostGetListResponse = {
|
|
|
4856
5016
|
uploadId: string;
|
|
4857
5017
|
altText?: string | null;
|
|
4858
5018
|
}> | null;
|
|
5019
|
+
topicTag?: string | null;
|
|
5020
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
5021
|
+
linkAttachment?: string | null;
|
|
5022
|
+
poll?: {
|
|
5023
|
+
optionA: string;
|
|
5024
|
+
optionB: string;
|
|
5025
|
+
optionC?: string | null;
|
|
5026
|
+
optionD?: string | null;
|
|
5027
|
+
} | null;
|
|
5028
|
+
gif?: {
|
|
5029
|
+
gifId: string;
|
|
5030
|
+
provider?: 'GIPHY';
|
|
5031
|
+
} | null;
|
|
5032
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
5033
|
+
crosspostToInstagramStory?: boolean | null;
|
|
5034
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
4859
5035
|
} | null;
|
|
4860
5036
|
TIKTOK?: {
|
|
4861
5037
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -5288,6 +5464,10 @@ type PostGetListResponse = {
|
|
|
5288
5464
|
id?: string | null;
|
|
5289
5465
|
permalink?: string | null;
|
|
5290
5466
|
thumbnail?: string | null;
|
|
5467
|
+
/**
|
|
5468
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
5469
|
+
*/
|
|
5470
|
+
creationId?: string | null;
|
|
5291
5471
|
} | null;
|
|
5292
5472
|
TIKTOK?: {
|
|
5293
5473
|
id?: string | null;
|
|
@@ -5334,6 +5514,10 @@ type PostGetListResponse = {
|
|
|
5334
5514
|
THREADS?: {
|
|
5335
5515
|
id?: string | null;
|
|
5336
5516
|
permalink?: string | null;
|
|
5517
|
+
/**
|
|
5518
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
5519
|
+
*/
|
|
5520
|
+
creationId?: string | null;
|
|
5337
5521
|
} | null;
|
|
5338
5522
|
BLUESKY?: {
|
|
5339
5523
|
id?: string | null;
|
|
@@ -5563,6 +5747,14 @@ type PostCreateData = {
|
|
|
5563
5747
|
trialParams?: {
|
|
5564
5748
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
5565
5749
|
} | null;
|
|
5750
|
+
/**
|
|
5751
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
5752
|
+
*/
|
|
5753
|
+
isPaidPartnership?: boolean | null;
|
|
5754
|
+
/**
|
|
5755
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
5756
|
+
*/
|
|
5757
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
5566
5758
|
/**
|
|
5567
5759
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
5568
5760
|
*/
|
|
@@ -5588,6 +5780,22 @@ type PostCreateData = {
|
|
|
5588
5780
|
uploadId: string;
|
|
5589
5781
|
altText?: string | null;
|
|
5590
5782
|
}> | null;
|
|
5783
|
+
topicTag?: string | null;
|
|
5784
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
5785
|
+
linkAttachment?: string | null;
|
|
5786
|
+
poll?: {
|
|
5787
|
+
optionA: string;
|
|
5788
|
+
optionB: string;
|
|
5789
|
+
optionC?: string | null;
|
|
5790
|
+
optionD?: string | null;
|
|
5791
|
+
} | null;
|
|
5792
|
+
gif?: {
|
|
5793
|
+
gifId: string;
|
|
5794
|
+
provider?: 'GIPHY';
|
|
5795
|
+
} | null;
|
|
5796
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
5797
|
+
crosspostToInstagramStory?: boolean | null;
|
|
5798
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
5591
5799
|
} | null;
|
|
5592
5800
|
TIKTOK?: {
|
|
5593
5801
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -5956,6 +6164,14 @@ type PostCreateResponse = {
|
|
|
5956
6164
|
trialParams?: {
|
|
5957
6165
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
5958
6166
|
} | null;
|
|
6167
|
+
/**
|
|
6168
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
6169
|
+
*/
|
|
6170
|
+
isPaidPartnership?: boolean | null;
|
|
6171
|
+
/**
|
|
6172
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
6173
|
+
*/
|
|
6174
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
5959
6175
|
/**
|
|
5960
6176
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
5961
6177
|
*/
|
|
@@ -5981,6 +6197,22 @@ type PostCreateResponse = {
|
|
|
5981
6197
|
uploadId: string;
|
|
5982
6198
|
altText?: string | null;
|
|
5983
6199
|
}> | null;
|
|
6200
|
+
topicTag?: string | null;
|
|
6201
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
6202
|
+
linkAttachment?: string | null;
|
|
6203
|
+
poll?: {
|
|
6204
|
+
optionA: string;
|
|
6205
|
+
optionB: string;
|
|
6206
|
+
optionC?: string | null;
|
|
6207
|
+
optionD?: string | null;
|
|
6208
|
+
} | null;
|
|
6209
|
+
gif?: {
|
|
6210
|
+
gifId: string;
|
|
6211
|
+
provider?: 'GIPHY';
|
|
6212
|
+
} | null;
|
|
6213
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
6214
|
+
crosspostToInstagramStory?: boolean | null;
|
|
6215
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
5984
6216
|
} | null;
|
|
5985
6217
|
TIKTOK?: {
|
|
5986
6218
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -6413,6 +6645,10 @@ type PostCreateResponse = {
|
|
|
6413
6645
|
id?: string | null;
|
|
6414
6646
|
permalink?: string | null;
|
|
6415
6647
|
thumbnail?: string | null;
|
|
6648
|
+
/**
|
|
6649
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
6650
|
+
*/
|
|
6651
|
+
creationId?: string | null;
|
|
6416
6652
|
} | null;
|
|
6417
6653
|
TIKTOK?: {
|
|
6418
6654
|
id?: string | null;
|
|
@@ -6459,6 +6695,10 @@ type PostCreateResponse = {
|
|
|
6459
6695
|
THREADS?: {
|
|
6460
6696
|
id?: string | null;
|
|
6461
6697
|
permalink?: string | null;
|
|
6698
|
+
/**
|
|
6699
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
6700
|
+
*/
|
|
6701
|
+
creationId?: string | null;
|
|
6462
6702
|
} | null;
|
|
6463
6703
|
BLUESKY?: {
|
|
6464
6704
|
id?: string | null;
|
|
@@ -6611,6 +6851,14 @@ type PostRetryResponse = {
|
|
|
6611
6851
|
trialParams?: {
|
|
6612
6852
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
6613
6853
|
} | null;
|
|
6854
|
+
/**
|
|
6855
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
6856
|
+
*/
|
|
6857
|
+
isPaidPartnership?: boolean | null;
|
|
6858
|
+
/**
|
|
6859
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
6860
|
+
*/
|
|
6861
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
6614
6862
|
/**
|
|
6615
6863
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
6616
6864
|
*/
|
|
@@ -6636,6 +6884,22 @@ type PostRetryResponse = {
|
|
|
6636
6884
|
uploadId: string;
|
|
6637
6885
|
altText?: string | null;
|
|
6638
6886
|
}> | null;
|
|
6887
|
+
topicTag?: string | null;
|
|
6888
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
6889
|
+
linkAttachment?: string | null;
|
|
6890
|
+
poll?: {
|
|
6891
|
+
optionA: string;
|
|
6892
|
+
optionB: string;
|
|
6893
|
+
optionC?: string | null;
|
|
6894
|
+
optionD?: string | null;
|
|
6895
|
+
} | null;
|
|
6896
|
+
gif?: {
|
|
6897
|
+
gifId: string;
|
|
6898
|
+
provider?: 'GIPHY';
|
|
6899
|
+
} | null;
|
|
6900
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
6901
|
+
crosspostToInstagramStory?: boolean | null;
|
|
6902
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
6639
6903
|
} | null;
|
|
6640
6904
|
TIKTOK?: {
|
|
6641
6905
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -7068,6 +7332,10 @@ type PostRetryResponse = {
|
|
|
7068
7332
|
id?: string | null;
|
|
7069
7333
|
permalink?: string | null;
|
|
7070
7334
|
thumbnail?: string | null;
|
|
7335
|
+
/**
|
|
7336
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
7337
|
+
*/
|
|
7338
|
+
creationId?: string | null;
|
|
7071
7339
|
} | null;
|
|
7072
7340
|
TIKTOK?: {
|
|
7073
7341
|
id?: string | null;
|
|
@@ -7114,6 +7382,10 @@ type PostRetryResponse = {
|
|
|
7114
7382
|
THREADS?: {
|
|
7115
7383
|
id?: string | null;
|
|
7116
7384
|
permalink?: string | null;
|
|
7385
|
+
/**
|
|
7386
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
7387
|
+
*/
|
|
7388
|
+
creationId?: string | null;
|
|
7117
7389
|
} | null;
|
|
7118
7390
|
BLUESKY?: {
|
|
7119
7391
|
id?: string | null;
|
|
@@ -7333,6 +7605,14 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7333
7605
|
trialParams?: {
|
|
7334
7606
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
7335
7607
|
} | null;
|
|
7608
|
+
/**
|
|
7609
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
7610
|
+
*/
|
|
7611
|
+
isPaidPartnership?: boolean | null;
|
|
7612
|
+
/**
|
|
7613
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
7614
|
+
*/
|
|
7615
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
7336
7616
|
/**
|
|
7337
7617
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
7338
7618
|
*/
|
|
@@ -7358,6 +7638,22 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7358
7638
|
uploadId: string;
|
|
7359
7639
|
altText?: string | null;
|
|
7360
7640
|
}> | null;
|
|
7641
|
+
topicTag?: string | null;
|
|
7642
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
7643
|
+
linkAttachment?: string | null;
|
|
7644
|
+
poll?: {
|
|
7645
|
+
optionA: string;
|
|
7646
|
+
optionB: string;
|
|
7647
|
+
optionC?: string | null;
|
|
7648
|
+
optionD?: string | null;
|
|
7649
|
+
} | null;
|
|
7650
|
+
gif?: {
|
|
7651
|
+
gifId: string;
|
|
7652
|
+
provider?: 'GIPHY';
|
|
7653
|
+
} | null;
|
|
7654
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
7655
|
+
crosspostToInstagramStory?: boolean | null;
|
|
7656
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
7361
7657
|
} | null;
|
|
7362
7658
|
TIKTOK?: {
|
|
7363
7659
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -7790,6 +8086,10 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7790
8086
|
id?: string | null;
|
|
7791
8087
|
permalink?: string | null;
|
|
7792
8088
|
thumbnail?: string | null;
|
|
8089
|
+
/**
|
|
8090
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
8091
|
+
*/
|
|
8092
|
+
creationId?: string | null;
|
|
7793
8093
|
} | null;
|
|
7794
8094
|
TIKTOK?: {
|
|
7795
8095
|
id?: string | null;
|
|
@@ -7836,6 +8136,10 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7836
8136
|
THREADS?: {
|
|
7837
8137
|
id?: string | null;
|
|
7838
8138
|
permalink?: string | null;
|
|
8139
|
+
/**
|
|
8140
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
8141
|
+
*/
|
|
8142
|
+
creationId?: string | null;
|
|
7839
8143
|
} | null;
|
|
7840
8144
|
BLUESKY?: {
|
|
7841
8145
|
id?: string | null;
|
|
@@ -8088,6 +8392,14 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8088
8392
|
trialParams?: {
|
|
8089
8393
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
8090
8394
|
} | null;
|
|
8395
|
+
/**
|
|
8396
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
8397
|
+
*/
|
|
8398
|
+
isPaidPartnership?: boolean | null;
|
|
8399
|
+
/**
|
|
8400
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
8401
|
+
*/
|
|
8402
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
8091
8403
|
/**
|
|
8092
8404
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
8093
8405
|
*/
|
|
@@ -8113,6 +8425,22 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8113
8425
|
uploadId: string;
|
|
8114
8426
|
altText?: string | null;
|
|
8115
8427
|
}> | null;
|
|
8428
|
+
topicTag?: string | null;
|
|
8429
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
8430
|
+
linkAttachment?: string | null;
|
|
8431
|
+
poll?: {
|
|
8432
|
+
optionA: string;
|
|
8433
|
+
optionB: string;
|
|
8434
|
+
optionC?: string | null;
|
|
8435
|
+
optionD?: string | null;
|
|
8436
|
+
} | null;
|
|
8437
|
+
gif?: {
|
|
8438
|
+
gifId: string;
|
|
8439
|
+
provider?: 'GIPHY';
|
|
8440
|
+
} | null;
|
|
8441
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
8442
|
+
crosspostToInstagramStory?: boolean | null;
|
|
8443
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
8116
8444
|
} | null;
|
|
8117
8445
|
TIKTOK?: {
|
|
8118
8446
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -8545,6 +8873,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8545
8873
|
id?: string | null;
|
|
8546
8874
|
permalink?: string | null;
|
|
8547
8875
|
thumbnail?: string | null;
|
|
8876
|
+
/**
|
|
8877
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
8878
|
+
*/
|
|
8879
|
+
creationId?: string | null;
|
|
8548
8880
|
} | null;
|
|
8549
8881
|
TIKTOK?: {
|
|
8550
8882
|
id?: string | null;
|
|
@@ -8591,6 +8923,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8591
8923
|
THREADS?: {
|
|
8592
8924
|
id?: string | null;
|
|
8593
8925
|
permalink?: string | null;
|
|
8926
|
+
/**
|
|
8927
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
8928
|
+
*/
|
|
8929
|
+
creationId?: string | null;
|
|
8594
8930
|
} | null;
|
|
8595
8931
|
BLUESKY?: {
|
|
8596
8932
|
id?: string | null;
|
|
@@ -16007,6 +16343,14 @@ type $OpenApiTs = {
|
|
|
16007
16343
|
trialParams?: {
|
|
16008
16344
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
16009
16345
|
} | null;
|
|
16346
|
+
/**
|
|
16347
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
16348
|
+
*/
|
|
16349
|
+
isPaidPartnership?: boolean | null;
|
|
16350
|
+
/**
|
|
16351
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
16352
|
+
*/
|
|
16353
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
16010
16354
|
/**
|
|
16011
16355
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
16012
16356
|
*/
|
|
@@ -16032,6 +16376,22 @@ type $OpenApiTs = {
|
|
|
16032
16376
|
uploadId: string;
|
|
16033
16377
|
altText?: string | null;
|
|
16034
16378
|
}> | null;
|
|
16379
|
+
topicTag?: string | null;
|
|
16380
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
16381
|
+
linkAttachment?: string | null;
|
|
16382
|
+
poll?: {
|
|
16383
|
+
optionA: string;
|
|
16384
|
+
optionB: string;
|
|
16385
|
+
optionC?: string | null;
|
|
16386
|
+
optionD?: string | null;
|
|
16387
|
+
} | null;
|
|
16388
|
+
gif?: {
|
|
16389
|
+
gifId: string;
|
|
16390
|
+
provider?: 'GIPHY';
|
|
16391
|
+
} | null;
|
|
16392
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
16393
|
+
crosspostToInstagramStory?: boolean | null;
|
|
16394
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
16035
16395
|
} | null;
|
|
16036
16396
|
TIKTOK?: {
|
|
16037
16397
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -16464,6 +16824,10 @@ type $OpenApiTs = {
|
|
|
16464
16824
|
id?: string | null;
|
|
16465
16825
|
permalink?: string | null;
|
|
16466
16826
|
thumbnail?: string | null;
|
|
16827
|
+
/**
|
|
16828
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
16829
|
+
*/
|
|
16830
|
+
creationId?: string | null;
|
|
16467
16831
|
} | null;
|
|
16468
16832
|
TIKTOK?: {
|
|
16469
16833
|
id?: string | null;
|
|
@@ -16510,6 +16874,10 @@ type $OpenApiTs = {
|
|
|
16510
16874
|
THREADS?: {
|
|
16511
16875
|
id?: string | null;
|
|
16512
16876
|
permalink?: string | null;
|
|
16877
|
+
/**
|
|
16878
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
16879
|
+
*/
|
|
16880
|
+
creationId?: string | null;
|
|
16513
16881
|
} | null;
|
|
16514
16882
|
BLUESKY?: {
|
|
16515
16883
|
id?: string | null;
|
|
@@ -16792,6 +17160,14 @@ type $OpenApiTs = {
|
|
|
16792
17160
|
trialParams?: {
|
|
16793
17161
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
16794
17162
|
} | null;
|
|
17163
|
+
/**
|
|
17164
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
17165
|
+
*/
|
|
17166
|
+
isPaidPartnership?: boolean | null;
|
|
17167
|
+
/**
|
|
17168
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
17169
|
+
*/
|
|
17170
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
16795
17171
|
/**
|
|
16796
17172
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
16797
17173
|
*/
|
|
@@ -16817,6 +17193,22 @@ type $OpenApiTs = {
|
|
|
16817
17193
|
uploadId: string;
|
|
16818
17194
|
altText?: string | null;
|
|
16819
17195
|
}> | null;
|
|
17196
|
+
topicTag?: string | null;
|
|
17197
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
17198
|
+
linkAttachment?: string | null;
|
|
17199
|
+
poll?: {
|
|
17200
|
+
optionA: string;
|
|
17201
|
+
optionB: string;
|
|
17202
|
+
optionC?: string | null;
|
|
17203
|
+
optionD?: string | null;
|
|
17204
|
+
} | null;
|
|
17205
|
+
gif?: {
|
|
17206
|
+
gifId: string;
|
|
17207
|
+
provider?: 'GIPHY';
|
|
17208
|
+
} | null;
|
|
17209
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
17210
|
+
crosspostToInstagramStory?: boolean | null;
|
|
17211
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
16820
17212
|
} | null;
|
|
16821
17213
|
TIKTOK?: {
|
|
16822
17214
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -17249,6 +17641,10 @@ type $OpenApiTs = {
|
|
|
17249
17641
|
id?: string | null;
|
|
17250
17642
|
permalink?: string | null;
|
|
17251
17643
|
thumbnail?: string | null;
|
|
17644
|
+
/**
|
|
17645
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
17646
|
+
*/
|
|
17647
|
+
creationId?: string | null;
|
|
17252
17648
|
} | null;
|
|
17253
17649
|
TIKTOK?: {
|
|
17254
17650
|
id?: string | null;
|
|
@@ -17295,6 +17691,10 @@ type $OpenApiTs = {
|
|
|
17295
17691
|
THREADS?: {
|
|
17296
17692
|
id?: string | null;
|
|
17297
17693
|
permalink?: string | null;
|
|
17694
|
+
/**
|
|
17695
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
17696
|
+
*/
|
|
17697
|
+
creationId?: string | null;
|
|
17298
17698
|
} | null;
|
|
17299
17699
|
BLUESKY?: {
|
|
17300
17700
|
id?: string | null;
|
|
@@ -17575,6 +17975,14 @@ type $OpenApiTs = {
|
|
|
17575
17975
|
trialParams?: {
|
|
17576
17976
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
17577
17977
|
} | null;
|
|
17978
|
+
/**
|
|
17979
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
17980
|
+
*/
|
|
17981
|
+
isPaidPartnership?: boolean | null;
|
|
17982
|
+
/**
|
|
17983
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
17984
|
+
*/
|
|
17985
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
17578
17986
|
/**
|
|
17579
17987
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
17580
17988
|
*/
|
|
@@ -17600,6 +18008,22 @@ type $OpenApiTs = {
|
|
|
17600
18008
|
uploadId: string;
|
|
17601
18009
|
altText?: string | null;
|
|
17602
18010
|
}> | null;
|
|
18011
|
+
topicTag?: string | null;
|
|
18012
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
18013
|
+
linkAttachment?: string | null;
|
|
18014
|
+
poll?: {
|
|
18015
|
+
optionA: string;
|
|
18016
|
+
optionB: string;
|
|
18017
|
+
optionC?: string | null;
|
|
18018
|
+
optionD?: string | null;
|
|
18019
|
+
} | null;
|
|
18020
|
+
gif?: {
|
|
18021
|
+
gifId: string;
|
|
18022
|
+
provider?: 'GIPHY';
|
|
18023
|
+
} | null;
|
|
18024
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
18025
|
+
crosspostToInstagramStory?: boolean | null;
|
|
18026
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
17603
18027
|
} | null;
|
|
17604
18028
|
TIKTOK?: {
|
|
17605
18029
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -18032,6 +18456,10 @@ type $OpenApiTs = {
|
|
|
18032
18456
|
id?: string | null;
|
|
18033
18457
|
permalink?: string | null;
|
|
18034
18458
|
thumbnail?: string | null;
|
|
18459
|
+
/**
|
|
18460
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
18461
|
+
*/
|
|
18462
|
+
creationId?: string | null;
|
|
18035
18463
|
} | null;
|
|
18036
18464
|
TIKTOK?: {
|
|
18037
18465
|
id?: string | null;
|
|
@@ -18078,6 +18506,10 @@ type $OpenApiTs = {
|
|
|
18078
18506
|
THREADS?: {
|
|
18079
18507
|
id?: string | null;
|
|
18080
18508
|
permalink?: string | null;
|
|
18509
|
+
/**
|
|
18510
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
18511
|
+
*/
|
|
18512
|
+
creationId?: string | null;
|
|
18081
18513
|
} | null;
|
|
18082
18514
|
BLUESKY?: {
|
|
18083
18515
|
id?: string | null;
|
|
@@ -18289,6 +18721,14 @@ type $OpenApiTs = {
|
|
|
18289
18721
|
trialParams?: {
|
|
18290
18722
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
18291
18723
|
} | null;
|
|
18724
|
+
/**
|
|
18725
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
18726
|
+
*/
|
|
18727
|
+
isPaidPartnership?: boolean | null;
|
|
18728
|
+
/**
|
|
18729
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
18730
|
+
*/
|
|
18731
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
18292
18732
|
/**
|
|
18293
18733
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
18294
18734
|
*/
|
|
@@ -18314,6 +18754,22 @@ type $OpenApiTs = {
|
|
|
18314
18754
|
uploadId: string;
|
|
18315
18755
|
altText?: string | null;
|
|
18316
18756
|
}> | null;
|
|
18757
|
+
topicTag?: string | null;
|
|
18758
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
18759
|
+
linkAttachment?: string | null;
|
|
18760
|
+
poll?: {
|
|
18761
|
+
optionA: string;
|
|
18762
|
+
optionB: string;
|
|
18763
|
+
optionC?: string | null;
|
|
18764
|
+
optionD?: string | null;
|
|
18765
|
+
} | null;
|
|
18766
|
+
gif?: {
|
|
18767
|
+
gifId: string;
|
|
18768
|
+
provider?: 'GIPHY';
|
|
18769
|
+
} | null;
|
|
18770
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
18771
|
+
crosspostToInstagramStory?: boolean | null;
|
|
18772
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
18317
18773
|
} | null;
|
|
18318
18774
|
TIKTOK?: {
|
|
18319
18775
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -18746,6 +19202,10 @@ type $OpenApiTs = {
|
|
|
18746
19202
|
id?: string | null;
|
|
18747
19203
|
permalink?: string | null;
|
|
18748
19204
|
thumbnail?: string | null;
|
|
19205
|
+
/**
|
|
19206
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
19207
|
+
*/
|
|
19208
|
+
creationId?: string | null;
|
|
18749
19209
|
} | null;
|
|
18750
19210
|
TIKTOK?: {
|
|
18751
19211
|
id?: string | null;
|
|
@@ -18792,6 +19252,10 @@ type $OpenApiTs = {
|
|
|
18792
19252
|
THREADS?: {
|
|
18793
19253
|
id?: string | null;
|
|
18794
19254
|
permalink?: string | null;
|
|
19255
|
+
/**
|
|
19256
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
19257
|
+
*/
|
|
19258
|
+
creationId?: string | null;
|
|
18795
19259
|
} | null;
|
|
18796
19260
|
BLUESKY?: {
|
|
18797
19261
|
id?: string | null;
|
|
@@ -18999,6 +19463,14 @@ type $OpenApiTs = {
|
|
|
18999
19463
|
trialParams?: {
|
|
19000
19464
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
19001
19465
|
} | null;
|
|
19466
|
+
/**
|
|
19467
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
19468
|
+
*/
|
|
19469
|
+
isPaidPartnership?: boolean | null;
|
|
19470
|
+
/**
|
|
19471
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
19472
|
+
*/
|
|
19473
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
19002
19474
|
/**
|
|
19003
19475
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
19004
19476
|
*/
|
|
@@ -19024,6 +19496,22 @@ type $OpenApiTs = {
|
|
|
19024
19496
|
uploadId: string;
|
|
19025
19497
|
altText?: string | null;
|
|
19026
19498
|
}> | null;
|
|
19499
|
+
topicTag?: string | null;
|
|
19500
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
19501
|
+
linkAttachment?: string | null;
|
|
19502
|
+
poll?: {
|
|
19503
|
+
optionA: string;
|
|
19504
|
+
optionB: string;
|
|
19505
|
+
optionC?: string | null;
|
|
19506
|
+
optionD?: string | null;
|
|
19507
|
+
} | null;
|
|
19508
|
+
gif?: {
|
|
19509
|
+
gifId: string;
|
|
19510
|
+
provider?: 'GIPHY';
|
|
19511
|
+
} | null;
|
|
19512
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
19513
|
+
crosspostToInstagramStory?: boolean | null;
|
|
19514
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
19027
19515
|
} | null;
|
|
19028
19516
|
TIKTOK?: {
|
|
19029
19517
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -19456,6 +19944,10 @@ type $OpenApiTs = {
|
|
|
19456
19944
|
id?: string | null;
|
|
19457
19945
|
permalink?: string | null;
|
|
19458
19946
|
thumbnail?: string | null;
|
|
19947
|
+
/**
|
|
19948
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
19949
|
+
*/
|
|
19950
|
+
creationId?: string | null;
|
|
19459
19951
|
} | null;
|
|
19460
19952
|
TIKTOK?: {
|
|
19461
19953
|
id?: string | null;
|
|
@@ -19502,6 +19994,10 @@ type $OpenApiTs = {
|
|
|
19502
19994
|
THREADS?: {
|
|
19503
19995
|
id?: string | null;
|
|
19504
19996
|
permalink?: string | null;
|
|
19997
|
+
/**
|
|
19998
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
19999
|
+
*/
|
|
20000
|
+
creationId?: string | null;
|
|
19505
20001
|
} | null;
|
|
19506
20002
|
BLUESKY?: {
|
|
19507
20003
|
id?: string | null;
|
|
@@ -19784,6 +20280,14 @@ type $OpenApiTs = {
|
|
|
19784
20280
|
trialParams?: {
|
|
19785
20281
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
19786
20282
|
} | null;
|
|
20283
|
+
/**
|
|
20284
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
20285
|
+
*/
|
|
20286
|
+
isPaidPartnership?: boolean | null;
|
|
20287
|
+
/**
|
|
20288
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
20289
|
+
*/
|
|
20290
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
19787
20291
|
/**
|
|
19788
20292
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
19789
20293
|
*/
|
|
@@ -19809,6 +20313,22 @@ type $OpenApiTs = {
|
|
|
19809
20313
|
uploadId: string;
|
|
19810
20314
|
altText?: string | null;
|
|
19811
20315
|
}> | null;
|
|
20316
|
+
topicTag?: string | null;
|
|
20317
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
20318
|
+
linkAttachment?: string | null;
|
|
20319
|
+
poll?: {
|
|
20320
|
+
optionA: string;
|
|
20321
|
+
optionB: string;
|
|
20322
|
+
optionC?: string | null;
|
|
20323
|
+
optionD?: string | null;
|
|
20324
|
+
} | null;
|
|
20325
|
+
gif?: {
|
|
20326
|
+
gifId: string;
|
|
20327
|
+
provider?: 'GIPHY';
|
|
20328
|
+
} | null;
|
|
20329
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
20330
|
+
crosspostToInstagramStory?: boolean | null;
|
|
20331
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
19812
20332
|
} | null;
|
|
19813
20333
|
TIKTOK?: {
|
|
19814
20334
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -20241,6 +20761,10 @@ type $OpenApiTs = {
|
|
|
20241
20761
|
id?: string | null;
|
|
20242
20762
|
permalink?: string | null;
|
|
20243
20763
|
thumbnail?: string | null;
|
|
20764
|
+
/**
|
|
20765
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
20766
|
+
*/
|
|
20767
|
+
creationId?: string | null;
|
|
20244
20768
|
} | null;
|
|
20245
20769
|
TIKTOK?: {
|
|
20246
20770
|
id?: string | null;
|
|
@@ -20287,6 +20811,10 @@ type $OpenApiTs = {
|
|
|
20287
20811
|
THREADS?: {
|
|
20288
20812
|
id?: string | null;
|
|
20289
20813
|
permalink?: string | null;
|
|
20814
|
+
/**
|
|
20815
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
20816
|
+
*/
|
|
20817
|
+
creationId?: string | null;
|
|
20290
20818
|
} | null;
|
|
20291
20819
|
BLUESKY?: {
|
|
20292
20820
|
id?: string | null;
|
|
@@ -20500,6 +21028,14 @@ type $OpenApiTs = {
|
|
|
20500
21028
|
trialParams?: {
|
|
20501
21029
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
20502
21030
|
} | null;
|
|
21031
|
+
/**
|
|
21032
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
21033
|
+
*/
|
|
21034
|
+
isPaidPartnership?: boolean | null;
|
|
21035
|
+
/**
|
|
21036
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
21037
|
+
*/
|
|
21038
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
20503
21039
|
/**
|
|
20504
21040
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
20505
21041
|
*/
|
|
@@ -20525,6 +21061,22 @@ type $OpenApiTs = {
|
|
|
20525
21061
|
uploadId: string;
|
|
20526
21062
|
altText?: string | null;
|
|
20527
21063
|
}> | null;
|
|
21064
|
+
topicTag?: string | null;
|
|
21065
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
21066
|
+
linkAttachment?: string | null;
|
|
21067
|
+
poll?: {
|
|
21068
|
+
optionA: string;
|
|
21069
|
+
optionB: string;
|
|
21070
|
+
optionC?: string | null;
|
|
21071
|
+
optionD?: string | null;
|
|
21072
|
+
} | null;
|
|
21073
|
+
gif?: {
|
|
21074
|
+
gifId: string;
|
|
21075
|
+
provider?: 'GIPHY';
|
|
21076
|
+
} | null;
|
|
21077
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
21078
|
+
crosspostToInstagramStory?: boolean | null;
|
|
21079
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
20528
21080
|
} | null;
|
|
20529
21081
|
TIKTOK?: {
|
|
20530
21082
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -20957,6 +21509,10 @@ type $OpenApiTs = {
|
|
|
20957
21509
|
id?: string | null;
|
|
20958
21510
|
permalink?: string | null;
|
|
20959
21511
|
thumbnail?: string | null;
|
|
21512
|
+
/**
|
|
21513
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
21514
|
+
*/
|
|
21515
|
+
creationId?: string | null;
|
|
20960
21516
|
} | null;
|
|
20961
21517
|
TIKTOK?: {
|
|
20962
21518
|
id?: string | null;
|
|
@@ -21003,6 +21559,10 @@ type $OpenApiTs = {
|
|
|
21003
21559
|
THREADS?: {
|
|
21004
21560
|
id?: string | null;
|
|
21005
21561
|
permalink?: string | null;
|
|
21562
|
+
/**
|
|
21563
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
21564
|
+
*/
|
|
21565
|
+
creationId?: string | null;
|
|
21006
21566
|
} | null;
|
|
21007
21567
|
BLUESKY?: {
|
|
21008
21568
|
id?: string | null;
|
|
@@ -21327,6 +21887,14 @@ type $OpenApiTs = {
|
|
|
21327
21887
|
trialParams?: {
|
|
21328
21888
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
21329
21889
|
} | null;
|
|
21890
|
+
/**
|
|
21891
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
21892
|
+
*/
|
|
21893
|
+
isPaidPartnership?: boolean | null;
|
|
21894
|
+
/**
|
|
21895
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
21896
|
+
*/
|
|
21897
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
21330
21898
|
/**
|
|
21331
21899
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
21332
21900
|
*/
|
|
@@ -21352,6 +21920,22 @@ type $OpenApiTs = {
|
|
|
21352
21920
|
uploadId: string;
|
|
21353
21921
|
altText?: string | null;
|
|
21354
21922
|
}> | null;
|
|
21923
|
+
topicTag?: string | null;
|
|
21924
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
21925
|
+
linkAttachment?: string | null;
|
|
21926
|
+
poll?: {
|
|
21927
|
+
optionA: string;
|
|
21928
|
+
optionB: string;
|
|
21929
|
+
optionC?: string | null;
|
|
21930
|
+
optionD?: string | null;
|
|
21931
|
+
} | null;
|
|
21932
|
+
gif?: {
|
|
21933
|
+
gifId: string;
|
|
21934
|
+
provider?: 'GIPHY';
|
|
21935
|
+
} | null;
|
|
21936
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
21937
|
+
crosspostToInstagramStory?: boolean | null;
|
|
21938
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
21355
21939
|
} | null;
|
|
21356
21940
|
TIKTOK?: {
|
|
21357
21941
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -21784,6 +22368,10 @@ type $OpenApiTs = {
|
|
|
21784
22368
|
id?: string | null;
|
|
21785
22369
|
permalink?: string | null;
|
|
21786
22370
|
thumbnail?: string | null;
|
|
22371
|
+
/**
|
|
22372
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
22373
|
+
*/
|
|
22374
|
+
creationId?: string | null;
|
|
21787
22375
|
} | null;
|
|
21788
22376
|
TIKTOK?: {
|
|
21789
22377
|
id?: string | null;
|
|
@@ -21830,6 +22418,10 @@ type $OpenApiTs = {
|
|
|
21830
22418
|
THREADS?: {
|
|
21831
22419
|
id?: string | null;
|
|
21832
22420
|
permalink?: string | null;
|
|
22421
|
+
/**
|
|
22422
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
22423
|
+
*/
|
|
22424
|
+
creationId?: string | null;
|
|
21833
22425
|
} | null;
|
|
21834
22426
|
BLUESKY?: {
|
|
21835
22427
|
id?: string | null;
|
|
@@ -22187,6 +22779,14 @@ type $OpenApiTs = {
|
|
|
22187
22779
|
trialParams?: {
|
|
22188
22780
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
22189
22781
|
} | null;
|
|
22782
|
+
/**
|
|
22783
|
+
* Enables the native "Paid partnership" disclosure label.
|
|
22784
|
+
*/
|
|
22785
|
+
isPaidPartnership?: boolean | null;
|
|
22786
|
+
/**
|
|
22787
|
+
* Up to 2 Instagram usernames of the brands tagged as paid-partnership sponsors.
|
|
22788
|
+
*/
|
|
22789
|
+
brandedContentSponsors?: Array<(string)> | null;
|
|
22190
22790
|
/**
|
|
22191
22791
|
* Information about the Instagram audio asset used for Reels publishing.
|
|
22192
22792
|
*/
|
|
@@ -22212,6 +22812,22 @@ type $OpenApiTs = {
|
|
|
22212
22812
|
uploadId: string;
|
|
22213
22813
|
altText?: string | null;
|
|
22214
22814
|
}> | null;
|
|
22815
|
+
topicTag?: string | null;
|
|
22816
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
22817
|
+
linkAttachment?: string | null;
|
|
22818
|
+
poll?: {
|
|
22819
|
+
optionA: string;
|
|
22820
|
+
optionB: string;
|
|
22821
|
+
optionC?: string | null;
|
|
22822
|
+
optionD?: string | null;
|
|
22823
|
+
} | null;
|
|
22824
|
+
gif?: {
|
|
22825
|
+
gifId: string;
|
|
22826
|
+
provider?: 'GIPHY';
|
|
22827
|
+
} | null;
|
|
22828
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
22829
|
+
crosspostToInstagramStory?: boolean | null;
|
|
22830
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
22215
22831
|
} | null;
|
|
22216
22832
|
TIKTOK?: {
|
|
22217
22833
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -22644,6 +23260,10 @@ type $OpenApiTs = {
|
|
|
22644
23260
|
id?: string | null;
|
|
22645
23261
|
permalink?: string | null;
|
|
22646
23262
|
thumbnail?: string | null;
|
|
23263
|
+
/**
|
|
23264
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
23265
|
+
*/
|
|
23266
|
+
creationId?: string | null;
|
|
22647
23267
|
} | null;
|
|
22648
23268
|
TIKTOK?: {
|
|
22649
23269
|
id?: string | null;
|
|
@@ -22690,6 +23310,10 @@ type $OpenApiTs = {
|
|
|
22690
23310
|
THREADS?: {
|
|
22691
23311
|
id?: string | null;
|
|
22692
23312
|
permalink?: string | null;
|
|
23313
|
+
/**
|
|
23314
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
23315
|
+
*/
|
|
23316
|
+
creationId?: string | null;
|
|
22693
23317
|
} | null;
|
|
22694
23318
|
BLUESKY?: {
|
|
22695
23319
|
id?: string | null;
|