bundlesocial 2.57.0 → 2.58.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 +465 -1
- package/dist/index.d.ts +465 -1
- 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
|
};
|
|
@@ -1682,6 +1682,22 @@ type PostGetByReferenceKeyResponse = {
|
|
|
1682
1682
|
uploadId: string;
|
|
1683
1683
|
altText?: string | null;
|
|
1684
1684
|
}> | null;
|
|
1685
|
+
topicTag?: string | null;
|
|
1686
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
1687
|
+
linkAttachment?: string | null;
|
|
1688
|
+
poll?: {
|
|
1689
|
+
optionA: string;
|
|
1690
|
+
optionB: string;
|
|
1691
|
+
optionC?: string | null;
|
|
1692
|
+
optionD?: string | null;
|
|
1693
|
+
} | null;
|
|
1694
|
+
gif?: {
|
|
1695
|
+
gifId: string;
|
|
1696
|
+
provider?: 'GIPHY';
|
|
1697
|
+
} | null;
|
|
1698
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
1699
|
+
crosspostToInstagramStory?: boolean | null;
|
|
1700
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
1685
1701
|
} | null;
|
|
1686
1702
|
TIKTOK?: {
|
|
1687
1703
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -2114,6 +2130,10 @@ type PostGetByReferenceKeyResponse = {
|
|
|
2114
2130
|
id?: string | null;
|
|
2115
2131
|
permalink?: string | null;
|
|
2116
2132
|
thumbnail?: string | null;
|
|
2133
|
+
/**
|
|
2134
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
2135
|
+
*/
|
|
2136
|
+
creationId?: string | null;
|
|
2117
2137
|
} | null;
|
|
2118
2138
|
TIKTOK?: {
|
|
2119
2139
|
id?: string | null;
|
|
@@ -2160,6 +2180,10 @@ type PostGetByReferenceKeyResponse = {
|
|
|
2160
2180
|
THREADS?: {
|
|
2161
2181
|
id?: string | null;
|
|
2162
2182
|
permalink?: string | null;
|
|
2183
|
+
/**
|
|
2184
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
2185
|
+
*/
|
|
2186
|
+
creationId?: string | null;
|
|
2163
2187
|
} | null;
|
|
2164
2188
|
BLUESKY?: {
|
|
2165
2189
|
id?: string | null;
|
|
@@ -2413,6 +2437,22 @@ type PostGetResponse = {
|
|
|
2413
2437
|
uploadId: string;
|
|
2414
2438
|
altText?: string | null;
|
|
2415
2439
|
}> | null;
|
|
2440
|
+
topicTag?: string | null;
|
|
2441
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
2442
|
+
linkAttachment?: string | null;
|
|
2443
|
+
poll?: {
|
|
2444
|
+
optionA: string;
|
|
2445
|
+
optionB: string;
|
|
2446
|
+
optionC?: string | null;
|
|
2447
|
+
optionD?: string | null;
|
|
2448
|
+
} | null;
|
|
2449
|
+
gif?: {
|
|
2450
|
+
gifId: string;
|
|
2451
|
+
provider?: 'GIPHY';
|
|
2452
|
+
} | null;
|
|
2453
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
2454
|
+
crosspostToInstagramStory?: boolean | null;
|
|
2455
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
2416
2456
|
} | null;
|
|
2417
2457
|
TIKTOK?: {
|
|
2418
2458
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -2845,6 +2885,10 @@ type PostGetResponse = {
|
|
|
2845
2885
|
id?: string | null;
|
|
2846
2886
|
permalink?: string | null;
|
|
2847
2887
|
thumbnail?: string | null;
|
|
2888
|
+
/**
|
|
2889
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
2890
|
+
*/
|
|
2891
|
+
creationId?: string | null;
|
|
2848
2892
|
} | null;
|
|
2849
2893
|
TIKTOK?: {
|
|
2850
2894
|
id?: string | null;
|
|
@@ -2891,6 +2935,10 @@ type PostGetResponse = {
|
|
|
2891
2935
|
THREADS?: {
|
|
2892
2936
|
id?: string | null;
|
|
2893
2937
|
permalink?: string | null;
|
|
2938
|
+
/**
|
|
2939
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
2940
|
+
*/
|
|
2941
|
+
creationId?: string | null;
|
|
2894
2942
|
} | null;
|
|
2895
2943
|
BLUESKY?: {
|
|
2896
2944
|
id?: string | null;
|
|
@@ -3143,6 +3191,22 @@ type PostUpdateData = {
|
|
|
3143
3191
|
uploadId: string;
|
|
3144
3192
|
altText?: string | null;
|
|
3145
3193
|
}> | null;
|
|
3194
|
+
topicTag?: string | null;
|
|
3195
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
3196
|
+
linkAttachment?: string | null;
|
|
3197
|
+
poll?: {
|
|
3198
|
+
optionA: string;
|
|
3199
|
+
optionB: string;
|
|
3200
|
+
optionC?: string | null;
|
|
3201
|
+
optionD?: string | null;
|
|
3202
|
+
} | null;
|
|
3203
|
+
gif?: {
|
|
3204
|
+
gifId: string;
|
|
3205
|
+
provider?: 'GIPHY';
|
|
3206
|
+
} | null;
|
|
3207
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
3208
|
+
crosspostToInstagramStory?: boolean | null;
|
|
3209
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
3146
3210
|
} | null;
|
|
3147
3211
|
TIKTOK?: {
|
|
3148
3212
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -3536,6 +3600,22 @@ type PostUpdateResponse = {
|
|
|
3536
3600
|
uploadId: string;
|
|
3537
3601
|
altText?: string | null;
|
|
3538
3602
|
}> | null;
|
|
3603
|
+
topicTag?: string | null;
|
|
3604
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
3605
|
+
linkAttachment?: string | null;
|
|
3606
|
+
poll?: {
|
|
3607
|
+
optionA: string;
|
|
3608
|
+
optionB: string;
|
|
3609
|
+
optionC?: string | null;
|
|
3610
|
+
optionD?: string | null;
|
|
3611
|
+
} | null;
|
|
3612
|
+
gif?: {
|
|
3613
|
+
gifId: string;
|
|
3614
|
+
provider?: 'GIPHY';
|
|
3615
|
+
} | null;
|
|
3616
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
3617
|
+
crosspostToInstagramStory?: boolean | null;
|
|
3618
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
3539
3619
|
} | null;
|
|
3540
3620
|
TIKTOK?: {
|
|
3541
3621
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -3968,6 +4048,10 @@ type PostUpdateResponse = {
|
|
|
3968
4048
|
id?: string | null;
|
|
3969
4049
|
permalink?: string | null;
|
|
3970
4050
|
thumbnail?: string | null;
|
|
4051
|
+
/**
|
|
4052
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
4053
|
+
*/
|
|
4054
|
+
creationId?: string | null;
|
|
3971
4055
|
} | null;
|
|
3972
4056
|
TIKTOK?: {
|
|
3973
4057
|
id?: string | null;
|
|
@@ -4014,6 +4098,10 @@ type PostUpdateResponse = {
|
|
|
4014
4098
|
THREADS?: {
|
|
4015
4099
|
id?: string | null;
|
|
4016
4100
|
permalink?: string | null;
|
|
4101
|
+
/**
|
|
4102
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
4103
|
+
*/
|
|
4104
|
+
creationId?: string | null;
|
|
4017
4105
|
} | null;
|
|
4018
4106
|
BLUESKY?: {
|
|
4019
4107
|
id?: string | null;
|
|
@@ -4191,6 +4279,22 @@ type PostDeleteResponse = {
|
|
|
4191
4279
|
uploadId: string;
|
|
4192
4280
|
altText?: string | null;
|
|
4193
4281
|
}> | null;
|
|
4282
|
+
topicTag?: string | null;
|
|
4283
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
4284
|
+
linkAttachment?: string | null;
|
|
4285
|
+
poll?: {
|
|
4286
|
+
optionA: string;
|
|
4287
|
+
optionB: string;
|
|
4288
|
+
optionC?: string | null;
|
|
4289
|
+
optionD?: string | null;
|
|
4290
|
+
} | null;
|
|
4291
|
+
gif?: {
|
|
4292
|
+
gifId: string;
|
|
4293
|
+
provider?: 'GIPHY';
|
|
4294
|
+
} | null;
|
|
4295
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
4296
|
+
crosspostToInstagramStory?: boolean | null;
|
|
4297
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
4194
4298
|
} | null;
|
|
4195
4299
|
TIKTOK?: {
|
|
4196
4300
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -4623,6 +4727,10 @@ type PostDeleteResponse = {
|
|
|
4623
4727
|
id?: string | null;
|
|
4624
4728
|
permalink?: string | null;
|
|
4625
4729
|
thumbnail?: string | null;
|
|
4730
|
+
/**
|
|
4731
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
4732
|
+
*/
|
|
4733
|
+
creationId?: string | null;
|
|
4626
4734
|
} | null;
|
|
4627
4735
|
TIKTOK?: {
|
|
4628
4736
|
id?: string | null;
|
|
@@ -4669,6 +4777,10 @@ type PostDeleteResponse = {
|
|
|
4669
4777
|
THREADS?: {
|
|
4670
4778
|
id?: string | null;
|
|
4671
4779
|
permalink?: string | null;
|
|
4780
|
+
/**
|
|
4781
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
4782
|
+
*/
|
|
4783
|
+
creationId?: string | null;
|
|
4672
4784
|
} | null;
|
|
4673
4785
|
BLUESKY?: {
|
|
4674
4786
|
id?: string | null;
|
|
@@ -4856,6 +4968,22 @@ type PostGetListResponse = {
|
|
|
4856
4968
|
uploadId: string;
|
|
4857
4969
|
altText?: string | null;
|
|
4858
4970
|
}> | null;
|
|
4971
|
+
topicTag?: string | null;
|
|
4972
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
4973
|
+
linkAttachment?: string | null;
|
|
4974
|
+
poll?: {
|
|
4975
|
+
optionA: string;
|
|
4976
|
+
optionB: string;
|
|
4977
|
+
optionC?: string | null;
|
|
4978
|
+
optionD?: string | null;
|
|
4979
|
+
} | null;
|
|
4980
|
+
gif?: {
|
|
4981
|
+
gifId: string;
|
|
4982
|
+
provider?: 'GIPHY';
|
|
4983
|
+
} | null;
|
|
4984
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
4985
|
+
crosspostToInstagramStory?: boolean | null;
|
|
4986
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
4859
4987
|
} | null;
|
|
4860
4988
|
TIKTOK?: {
|
|
4861
4989
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -5288,6 +5416,10 @@ type PostGetListResponse = {
|
|
|
5288
5416
|
id?: string | null;
|
|
5289
5417
|
permalink?: string | null;
|
|
5290
5418
|
thumbnail?: string | null;
|
|
5419
|
+
/**
|
|
5420
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
5421
|
+
*/
|
|
5422
|
+
creationId?: string | null;
|
|
5291
5423
|
} | null;
|
|
5292
5424
|
TIKTOK?: {
|
|
5293
5425
|
id?: string | null;
|
|
@@ -5334,6 +5466,10 @@ type PostGetListResponse = {
|
|
|
5334
5466
|
THREADS?: {
|
|
5335
5467
|
id?: string | null;
|
|
5336
5468
|
permalink?: string | null;
|
|
5469
|
+
/**
|
|
5470
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
5471
|
+
*/
|
|
5472
|
+
creationId?: string | null;
|
|
5337
5473
|
} | null;
|
|
5338
5474
|
BLUESKY?: {
|
|
5339
5475
|
id?: string | null;
|
|
@@ -5588,6 +5724,22 @@ type PostCreateData = {
|
|
|
5588
5724
|
uploadId: string;
|
|
5589
5725
|
altText?: string | null;
|
|
5590
5726
|
}> | null;
|
|
5727
|
+
topicTag?: string | null;
|
|
5728
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
5729
|
+
linkAttachment?: string | null;
|
|
5730
|
+
poll?: {
|
|
5731
|
+
optionA: string;
|
|
5732
|
+
optionB: string;
|
|
5733
|
+
optionC?: string | null;
|
|
5734
|
+
optionD?: string | null;
|
|
5735
|
+
} | null;
|
|
5736
|
+
gif?: {
|
|
5737
|
+
gifId: string;
|
|
5738
|
+
provider?: 'GIPHY';
|
|
5739
|
+
} | null;
|
|
5740
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
5741
|
+
crosspostToInstagramStory?: boolean | null;
|
|
5742
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
5591
5743
|
} | null;
|
|
5592
5744
|
TIKTOK?: {
|
|
5593
5745
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -5981,6 +6133,22 @@ type PostCreateResponse = {
|
|
|
5981
6133
|
uploadId: string;
|
|
5982
6134
|
altText?: string | null;
|
|
5983
6135
|
}> | null;
|
|
6136
|
+
topicTag?: string | null;
|
|
6137
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
6138
|
+
linkAttachment?: string | null;
|
|
6139
|
+
poll?: {
|
|
6140
|
+
optionA: string;
|
|
6141
|
+
optionB: string;
|
|
6142
|
+
optionC?: string | null;
|
|
6143
|
+
optionD?: string | null;
|
|
6144
|
+
} | null;
|
|
6145
|
+
gif?: {
|
|
6146
|
+
gifId: string;
|
|
6147
|
+
provider?: 'GIPHY';
|
|
6148
|
+
} | null;
|
|
6149
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
6150
|
+
crosspostToInstagramStory?: boolean | null;
|
|
6151
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
5984
6152
|
} | null;
|
|
5985
6153
|
TIKTOK?: {
|
|
5986
6154
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -6413,6 +6581,10 @@ type PostCreateResponse = {
|
|
|
6413
6581
|
id?: string | null;
|
|
6414
6582
|
permalink?: string | null;
|
|
6415
6583
|
thumbnail?: string | null;
|
|
6584
|
+
/**
|
|
6585
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
6586
|
+
*/
|
|
6587
|
+
creationId?: string | null;
|
|
6416
6588
|
} | null;
|
|
6417
6589
|
TIKTOK?: {
|
|
6418
6590
|
id?: string | null;
|
|
@@ -6459,6 +6631,10 @@ type PostCreateResponse = {
|
|
|
6459
6631
|
THREADS?: {
|
|
6460
6632
|
id?: string | null;
|
|
6461
6633
|
permalink?: string | null;
|
|
6634
|
+
/**
|
|
6635
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
6636
|
+
*/
|
|
6637
|
+
creationId?: string | null;
|
|
6462
6638
|
} | null;
|
|
6463
6639
|
BLUESKY?: {
|
|
6464
6640
|
id?: string | null;
|
|
@@ -6636,6 +6812,22 @@ type PostRetryResponse = {
|
|
|
6636
6812
|
uploadId: string;
|
|
6637
6813
|
altText?: string | null;
|
|
6638
6814
|
}> | null;
|
|
6815
|
+
topicTag?: string | null;
|
|
6816
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
6817
|
+
linkAttachment?: string | null;
|
|
6818
|
+
poll?: {
|
|
6819
|
+
optionA: string;
|
|
6820
|
+
optionB: string;
|
|
6821
|
+
optionC?: string | null;
|
|
6822
|
+
optionD?: string | null;
|
|
6823
|
+
} | null;
|
|
6824
|
+
gif?: {
|
|
6825
|
+
gifId: string;
|
|
6826
|
+
provider?: 'GIPHY';
|
|
6827
|
+
} | null;
|
|
6828
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
6829
|
+
crosspostToInstagramStory?: boolean | null;
|
|
6830
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
6639
6831
|
} | null;
|
|
6640
6832
|
TIKTOK?: {
|
|
6641
6833
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -7068,6 +7260,10 @@ type PostRetryResponse = {
|
|
|
7068
7260
|
id?: string | null;
|
|
7069
7261
|
permalink?: string | null;
|
|
7070
7262
|
thumbnail?: string | null;
|
|
7263
|
+
/**
|
|
7264
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
7265
|
+
*/
|
|
7266
|
+
creationId?: string | null;
|
|
7071
7267
|
} | null;
|
|
7072
7268
|
TIKTOK?: {
|
|
7073
7269
|
id?: string | null;
|
|
@@ -7114,6 +7310,10 @@ type PostRetryResponse = {
|
|
|
7114
7310
|
THREADS?: {
|
|
7115
7311
|
id?: string | null;
|
|
7116
7312
|
permalink?: string | null;
|
|
7313
|
+
/**
|
|
7314
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
7315
|
+
*/
|
|
7316
|
+
creationId?: string | null;
|
|
7117
7317
|
} | null;
|
|
7118
7318
|
BLUESKY?: {
|
|
7119
7319
|
id?: string | null;
|
|
@@ -7358,6 +7558,22 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7358
7558
|
uploadId: string;
|
|
7359
7559
|
altText?: string | null;
|
|
7360
7560
|
}> | null;
|
|
7561
|
+
topicTag?: string | null;
|
|
7562
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
7563
|
+
linkAttachment?: string | null;
|
|
7564
|
+
poll?: {
|
|
7565
|
+
optionA: string;
|
|
7566
|
+
optionB: string;
|
|
7567
|
+
optionC?: string | null;
|
|
7568
|
+
optionD?: string | null;
|
|
7569
|
+
} | null;
|
|
7570
|
+
gif?: {
|
|
7571
|
+
gifId: string;
|
|
7572
|
+
provider?: 'GIPHY';
|
|
7573
|
+
} | null;
|
|
7574
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
7575
|
+
crosspostToInstagramStory?: boolean | null;
|
|
7576
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
7361
7577
|
} | null;
|
|
7362
7578
|
TIKTOK?: {
|
|
7363
7579
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -7790,6 +8006,10 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7790
8006
|
id?: string | null;
|
|
7791
8007
|
permalink?: string | null;
|
|
7792
8008
|
thumbnail?: string | null;
|
|
8009
|
+
/**
|
|
8010
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
8011
|
+
*/
|
|
8012
|
+
creationId?: string | null;
|
|
7793
8013
|
} | null;
|
|
7794
8014
|
TIKTOK?: {
|
|
7795
8015
|
id?: string | null;
|
|
@@ -7836,6 +8056,10 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
7836
8056
|
THREADS?: {
|
|
7837
8057
|
id?: string | null;
|
|
7838
8058
|
permalink?: string | null;
|
|
8059
|
+
/**
|
|
8060
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
8061
|
+
*/
|
|
8062
|
+
creationId?: string | null;
|
|
7839
8063
|
} | null;
|
|
7840
8064
|
BLUESKY?: {
|
|
7841
8065
|
id?: string | null;
|
|
@@ -8113,6 +8337,22 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8113
8337
|
uploadId: string;
|
|
8114
8338
|
altText?: string | null;
|
|
8115
8339
|
}> | null;
|
|
8340
|
+
topicTag?: string | null;
|
|
8341
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
8342
|
+
linkAttachment?: string | null;
|
|
8343
|
+
poll?: {
|
|
8344
|
+
optionA: string;
|
|
8345
|
+
optionB: string;
|
|
8346
|
+
optionC?: string | null;
|
|
8347
|
+
optionD?: string | null;
|
|
8348
|
+
} | null;
|
|
8349
|
+
gif?: {
|
|
8350
|
+
gifId: string;
|
|
8351
|
+
provider?: 'GIPHY';
|
|
8352
|
+
} | null;
|
|
8353
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
8354
|
+
crosspostToInstagramStory?: boolean | null;
|
|
8355
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
8116
8356
|
} | null;
|
|
8117
8357
|
TIKTOK?: {
|
|
8118
8358
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -8545,6 +8785,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8545
8785
|
id?: string | null;
|
|
8546
8786
|
permalink?: string | null;
|
|
8547
8787
|
thumbnail?: string | null;
|
|
8788
|
+
/**
|
|
8789
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
8790
|
+
*/
|
|
8791
|
+
creationId?: string | null;
|
|
8548
8792
|
} | null;
|
|
8549
8793
|
TIKTOK?: {
|
|
8550
8794
|
id?: string | null;
|
|
@@ -8591,6 +8835,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
8591
8835
|
THREADS?: {
|
|
8592
8836
|
id?: string | null;
|
|
8593
8837
|
permalink?: string | null;
|
|
8838
|
+
/**
|
|
8839
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
8840
|
+
*/
|
|
8841
|
+
creationId?: string | null;
|
|
8594
8842
|
} | null;
|
|
8595
8843
|
BLUESKY?: {
|
|
8596
8844
|
id?: string | null;
|
|
@@ -16032,6 +16280,22 @@ type $OpenApiTs = {
|
|
|
16032
16280
|
uploadId: string;
|
|
16033
16281
|
altText?: string | null;
|
|
16034
16282
|
}> | null;
|
|
16283
|
+
topicTag?: string | null;
|
|
16284
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
16285
|
+
linkAttachment?: string | null;
|
|
16286
|
+
poll?: {
|
|
16287
|
+
optionA: string;
|
|
16288
|
+
optionB: string;
|
|
16289
|
+
optionC?: string | null;
|
|
16290
|
+
optionD?: string | null;
|
|
16291
|
+
} | null;
|
|
16292
|
+
gif?: {
|
|
16293
|
+
gifId: string;
|
|
16294
|
+
provider?: 'GIPHY';
|
|
16295
|
+
} | null;
|
|
16296
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
16297
|
+
crosspostToInstagramStory?: boolean | null;
|
|
16298
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
16035
16299
|
} | null;
|
|
16036
16300
|
TIKTOK?: {
|
|
16037
16301
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -16464,6 +16728,10 @@ type $OpenApiTs = {
|
|
|
16464
16728
|
id?: string | null;
|
|
16465
16729
|
permalink?: string | null;
|
|
16466
16730
|
thumbnail?: string | null;
|
|
16731
|
+
/**
|
|
16732
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
16733
|
+
*/
|
|
16734
|
+
creationId?: string | null;
|
|
16467
16735
|
} | null;
|
|
16468
16736
|
TIKTOK?: {
|
|
16469
16737
|
id?: string | null;
|
|
@@ -16510,6 +16778,10 @@ type $OpenApiTs = {
|
|
|
16510
16778
|
THREADS?: {
|
|
16511
16779
|
id?: string | null;
|
|
16512
16780
|
permalink?: string | null;
|
|
16781
|
+
/**
|
|
16782
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
16783
|
+
*/
|
|
16784
|
+
creationId?: string | null;
|
|
16513
16785
|
} | null;
|
|
16514
16786
|
BLUESKY?: {
|
|
16515
16787
|
id?: string | null;
|
|
@@ -16817,6 +17089,22 @@ type $OpenApiTs = {
|
|
|
16817
17089
|
uploadId: string;
|
|
16818
17090
|
altText?: string | null;
|
|
16819
17091
|
}> | null;
|
|
17092
|
+
topicTag?: string | null;
|
|
17093
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
17094
|
+
linkAttachment?: string | null;
|
|
17095
|
+
poll?: {
|
|
17096
|
+
optionA: string;
|
|
17097
|
+
optionB: string;
|
|
17098
|
+
optionC?: string | null;
|
|
17099
|
+
optionD?: string | null;
|
|
17100
|
+
} | null;
|
|
17101
|
+
gif?: {
|
|
17102
|
+
gifId: string;
|
|
17103
|
+
provider?: 'GIPHY';
|
|
17104
|
+
} | null;
|
|
17105
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
17106
|
+
crosspostToInstagramStory?: boolean | null;
|
|
17107
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
16820
17108
|
} | null;
|
|
16821
17109
|
TIKTOK?: {
|
|
16822
17110
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -17249,6 +17537,10 @@ type $OpenApiTs = {
|
|
|
17249
17537
|
id?: string | null;
|
|
17250
17538
|
permalink?: string | null;
|
|
17251
17539
|
thumbnail?: string | null;
|
|
17540
|
+
/**
|
|
17541
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
17542
|
+
*/
|
|
17543
|
+
creationId?: string | null;
|
|
17252
17544
|
} | null;
|
|
17253
17545
|
TIKTOK?: {
|
|
17254
17546
|
id?: string | null;
|
|
@@ -17295,6 +17587,10 @@ type $OpenApiTs = {
|
|
|
17295
17587
|
THREADS?: {
|
|
17296
17588
|
id?: string | null;
|
|
17297
17589
|
permalink?: string | null;
|
|
17590
|
+
/**
|
|
17591
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
17592
|
+
*/
|
|
17593
|
+
creationId?: string | null;
|
|
17298
17594
|
} | null;
|
|
17299
17595
|
BLUESKY?: {
|
|
17300
17596
|
id?: string | null;
|
|
@@ -17600,6 +17896,22 @@ type $OpenApiTs = {
|
|
|
17600
17896
|
uploadId: string;
|
|
17601
17897
|
altText?: string | null;
|
|
17602
17898
|
}> | null;
|
|
17899
|
+
topicTag?: string | null;
|
|
17900
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
17901
|
+
linkAttachment?: string | null;
|
|
17902
|
+
poll?: {
|
|
17903
|
+
optionA: string;
|
|
17904
|
+
optionB: string;
|
|
17905
|
+
optionC?: string | null;
|
|
17906
|
+
optionD?: string | null;
|
|
17907
|
+
} | null;
|
|
17908
|
+
gif?: {
|
|
17909
|
+
gifId: string;
|
|
17910
|
+
provider?: 'GIPHY';
|
|
17911
|
+
} | null;
|
|
17912
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
17913
|
+
crosspostToInstagramStory?: boolean | null;
|
|
17914
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
17603
17915
|
} | null;
|
|
17604
17916
|
TIKTOK?: {
|
|
17605
17917
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -18032,6 +18344,10 @@ type $OpenApiTs = {
|
|
|
18032
18344
|
id?: string | null;
|
|
18033
18345
|
permalink?: string | null;
|
|
18034
18346
|
thumbnail?: string | null;
|
|
18347
|
+
/**
|
|
18348
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
18349
|
+
*/
|
|
18350
|
+
creationId?: string | null;
|
|
18035
18351
|
} | null;
|
|
18036
18352
|
TIKTOK?: {
|
|
18037
18353
|
id?: string | null;
|
|
@@ -18078,6 +18394,10 @@ type $OpenApiTs = {
|
|
|
18078
18394
|
THREADS?: {
|
|
18079
18395
|
id?: string | null;
|
|
18080
18396
|
permalink?: string | null;
|
|
18397
|
+
/**
|
|
18398
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
18399
|
+
*/
|
|
18400
|
+
creationId?: string | null;
|
|
18081
18401
|
} | null;
|
|
18082
18402
|
BLUESKY?: {
|
|
18083
18403
|
id?: string | null;
|
|
@@ -18314,6 +18634,22 @@ type $OpenApiTs = {
|
|
|
18314
18634
|
uploadId: string;
|
|
18315
18635
|
altText?: string | null;
|
|
18316
18636
|
}> | null;
|
|
18637
|
+
topicTag?: string | null;
|
|
18638
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
18639
|
+
linkAttachment?: string | null;
|
|
18640
|
+
poll?: {
|
|
18641
|
+
optionA: string;
|
|
18642
|
+
optionB: string;
|
|
18643
|
+
optionC?: string | null;
|
|
18644
|
+
optionD?: string | null;
|
|
18645
|
+
} | null;
|
|
18646
|
+
gif?: {
|
|
18647
|
+
gifId: string;
|
|
18648
|
+
provider?: 'GIPHY';
|
|
18649
|
+
} | null;
|
|
18650
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
18651
|
+
crosspostToInstagramStory?: boolean | null;
|
|
18652
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
18317
18653
|
} | null;
|
|
18318
18654
|
TIKTOK?: {
|
|
18319
18655
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -18746,6 +19082,10 @@ type $OpenApiTs = {
|
|
|
18746
19082
|
id?: string | null;
|
|
18747
19083
|
permalink?: string | null;
|
|
18748
19084
|
thumbnail?: string | null;
|
|
19085
|
+
/**
|
|
19086
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
19087
|
+
*/
|
|
19088
|
+
creationId?: string | null;
|
|
18749
19089
|
} | null;
|
|
18750
19090
|
TIKTOK?: {
|
|
18751
19091
|
id?: string | null;
|
|
@@ -18792,6 +19132,10 @@ type $OpenApiTs = {
|
|
|
18792
19132
|
THREADS?: {
|
|
18793
19133
|
id?: string | null;
|
|
18794
19134
|
permalink?: string | null;
|
|
19135
|
+
/**
|
|
19136
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
19137
|
+
*/
|
|
19138
|
+
creationId?: string | null;
|
|
18795
19139
|
} | null;
|
|
18796
19140
|
BLUESKY?: {
|
|
18797
19141
|
id?: string | null;
|
|
@@ -19024,6 +19368,22 @@ type $OpenApiTs = {
|
|
|
19024
19368
|
uploadId: string;
|
|
19025
19369
|
altText?: string | null;
|
|
19026
19370
|
}> | null;
|
|
19371
|
+
topicTag?: string | null;
|
|
19372
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
19373
|
+
linkAttachment?: string | null;
|
|
19374
|
+
poll?: {
|
|
19375
|
+
optionA: string;
|
|
19376
|
+
optionB: string;
|
|
19377
|
+
optionC?: string | null;
|
|
19378
|
+
optionD?: string | null;
|
|
19379
|
+
} | null;
|
|
19380
|
+
gif?: {
|
|
19381
|
+
gifId: string;
|
|
19382
|
+
provider?: 'GIPHY';
|
|
19383
|
+
} | null;
|
|
19384
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
19385
|
+
crosspostToInstagramStory?: boolean | null;
|
|
19386
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
19027
19387
|
} | null;
|
|
19028
19388
|
TIKTOK?: {
|
|
19029
19389
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -19456,6 +19816,10 @@ type $OpenApiTs = {
|
|
|
19456
19816
|
id?: string | null;
|
|
19457
19817
|
permalink?: string | null;
|
|
19458
19818
|
thumbnail?: string | null;
|
|
19819
|
+
/**
|
|
19820
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
19821
|
+
*/
|
|
19822
|
+
creationId?: string | null;
|
|
19459
19823
|
} | null;
|
|
19460
19824
|
TIKTOK?: {
|
|
19461
19825
|
id?: string | null;
|
|
@@ -19502,6 +19866,10 @@ type $OpenApiTs = {
|
|
|
19502
19866
|
THREADS?: {
|
|
19503
19867
|
id?: string | null;
|
|
19504
19868
|
permalink?: string | null;
|
|
19869
|
+
/**
|
|
19870
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
19871
|
+
*/
|
|
19872
|
+
creationId?: string | null;
|
|
19505
19873
|
} | null;
|
|
19506
19874
|
BLUESKY?: {
|
|
19507
19875
|
id?: string | null;
|
|
@@ -19809,6 +20177,22 @@ type $OpenApiTs = {
|
|
|
19809
20177
|
uploadId: string;
|
|
19810
20178
|
altText?: string | null;
|
|
19811
20179
|
}> | null;
|
|
20180
|
+
topicTag?: string | null;
|
|
20181
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
20182
|
+
linkAttachment?: string | null;
|
|
20183
|
+
poll?: {
|
|
20184
|
+
optionA: string;
|
|
20185
|
+
optionB: string;
|
|
20186
|
+
optionC?: string | null;
|
|
20187
|
+
optionD?: string | null;
|
|
20188
|
+
} | null;
|
|
20189
|
+
gif?: {
|
|
20190
|
+
gifId: string;
|
|
20191
|
+
provider?: 'GIPHY';
|
|
20192
|
+
} | null;
|
|
20193
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
20194
|
+
crosspostToInstagramStory?: boolean | null;
|
|
20195
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
19812
20196
|
} | null;
|
|
19813
20197
|
TIKTOK?: {
|
|
19814
20198
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -20241,6 +20625,10 @@ type $OpenApiTs = {
|
|
|
20241
20625
|
id?: string | null;
|
|
20242
20626
|
permalink?: string | null;
|
|
20243
20627
|
thumbnail?: string | null;
|
|
20628
|
+
/**
|
|
20629
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
20630
|
+
*/
|
|
20631
|
+
creationId?: string | null;
|
|
20244
20632
|
} | null;
|
|
20245
20633
|
TIKTOK?: {
|
|
20246
20634
|
id?: string | null;
|
|
@@ -20287,6 +20675,10 @@ type $OpenApiTs = {
|
|
|
20287
20675
|
THREADS?: {
|
|
20288
20676
|
id?: string | null;
|
|
20289
20677
|
permalink?: string | null;
|
|
20678
|
+
/**
|
|
20679
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
20680
|
+
*/
|
|
20681
|
+
creationId?: string | null;
|
|
20290
20682
|
} | null;
|
|
20291
20683
|
BLUESKY?: {
|
|
20292
20684
|
id?: string | null;
|
|
@@ -20525,6 +20917,22 @@ type $OpenApiTs = {
|
|
|
20525
20917
|
uploadId: string;
|
|
20526
20918
|
altText?: string | null;
|
|
20527
20919
|
}> | null;
|
|
20920
|
+
topicTag?: string | null;
|
|
20921
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
20922
|
+
linkAttachment?: string | null;
|
|
20923
|
+
poll?: {
|
|
20924
|
+
optionA: string;
|
|
20925
|
+
optionB: string;
|
|
20926
|
+
optionC?: string | null;
|
|
20927
|
+
optionD?: string | null;
|
|
20928
|
+
} | null;
|
|
20929
|
+
gif?: {
|
|
20930
|
+
gifId: string;
|
|
20931
|
+
provider?: 'GIPHY';
|
|
20932
|
+
} | null;
|
|
20933
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
20934
|
+
crosspostToInstagramStory?: boolean | null;
|
|
20935
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
20528
20936
|
} | null;
|
|
20529
20937
|
TIKTOK?: {
|
|
20530
20938
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -20957,6 +21365,10 @@ type $OpenApiTs = {
|
|
|
20957
21365
|
id?: string | null;
|
|
20958
21366
|
permalink?: string | null;
|
|
20959
21367
|
thumbnail?: string | null;
|
|
21368
|
+
/**
|
|
21369
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
21370
|
+
*/
|
|
21371
|
+
creationId?: string | null;
|
|
20960
21372
|
} | null;
|
|
20961
21373
|
TIKTOK?: {
|
|
20962
21374
|
id?: string | null;
|
|
@@ -21003,6 +21415,10 @@ type $OpenApiTs = {
|
|
|
21003
21415
|
THREADS?: {
|
|
21004
21416
|
id?: string | null;
|
|
21005
21417
|
permalink?: string | null;
|
|
21418
|
+
/**
|
|
21419
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
21420
|
+
*/
|
|
21421
|
+
creationId?: string | null;
|
|
21006
21422
|
} | null;
|
|
21007
21423
|
BLUESKY?: {
|
|
21008
21424
|
id?: string | null;
|
|
@@ -21352,6 +21768,22 @@ type $OpenApiTs = {
|
|
|
21352
21768
|
uploadId: string;
|
|
21353
21769
|
altText?: string | null;
|
|
21354
21770
|
}> | null;
|
|
21771
|
+
topicTag?: string | null;
|
|
21772
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
21773
|
+
linkAttachment?: string | null;
|
|
21774
|
+
poll?: {
|
|
21775
|
+
optionA: string;
|
|
21776
|
+
optionB: string;
|
|
21777
|
+
optionC?: string | null;
|
|
21778
|
+
optionD?: string | null;
|
|
21779
|
+
} | null;
|
|
21780
|
+
gif?: {
|
|
21781
|
+
gifId: string;
|
|
21782
|
+
provider?: 'GIPHY';
|
|
21783
|
+
} | null;
|
|
21784
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
21785
|
+
crosspostToInstagramStory?: boolean | null;
|
|
21786
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
21355
21787
|
} | null;
|
|
21356
21788
|
TIKTOK?: {
|
|
21357
21789
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -21784,6 +22216,10 @@ type $OpenApiTs = {
|
|
|
21784
22216
|
id?: string | null;
|
|
21785
22217
|
permalink?: string | null;
|
|
21786
22218
|
thumbnail?: string | null;
|
|
22219
|
+
/**
|
|
22220
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
22221
|
+
*/
|
|
22222
|
+
creationId?: string | null;
|
|
21787
22223
|
} | null;
|
|
21788
22224
|
TIKTOK?: {
|
|
21789
22225
|
id?: string | null;
|
|
@@ -21830,6 +22266,10 @@ type $OpenApiTs = {
|
|
|
21830
22266
|
THREADS?: {
|
|
21831
22267
|
id?: string | null;
|
|
21832
22268
|
permalink?: string | null;
|
|
22269
|
+
/**
|
|
22270
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
22271
|
+
*/
|
|
22272
|
+
creationId?: string | null;
|
|
21833
22273
|
} | null;
|
|
21834
22274
|
BLUESKY?: {
|
|
21835
22275
|
id?: string | null;
|
|
@@ -22212,6 +22652,22 @@ type $OpenApiTs = {
|
|
|
22212
22652
|
uploadId: string;
|
|
22213
22653
|
altText?: string | null;
|
|
22214
22654
|
}> | null;
|
|
22655
|
+
topicTag?: string | null;
|
|
22656
|
+
replyControl?: 'everyone' | 'accounts_you_follow' | 'mentioned_only' | 'parent_post_author_only' | 'followers_only' | null;
|
|
22657
|
+
linkAttachment?: string | null;
|
|
22658
|
+
poll?: {
|
|
22659
|
+
optionA: string;
|
|
22660
|
+
optionB: string;
|
|
22661
|
+
optionC?: string | null;
|
|
22662
|
+
optionD?: string | null;
|
|
22663
|
+
} | null;
|
|
22664
|
+
gif?: {
|
|
22665
|
+
gifId: string;
|
|
22666
|
+
provider?: 'GIPHY';
|
|
22667
|
+
} | null;
|
|
22668
|
+
allowlistedCountryCodes?: Array<(string)> | null;
|
|
22669
|
+
crosspostToInstagramStory?: boolean | null;
|
|
22670
|
+
crosspostToInstagramStoryDarkMode?: boolean | null;
|
|
22215
22671
|
} | null;
|
|
22216
22672
|
TIKTOK?: {
|
|
22217
22673
|
type?: 'VIDEO' | 'IMAGE';
|
|
@@ -22644,6 +23100,10 @@ type $OpenApiTs = {
|
|
|
22644
23100
|
id?: string | null;
|
|
22645
23101
|
permalink?: string | null;
|
|
22646
23102
|
thumbnail?: string | null;
|
|
23103
|
+
/**
|
|
23104
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
23105
|
+
*/
|
|
23106
|
+
creationId?: string | null;
|
|
22647
23107
|
} | null;
|
|
22648
23108
|
TIKTOK?: {
|
|
22649
23109
|
id?: string | null;
|
|
@@ -22690,6 +23150,10 @@ type $OpenApiTs = {
|
|
|
22690
23150
|
THREADS?: {
|
|
22691
23151
|
id?: string | null;
|
|
22692
23152
|
permalink?: string | null;
|
|
23153
|
+
/**
|
|
23154
|
+
* Media container id; lets a retry detect a container Meta already published.
|
|
23155
|
+
*/
|
|
23156
|
+
creationId?: string | null;
|
|
22693
23157
|
} | null;
|
|
22694
23158
|
BLUESKY?: {
|
|
22695
23159
|
id?: string | null;
|