bundlesocial 2.33.0 → 2.34.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 +98 -24
- package/dist/index.d.ts +98 -24
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -99,12 +99,13 @@ type OrganizationGetOrganizationResponse = {
|
|
|
99
99
|
GOOGLE_BUSINESS?: number;
|
|
100
100
|
} | null;
|
|
101
101
|
monthlyImportLimitPerAccount?: number | null;
|
|
102
|
-
apiAccess
|
|
103
|
-
analyticsDisabled
|
|
104
|
-
analyticsPostsDisabled
|
|
105
|
-
uploadsCompressionEnabled
|
|
102
|
+
apiAccess: boolean;
|
|
103
|
+
analyticsDisabled: boolean;
|
|
104
|
+
analyticsPostsDisabled: boolean;
|
|
105
|
+
uploadsCompressionEnabled: boolean;
|
|
106
106
|
analyticsInterval?: number | null;
|
|
107
107
|
analyticsPostsInterval?: number | null;
|
|
108
|
+
showVerboseErrors: boolean;
|
|
108
109
|
createdAt: string | null;
|
|
109
110
|
updatedAt: string | null;
|
|
110
111
|
deletedAt?: string | null;
|
|
@@ -310,12 +311,13 @@ type TeamGetTeamResponse = {
|
|
|
310
311
|
GOOGLE_BUSINESS?: number;
|
|
311
312
|
} | null;
|
|
312
313
|
monthlyImportLimitPerAccount?: number | null;
|
|
313
|
-
apiAccess
|
|
314
|
-
analyticsDisabled
|
|
315
|
-
analyticsPostsDisabled
|
|
316
|
-
uploadsCompressionEnabled
|
|
314
|
+
apiAccess: boolean;
|
|
315
|
+
analyticsDisabled: boolean;
|
|
316
|
+
analyticsPostsDisabled: boolean;
|
|
317
|
+
uploadsCompressionEnabled: boolean;
|
|
317
318
|
analyticsInterval?: number | null;
|
|
318
319
|
analyticsPostsInterval?: number | null;
|
|
320
|
+
showVerboseErrors: boolean;
|
|
319
321
|
createdAt: string | null;
|
|
320
322
|
updatedAt: string | null;
|
|
321
323
|
deletedAt?: string | null;
|
|
@@ -488,12 +490,13 @@ type TeamGetListResponse = {
|
|
|
488
490
|
GOOGLE_BUSINESS?: number;
|
|
489
491
|
} | null;
|
|
490
492
|
monthlyImportLimitPerAccount?: number | null;
|
|
491
|
-
apiAccess
|
|
492
|
-
analyticsDisabled
|
|
493
|
-
analyticsPostsDisabled
|
|
494
|
-
uploadsCompressionEnabled
|
|
493
|
+
apiAccess: boolean;
|
|
494
|
+
analyticsDisabled: boolean;
|
|
495
|
+
analyticsPostsDisabled: boolean;
|
|
496
|
+
uploadsCompressionEnabled: boolean;
|
|
495
497
|
analyticsInterval?: number | null;
|
|
496
498
|
analyticsPostsInterval?: number | null;
|
|
499
|
+
showVerboseErrors: boolean;
|
|
497
500
|
createdAt: string | null;
|
|
498
501
|
updatedAt: string | null;
|
|
499
502
|
deletedAt?: string | null;
|
|
@@ -788,6 +791,10 @@ type SocialAccountCreatePortalLinkData = {
|
|
|
788
791
|
teamId: string;
|
|
789
792
|
redirectUrl?: string;
|
|
790
793
|
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
794
|
+
/**
|
|
795
|
+
* Time in minutes, after which the link will expire. Minimum 5 minutes, maximum 48 hours.
|
|
796
|
+
*/
|
|
797
|
+
expiresIn?: number;
|
|
791
798
|
logoUrl?: string;
|
|
792
799
|
userLogoUrl?: string;
|
|
793
800
|
userName?: string;
|
|
@@ -1505,6 +1512,10 @@ type PostGetResponse = {
|
|
|
1505
1512
|
id?: string | null;
|
|
1506
1513
|
permalink?: string | null;
|
|
1507
1514
|
thumbnail?: string | null;
|
|
1515
|
+
/**
|
|
1516
|
+
* YouTube resumable upload session URI for retry handling
|
|
1517
|
+
*/
|
|
1518
|
+
sessionUri?: string | null;
|
|
1508
1519
|
} | null;
|
|
1509
1520
|
MASTODON?: {
|
|
1510
1521
|
id?: string | null;
|
|
@@ -2359,6 +2370,10 @@ type PostUpdateResponse = {
|
|
|
2359
2370
|
id?: string | null;
|
|
2360
2371
|
permalink?: string | null;
|
|
2361
2372
|
thumbnail?: string | null;
|
|
2373
|
+
/**
|
|
2374
|
+
* YouTube resumable upload session URI for retry handling
|
|
2375
|
+
*/
|
|
2376
|
+
sessionUri?: string | null;
|
|
2362
2377
|
} | null;
|
|
2363
2378
|
MASTODON?: {
|
|
2364
2379
|
id?: string | null;
|
|
@@ -2863,6 +2878,10 @@ type PostDeleteResponse = {
|
|
|
2863
2878
|
id?: string | null;
|
|
2864
2879
|
permalink?: string | null;
|
|
2865
2880
|
thumbnail?: string | null;
|
|
2881
|
+
/**
|
|
2882
|
+
* YouTube resumable upload session URI for retry handling
|
|
2883
|
+
*/
|
|
2884
|
+
sessionUri?: string | null;
|
|
2866
2885
|
} | null;
|
|
2867
2886
|
MASTODON?: {
|
|
2868
2887
|
id?: string | null;
|
|
@@ -3375,6 +3394,10 @@ type PostGetListResponse = {
|
|
|
3375
3394
|
id?: string | null;
|
|
3376
3395
|
permalink?: string | null;
|
|
3377
3396
|
thumbnail?: string | null;
|
|
3397
|
+
/**
|
|
3398
|
+
* YouTube resumable upload session URI for retry handling
|
|
3399
|
+
*/
|
|
3400
|
+
sessionUri?: string | null;
|
|
3378
3401
|
} | null;
|
|
3379
3402
|
MASTODON?: {
|
|
3380
3403
|
id?: string | null;
|
|
@@ -4231,6 +4254,10 @@ type PostCreateResponse = {
|
|
|
4231
4254
|
id?: string | null;
|
|
4232
4255
|
permalink?: string | null;
|
|
4233
4256
|
thumbnail?: string | null;
|
|
4257
|
+
/**
|
|
4258
|
+
* YouTube resumable upload session URI for retry handling
|
|
4259
|
+
*/
|
|
4260
|
+
sessionUri?: string | null;
|
|
4234
4261
|
} | null;
|
|
4235
4262
|
MASTODON?: {
|
|
4236
4263
|
id?: string | null;
|
|
@@ -4735,6 +4762,10 @@ type PostRetryResponse = {
|
|
|
4735
4762
|
id?: string | null;
|
|
4736
4763
|
permalink?: string | null;
|
|
4737
4764
|
thumbnail?: string | null;
|
|
4765
|
+
/**
|
|
4766
|
+
* YouTube resumable upload session URI for retry handling
|
|
4767
|
+
*/
|
|
4768
|
+
sessionUri?: string | null;
|
|
4738
4769
|
} | null;
|
|
4739
4770
|
MASTODON?: {
|
|
4740
4771
|
id?: string | null;
|
|
@@ -5300,6 +5331,10 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
5300
5331
|
id?: string | null;
|
|
5301
5332
|
permalink?: string | null;
|
|
5302
5333
|
thumbnail?: string | null;
|
|
5334
|
+
/**
|
|
5335
|
+
* YouTube resumable upload session URI for retry handling
|
|
5336
|
+
*/
|
|
5337
|
+
sessionUri?: string | null;
|
|
5303
5338
|
} | null;
|
|
5304
5339
|
MASTODON?: {
|
|
5305
5340
|
id?: string | null;
|
|
@@ -5877,6 +5912,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
5877
5912
|
id?: string | null;
|
|
5878
5913
|
permalink?: string | null;
|
|
5879
5914
|
thumbnail?: string | null;
|
|
5915
|
+
/**
|
|
5916
|
+
* YouTube resumable upload session URI for retry handling
|
|
5917
|
+
*/
|
|
5918
|
+
sessionUri?: string | null;
|
|
5880
5919
|
} | null;
|
|
5881
5920
|
MASTODON?: {
|
|
5882
5921
|
id?: string | null;
|
|
@@ -8086,12 +8125,13 @@ type $OpenApiTs = {
|
|
|
8086
8125
|
GOOGLE_BUSINESS?: number;
|
|
8087
8126
|
} | null;
|
|
8088
8127
|
monthlyImportLimitPerAccount?: number | null;
|
|
8089
|
-
apiAccess
|
|
8090
|
-
analyticsDisabled
|
|
8091
|
-
analyticsPostsDisabled
|
|
8092
|
-
uploadsCompressionEnabled
|
|
8128
|
+
apiAccess: boolean;
|
|
8129
|
+
analyticsDisabled: boolean;
|
|
8130
|
+
analyticsPostsDisabled: boolean;
|
|
8131
|
+
uploadsCompressionEnabled: boolean;
|
|
8093
8132
|
analyticsInterval?: number | null;
|
|
8094
8133
|
analyticsPostsInterval?: number | null;
|
|
8134
|
+
showVerboseErrors: boolean;
|
|
8095
8135
|
createdAt: string | null;
|
|
8096
8136
|
updatedAt: string | null;
|
|
8097
8137
|
deletedAt?: string | null;
|
|
@@ -8485,12 +8525,13 @@ type $OpenApiTs = {
|
|
|
8485
8525
|
GOOGLE_BUSINESS?: number;
|
|
8486
8526
|
} | null;
|
|
8487
8527
|
monthlyImportLimitPerAccount?: number | null;
|
|
8488
|
-
apiAccess
|
|
8489
|
-
analyticsDisabled
|
|
8490
|
-
analyticsPostsDisabled
|
|
8491
|
-
uploadsCompressionEnabled
|
|
8528
|
+
apiAccess: boolean;
|
|
8529
|
+
analyticsDisabled: boolean;
|
|
8530
|
+
analyticsPostsDisabled: boolean;
|
|
8531
|
+
uploadsCompressionEnabled: boolean;
|
|
8492
8532
|
analyticsInterval?: number | null;
|
|
8493
8533
|
analyticsPostsInterval?: number | null;
|
|
8534
|
+
showVerboseErrors: boolean;
|
|
8494
8535
|
createdAt: string | null;
|
|
8495
8536
|
updatedAt: string | null;
|
|
8496
8537
|
deletedAt?: string | null;
|
|
@@ -8791,12 +8832,13 @@ type $OpenApiTs = {
|
|
|
8791
8832
|
GOOGLE_BUSINESS?: number;
|
|
8792
8833
|
} | null;
|
|
8793
8834
|
monthlyImportLimitPerAccount?: number | null;
|
|
8794
|
-
apiAccess
|
|
8795
|
-
analyticsDisabled
|
|
8796
|
-
analyticsPostsDisabled
|
|
8797
|
-
uploadsCompressionEnabled
|
|
8835
|
+
apiAccess: boolean;
|
|
8836
|
+
analyticsDisabled: boolean;
|
|
8837
|
+
analyticsPostsDisabled: boolean;
|
|
8838
|
+
uploadsCompressionEnabled: boolean;
|
|
8798
8839
|
analyticsInterval?: number | null;
|
|
8799
8840
|
analyticsPostsInterval?: number | null;
|
|
8841
|
+
showVerboseErrors: boolean;
|
|
8800
8842
|
createdAt: string | null;
|
|
8801
8843
|
updatedAt: string | null;
|
|
8802
8844
|
deletedAt?: string | null;
|
|
@@ -10404,6 +10446,10 @@ type $OpenApiTs = {
|
|
|
10404
10446
|
id?: string | null;
|
|
10405
10447
|
permalink?: string | null;
|
|
10406
10448
|
thumbnail?: string | null;
|
|
10449
|
+
/**
|
|
10450
|
+
* YouTube resumable upload session URI for retry handling
|
|
10451
|
+
*/
|
|
10452
|
+
sessionUri?: string | null;
|
|
10407
10453
|
} | null;
|
|
10408
10454
|
MASTODON?: {
|
|
10409
10455
|
id?: string | null;
|
|
@@ -11023,6 +11069,10 @@ type $OpenApiTs = {
|
|
|
11023
11069
|
id?: string | null;
|
|
11024
11070
|
permalink?: string | null;
|
|
11025
11071
|
thumbnail?: string | null;
|
|
11072
|
+
/**
|
|
11073
|
+
* YouTube resumable upload session URI for retry handling
|
|
11074
|
+
*/
|
|
11075
|
+
sessionUri?: string | null;
|
|
11026
11076
|
} | null;
|
|
11027
11077
|
MASTODON?: {
|
|
11028
11078
|
id?: string | null;
|
|
@@ -11572,6 +11622,10 @@ type $OpenApiTs = {
|
|
|
11572
11622
|
id?: string | null;
|
|
11573
11623
|
permalink?: string | null;
|
|
11574
11624
|
thumbnail?: string | null;
|
|
11625
|
+
/**
|
|
11626
|
+
* YouTube resumable upload session URI for retry handling
|
|
11627
|
+
*/
|
|
11628
|
+
sessionUri?: string | null;
|
|
11575
11629
|
} | null;
|
|
11576
11630
|
MASTODON?: {
|
|
11577
11631
|
id?: string | null;
|
|
@@ -12124,6 +12178,10 @@ type $OpenApiTs = {
|
|
|
12124
12178
|
id?: string | null;
|
|
12125
12179
|
permalink?: string | null;
|
|
12126
12180
|
thumbnail?: string | null;
|
|
12181
|
+
/**
|
|
12182
|
+
* YouTube resumable upload session URI for retry handling
|
|
12183
|
+
*/
|
|
12184
|
+
sessionUri?: string | null;
|
|
12127
12185
|
} | null;
|
|
12128
12186
|
MASTODON?: {
|
|
12129
12187
|
id?: string | null;
|
|
@@ -12745,6 +12803,10 @@ type $OpenApiTs = {
|
|
|
12745
12803
|
id?: string | null;
|
|
12746
12804
|
permalink?: string | null;
|
|
12747
12805
|
thumbnail?: string | null;
|
|
12806
|
+
/**
|
|
12807
|
+
* YouTube resumable upload session URI for retry handling
|
|
12808
|
+
*/
|
|
12809
|
+
sessionUri?: string | null;
|
|
12748
12810
|
} | null;
|
|
12749
12811
|
MASTODON?: {
|
|
12750
12812
|
id?: string | null;
|
|
@@ -13296,6 +13358,10 @@ type $OpenApiTs = {
|
|
|
13296
13358
|
id?: string | null;
|
|
13297
13359
|
permalink?: string | null;
|
|
13298
13360
|
thumbnail?: string | null;
|
|
13361
|
+
/**
|
|
13362
|
+
* YouTube resumable upload session URI for retry handling
|
|
13363
|
+
*/
|
|
13364
|
+
sessionUri?: string | null;
|
|
13299
13365
|
} | null;
|
|
13300
13366
|
MASTODON?: {
|
|
13301
13367
|
id?: string | null;
|
|
@@ -13953,6 +14019,10 @@ type $OpenApiTs = {
|
|
|
13953
14019
|
id?: string | null;
|
|
13954
14020
|
permalink?: string | null;
|
|
13955
14021
|
thumbnail?: string | null;
|
|
14022
|
+
/**
|
|
14023
|
+
* YouTube resumable upload session URI for retry handling
|
|
14024
|
+
*/
|
|
14025
|
+
sessionUri?: string | null;
|
|
13956
14026
|
} | null;
|
|
13957
14027
|
MASTODON?: {
|
|
13958
14028
|
id?: string | null;
|
|
@@ -14622,6 +14692,10 @@ type $OpenApiTs = {
|
|
|
14622
14692
|
id?: string | null;
|
|
14623
14693
|
permalink?: string | null;
|
|
14624
14694
|
thumbnail?: string | null;
|
|
14695
|
+
/**
|
|
14696
|
+
* YouTube resumable upload session URI for retry handling
|
|
14697
|
+
*/
|
|
14698
|
+
sessionUri?: string | null;
|
|
14625
14699
|
} | null;
|
|
14626
14700
|
MASTODON?: {
|
|
14627
14701
|
id?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -99,12 +99,13 @@ type OrganizationGetOrganizationResponse = {
|
|
|
99
99
|
GOOGLE_BUSINESS?: number;
|
|
100
100
|
} | null;
|
|
101
101
|
monthlyImportLimitPerAccount?: number | null;
|
|
102
|
-
apiAccess
|
|
103
|
-
analyticsDisabled
|
|
104
|
-
analyticsPostsDisabled
|
|
105
|
-
uploadsCompressionEnabled
|
|
102
|
+
apiAccess: boolean;
|
|
103
|
+
analyticsDisabled: boolean;
|
|
104
|
+
analyticsPostsDisabled: boolean;
|
|
105
|
+
uploadsCompressionEnabled: boolean;
|
|
106
106
|
analyticsInterval?: number | null;
|
|
107
107
|
analyticsPostsInterval?: number | null;
|
|
108
|
+
showVerboseErrors: boolean;
|
|
108
109
|
createdAt: string | null;
|
|
109
110
|
updatedAt: string | null;
|
|
110
111
|
deletedAt?: string | null;
|
|
@@ -310,12 +311,13 @@ type TeamGetTeamResponse = {
|
|
|
310
311
|
GOOGLE_BUSINESS?: number;
|
|
311
312
|
} | null;
|
|
312
313
|
monthlyImportLimitPerAccount?: number | null;
|
|
313
|
-
apiAccess
|
|
314
|
-
analyticsDisabled
|
|
315
|
-
analyticsPostsDisabled
|
|
316
|
-
uploadsCompressionEnabled
|
|
314
|
+
apiAccess: boolean;
|
|
315
|
+
analyticsDisabled: boolean;
|
|
316
|
+
analyticsPostsDisabled: boolean;
|
|
317
|
+
uploadsCompressionEnabled: boolean;
|
|
317
318
|
analyticsInterval?: number | null;
|
|
318
319
|
analyticsPostsInterval?: number | null;
|
|
320
|
+
showVerboseErrors: boolean;
|
|
319
321
|
createdAt: string | null;
|
|
320
322
|
updatedAt: string | null;
|
|
321
323
|
deletedAt?: string | null;
|
|
@@ -488,12 +490,13 @@ type TeamGetListResponse = {
|
|
|
488
490
|
GOOGLE_BUSINESS?: number;
|
|
489
491
|
} | null;
|
|
490
492
|
monthlyImportLimitPerAccount?: number | null;
|
|
491
|
-
apiAccess
|
|
492
|
-
analyticsDisabled
|
|
493
|
-
analyticsPostsDisabled
|
|
494
|
-
uploadsCompressionEnabled
|
|
493
|
+
apiAccess: boolean;
|
|
494
|
+
analyticsDisabled: boolean;
|
|
495
|
+
analyticsPostsDisabled: boolean;
|
|
496
|
+
uploadsCompressionEnabled: boolean;
|
|
495
497
|
analyticsInterval?: number | null;
|
|
496
498
|
analyticsPostsInterval?: number | null;
|
|
499
|
+
showVerboseErrors: boolean;
|
|
497
500
|
createdAt: string | null;
|
|
498
501
|
updatedAt: string | null;
|
|
499
502
|
deletedAt?: string | null;
|
|
@@ -788,6 +791,10 @@ type SocialAccountCreatePortalLinkData = {
|
|
|
788
791
|
teamId: string;
|
|
789
792
|
redirectUrl?: string;
|
|
790
793
|
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
794
|
+
/**
|
|
795
|
+
* Time in minutes, after which the link will expire. Minimum 5 minutes, maximum 48 hours.
|
|
796
|
+
*/
|
|
797
|
+
expiresIn?: number;
|
|
791
798
|
logoUrl?: string;
|
|
792
799
|
userLogoUrl?: string;
|
|
793
800
|
userName?: string;
|
|
@@ -1505,6 +1512,10 @@ type PostGetResponse = {
|
|
|
1505
1512
|
id?: string | null;
|
|
1506
1513
|
permalink?: string | null;
|
|
1507
1514
|
thumbnail?: string | null;
|
|
1515
|
+
/**
|
|
1516
|
+
* YouTube resumable upload session URI for retry handling
|
|
1517
|
+
*/
|
|
1518
|
+
sessionUri?: string | null;
|
|
1508
1519
|
} | null;
|
|
1509
1520
|
MASTODON?: {
|
|
1510
1521
|
id?: string | null;
|
|
@@ -2359,6 +2370,10 @@ type PostUpdateResponse = {
|
|
|
2359
2370
|
id?: string | null;
|
|
2360
2371
|
permalink?: string | null;
|
|
2361
2372
|
thumbnail?: string | null;
|
|
2373
|
+
/**
|
|
2374
|
+
* YouTube resumable upload session URI for retry handling
|
|
2375
|
+
*/
|
|
2376
|
+
sessionUri?: string | null;
|
|
2362
2377
|
} | null;
|
|
2363
2378
|
MASTODON?: {
|
|
2364
2379
|
id?: string | null;
|
|
@@ -2863,6 +2878,10 @@ type PostDeleteResponse = {
|
|
|
2863
2878
|
id?: string | null;
|
|
2864
2879
|
permalink?: string | null;
|
|
2865
2880
|
thumbnail?: string | null;
|
|
2881
|
+
/**
|
|
2882
|
+
* YouTube resumable upload session URI for retry handling
|
|
2883
|
+
*/
|
|
2884
|
+
sessionUri?: string | null;
|
|
2866
2885
|
} | null;
|
|
2867
2886
|
MASTODON?: {
|
|
2868
2887
|
id?: string | null;
|
|
@@ -3375,6 +3394,10 @@ type PostGetListResponse = {
|
|
|
3375
3394
|
id?: string | null;
|
|
3376
3395
|
permalink?: string | null;
|
|
3377
3396
|
thumbnail?: string | null;
|
|
3397
|
+
/**
|
|
3398
|
+
* YouTube resumable upload session URI for retry handling
|
|
3399
|
+
*/
|
|
3400
|
+
sessionUri?: string | null;
|
|
3378
3401
|
} | null;
|
|
3379
3402
|
MASTODON?: {
|
|
3380
3403
|
id?: string | null;
|
|
@@ -4231,6 +4254,10 @@ type PostCreateResponse = {
|
|
|
4231
4254
|
id?: string | null;
|
|
4232
4255
|
permalink?: string | null;
|
|
4233
4256
|
thumbnail?: string | null;
|
|
4257
|
+
/**
|
|
4258
|
+
* YouTube resumable upload session URI for retry handling
|
|
4259
|
+
*/
|
|
4260
|
+
sessionUri?: string | null;
|
|
4234
4261
|
} | null;
|
|
4235
4262
|
MASTODON?: {
|
|
4236
4263
|
id?: string | null;
|
|
@@ -4735,6 +4762,10 @@ type PostRetryResponse = {
|
|
|
4735
4762
|
id?: string | null;
|
|
4736
4763
|
permalink?: string | null;
|
|
4737
4764
|
thumbnail?: string | null;
|
|
4765
|
+
/**
|
|
4766
|
+
* YouTube resumable upload session URI for retry handling
|
|
4767
|
+
*/
|
|
4768
|
+
sessionUri?: string | null;
|
|
4738
4769
|
} | null;
|
|
4739
4770
|
MASTODON?: {
|
|
4740
4771
|
id?: string | null;
|
|
@@ -5300,6 +5331,10 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
5300
5331
|
id?: string | null;
|
|
5301
5332
|
permalink?: string | null;
|
|
5302
5333
|
thumbnail?: string | null;
|
|
5334
|
+
/**
|
|
5335
|
+
* YouTube resumable upload session URI for retry handling
|
|
5336
|
+
*/
|
|
5337
|
+
sessionUri?: string | null;
|
|
5303
5338
|
} | null;
|
|
5304
5339
|
MASTODON?: {
|
|
5305
5340
|
id?: string | null;
|
|
@@ -5877,6 +5912,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
5877
5912
|
id?: string | null;
|
|
5878
5913
|
permalink?: string | null;
|
|
5879
5914
|
thumbnail?: string | null;
|
|
5915
|
+
/**
|
|
5916
|
+
* YouTube resumable upload session URI for retry handling
|
|
5917
|
+
*/
|
|
5918
|
+
sessionUri?: string | null;
|
|
5880
5919
|
} | null;
|
|
5881
5920
|
MASTODON?: {
|
|
5882
5921
|
id?: string | null;
|
|
@@ -8086,12 +8125,13 @@ type $OpenApiTs = {
|
|
|
8086
8125
|
GOOGLE_BUSINESS?: number;
|
|
8087
8126
|
} | null;
|
|
8088
8127
|
monthlyImportLimitPerAccount?: number | null;
|
|
8089
|
-
apiAccess
|
|
8090
|
-
analyticsDisabled
|
|
8091
|
-
analyticsPostsDisabled
|
|
8092
|
-
uploadsCompressionEnabled
|
|
8128
|
+
apiAccess: boolean;
|
|
8129
|
+
analyticsDisabled: boolean;
|
|
8130
|
+
analyticsPostsDisabled: boolean;
|
|
8131
|
+
uploadsCompressionEnabled: boolean;
|
|
8093
8132
|
analyticsInterval?: number | null;
|
|
8094
8133
|
analyticsPostsInterval?: number | null;
|
|
8134
|
+
showVerboseErrors: boolean;
|
|
8095
8135
|
createdAt: string | null;
|
|
8096
8136
|
updatedAt: string | null;
|
|
8097
8137
|
deletedAt?: string | null;
|
|
@@ -8485,12 +8525,13 @@ type $OpenApiTs = {
|
|
|
8485
8525
|
GOOGLE_BUSINESS?: number;
|
|
8486
8526
|
} | null;
|
|
8487
8527
|
monthlyImportLimitPerAccount?: number | null;
|
|
8488
|
-
apiAccess
|
|
8489
|
-
analyticsDisabled
|
|
8490
|
-
analyticsPostsDisabled
|
|
8491
|
-
uploadsCompressionEnabled
|
|
8528
|
+
apiAccess: boolean;
|
|
8529
|
+
analyticsDisabled: boolean;
|
|
8530
|
+
analyticsPostsDisabled: boolean;
|
|
8531
|
+
uploadsCompressionEnabled: boolean;
|
|
8492
8532
|
analyticsInterval?: number | null;
|
|
8493
8533
|
analyticsPostsInterval?: number | null;
|
|
8534
|
+
showVerboseErrors: boolean;
|
|
8494
8535
|
createdAt: string | null;
|
|
8495
8536
|
updatedAt: string | null;
|
|
8496
8537
|
deletedAt?: string | null;
|
|
@@ -8791,12 +8832,13 @@ type $OpenApiTs = {
|
|
|
8791
8832
|
GOOGLE_BUSINESS?: number;
|
|
8792
8833
|
} | null;
|
|
8793
8834
|
monthlyImportLimitPerAccount?: number | null;
|
|
8794
|
-
apiAccess
|
|
8795
|
-
analyticsDisabled
|
|
8796
|
-
analyticsPostsDisabled
|
|
8797
|
-
uploadsCompressionEnabled
|
|
8835
|
+
apiAccess: boolean;
|
|
8836
|
+
analyticsDisabled: boolean;
|
|
8837
|
+
analyticsPostsDisabled: boolean;
|
|
8838
|
+
uploadsCompressionEnabled: boolean;
|
|
8798
8839
|
analyticsInterval?: number | null;
|
|
8799
8840
|
analyticsPostsInterval?: number | null;
|
|
8841
|
+
showVerboseErrors: boolean;
|
|
8800
8842
|
createdAt: string | null;
|
|
8801
8843
|
updatedAt: string | null;
|
|
8802
8844
|
deletedAt?: string | null;
|
|
@@ -10404,6 +10446,10 @@ type $OpenApiTs = {
|
|
|
10404
10446
|
id?: string | null;
|
|
10405
10447
|
permalink?: string | null;
|
|
10406
10448
|
thumbnail?: string | null;
|
|
10449
|
+
/**
|
|
10450
|
+
* YouTube resumable upload session URI for retry handling
|
|
10451
|
+
*/
|
|
10452
|
+
sessionUri?: string | null;
|
|
10407
10453
|
} | null;
|
|
10408
10454
|
MASTODON?: {
|
|
10409
10455
|
id?: string | null;
|
|
@@ -11023,6 +11069,10 @@ type $OpenApiTs = {
|
|
|
11023
11069
|
id?: string | null;
|
|
11024
11070
|
permalink?: string | null;
|
|
11025
11071
|
thumbnail?: string | null;
|
|
11072
|
+
/**
|
|
11073
|
+
* YouTube resumable upload session URI for retry handling
|
|
11074
|
+
*/
|
|
11075
|
+
sessionUri?: string | null;
|
|
11026
11076
|
} | null;
|
|
11027
11077
|
MASTODON?: {
|
|
11028
11078
|
id?: string | null;
|
|
@@ -11572,6 +11622,10 @@ type $OpenApiTs = {
|
|
|
11572
11622
|
id?: string | null;
|
|
11573
11623
|
permalink?: string | null;
|
|
11574
11624
|
thumbnail?: string | null;
|
|
11625
|
+
/**
|
|
11626
|
+
* YouTube resumable upload session URI for retry handling
|
|
11627
|
+
*/
|
|
11628
|
+
sessionUri?: string | null;
|
|
11575
11629
|
} | null;
|
|
11576
11630
|
MASTODON?: {
|
|
11577
11631
|
id?: string | null;
|
|
@@ -12124,6 +12178,10 @@ type $OpenApiTs = {
|
|
|
12124
12178
|
id?: string | null;
|
|
12125
12179
|
permalink?: string | null;
|
|
12126
12180
|
thumbnail?: string | null;
|
|
12181
|
+
/**
|
|
12182
|
+
* YouTube resumable upload session URI for retry handling
|
|
12183
|
+
*/
|
|
12184
|
+
sessionUri?: string | null;
|
|
12127
12185
|
} | null;
|
|
12128
12186
|
MASTODON?: {
|
|
12129
12187
|
id?: string | null;
|
|
@@ -12745,6 +12803,10 @@ type $OpenApiTs = {
|
|
|
12745
12803
|
id?: string | null;
|
|
12746
12804
|
permalink?: string | null;
|
|
12747
12805
|
thumbnail?: string | null;
|
|
12806
|
+
/**
|
|
12807
|
+
* YouTube resumable upload session URI for retry handling
|
|
12808
|
+
*/
|
|
12809
|
+
sessionUri?: string | null;
|
|
12748
12810
|
} | null;
|
|
12749
12811
|
MASTODON?: {
|
|
12750
12812
|
id?: string | null;
|
|
@@ -13296,6 +13358,10 @@ type $OpenApiTs = {
|
|
|
13296
13358
|
id?: string | null;
|
|
13297
13359
|
permalink?: string | null;
|
|
13298
13360
|
thumbnail?: string | null;
|
|
13361
|
+
/**
|
|
13362
|
+
* YouTube resumable upload session URI for retry handling
|
|
13363
|
+
*/
|
|
13364
|
+
sessionUri?: string | null;
|
|
13299
13365
|
} | null;
|
|
13300
13366
|
MASTODON?: {
|
|
13301
13367
|
id?: string | null;
|
|
@@ -13953,6 +14019,10 @@ type $OpenApiTs = {
|
|
|
13953
14019
|
id?: string | null;
|
|
13954
14020
|
permalink?: string | null;
|
|
13955
14021
|
thumbnail?: string | null;
|
|
14022
|
+
/**
|
|
14023
|
+
* YouTube resumable upload session URI for retry handling
|
|
14024
|
+
*/
|
|
14025
|
+
sessionUri?: string | null;
|
|
13956
14026
|
} | null;
|
|
13957
14027
|
MASTODON?: {
|
|
13958
14028
|
id?: string | null;
|
|
@@ -14622,6 +14692,10 @@ type $OpenApiTs = {
|
|
|
14622
14692
|
id?: string | null;
|
|
14623
14693
|
permalink?: string | null;
|
|
14624
14694
|
thumbnail?: string | null;
|
|
14695
|
+
/**
|
|
14696
|
+
* YouTube resumable upload session URI for retry handling
|
|
14697
|
+
*/
|
|
14698
|
+
sessionUri?: string | null;
|
|
14625
14699
|
} | null;
|
|
14626
14700
|
MASTODON?: {
|
|
14627
14701
|
id?: string | null;
|