bundlesocial 2.21.0 → 2.23.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 +65 -0
- package/dist/index.d.ts +65 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -693,6 +693,7 @@ type SocialAccountCreatePortalLinkData = {
|
|
|
693
693
|
hideUserLogo?: boolean;
|
|
694
694
|
hideUserName?: boolean;
|
|
695
695
|
hideLanguageSwitcher?: boolean;
|
|
696
|
+
showModalOnConnectSuccess?: boolean;
|
|
696
697
|
language?: 'en' | 'pl' | 'fr' | 'hi' | 'sv';
|
|
697
698
|
};
|
|
698
699
|
};
|
|
@@ -985,6 +986,10 @@ type PostGetResponse = {
|
|
|
985
986
|
* The URL to image uploaded on bundle.social.
|
|
986
987
|
*/
|
|
987
988
|
thumbnail?: string | null;
|
|
989
|
+
/**
|
|
990
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
991
|
+
*/
|
|
992
|
+
nativeScheduleTime?: string | null;
|
|
988
993
|
} | null;
|
|
989
994
|
INSTAGRAM?: {
|
|
990
995
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -1341,6 +1346,10 @@ type PostUpdateData = {
|
|
|
1341
1346
|
* The URL to image uploaded on bundle.social.
|
|
1342
1347
|
*/
|
|
1343
1348
|
thumbnail?: string | null;
|
|
1349
|
+
/**
|
|
1350
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
1351
|
+
*/
|
|
1352
|
+
nativeScheduleTime?: string | null;
|
|
1344
1353
|
} | null;
|
|
1345
1354
|
INSTAGRAM?: {
|
|
1346
1355
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -1554,6 +1563,10 @@ type PostUpdateResponse = {
|
|
|
1554
1563
|
* The URL to image uploaded on bundle.social.
|
|
1555
1564
|
*/
|
|
1556
1565
|
thumbnail?: string | null;
|
|
1566
|
+
/**
|
|
1567
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
1568
|
+
*/
|
|
1569
|
+
nativeScheduleTime?: string | null;
|
|
1557
1570
|
} | null;
|
|
1558
1571
|
INSTAGRAM?: {
|
|
1559
1572
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -1849,6 +1862,10 @@ type PostDeleteResponse = {
|
|
|
1849
1862
|
* The URL to image uploaded on bundle.social.
|
|
1850
1863
|
*/
|
|
1851
1864
|
thumbnail?: string | null;
|
|
1865
|
+
/**
|
|
1866
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
1867
|
+
*/
|
|
1868
|
+
nativeScheduleTime?: string | null;
|
|
1852
1869
|
} | null;
|
|
1853
1870
|
INSTAGRAM?: {
|
|
1854
1871
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -2152,6 +2169,10 @@ type PostGetListResponse = {
|
|
|
2152
2169
|
* The URL to image uploaded on bundle.social.
|
|
2153
2170
|
*/
|
|
2154
2171
|
thumbnail?: string | null;
|
|
2172
|
+
/**
|
|
2173
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
2174
|
+
*/
|
|
2175
|
+
nativeScheduleTime?: string | null;
|
|
2155
2176
|
} | null;
|
|
2156
2177
|
INSTAGRAM?: {
|
|
2157
2178
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -2510,6 +2531,10 @@ type PostCreateData = {
|
|
|
2510
2531
|
* The URL to image uploaded on bundle.social.
|
|
2511
2532
|
*/
|
|
2512
2533
|
thumbnail?: string | null;
|
|
2534
|
+
/**
|
|
2535
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
2536
|
+
*/
|
|
2537
|
+
nativeScheduleTime?: string | null;
|
|
2513
2538
|
} | null;
|
|
2514
2539
|
INSTAGRAM?: {
|
|
2515
2540
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -2723,6 +2748,10 @@ type PostCreateResponse = {
|
|
|
2723
2748
|
* The URL to image uploaded on bundle.social.
|
|
2724
2749
|
*/
|
|
2725
2750
|
thumbnail?: string | null;
|
|
2751
|
+
/**
|
|
2752
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
2753
|
+
*/
|
|
2754
|
+
nativeScheduleTime?: string | null;
|
|
2726
2755
|
} | null;
|
|
2727
2756
|
INSTAGRAM?: {
|
|
2728
2757
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -3069,6 +3098,10 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3069
3098
|
* The URL to image uploaded on bundle.social.
|
|
3070
3099
|
*/
|
|
3071
3100
|
thumbnail?: string | null;
|
|
3101
|
+
/**
|
|
3102
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
3103
|
+
*/
|
|
3104
|
+
nativeScheduleTime?: string | null;
|
|
3072
3105
|
} | null;
|
|
3073
3106
|
INSTAGRAM?: {
|
|
3074
3107
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -3426,6 +3459,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3426
3459
|
* The URL to image uploaded on bundle.social.
|
|
3427
3460
|
*/
|
|
3428
3461
|
thumbnail?: string | null;
|
|
3462
|
+
/**
|
|
3463
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
3464
|
+
*/
|
|
3465
|
+
nativeScheduleTime?: string | null;
|
|
3429
3466
|
} | null;
|
|
3430
3467
|
INSTAGRAM?: {
|
|
3431
3468
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -6435,6 +6472,10 @@ type $OpenApiTs = {
|
|
|
6435
6472
|
* The URL to image uploaded on bundle.social.
|
|
6436
6473
|
*/
|
|
6437
6474
|
thumbnail?: string | null;
|
|
6475
|
+
/**
|
|
6476
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
6477
|
+
*/
|
|
6478
|
+
nativeScheduleTime?: string | null;
|
|
6438
6479
|
} | null;
|
|
6439
6480
|
INSTAGRAM?: {
|
|
6440
6481
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -6837,6 +6878,10 @@ type $OpenApiTs = {
|
|
|
6837
6878
|
* The URL to image uploaded on bundle.social.
|
|
6838
6879
|
*/
|
|
6839
6880
|
thumbnail?: string | null;
|
|
6881
|
+
/**
|
|
6882
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
6883
|
+
*/
|
|
6884
|
+
nativeScheduleTime?: string | null;
|
|
6840
6885
|
} | null;
|
|
6841
6886
|
INSTAGRAM?: {
|
|
6842
6887
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -7177,6 +7222,10 @@ type $OpenApiTs = {
|
|
|
7177
7222
|
* The URL to image uploaded on bundle.social.
|
|
7178
7223
|
*/
|
|
7179
7224
|
thumbnail?: string | null;
|
|
7225
|
+
/**
|
|
7226
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
7227
|
+
*/
|
|
7228
|
+
nativeScheduleTime?: string | null;
|
|
7180
7229
|
} | null;
|
|
7181
7230
|
INSTAGRAM?: {
|
|
7182
7231
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -7520,6 +7569,10 @@ type $OpenApiTs = {
|
|
|
7520
7569
|
* The URL to image uploaded on bundle.social.
|
|
7521
7570
|
*/
|
|
7522
7571
|
thumbnail?: string | null;
|
|
7572
|
+
/**
|
|
7573
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
7574
|
+
*/
|
|
7575
|
+
nativeScheduleTime?: string | null;
|
|
7523
7576
|
} | null;
|
|
7524
7577
|
INSTAGRAM?: {
|
|
7525
7578
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -7924,6 +7977,10 @@ type $OpenApiTs = {
|
|
|
7924
7977
|
* The URL to image uploaded on bundle.social.
|
|
7925
7978
|
*/
|
|
7926
7979
|
thumbnail?: string | null;
|
|
7980
|
+
/**
|
|
7981
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
7982
|
+
*/
|
|
7983
|
+
nativeScheduleTime?: string | null;
|
|
7927
7984
|
} | null;
|
|
7928
7985
|
INSTAGRAM?: {
|
|
7929
7986
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -8362,6 +8419,10 @@ type $OpenApiTs = {
|
|
|
8362
8419
|
* The URL to image uploaded on bundle.social.
|
|
8363
8420
|
*/
|
|
8364
8421
|
thumbnail?: string | null;
|
|
8422
|
+
/**
|
|
8423
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
8424
|
+
*/
|
|
8425
|
+
nativeScheduleTime?: string | null;
|
|
8365
8426
|
} | null;
|
|
8366
8427
|
INSTAGRAM?: {
|
|
8367
8428
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -8811,6 +8872,10 @@ type $OpenApiTs = {
|
|
|
8811
8872
|
* The URL to image uploaded on bundle.social.
|
|
8812
8873
|
*/
|
|
8813
8874
|
thumbnail?: string | null;
|
|
8875
|
+
/**
|
|
8876
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
8877
|
+
*/
|
|
8878
|
+
nativeScheduleTime?: string | null;
|
|
8814
8879
|
} | null;
|
|
8815
8880
|
INSTAGRAM?: {
|
|
8816
8881
|
type?: 'POST' | 'REEL' | 'STORY';
|
package/dist/index.d.ts
CHANGED
|
@@ -693,6 +693,7 @@ type SocialAccountCreatePortalLinkData = {
|
|
|
693
693
|
hideUserLogo?: boolean;
|
|
694
694
|
hideUserName?: boolean;
|
|
695
695
|
hideLanguageSwitcher?: boolean;
|
|
696
|
+
showModalOnConnectSuccess?: boolean;
|
|
696
697
|
language?: 'en' | 'pl' | 'fr' | 'hi' | 'sv';
|
|
697
698
|
};
|
|
698
699
|
};
|
|
@@ -985,6 +986,10 @@ type PostGetResponse = {
|
|
|
985
986
|
* The URL to image uploaded on bundle.social.
|
|
986
987
|
*/
|
|
987
988
|
thumbnail?: string | null;
|
|
989
|
+
/**
|
|
990
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
991
|
+
*/
|
|
992
|
+
nativeScheduleTime?: string | null;
|
|
988
993
|
} | null;
|
|
989
994
|
INSTAGRAM?: {
|
|
990
995
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -1341,6 +1346,10 @@ type PostUpdateData = {
|
|
|
1341
1346
|
* The URL to image uploaded on bundle.social.
|
|
1342
1347
|
*/
|
|
1343
1348
|
thumbnail?: string | null;
|
|
1349
|
+
/**
|
|
1350
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
1351
|
+
*/
|
|
1352
|
+
nativeScheduleTime?: string | null;
|
|
1344
1353
|
} | null;
|
|
1345
1354
|
INSTAGRAM?: {
|
|
1346
1355
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -1554,6 +1563,10 @@ type PostUpdateResponse = {
|
|
|
1554
1563
|
* The URL to image uploaded on bundle.social.
|
|
1555
1564
|
*/
|
|
1556
1565
|
thumbnail?: string | null;
|
|
1566
|
+
/**
|
|
1567
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
1568
|
+
*/
|
|
1569
|
+
nativeScheduleTime?: string | null;
|
|
1557
1570
|
} | null;
|
|
1558
1571
|
INSTAGRAM?: {
|
|
1559
1572
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -1849,6 +1862,10 @@ type PostDeleteResponse = {
|
|
|
1849
1862
|
* The URL to image uploaded on bundle.social.
|
|
1850
1863
|
*/
|
|
1851
1864
|
thumbnail?: string | null;
|
|
1865
|
+
/**
|
|
1866
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
1867
|
+
*/
|
|
1868
|
+
nativeScheduleTime?: string | null;
|
|
1852
1869
|
} | null;
|
|
1853
1870
|
INSTAGRAM?: {
|
|
1854
1871
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -2152,6 +2169,10 @@ type PostGetListResponse = {
|
|
|
2152
2169
|
* The URL to image uploaded on bundle.social.
|
|
2153
2170
|
*/
|
|
2154
2171
|
thumbnail?: string | null;
|
|
2172
|
+
/**
|
|
2173
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
2174
|
+
*/
|
|
2175
|
+
nativeScheduleTime?: string | null;
|
|
2155
2176
|
} | null;
|
|
2156
2177
|
INSTAGRAM?: {
|
|
2157
2178
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -2510,6 +2531,10 @@ type PostCreateData = {
|
|
|
2510
2531
|
* The URL to image uploaded on bundle.social.
|
|
2511
2532
|
*/
|
|
2512
2533
|
thumbnail?: string | null;
|
|
2534
|
+
/**
|
|
2535
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
2536
|
+
*/
|
|
2537
|
+
nativeScheduleTime?: string | null;
|
|
2513
2538
|
} | null;
|
|
2514
2539
|
INSTAGRAM?: {
|
|
2515
2540
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -2723,6 +2748,10 @@ type PostCreateResponse = {
|
|
|
2723
2748
|
* The URL to image uploaded on bundle.social.
|
|
2724
2749
|
*/
|
|
2725
2750
|
thumbnail?: string | null;
|
|
2751
|
+
/**
|
|
2752
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
2753
|
+
*/
|
|
2754
|
+
nativeScheduleTime?: string | null;
|
|
2726
2755
|
} | null;
|
|
2727
2756
|
INSTAGRAM?: {
|
|
2728
2757
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -3069,6 +3098,10 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3069
3098
|
* The URL to image uploaded on bundle.social.
|
|
3070
3099
|
*/
|
|
3071
3100
|
thumbnail?: string | null;
|
|
3101
|
+
/**
|
|
3102
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
3103
|
+
*/
|
|
3104
|
+
nativeScheduleTime?: string | null;
|
|
3072
3105
|
} | null;
|
|
3073
3106
|
INSTAGRAM?: {
|
|
3074
3107
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -3426,6 +3459,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3426
3459
|
* The URL to image uploaded on bundle.social.
|
|
3427
3460
|
*/
|
|
3428
3461
|
thumbnail?: string | null;
|
|
3462
|
+
/**
|
|
3463
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
3464
|
+
*/
|
|
3465
|
+
nativeScheduleTime?: string | null;
|
|
3429
3466
|
} | null;
|
|
3430
3467
|
INSTAGRAM?: {
|
|
3431
3468
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -6435,6 +6472,10 @@ type $OpenApiTs = {
|
|
|
6435
6472
|
* The URL to image uploaded on bundle.social.
|
|
6436
6473
|
*/
|
|
6437
6474
|
thumbnail?: string | null;
|
|
6475
|
+
/**
|
|
6476
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
6477
|
+
*/
|
|
6478
|
+
nativeScheduleTime?: string | null;
|
|
6438
6479
|
} | null;
|
|
6439
6480
|
INSTAGRAM?: {
|
|
6440
6481
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -6837,6 +6878,10 @@ type $OpenApiTs = {
|
|
|
6837
6878
|
* The URL to image uploaded on bundle.social.
|
|
6838
6879
|
*/
|
|
6839
6880
|
thumbnail?: string | null;
|
|
6881
|
+
/**
|
|
6882
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
6883
|
+
*/
|
|
6884
|
+
nativeScheduleTime?: string | null;
|
|
6840
6885
|
} | null;
|
|
6841
6886
|
INSTAGRAM?: {
|
|
6842
6887
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -7177,6 +7222,10 @@ type $OpenApiTs = {
|
|
|
7177
7222
|
* The URL to image uploaded on bundle.social.
|
|
7178
7223
|
*/
|
|
7179
7224
|
thumbnail?: string | null;
|
|
7225
|
+
/**
|
|
7226
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
7227
|
+
*/
|
|
7228
|
+
nativeScheduleTime?: string | null;
|
|
7180
7229
|
} | null;
|
|
7181
7230
|
INSTAGRAM?: {
|
|
7182
7231
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -7520,6 +7569,10 @@ type $OpenApiTs = {
|
|
|
7520
7569
|
* The URL to image uploaded on bundle.social.
|
|
7521
7570
|
*/
|
|
7522
7571
|
thumbnail?: string | null;
|
|
7572
|
+
/**
|
|
7573
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
7574
|
+
*/
|
|
7575
|
+
nativeScheduleTime?: string | null;
|
|
7523
7576
|
} | null;
|
|
7524
7577
|
INSTAGRAM?: {
|
|
7525
7578
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -7924,6 +7977,10 @@ type $OpenApiTs = {
|
|
|
7924
7977
|
* The URL to image uploaded on bundle.social.
|
|
7925
7978
|
*/
|
|
7926
7979
|
thumbnail?: string | null;
|
|
7980
|
+
/**
|
|
7981
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
7982
|
+
*/
|
|
7983
|
+
nativeScheduleTime?: string | null;
|
|
7927
7984
|
} | null;
|
|
7928
7985
|
INSTAGRAM?: {
|
|
7929
7986
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -8362,6 +8419,10 @@ type $OpenApiTs = {
|
|
|
8362
8419
|
* The URL to image uploaded on bundle.social.
|
|
8363
8420
|
*/
|
|
8364
8421
|
thumbnail?: string | null;
|
|
8422
|
+
/**
|
|
8423
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
8424
|
+
*/
|
|
8425
|
+
nativeScheduleTime?: string | null;
|
|
8365
8426
|
} | null;
|
|
8366
8427
|
INSTAGRAM?: {
|
|
8367
8428
|
type?: 'POST' | 'REEL' | 'STORY';
|
|
@@ -8811,6 +8872,10 @@ type $OpenApiTs = {
|
|
|
8811
8872
|
* The URL to image uploaded on bundle.social.
|
|
8812
8873
|
*/
|
|
8813
8874
|
thumbnail?: string | null;
|
|
8875
|
+
/**
|
|
8876
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
8877
|
+
*/
|
|
8878
|
+
nativeScheduleTime?: string | null;
|
|
8814
8879
|
} | null;
|
|
8815
8880
|
INSTAGRAM?: {
|
|
8816
8881
|
type?: 'POST' | 'REEL' | 'STORY';
|