bundlesocial 2.13.0 → 2.15.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 +463 -14
- package/dist/index.d.ts +463 -14
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -386,6 +386,133 @@ type TeamDeleteTeamResponse = {
|
|
|
386
386
|
updatedAt: string | null;
|
|
387
387
|
deletedAt?: string | null;
|
|
388
388
|
};
|
|
389
|
+
type TeamGetListData = {
|
|
390
|
+
limit?: number | null;
|
|
391
|
+
offset?: number | null;
|
|
392
|
+
};
|
|
393
|
+
type TeamGetListResponse = {
|
|
394
|
+
items: Array<{
|
|
395
|
+
id: string;
|
|
396
|
+
name: string;
|
|
397
|
+
avatarUrl?: string | null;
|
|
398
|
+
organizationId: string;
|
|
399
|
+
createdById: string;
|
|
400
|
+
createdAt: string | null;
|
|
401
|
+
updatedAt: string | null;
|
|
402
|
+
deletedAt?: string | null;
|
|
403
|
+
organization: {
|
|
404
|
+
id: string;
|
|
405
|
+
createdById: string;
|
|
406
|
+
promotionCodeId?: string | null;
|
|
407
|
+
name?: string | null;
|
|
408
|
+
avatarUrl?: string | null;
|
|
409
|
+
apiAccess?: boolean;
|
|
410
|
+
ref?: string | null;
|
|
411
|
+
dailyPostLimit?: {
|
|
412
|
+
TWITTER?: number;
|
|
413
|
+
FACEBOOK?: number;
|
|
414
|
+
INSTAGRAM?: number;
|
|
415
|
+
LINKEDIN?: number;
|
|
416
|
+
YOUTUBE?: number;
|
|
417
|
+
TIKTOK?: number;
|
|
418
|
+
THREADS?: number;
|
|
419
|
+
PINTEREST?: number;
|
|
420
|
+
REDDIT?: number;
|
|
421
|
+
DISCORD?: number;
|
|
422
|
+
SLACK?: number;
|
|
423
|
+
MASTODON?: number;
|
|
424
|
+
} | null;
|
|
425
|
+
createdAt: string | null;
|
|
426
|
+
updatedAt: string | null;
|
|
427
|
+
deletedAt?: string | null;
|
|
428
|
+
};
|
|
429
|
+
createdBy: {
|
|
430
|
+
id: string;
|
|
431
|
+
externalId: string;
|
|
432
|
+
email: string;
|
|
433
|
+
emailVerified?: string | null;
|
|
434
|
+
firstName?: string | null;
|
|
435
|
+
lastName?: string | null;
|
|
436
|
+
avatarUrl?: string | null;
|
|
437
|
+
role: 'ADMIN' | 'CUSTOMER';
|
|
438
|
+
createdAt: string | null;
|
|
439
|
+
updatedAt: string | null;
|
|
440
|
+
deletedAt?: string | null;
|
|
441
|
+
};
|
|
442
|
+
bots: Array<{
|
|
443
|
+
id: string;
|
|
444
|
+
name: string;
|
|
445
|
+
avatarUrl?: string | null;
|
|
446
|
+
teamId: string;
|
|
447
|
+
createdAt: string | null;
|
|
448
|
+
updatedAt: string | null;
|
|
449
|
+
deletedAt?: string | null;
|
|
450
|
+
}>;
|
|
451
|
+
socialAccounts: Array<{
|
|
452
|
+
id: string;
|
|
453
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
454
|
+
teamId: string;
|
|
455
|
+
username?: string | null;
|
|
456
|
+
displayName?: string | null;
|
|
457
|
+
externalId?: string | null;
|
|
458
|
+
userUsername?: string | null;
|
|
459
|
+
userDisplayName?: string | null;
|
|
460
|
+
userId?: string | null;
|
|
461
|
+
channels?: Array<{
|
|
462
|
+
id: string;
|
|
463
|
+
name?: string | null;
|
|
464
|
+
username?: string | null;
|
|
465
|
+
webhook?: {
|
|
466
|
+
id?: string | null;
|
|
467
|
+
name?: string | null;
|
|
468
|
+
avatar?: string | null;
|
|
469
|
+
url?: string | null;
|
|
470
|
+
} | null;
|
|
471
|
+
}> | null;
|
|
472
|
+
createdAt: string | null;
|
|
473
|
+
updatedAt: string | null;
|
|
474
|
+
deletedAt?: string | null;
|
|
475
|
+
}>;
|
|
476
|
+
bio?: {
|
|
477
|
+
id: string;
|
|
478
|
+
username: string;
|
|
479
|
+
name: string | null;
|
|
480
|
+
description: string | null;
|
|
481
|
+
avatarUrl: string | null;
|
|
482
|
+
socials: {
|
|
483
|
+
[key: string]: (string | null);
|
|
484
|
+
} | null;
|
|
485
|
+
teamId: string;
|
|
486
|
+
createdAt: string | null;
|
|
487
|
+
updatedAt: string | null;
|
|
488
|
+
items: Array<{
|
|
489
|
+
id: string;
|
|
490
|
+
bioId: string;
|
|
491
|
+
name: string;
|
|
492
|
+
link: string;
|
|
493
|
+
icon?: string | null;
|
|
494
|
+
enabled: boolean;
|
|
495
|
+
order?: number | null;
|
|
496
|
+
createdAt: string | null;
|
|
497
|
+
updatedAt: string | null;
|
|
498
|
+
analytics: Array<{
|
|
499
|
+
id: string;
|
|
500
|
+
count: number;
|
|
501
|
+
bioItemId: string;
|
|
502
|
+
deviceType: {
|
|
503
|
+
[key: string]: (number);
|
|
504
|
+
};
|
|
505
|
+
country: {
|
|
506
|
+
[key: string]: (number);
|
|
507
|
+
};
|
|
508
|
+
createdAt: string | null;
|
|
509
|
+
updatedAt: string | null;
|
|
510
|
+
}>;
|
|
511
|
+
}>;
|
|
512
|
+
} | null;
|
|
513
|
+
}>;
|
|
514
|
+
total: number;
|
|
515
|
+
};
|
|
389
516
|
type TeamCreateTeamData = {
|
|
390
517
|
/**
|
|
391
518
|
* Body
|
|
@@ -585,6 +712,7 @@ type SocialAccountCopyResponse = Array<{
|
|
|
585
712
|
deletedAt?: string | null;
|
|
586
713
|
}>;
|
|
587
714
|
type UploadGetListData = {
|
|
715
|
+
status?: 'USED' | 'UNUSED' | null;
|
|
588
716
|
teamId?: string | null;
|
|
589
717
|
type?: 'image' | 'video' | null;
|
|
590
718
|
};
|
|
@@ -608,6 +736,13 @@ type UploadGetListResponse = Array<{
|
|
|
608
736
|
ext?: string | null;
|
|
609
737
|
createdAt: string | null;
|
|
610
738
|
updatedAt: string | null;
|
|
739
|
+
posts: Array<{
|
|
740
|
+
postId: string;
|
|
741
|
+
uploadId: string;
|
|
742
|
+
createdAt: string | null;
|
|
743
|
+
updatedAt: string | null;
|
|
744
|
+
deletedAt?: string | null;
|
|
745
|
+
}>;
|
|
611
746
|
}>;
|
|
612
747
|
type UploadCreateData = {
|
|
613
748
|
/**
|
|
@@ -691,6 +826,13 @@ type UploadGetResponse = {
|
|
|
691
826
|
ext?: string | null;
|
|
692
827
|
createdAt: string | null;
|
|
693
828
|
updatedAt: string | null;
|
|
829
|
+
posts: Array<{
|
|
830
|
+
postId: string;
|
|
831
|
+
uploadId: string;
|
|
832
|
+
createdAt: string | null;
|
|
833
|
+
updatedAt: string | null;
|
|
834
|
+
deletedAt?: string | null;
|
|
835
|
+
}>;
|
|
694
836
|
};
|
|
695
837
|
type UploadDeleteData = {
|
|
696
838
|
id: string;
|
|
@@ -770,7 +912,7 @@ type PostGetResponse = {
|
|
|
770
912
|
title: string;
|
|
771
913
|
postDate: string | null;
|
|
772
914
|
postedDate?: string | null;
|
|
773
|
-
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
|
|
915
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW';
|
|
774
916
|
data: {
|
|
775
917
|
TWITTER?: {
|
|
776
918
|
text?: string | null;
|
|
@@ -911,6 +1053,14 @@ type PostGetResponse = {
|
|
|
911
1053
|
* Set to true if the video is made for kids.
|
|
912
1054
|
*/
|
|
913
1055
|
madeForKids?: boolean | null;
|
|
1056
|
+
/**
|
|
1057
|
+
* Set to true if video contains AI generated content
|
|
1058
|
+
*/
|
|
1059
|
+
containsSyntheticMedia?: boolean | null;
|
|
1060
|
+
/**
|
|
1061
|
+
* Set to true if video has paid product placement
|
|
1062
|
+
*/
|
|
1063
|
+
hasPaidProductPlacement?: boolean | null;
|
|
914
1064
|
} | null;
|
|
915
1065
|
REDDIT?: {
|
|
916
1066
|
/**
|
|
@@ -1257,6 +1407,14 @@ type PostUpdateData = {
|
|
|
1257
1407
|
* Set to true if the video is made for kids.
|
|
1258
1408
|
*/
|
|
1259
1409
|
madeForKids?: boolean | null;
|
|
1410
|
+
/**
|
|
1411
|
+
* Set to true if video contains AI generated content
|
|
1412
|
+
*/
|
|
1413
|
+
containsSyntheticMedia?: boolean | null;
|
|
1414
|
+
/**
|
|
1415
|
+
* Set to true if video has paid product placement
|
|
1416
|
+
*/
|
|
1417
|
+
hasPaidProductPlacement?: boolean | null;
|
|
1260
1418
|
} | null;
|
|
1261
1419
|
REDDIT?: {
|
|
1262
1420
|
/**
|
|
@@ -1321,7 +1479,7 @@ type PostUpdateResponse = {
|
|
|
1321
1479
|
title: string;
|
|
1322
1480
|
postDate: string | null;
|
|
1323
1481
|
postedDate?: string | null;
|
|
1324
|
-
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
|
|
1482
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW';
|
|
1325
1483
|
data: {
|
|
1326
1484
|
TWITTER?: {
|
|
1327
1485
|
text?: string | null;
|
|
@@ -1462,6 +1620,14 @@ type PostUpdateResponse = {
|
|
|
1462
1620
|
* Set to true if the video is made for kids.
|
|
1463
1621
|
*/
|
|
1464
1622
|
madeForKids?: boolean | null;
|
|
1623
|
+
/**
|
|
1624
|
+
* Set to true if video contains AI generated content
|
|
1625
|
+
*/
|
|
1626
|
+
containsSyntheticMedia?: boolean | null;
|
|
1627
|
+
/**
|
|
1628
|
+
* Set to true if video has paid product placement
|
|
1629
|
+
*/
|
|
1630
|
+
hasPaidProductPlacement?: boolean | null;
|
|
1465
1631
|
} | null;
|
|
1466
1632
|
REDDIT?: {
|
|
1467
1633
|
/**
|
|
@@ -1608,7 +1774,7 @@ type PostDeleteResponse = {
|
|
|
1608
1774
|
title: string;
|
|
1609
1775
|
postDate: string | null;
|
|
1610
1776
|
postedDate?: string | null;
|
|
1611
|
-
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
|
|
1777
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW';
|
|
1612
1778
|
data: {
|
|
1613
1779
|
TWITTER?: {
|
|
1614
1780
|
text?: string | null;
|
|
@@ -1749,6 +1915,14 @@ type PostDeleteResponse = {
|
|
|
1749
1915
|
* Set to true if the video is made for kids.
|
|
1750
1916
|
*/
|
|
1751
1917
|
madeForKids?: boolean | null;
|
|
1918
|
+
/**
|
|
1919
|
+
* Set to true if video contains AI generated content
|
|
1920
|
+
*/
|
|
1921
|
+
containsSyntheticMedia?: boolean | null;
|
|
1922
|
+
/**
|
|
1923
|
+
* Set to true if video has paid product placement
|
|
1924
|
+
*/
|
|
1925
|
+
hasPaidProductPlacement?: boolean | null;
|
|
1752
1926
|
} | null;
|
|
1753
1927
|
REDDIT?: {
|
|
1754
1928
|
/**
|
|
@@ -1892,7 +2066,7 @@ type PostGetListData = {
|
|
|
1892
2066
|
orderBy?: 'createdAt' | 'updatedAt' | 'postDate' | 'postedDate' | 'deletedAt' | null;
|
|
1893
2067
|
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')> | null;
|
|
1894
2068
|
q?: string | null;
|
|
1895
|
-
status?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | null;
|
|
2069
|
+
status?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | null;
|
|
1896
2070
|
teamId: string;
|
|
1897
2071
|
};
|
|
1898
2072
|
type PostGetListResponse = {
|
|
@@ -1903,7 +2077,7 @@ type PostGetListResponse = {
|
|
|
1903
2077
|
title: string;
|
|
1904
2078
|
postDate: string | null;
|
|
1905
2079
|
postedDate?: string | null;
|
|
1906
|
-
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
|
|
2080
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW';
|
|
1907
2081
|
data: {
|
|
1908
2082
|
TWITTER?: {
|
|
1909
2083
|
text?: string | null;
|
|
@@ -2044,6 +2218,14 @@ type PostGetListResponse = {
|
|
|
2044
2218
|
* Set to true if the video is made for kids.
|
|
2045
2219
|
*/
|
|
2046
2220
|
madeForKids?: boolean | null;
|
|
2221
|
+
/**
|
|
2222
|
+
* Set to true if video contains AI generated content
|
|
2223
|
+
*/
|
|
2224
|
+
containsSyntheticMedia?: boolean | null;
|
|
2225
|
+
/**
|
|
2226
|
+
* Set to true if video has paid product placement
|
|
2227
|
+
*/
|
|
2228
|
+
hasPaidProductPlacement?: boolean | null;
|
|
2047
2229
|
} | null;
|
|
2048
2230
|
REDDIT?: {
|
|
2049
2231
|
/**
|
|
@@ -2392,6 +2574,14 @@ type PostCreateData = {
|
|
|
2392
2574
|
* Set to true if the video is made for kids.
|
|
2393
2575
|
*/
|
|
2394
2576
|
madeForKids?: boolean | null;
|
|
2577
|
+
/**
|
|
2578
|
+
* Set to true if video contains AI generated content
|
|
2579
|
+
*/
|
|
2580
|
+
containsSyntheticMedia?: boolean | null;
|
|
2581
|
+
/**
|
|
2582
|
+
* Set to true if video has paid product placement
|
|
2583
|
+
*/
|
|
2584
|
+
hasPaidProductPlacement?: boolean | null;
|
|
2395
2585
|
} | null;
|
|
2396
2586
|
REDDIT?: {
|
|
2397
2587
|
/**
|
|
@@ -2456,7 +2646,7 @@ type PostCreateResponse = {
|
|
|
2456
2646
|
title: string;
|
|
2457
2647
|
postDate: string | null;
|
|
2458
2648
|
postedDate?: string | null;
|
|
2459
|
-
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
|
|
2649
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW';
|
|
2460
2650
|
data: {
|
|
2461
2651
|
TWITTER?: {
|
|
2462
2652
|
text?: string | null;
|
|
@@ -2597,6 +2787,14 @@ type PostCreateResponse = {
|
|
|
2597
2787
|
* Set to true if the video is made for kids.
|
|
2598
2788
|
*/
|
|
2599
2789
|
madeForKids?: boolean | null;
|
|
2790
|
+
/**
|
|
2791
|
+
* Set to true if video contains AI generated content
|
|
2792
|
+
*/
|
|
2793
|
+
containsSyntheticMedia?: boolean | null;
|
|
2794
|
+
/**
|
|
2795
|
+
* Set to true if video has paid product placement
|
|
2796
|
+
*/
|
|
2797
|
+
hasPaidProductPlacement?: boolean | null;
|
|
2600
2798
|
} | null;
|
|
2601
2799
|
REDDIT?: {
|
|
2602
2800
|
/**
|
|
@@ -2845,7 +3043,7 @@ type AnalyticsGetProfilePostResponse = {
|
|
|
2845
3043
|
title: string;
|
|
2846
3044
|
postDate: string | null;
|
|
2847
3045
|
postedDate?: string | null;
|
|
2848
|
-
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
|
|
3046
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW';
|
|
2849
3047
|
data: {
|
|
2850
3048
|
TWITTER?: {
|
|
2851
3049
|
text?: string | null;
|
|
@@ -2986,6 +3184,14 @@ type AnalyticsGetProfilePostResponse = {
|
|
|
2986
3184
|
* Set to true if the video is made for kids.
|
|
2987
3185
|
*/
|
|
2988
3186
|
madeForKids?: boolean | null;
|
|
3187
|
+
/**
|
|
3188
|
+
* Set to true if video contains AI generated content
|
|
3189
|
+
*/
|
|
3190
|
+
containsSyntheticMedia?: boolean | null;
|
|
3191
|
+
/**
|
|
3192
|
+
* Set to true if video has paid product placement
|
|
3193
|
+
*/
|
|
3194
|
+
hasPaidProductPlacement?: boolean | null;
|
|
2989
3195
|
} | null;
|
|
2990
3196
|
REDDIT?: {
|
|
2991
3197
|
/**
|
|
@@ -4332,6 +4538,177 @@ type $OpenApiTs = {
|
|
|
4332
4538
|
};
|
|
4333
4539
|
};
|
|
4334
4540
|
'/api/v1/team/': {
|
|
4541
|
+
get: {
|
|
4542
|
+
req: TeamGetListData;
|
|
4543
|
+
res: {
|
|
4544
|
+
/**
|
|
4545
|
+
* 200
|
|
4546
|
+
*/
|
|
4547
|
+
200: {
|
|
4548
|
+
items: Array<{
|
|
4549
|
+
id: string;
|
|
4550
|
+
name: string;
|
|
4551
|
+
avatarUrl?: string | null;
|
|
4552
|
+
organizationId: string;
|
|
4553
|
+
createdById: string;
|
|
4554
|
+
createdAt: string | null;
|
|
4555
|
+
updatedAt: string | null;
|
|
4556
|
+
deletedAt?: string | null;
|
|
4557
|
+
organization: {
|
|
4558
|
+
id: string;
|
|
4559
|
+
createdById: string;
|
|
4560
|
+
promotionCodeId?: string | null;
|
|
4561
|
+
name?: string | null;
|
|
4562
|
+
avatarUrl?: string | null;
|
|
4563
|
+
apiAccess?: boolean;
|
|
4564
|
+
ref?: string | null;
|
|
4565
|
+
dailyPostLimit?: {
|
|
4566
|
+
TWITTER?: number;
|
|
4567
|
+
FACEBOOK?: number;
|
|
4568
|
+
INSTAGRAM?: number;
|
|
4569
|
+
LINKEDIN?: number;
|
|
4570
|
+
YOUTUBE?: number;
|
|
4571
|
+
TIKTOK?: number;
|
|
4572
|
+
THREADS?: number;
|
|
4573
|
+
PINTEREST?: number;
|
|
4574
|
+
REDDIT?: number;
|
|
4575
|
+
DISCORD?: number;
|
|
4576
|
+
SLACK?: number;
|
|
4577
|
+
MASTODON?: number;
|
|
4578
|
+
} | null;
|
|
4579
|
+
createdAt: string | null;
|
|
4580
|
+
updatedAt: string | null;
|
|
4581
|
+
deletedAt?: string | null;
|
|
4582
|
+
};
|
|
4583
|
+
createdBy: {
|
|
4584
|
+
id: string;
|
|
4585
|
+
externalId: string;
|
|
4586
|
+
email: string;
|
|
4587
|
+
emailVerified?: string | null;
|
|
4588
|
+
firstName?: string | null;
|
|
4589
|
+
lastName?: string | null;
|
|
4590
|
+
avatarUrl?: string | null;
|
|
4591
|
+
role: 'ADMIN' | 'CUSTOMER';
|
|
4592
|
+
createdAt: string | null;
|
|
4593
|
+
updatedAt: string | null;
|
|
4594
|
+
deletedAt?: string | null;
|
|
4595
|
+
};
|
|
4596
|
+
bots: Array<{
|
|
4597
|
+
id: string;
|
|
4598
|
+
name: string;
|
|
4599
|
+
avatarUrl?: string | null;
|
|
4600
|
+
teamId: string;
|
|
4601
|
+
createdAt: string | null;
|
|
4602
|
+
updatedAt: string | null;
|
|
4603
|
+
deletedAt?: string | null;
|
|
4604
|
+
}>;
|
|
4605
|
+
socialAccounts: Array<{
|
|
4606
|
+
id: string;
|
|
4607
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
4608
|
+
teamId: string;
|
|
4609
|
+
username?: string | null;
|
|
4610
|
+
displayName?: string | null;
|
|
4611
|
+
externalId?: string | null;
|
|
4612
|
+
userUsername?: string | null;
|
|
4613
|
+
userDisplayName?: string | null;
|
|
4614
|
+
userId?: string | null;
|
|
4615
|
+
channels?: Array<{
|
|
4616
|
+
id: string;
|
|
4617
|
+
name?: string | null;
|
|
4618
|
+
username?: string | null;
|
|
4619
|
+
webhook?: {
|
|
4620
|
+
id?: string | null;
|
|
4621
|
+
name?: string | null;
|
|
4622
|
+
avatar?: string | null;
|
|
4623
|
+
url?: string | null;
|
|
4624
|
+
} | null;
|
|
4625
|
+
}> | null;
|
|
4626
|
+
createdAt: string | null;
|
|
4627
|
+
updatedAt: string | null;
|
|
4628
|
+
deletedAt?: string | null;
|
|
4629
|
+
}>;
|
|
4630
|
+
bio?: {
|
|
4631
|
+
id: string;
|
|
4632
|
+
username: string;
|
|
4633
|
+
name: string | null;
|
|
4634
|
+
description: string | null;
|
|
4635
|
+
avatarUrl: string | null;
|
|
4636
|
+
socials: {
|
|
4637
|
+
[key: string]: (string | null);
|
|
4638
|
+
} | null;
|
|
4639
|
+
teamId: string;
|
|
4640
|
+
createdAt: string | null;
|
|
4641
|
+
updatedAt: string | null;
|
|
4642
|
+
items: Array<{
|
|
4643
|
+
id: string;
|
|
4644
|
+
bioId: string;
|
|
4645
|
+
name: string;
|
|
4646
|
+
link: string;
|
|
4647
|
+
icon?: string | null;
|
|
4648
|
+
enabled: boolean;
|
|
4649
|
+
order?: number | null;
|
|
4650
|
+
createdAt: string | null;
|
|
4651
|
+
updatedAt: string | null;
|
|
4652
|
+
analytics: Array<{
|
|
4653
|
+
id: string;
|
|
4654
|
+
count: number;
|
|
4655
|
+
bioItemId: string;
|
|
4656
|
+
deviceType: {
|
|
4657
|
+
[key: string]: (number);
|
|
4658
|
+
};
|
|
4659
|
+
country: {
|
|
4660
|
+
[key: string]: (number);
|
|
4661
|
+
};
|
|
4662
|
+
createdAt: string | null;
|
|
4663
|
+
updatedAt: string | null;
|
|
4664
|
+
}>;
|
|
4665
|
+
}>;
|
|
4666
|
+
} | null;
|
|
4667
|
+
}>;
|
|
4668
|
+
total: number;
|
|
4669
|
+
};
|
|
4670
|
+
/**
|
|
4671
|
+
* 400
|
|
4672
|
+
*/
|
|
4673
|
+
400: {
|
|
4674
|
+
message: string;
|
|
4675
|
+
issues?: Array<{
|
|
4676
|
+
message: string;
|
|
4677
|
+
path?: Array<(string | number)> | null;
|
|
4678
|
+
}> | null;
|
|
4679
|
+
};
|
|
4680
|
+
/**
|
|
4681
|
+
* 401
|
|
4682
|
+
*/
|
|
4683
|
+
401: {
|
|
4684
|
+
message: string;
|
|
4685
|
+
};
|
|
4686
|
+
/**
|
|
4687
|
+
* 403
|
|
4688
|
+
*/
|
|
4689
|
+
403: {
|
|
4690
|
+
message: string;
|
|
4691
|
+
};
|
|
4692
|
+
/**
|
|
4693
|
+
* 404
|
|
4694
|
+
*/
|
|
4695
|
+
404: {
|
|
4696
|
+
message: string;
|
|
4697
|
+
};
|
|
4698
|
+
/**
|
|
4699
|
+
* 429
|
|
4700
|
+
*/
|
|
4701
|
+
429: {
|
|
4702
|
+
message: string;
|
|
4703
|
+
};
|
|
4704
|
+
/**
|
|
4705
|
+
* 500
|
|
4706
|
+
*/
|
|
4707
|
+
500: {
|
|
4708
|
+
message: string;
|
|
4709
|
+
};
|
|
4710
|
+
};
|
|
4711
|
+
};
|
|
4335
4712
|
post: {
|
|
4336
4713
|
req: TeamCreateTeamData;
|
|
4337
4714
|
res: {
|
|
@@ -4827,6 +5204,13 @@ type $OpenApiTs = {
|
|
|
4827
5204
|
ext?: string | null;
|
|
4828
5205
|
createdAt: string | null;
|
|
4829
5206
|
updatedAt: string | null;
|
|
5207
|
+
posts: Array<{
|
|
5208
|
+
postId: string;
|
|
5209
|
+
uploadId: string;
|
|
5210
|
+
createdAt: string | null;
|
|
5211
|
+
updatedAt: string | null;
|
|
5212
|
+
deletedAt?: string | null;
|
|
5213
|
+
}>;
|
|
4830
5214
|
}>;
|
|
4831
5215
|
/**
|
|
4832
5216
|
* 400
|
|
@@ -5036,6 +5420,13 @@ type $OpenApiTs = {
|
|
|
5036
5420
|
ext?: string | null;
|
|
5037
5421
|
createdAt: string | null;
|
|
5038
5422
|
updatedAt: string | null;
|
|
5423
|
+
posts: Array<{
|
|
5424
|
+
postId: string;
|
|
5425
|
+
uploadId: string;
|
|
5426
|
+
createdAt: string | null;
|
|
5427
|
+
updatedAt: string | null;
|
|
5428
|
+
deletedAt?: string | null;
|
|
5429
|
+
}>;
|
|
5039
5430
|
};
|
|
5040
5431
|
/**
|
|
5041
5432
|
* 400
|
|
@@ -5288,7 +5679,7 @@ type $OpenApiTs = {
|
|
|
5288
5679
|
title: string;
|
|
5289
5680
|
postDate: string | null;
|
|
5290
5681
|
postedDate?: string | null;
|
|
5291
|
-
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
|
|
5682
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW';
|
|
5292
5683
|
data: {
|
|
5293
5684
|
TWITTER?: {
|
|
5294
5685
|
text?: string | null;
|
|
@@ -5429,6 +5820,14 @@ type $OpenApiTs = {
|
|
|
5429
5820
|
* Set to true if the video is made for kids.
|
|
5430
5821
|
*/
|
|
5431
5822
|
madeForKids?: boolean | null;
|
|
5823
|
+
/**
|
|
5824
|
+
* Set to true if video contains AI generated content
|
|
5825
|
+
*/
|
|
5826
|
+
containsSyntheticMedia?: boolean | null;
|
|
5827
|
+
/**
|
|
5828
|
+
* Set to true if video has paid product placement
|
|
5829
|
+
*/
|
|
5830
|
+
hasPaidProductPlacement?: boolean | null;
|
|
5432
5831
|
} | null;
|
|
5433
5832
|
REDDIT?: {
|
|
5434
5833
|
/**
|
|
@@ -5680,7 +6079,7 @@ type $OpenApiTs = {
|
|
|
5680
6079
|
title: string;
|
|
5681
6080
|
postDate: string | null;
|
|
5682
6081
|
postedDate?: string | null;
|
|
5683
|
-
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
|
|
6082
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW';
|
|
5684
6083
|
data: {
|
|
5685
6084
|
TWITTER?: {
|
|
5686
6085
|
text?: string | null;
|
|
@@ -5821,6 +6220,14 @@ type $OpenApiTs = {
|
|
|
5821
6220
|
* Set to true if the video is made for kids.
|
|
5822
6221
|
*/
|
|
5823
6222
|
madeForKids?: boolean | null;
|
|
6223
|
+
/**
|
|
6224
|
+
* Set to true if video contains AI generated content
|
|
6225
|
+
*/
|
|
6226
|
+
containsSyntheticMedia?: boolean | null;
|
|
6227
|
+
/**
|
|
6228
|
+
* Set to true if video has paid product placement
|
|
6229
|
+
*/
|
|
6230
|
+
hasPaidProductPlacement?: boolean | null;
|
|
5824
6231
|
} | null;
|
|
5825
6232
|
REDDIT?: {
|
|
5826
6233
|
/**
|
|
@@ -6012,7 +6419,7 @@ type $OpenApiTs = {
|
|
|
6012
6419
|
title: string;
|
|
6013
6420
|
postDate: string | null;
|
|
6014
6421
|
postedDate?: string | null;
|
|
6015
|
-
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
|
|
6422
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW';
|
|
6016
6423
|
data: {
|
|
6017
6424
|
TWITTER?: {
|
|
6018
6425
|
text?: string | null;
|
|
@@ -6153,6 +6560,14 @@ type $OpenApiTs = {
|
|
|
6153
6560
|
* Set to true if the video is made for kids.
|
|
6154
6561
|
*/
|
|
6155
6562
|
madeForKids?: boolean | null;
|
|
6563
|
+
/**
|
|
6564
|
+
* Set to true if video contains AI generated content
|
|
6565
|
+
*/
|
|
6566
|
+
containsSyntheticMedia?: boolean | null;
|
|
6567
|
+
/**
|
|
6568
|
+
* Set to true if video has paid product placement
|
|
6569
|
+
*/
|
|
6570
|
+
hasPaidProductPlacement?: boolean | null;
|
|
6156
6571
|
} | null;
|
|
6157
6572
|
REDDIT?: {
|
|
6158
6573
|
/**
|
|
@@ -6347,7 +6762,7 @@ type $OpenApiTs = {
|
|
|
6347
6762
|
title: string;
|
|
6348
6763
|
postDate: string | null;
|
|
6349
6764
|
postedDate?: string | null;
|
|
6350
|
-
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
|
|
6765
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW';
|
|
6351
6766
|
data: {
|
|
6352
6767
|
TWITTER?: {
|
|
6353
6768
|
text?: string | null;
|
|
@@ -6488,6 +6903,14 @@ type $OpenApiTs = {
|
|
|
6488
6903
|
* Set to true if the video is made for kids.
|
|
6489
6904
|
*/
|
|
6490
6905
|
madeForKids?: boolean | null;
|
|
6906
|
+
/**
|
|
6907
|
+
* Set to true if video contains AI generated content
|
|
6908
|
+
*/
|
|
6909
|
+
containsSyntheticMedia?: boolean | null;
|
|
6910
|
+
/**
|
|
6911
|
+
* Set to true if video has paid product placement
|
|
6912
|
+
*/
|
|
6913
|
+
hasPaidProductPlacement?: boolean | null;
|
|
6491
6914
|
} | null;
|
|
6492
6915
|
REDDIT?: {
|
|
6493
6916
|
/**
|
|
@@ -6741,7 +7164,7 @@ type $OpenApiTs = {
|
|
|
6741
7164
|
title: string;
|
|
6742
7165
|
postDate: string | null;
|
|
6743
7166
|
postedDate?: string | null;
|
|
6744
|
-
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
|
|
7167
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW';
|
|
6745
7168
|
data: {
|
|
6746
7169
|
TWITTER?: {
|
|
6747
7170
|
text?: string | null;
|
|
@@ -6882,6 +7305,14 @@ type $OpenApiTs = {
|
|
|
6882
7305
|
* Set to true if the video is made for kids.
|
|
6883
7306
|
*/
|
|
6884
7307
|
madeForKids?: boolean | null;
|
|
7308
|
+
/**
|
|
7309
|
+
* Set to true if video contains AI generated content
|
|
7310
|
+
*/
|
|
7311
|
+
containsSyntheticMedia?: boolean | null;
|
|
7312
|
+
/**
|
|
7313
|
+
* Set to true if video has paid product placement
|
|
7314
|
+
*/
|
|
7315
|
+
hasPaidProductPlacement?: boolean | null;
|
|
6885
7316
|
} | null;
|
|
6886
7317
|
REDDIT?: {
|
|
6887
7318
|
/**
|
|
@@ -7269,7 +7700,7 @@ type $OpenApiTs = {
|
|
|
7269
7700
|
title: string;
|
|
7270
7701
|
postDate: string | null;
|
|
7271
7702
|
postedDate?: string | null;
|
|
7272
|
-
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
|
|
7703
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW';
|
|
7273
7704
|
data: {
|
|
7274
7705
|
TWITTER?: {
|
|
7275
7706
|
text?: string | null;
|
|
@@ -7410,6 +7841,14 @@ type $OpenApiTs = {
|
|
|
7410
7841
|
* Set to true if the video is made for kids.
|
|
7411
7842
|
*/
|
|
7412
7843
|
madeForKids?: boolean | null;
|
|
7844
|
+
/**
|
|
7845
|
+
* Set to true if video contains AI generated content
|
|
7846
|
+
*/
|
|
7847
|
+
containsSyntheticMedia?: boolean | null;
|
|
7848
|
+
/**
|
|
7849
|
+
* Set to true if video has paid product placement
|
|
7850
|
+
*/
|
|
7851
|
+
hasPaidProductPlacement?: boolean | null;
|
|
7413
7852
|
} | null;
|
|
7414
7853
|
REDDIT?: {
|
|
7415
7854
|
/**
|
|
@@ -8440,6 +8879,15 @@ declare class TeamService {
|
|
|
8440
8879
|
* @throws ApiError
|
|
8441
8880
|
*/
|
|
8442
8881
|
teamDeleteTeam(data: TeamDeleteTeamData): CancelablePromise<TeamDeleteTeamResponse>;
|
|
8882
|
+
/**
|
|
8883
|
+
* Get list of teams
|
|
8884
|
+
* @param data The data for the request.
|
|
8885
|
+
* @param data.offset
|
|
8886
|
+
* @param data.limit
|
|
8887
|
+
* @returns unknown 200
|
|
8888
|
+
* @throws ApiError
|
|
8889
|
+
*/
|
|
8890
|
+
teamGetList(data?: TeamGetListData): CancelablePromise<TeamGetListResponse>;
|
|
8443
8891
|
/**
|
|
8444
8892
|
* Create new team
|
|
8445
8893
|
* @param data The data for the request.
|
|
@@ -8514,6 +8962,7 @@ declare class UploadService {
|
|
|
8514
8962
|
* @param data The data for the request.
|
|
8515
8963
|
* @param data.teamId
|
|
8516
8964
|
* @param data.type
|
|
8965
|
+
* @param data.status
|
|
8517
8966
|
* @returns unknown 200
|
|
8518
8967
|
* @throws ApiError
|
|
8519
8968
|
*/
|
|
@@ -8778,4 +9227,4 @@ declare class Bundlesocial extends Client {
|
|
|
8778
9227
|
constructor(apiKey: string, options?: OpenAPIConfig);
|
|
8779
9228
|
}
|
|
8780
9229
|
|
|
8781
|
-
export { $OpenApiTs, AnalyticsGetProfileAnalyticsData, AnalyticsGetProfileAnalyticsResponse, AnalyticsGetProfilePostData, AnalyticsGetProfilePostResponse, AnalyticsGetProfilePostsData, AnalyticsGetProfilePostsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentUpdateData, CommentUpdateResponse, OpenAPI, OpenAPIConfig, OrganizationGetOrganizationResponse, PostCreateData, PostCreateResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };
|
|
9230
|
+
export { $OpenApiTs, AnalyticsGetProfileAnalyticsData, AnalyticsGetProfileAnalyticsResponse, AnalyticsGetProfilePostData, AnalyticsGetProfilePostResponse, AnalyticsGetProfilePostsData, AnalyticsGetProfilePostsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentUpdateData, CommentUpdateResponse, OpenAPI, OpenAPIConfig, OrganizationGetOrganizationResponse, PostCreateData, PostCreateResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };
|