bundlesocial 1.2.0 → 1.4.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 +853 -181
- package/dist/index.d.ts +853 -181
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -318,9 +318,21 @@ type PostCreateData = {
|
|
|
318
318
|
description?: string | null;
|
|
319
319
|
boardName: string;
|
|
320
320
|
uploadIds?: Array<(string)> | null;
|
|
321
|
+
/**
|
|
322
|
+
* The URL to which the Pin will link to.
|
|
323
|
+
*/
|
|
321
324
|
link?: string | null;
|
|
325
|
+
/**
|
|
326
|
+
* The alt text for the image. This is used by screen readers and when the image can't be loaded.
|
|
327
|
+
*/
|
|
322
328
|
altText?: string | null;
|
|
329
|
+
/**
|
|
330
|
+
* A note about the Pin. This is not visible to the public.
|
|
331
|
+
*/
|
|
323
332
|
note?: string | null;
|
|
333
|
+
/**
|
|
334
|
+
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
335
|
+
*/
|
|
324
336
|
dominantColor?: string | null;
|
|
325
337
|
} | null;
|
|
326
338
|
FACEBOOK?: {
|
|
@@ -337,47 +349,91 @@ type PostCreateData = {
|
|
|
337
349
|
text?: string | null;
|
|
338
350
|
uploadIds?: Array<(string)> | null;
|
|
339
351
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
352
|
+
/**
|
|
353
|
+
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
354
|
+
*/
|
|
355
|
+
isBrandContent?: boolean | null;
|
|
356
|
+
/**
|
|
357
|
+
* Set to true if this video is promoting the creator's own business.
|
|
358
|
+
*/
|
|
359
|
+
isOrganicBrandContent?: boolean | null;
|
|
360
|
+
/**
|
|
361
|
+
* If set to true, other TikTok users will not be allowed to make comments on this post.
|
|
362
|
+
*/
|
|
363
|
+
disableComments?: boolean | null;
|
|
364
|
+
/**
|
|
365
|
+
* If set to true, other TikTok users will not be allowed to make Stitches using this post.
|
|
366
|
+
*/
|
|
367
|
+
disableDuet?: boolean | null;
|
|
368
|
+
/**
|
|
369
|
+
* If set to true, other TikTok users will not be allowed to make Duets using this post.
|
|
370
|
+
*/
|
|
371
|
+
disableStitch?: boolean | null;
|
|
340
372
|
} | null;
|
|
341
373
|
LINKEDIN?: {
|
|
342
374
|
text: string;
|
|
343
375
|
uploadIds?: Array<(string)> | null;
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
376
|
+
privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
|
|
377
|
+
/**
|
|
378
|
+
* Set to true if the post shouldn't be displayed in the main feed.
|
|
379
|
+
*/
|
|
380
|
+
hideFromFeed?: boolean | null;
|
|
381
|
+
/**
|
|
382
|
+
* Set to true if the post is not allowed to be reshared.
|
|
383
|
+
*/
|
|
384
|
+
disableReshare?: boolean | null;
|
|
385
|
+
} | null;
|
|
386
|
+
YOUTUBE?: {
|
|
387
|
+
type?: 'VIDEO' | 'SHORT';
|
|
388
|
+
uploadIds?: Array<(string)> | null;
|
|
389
|
+
text?: string | null;
|
|
390
|
+
description?: string | null;
|
|
391
|
+
privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
392
|
+
/**
|
|
393
|
+
* Set to true if the video is made for kids.
|
|
394
|
+
*/
|
|
395
|
+
madeForKids?: boolean | null;
|
|
349
396
|
} | null;
|
|
350
397
|
REDDIT?: {
|
|
351
398
|
sr: string;
|
|
352
399
|
text: string;
|
|
353
400
|
description?: string | null;
|
|
354
401
|
uploadIds?: Array<(string)> | null;
|
|
355
|
-
|
|
402
|
+
/**
|
|
403
|
+
* The URL to which the post will link to.
|
|
404
|
+
*/
|
|
405
|
+
link?: string | null;
|
|
406
|
+
/**
|
|
407
|
+
* Set to true if the post is NSFW.
|
|
408
|
+
*/
|
|
356
409
|
nsfw?: boolean | null;
|
|
357
410
|
} | null;
|
|
358
411
|
DISCORD?: {
|
|
359
412
|
channelId: string;
|
|
360
413
|
text?: string | null;
|
|
361
414
|
uploadIds?: Array<(string)> | null;
|
|
415
|
+
/**
|
|
416
|
+
* The username to display as the author of the message.
|
|
417
|
+
*/
|
|
362
418
|
username?: string | null;
|
|
419
|
+
/**
|
|
420
|
+
* Avatar url to display as the author of the message.
|
|
421
|
+
*/
|
|
363
422
|
avatarUrl?: string | null;
|
|
364
423
|
} | null;
|
|
365
424
|
SLACK?: {
|
|
366
425
|
channelId: string;
|
|
367
426
|
text?: string | null;
|
|
368
427
|
uploadIds?: Array<(string)> | null;
|
|
428
|
+
/**
|
|
429
|
+
* The username to display as the author of the message.
|
|
430
|
+
*/
|
|
369
431
|
username?: string | null;
|
|
432
|
+
/**
|
|
433
|
+
* Avatar url to display as the author of the message.
|
|
434
|
+
*/
|
|
370
435
|
avatarUrl?: string | null;
|
|
371
436
|
} | null;
|
|
372
|
-
YOUTUBE?: {
|
|
373
|
-
type?: 'SHORT';
|
|
374
|
-
uploadIds?: Array<(string)> | null;
|
|
375
|
-
text?: string | null;
|
|
376
|
-
description?: string | null;
|
|
377
|
-
categoryId?: string | null;
|
|
378
|
-
privacyStatus?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
379
|
-
madeForKids?: boolean;
|
|
380
|
-
} | null;
|
|
381
437
|
TELEGRAM?: unknown;
|
|
382
438
|
THREADS?: unknown;
|
|
383
439
|
};
|
|
@@ -400,9 +456,21 @@ type PostCreateResponse = {
|
|
|
400
456
|
description?: string | null;
|
|
401
457
|
boardName: string;
|
|
402
458
|
uploadIds?: Array<(string)> | null;
|
|
459
|
+
/**
|
|
460
|
+
* The URL to which the Pin will link to.
|
|
461
|
+
*/
|
|
403
462
|
link?: string | null;
|
|
463
|
+
/**
|
|
464
|
+
* The alt text for the image. This is used by screen readers and when the image can't be loaded.
|
|
465
|
+
*/
|
|
404
466
|
altText?: string | null;
|
|
467
|
+
/**
|
|
468
|
+
* A note about the Pin. This is not visible to the public.
|
|
469
|
+
*/
|
|
405
470
|
note?: string | null;
|
|
471
|
+
/**
|
|
472
|
+
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
473
|
+
*/
|
|
406
474
|
dominantColor?: string | null;
|
|
407
475
|
} | null;
|
|
408
476
|
FACEBOOK?: {
|
|
@@ -419,47 +487,91 @@ type PostCreateResponse = {
|
|
|
419
487
|
text?: string | null;
|
|
420
488
|
uploadIds?: Array<(string)> | null;
|
|
421
489
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
490
|
+
/**
|
|
491
|
+
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
492
|
+
*/
|
|
493
|
+
isBrandContent?: boolean | null;
|
|
494
|
+
/**
|
|
495
|
+
* Set to true if this video is promoting the creator's own business.
|
|
496
|
+
*/
|
|
497
|
+
isOrganicBrandContent?: boolean | null;
|
|
498
|
+
/**
|
|
499
|
+
* If set to true, other TikTok users will not be allowed to make comments on this post.
|
|
500
|
+
*/
|
|
501
|
+
disableComments?: boolean | null;
|
|
502
|
+
/**
|
|
503
|
+
* If set to true, other TikTok users will not be allowed to make Stitches using this post.
|
|
504
|
+
*/
|
|
505
|
+
disableDuet?: boolean | null;
|
|
506
|
+
/**
|
|
507
|
+
* If set to true, other TikTok users will not be allowed to make Duets using this post.
|
|
508
|
+
*/
|
|
509
|
+
disableStitch?: boolean | null;
|
|
422
510
|
} | null;
|
|
423
511
|
LINKEDIN?: {
|
|
424
512
|
text: string;
|
|
425
513
|
uploadIds?: Array<(string)> | null;
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
514
|
+
privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
|
|
515
|
+
/**
|
|
516
|
+
* Set to true if the post shouldn't be displayed in the main feed.
|
|
517
|
+
*/
|
|
518
|
+
hideFromFeed?: boolean | null;
|
|
519
|
+
/**
|
|
520
|
+
* Set to true if the post is not allowed to be reshared.
|
|
521
|
+
*/
|
|
522
|
+
disableReshare?: boolean | null;
|
|
523
|
+
} | null;
|
|
524
|
+
YOUTUBE?: {
|
|
525
|
+
type?: 'VIDEO' | 'SHORT';
|
|
526
|
+
uploadIds?: Array<(string)> | null;
|
|
527
|
+
text?: string | null;
|
|
528
|
+
description?: string | null;
|
|
529
|
+
privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
530
|
+
/**
|
|
531
|
+
* Set to true if the video is made for kids.
|
|
532
|
+
*/
|
|
533
|
+
madeForKids?: boolean | null;
|
|
431
534
|
} | null;
|
|
432
535
|
REDDIT?: {
|
|
433
536
|
sr: string;
|
|
434
537
|
text: string;
|
|
435
538
|
description?: string | null;
|
|
436
539
|
uploadIds?: Array<(string)> | null;
|
|
437
|
-
|
|
540
|
+
/**
|
|
541
|
+
* The URL to which the post will link to.
|
|
542
|
+
*/
|
|
543
|
+
link?: string | null;
|
|
544
|
+
/**
|
|
545
|
+
* Set to true if the post is NSFW.
|
|
546
|
+
*/
|
|
438
547
|
nsfw?: boolean | null;
|
|
439
548
|
} | null;
|
|
440
549
|
DISCORD?: {
|
|
441
550
|
channelId: string;
|
|
442
551
|
text?: string | null;
|
|
443
552
|
uploadIds?: Array<(string)> | null;
|
|
553
|
+
/**
|
|
554
|
+
* The username to display as the author of the message.
|
|
555
|
+
*/
|
|
444
556
|
username?: string | null;
|
|
557
|
+
/**
|
|
558
|
+
* Avatar url to display as the author of the message.
|
|
559
|
+
*/
|
|
445
560
|
avatarUrl?: string | null;
|
|
446
561
|
} | null;
|
|
447
562
|
SLACK?: {
|
|
448
563
|
channelId: string;
|
|
449
564
|
text?: string | null;
|
|
450
565
|
uploadIds?: Array<(string)> | null;
|
|
566
|
+
/**
|
|
567
|
+
* The username to display as the author of the message.
|
|
568
|
+
*/
|
|
451
569
|
username?: string | null;
|
|
570
|
+
/**
|
|
571
|
+
* Avatar url to display as the author of the message.
|
|
572
|
+
*/
|
|
452
573
|
avatarUrl?: string | null;
|
|
453
574
|
} | null;
|
|
454
|
-
YOUTUBE?: {
|
|
455
|
-
type?: 'SHORT';
|
|
456
|
-
uploadIds?: Array<(string)> | null;
|
|
457
|
-
text?: string | null;
|
|
458
|
-
description?: string | null;
|
|
459
|
-
categoryId?: string | null;
|
|
460
|
-
privacyStatus?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
461
|
-
madeForKids?: boolean;
|
|
462
|
-
} | null;
|
|
463
575
|
TELEGRAM?: unknown;
|
|
464
576
|
THREADS?: unknown;
|
|
465
577
|
};
|
|
@@ -563,9 +675,21 @@ type PostGetListResponse = {
|
|
|
563
675
|
description?: string | null;
|
|
564
676
|
boardName: string;
|
|
565
677
|
uploadIds?: Array<(string)> | null;
|
|
678
|
+
/**
|
|
679
|
+
* The URL to which the Pin will link to.
|
|
680
|
+
*/
|
|
566
681
|
link?: string | null;
|
|
682
|
+
/**
|
|
683
|
+
* The alt text for the image. This is used by screen readers and when the image can't be loaded.
|
|
684
|
+
*/
|
|
567
685
|
altText?: string | null;
|
|
686
|
+
/**
|
|
687
|
+
* A note about the Pin. This is not visible to the public.
|
|
688
|
+
*/
|
|
568
689
|
note?: string | null;
|
|
690
|
+
/**
|
|
691
|
+
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
692
|
+
*/
|
|
569
693
|
dominantColor?: string | null;
|
|
570
694
|
} | null;
|
|
571
695
|
FACEBOOK?: {
|
|
@@ -582,47 +706,91 @@ type PostGetListResponse = {
|
|
|
582
706
|
text?: string | null;
|
|
583
707
|
uploadIds?: Array<(string)> | null;
|
|
584
708
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
709
|
+
/**
|
|
710
|
+
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
711
|
+
*/
|
|
712
|
+
isBrandContent?: boolean | null;
|
|
713
|
+
/**
|
|
714
|
+
* Set to true if this video is promoting the creator's own business.
|
|
715
|
+
*/
|
|
716
|
+
isOrganicBrandContent?: boolean | null;
|
|
717
|
+
/**
|
|
718
|
+
* If set to true, other TikTok users will not be allowed to make comments on this post.
|
|
719
|
+
*/
|
|
720
|
+
disableComments?: boolean | null;
|
|
721
|
+
/**
|
|
722
|
+
* If set to true, other TikTok users will not be allowed to make Stitches using this post.
|
|
723
|
+
*/
|
|
724
|
+
disableDuet?: boolean | null;
|
|
725
|
+
/**
|
|
726
|
+
* If set to true, other TikTok users will not be allowed to make Duets using this post.
|
|
727
|
+
*/
|
|
728
|
+
disableStitch?: boolean | null;
|
|
585
729
|
} | null;
|
|
586
730
|
LINKEDIN?: {
|
|
587
731
|
text: string;
|
|
588
732
|
uploadIds?: Array<(string)> | null;
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
733
|
+
privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
|
|
734
|
+
/**
|
|
735
|
+
* Set to true if the post shouldn't be displayed in the main feed.
|
|
736
|
+
*/
|
|
737
|
+
hideFromFeed?: boolean | null;
|
|
738
|
+
/**
|
|
739
|
+
* Set to true if the post is not allowed to be reshared.
|
|
740
|
+
*/
|
|
741
|
+
disableReshare?: boolean | null;
|
|
742
|
+
} | null;
|
|
743
|
+
YOUTUBE?: {
|
|
744
|
+
type?: 'VIDEO' | 'SHORT';
|
|
745
|
+
uploadIds?: Array<(string)> | null;
|
|
746
|
+
text?: string | null;
|
|
747
|
+
description?: string | null;
|
|
748
|
+
privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
749
|
+
/**
|
|
750
|
+
* Set to true if the video is made for kids.
|
|
751
|
+
*/
|
|
752
|
+
madeForKids?: boolean | null;
|
|
594
753
|
} | null;
|
|
595
754
|
REDDIT?: {
|
|
596
755
|
sr: string;
|
|
597
756
|
text: string;
|
|
598
757
|
description?: string | null;
|
|
599
758
|
uploadIds?: Array<(string)> | null;
|
|
600
|
-
|
|
759
|
+
/**
|
|
760
|
+
* The URL to which the post will link to.
|
|
761
|
+
*/
|
|
762
|
+
link?: string | null;
|
|
763
|
+
/**
|
|
764
|
+
* Set to true if the post is NSFW.
|
|
765
|
+
*/
|
|
601
766
|
nsfw?: boolean | null;
|
|
602
767
|
} | null;
|
|
603
768
|
DISCORD?: {
|
|
604
769
|
channelId: string;
|
|
605
770
|
text?: string | null;
|
|
606
771
|
uploadIds?: Array<(string)> | null;
|
|
772
|
+
/**
|
|
773
|
+
* The username to display as the author of the message.
|
|
774
|
+
*/
|
|
607
775
|
username?: string | null;
|
|
776
|
+
/**
|
|
777
|
+
* Avatar url to display as the author of the message.
|
|
778
|
+
*/
|
|
608
779
|
avatarUrl?: string | null;
|
|
609
780
|
} | null;
|
|
610
781
|
SLACK?: {
|
|
611
782
|
channelId: string;
|
|
612
783
|
text?: string | null;
|
|
613
784
|
uploadIds?: Array<(string)> | null;
|
|
785
|
+
/**
|
|
786
|
+
* The username to display as the author of the message.
|
|
787
|
+
*/
|
|
614
788
|
username?: string | null;
|
|
789
|
+
/**
|
|
790
|
+
* Avatar url to display as the author of the message.
|
|
791
|
+
*/
|
|
615
792
|
avatarUrl?: string | null;
|
|
616
793
|
} | null;
|
|
617
|
-
YOUTUBE?: {
|
|
618
|
-
type?: 'SHORT';
|
|
619
|
-
uploadIds?: Array<(string)> | null;
|
|
620
|
-
text?: string | null;
|
|
621
|
-
description?: string | null;
|
|
622
|
-
categoryId?: string | null;
|
|
623
|
-
privacyStatus?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
624
|
-
madeForKids?: boolean;
|
|
625
|
-
} | null;
|
|
626
794
|
TELEGRAM?: unknown;
|
|
627
795
|
THREADS?: unknown;
|
|
628
796
|
};
|
|
@@ -780,9 +948,21 @@ type PostGetResponse = {
|
|
|
780
948
|
description?: string | null;
|
|
781
949
|
boardName: string;
|
|
782
950
|
uploadIds?: Array<(string)> | null;
|
|
951
|
+
/**
|
|
952
|
+
* The URL to which the Pin will link to.
|
|
953
|
+
*/
|
|
783
954
|
link?: string | null;
|
|
955
|
+
/**
|
|
956
|
+
* The alt text for the image. This is used by screen readers and when the image can't be loaded.
|
|
957
|
+
*/
|
|
784
958
|
altText?: string | null;
|
|
959
|
+
/**
|
|
960
|
+
* A note about the Pin. This is not visible to the public.
|
|
961
|
+
*/
|
|
785
962
|
note?: string | null;
|
|
963
|
+
/**
|
|
964
|
+
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
965
|
+
*/
|
|
786
966
|
dominantColor?: string | null;
|
|
787
967
|
} | null;
|
|
788
968
|
FACEBOOK?: {
|
|
@@ -799,47 +979,91 @@ type PostGetResponse = {
|
|
|
799
979
|
text?: string | null;
|
|
800
980
|
uploadIds?: Array<(string)> | null;
|
|
801
981
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
982
|
+
/**
|
|
983
|
+
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
984
|
+
*/
|
|
985
|
+
isBrandContent?: boolean | null;
|
|
986
|
+
/**
|
|
987
|
+
* Set to true if this video is promoting the creator's own business.
|
|
988
|
+
*/
|
|
989
|
+
isOrganicBrandContent?: boolean | null;
|
|
990
|
+
/**
|
|
991
|
+
* If set to true, other TikTok users will not be allowed to make comments on this post.
|
|
992
|
+
*/
|
|
993
|
+
disableComments?: boolean | null;
|
|
994
|
+
/**
|
|
995
|
+
* If set to true, other TikTok users will not be allowed to make Stitches using this post.
|
|
996
|
+
*/
|
|
997
|
+
disableDuet?: boolean | null;
|
|
998
|
+
/**
|
|
999
|
+
* If set to true, other TikTok users will not be allowed to make Duets using this post.
|
|
1000
|
+
*/
|
|
1001
|
+
disableStitch?: boolean | null;
|
|
802
1002
|
} | null;
|
|
803
1003
|
LINKEDIN?: {
|
|
804
1004
|
text: string;
|
|
805
1005
|
uploadIds?: Array<(string)> | null;
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
1006
|
+
privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
|
|
1007
|
+
/**
|
|
1008
|
+
* Set to true if the post shouldn't be displayed in the main feed.
|
|
1009
|
+
*/
|
|
1010
|
+
hideFromFeed?: boolean | null;
|
|
1011
|
+
/**
|
|
1012
|
+
* Set to true if the post is not allowed to be reshared.
|
|
1013
|
+
*/
|
|
1014
|
+
disableReshare?: boolean | null;
|
|
1015
|
+
} | null;
|
|
1016
|
+
YOUTUBE?: {
|
|
1017
|
+
type?: 'VIDEO' | 'SHORT';
|
|
1018
|
+
uploadIds?: Array<(string)> | null;
|
|
1019
|
+
text?: string | null;
|
|
1020
|
+
description?: string | null;
|
|
1021
|
+
privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
1022
|
+
/**
|
|
1023
|
+
* Set to true if the video is made for kids.
|
|
1024
|
+
*/
|
|
1025
|
+
madeForKids?: boolean | null;
|
|
811
1026
|
} | null;
|
|
812
1027
|
REDDIT?: {
|
|
813
1028
|
sr: string;
|
|
814
1029
|
text: string;
|
|
815
1030
|
description?: string | null;
|
|
816
1031
|
uploadIds?: Array<(string)> | null;
|
|
817
|
-
|
|
1032
|
+
/**
|
|
1033
|
+
* The URL to which the post will link to.
|
|
1034
|
+
*/
|
|
1035
|
+
link?: string | null;
|
|
1036
|
+
/**
|
|
1037
|
+
* Set to true if the post is NSFW.
|
|
1038
|
+
*/
|
|
818
1039
|
nsfw?: boolean | null;
|
|
819
1040
|
} | null;
|
|
820
1041
|
DISCORD?: {
|
|
821
1042
|
channelId: string;
|
|
822
1043
|
text?: string | null;
|
|
823
1044
|
uploadIds?: Array<(string)> | null;
|
|
1045
|
+
/**
|
|
1046
|
+
* The username to display as the author of the message.
|
|
1047
|
+
*/
|
|
824
1048
|
username?: string | null;
|
|
1049
|
+
/**
|
|
1050
|
+
* Avatar url to display as the author of the message.
|
|
1051
|
+
*/
|
|
825
1052
|
avatarUrl?: string | null;
|
|
826
1053
|
} | null;
|
|
827
1054
|
SLACK?: {
|
|
828
1055
|
channelId: string;
|
|
829
1056
|
text?: string | null;
|
|
830
1057
|
uploadIds?: Array<(string)> | null;
|
|
1058
|
+
/**
|
|
1059
|
+
* The username to display as the author of the message.
|
|
1060
|
+
*/
|
|
831
1061
|
username?: string | null;
|
|
1062
|
+
/**
|
|
1063
|
+
* Avatar url to display as the author of the message.
|
|
1064
|
+
*/
|
|
832
1065
|
avatarUrl?: string | null;
|
|
833
1066
|
} | null;
|
|
834
|
-
YOUTUBE?: {
|
|
835
|
-
type?: 'SHORT';
|
|
836
|
-
uploadIds?: Array<(string)> | null;
|
|
837
|
-
text?: string | null;
|
|
838
|
-
description?: string | null;
|
|
839
|
-
categoryId?: string | null;
|
|
840
|
-
privacyStatus?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
841
|
-
madeForKids?: boolean;
|
|
842
|
-
} | null;
|
|
843
1067
|
TELEGRAM?: unknown;
|
|
844
1068
|
THREADS?: unknown;
|
|
845
1069
|
};
|
|
@@ -995,9 +1219,21 @@ type PostUpdateData = {
|
|
|
995
1219
|
description?: string | null;
|
|
996
1220
|
boardName: string;
|
|
997
1221
|
uploadIds?: Array<(string)> | null;
|
|
1222
|
+
/**
|
|
1223
|
+
* The URL to which the Pin will link to.
|
|
1224
|
+
*/
|
|
998
1225
|
link?: string | null;
|
|
1226
|
+
/**
|
|
1227
|
+
* The alt text for the image. This is used by screen readers and when the image can't be loaded.
|
|
1228
|
+
*/
|
|
999
1229
|
altText?: string | null;
|
|
1230
|
+
/**
|
|
1231
|
+
* A note about the Pin. This is not visible to the public.
|
|
1232
|
+
*/
|
|
1000
1233
|
note?: string | null;
|
|
1234
|
+
/**
|
|
1235
|
+
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
1236
|
+
*/
|
|
1001
1237
|
dominantColor?: string | null;
|
|
1002
1238
|
} | null;
|
|
1003
1239
|
FACEBOOK?: {
|
|
@@ -1014,47 +1250,91 @@ type PostUpdateData = {
|
|
|
1014
1250
|
text?: string | null;
|
|
1015
1251
|
uploadIds?: Array<(string)> | null;
|
|
1016
1252
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
1253
|
+
/**
|
|
1254
|
+
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
1255
|
+
*/
|
|
1256
|
+
isBrandContent?: boolean | null;
|
|
1257
|
+
/**
|
|
1258
|
+
* Set to true if this video is promoting the creator's own business.
|
|
1259
|
+
*/
|
|
1260
|
+
isOrganicBrandContent?: boolean | null;
|
|
1261
|
+
/**
|
|
1262
|
+
* If set to true, other TikTok users will not be allowed to make comments on this post.
|
|
1263
|
+
*/
|
|
1264
|
+
disableComments?: boolean | null;
|
|
1265
|
+
/**
|
|
1266
|
+
* If set to true, other TikTok users will not be allowed to make Stitches using this post.
|
|
1267
|
+
*/
|
|
1268
|
+
disableDuet?: boolean | null;
|
|
1269
|
+
/**
|
|
1270
|
+
* If set to true, other TikTok users will not be allowed to make Duets using this post.
|
|
1271
|
+
*/
|
|
1272
|
+
disableStitch?: boolean | null;
|
|
1017
1273
|
} | null;
|
|
1018
1274
|
LINKEDIN?: {
|
|
1019
1275
|
text: string;
|
|
1020
1276
|
uploadIds?: Array<(string)> | null;
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1277
|
+
privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
|
|
1278
|
+
/**
|
|
1279
|
+
* Set to true if the post shouldn't be displayed in the main feed.
|
|
1280
|
+
*/
|
|
1281
|
+
hideFromFeed?: boolean | null;
|
|
1282
|
+
/**
|
|
1283
|
+
* Set to true if the post is not allowed to be reshared.
|
|
1284
|
+
*/
|
|
1285
|
+
disableReshare?: boolean | null;
|
|
1286
|
+
} | null;
|
|
1287
|
+
YOUTUBE?: {
|
|
1288
|
+
type?: 'VIDEO' | 'SHORT';
|
|
1289
|
+
uploadIds?: Array<(string)> | null;
|
|
1290
|
+
text?: string | null;
|
|
1291
|
+
description?: string | null;
|
|
1292
|
+
privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
1293
|
+
/**
|
|
1294
|
+
* Set to true if the video is made for kids.
|
|
1295
|
+
*/
|
|
1296
|
+
madeForKids?: boolean | null;
|
|
1026
1297
|
} | null;
|
|
1027
1298
|
REDDIT?: {
|
|
1028
1299
|
sr: string;
|
|
1029
1300
|
text: string;
|
|
1030
1301
|
description?: string | null;
|
|
1031
1302
|
uploadIds?: Array<(string)> | null;
|
|
1032
|
-
|
|
1303
|
+
/**
|
|
1304
|
+
* The URL to which the post will link to.
|
|
1305
|
+
*/
|
|
1306
|
+
link?: string | null;
|
|
1307
|
+
/**
|
|
1308
|
+
* Set to true if the post is NSFW.
|
|
1309
|
+
*/
|
|
1033
1310
|
nsfw?: boolean | null;
|
|
1034
1311
|
} | null;
|
|
1035
1312
|
DISCORD?: {
|
|
1036
1313
|
channelId: string;
|
|
1037
1314
|
text?: string | null;
|
|
1038
1315
|
uploadIds?: Array<(string)> | null;
|
|
1316
|
+
/**
|
|
1317
|
+
* The username to display as the author of the message.
|
|
1318
|
+
*/
|
|
1039
1319
|
username?: string | null;
|
|
1320
|
+
/**
|
|
1321
|
+
* Avatar url to display as the author of the message.
|
|
1322
|
+
*/
|
|
1040
1323
|
avatarUrl?: string | null;
|
|
1041
1324
|
} | null;
|
|
1042
1325
|
SLACK?: {
|
|
1043
1326
|
channelId: string;
|
|
1044
1327
|
text?: string | null;
|
|
1045
1328
|
uploadIds?: Array<(string)> | null;
|
|
1329
|
+
/**
|
|
1330
|
+
* The username to display as the author of the message.
|
|
1331
|
+
*/
|
|
1046
1332
|
username?: string | null;
|
|
1333
|
+
/**
|
|
1334
|
+
* Avatar url to display as the author of the message.
|
|
1335
|
+
*/
|
|
1047
1336
|
avatarUrl?: string | null;
|
|
1048
1337
|
} | null;
|
|
1049
|
-
YOUTUBE?: {
|
|
1050
|
-
type?: 'SHORT';
|
|
1051
|
-
uploadIds?: Array<(string)> | null;
|
|
1052
|
-
text?: string | null;
|
|
1053
|
-
description?: string | null;
|
|
1054
|
-
categoryId?: string | null;
|
|
1055
|
-
privacyStatus?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
1056
|
-
madeForKids?: boolean;
|
|
1057
|
-
} | null;
|
|
1058
1338
|
TELEGRAM?: unknown;
|
|
1059
1339
|
THREADS?: unknown;
|
|
1060
1340
|
};
|
|
@@ -1077,9 +1357,21 @@ type PostUpdateResponse = {
|
|
|
1077
1357
|
description?: string | null;
|
|
1078
1358
|
boardName: string;
|
|
1079
1359
|
uploadIds?: Array<(string)> | null;
|
|
1360
|
+
/**
|
|
1361
|
+
* The URL to which the Pin will link to.
|
|
1362
|
+
*/
|
|
1080
1363
|
link?: string | null;
|
|
1364
|
+
/**
|
|
1365
|
+
* The alt text for the image. This is used by screen readers and when the image can't be loaded.
|
|
1366
|
+
*/
|
|
1081
1367
|
altText?: string | null;
|
|
1368
|
+
/**
|
|
1369
|
+
* A note about the Pin. This is not visible to the public.
|
|
1370
|
+
*/
|
|
1082
1371
|
note?: string | null;
|
|
1372
|
+
/**
|
|
1373
|
+
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
1374
|
+
*/
|
|
1083
1375
|
dominantColor?: string | null;
|
|
1084
1376
|
} | null;
|
|
1085
1377
|
FACEBOOK?: {
|
|
@@ -1096,47 +1388,91 @@ type PostUpdateResponse = {
|
|
|
1096
1388
|
text?: string | null;
|
|
1097
1389
|
uploadIds?: Array<(string)> | null;
|
|
1098
1390
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
1391
|
+
/**
|
|
1392
|
+
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
1393
|
+
*/
|
|
1394
|
+
isBrandContent?: boolean | null;
|
|
1395
|
+
/**
|
|
1396
|
+
* Set to true if this video is promoting the creator's own business.
|
|
1397
|
+
*/
|
|
1398
|
+
isOrganicBrandContent?: boolean | null;
|
|
1399
|
+
/**
|
|
1400
|
+
* If set to true, other TikTok users will not be allowed to make comments on this post.
|
|
1401
|
+
*/
|
|
1402
|
+
disableComments?: boolean | null;
|
|
1403
|
+
/**
|
|
1404
|
+
* If set to true, other TikTok users will not be allowed to make Stitches using this post.
|
|
1405
|
+
*/
|
|
1406
|
+
disableDuet?: boolean | null;
|
|
1407
|
+
/**
|
|
1408
|
+
* If set to true, other TikTok users will not be allowed to make Duets using this post.
|
|
1409
|
+
*/
|
|
1410
|
+
disableStitch?: boolean | null;
|
|
1099
1411
|
} | null;
|
|
1100
1412
|
LINKEDIN?: {
|
|
1101
1413
|
text: string;
|
|
1102
1414
|
uploadIds?: Array<(string)> | null;
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1415
|
+
privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
|
|
1416
|
+
/**
|
|
1417
|
+
* Set to true if the post shouldn't be displayed in the main feed.
|
|
1418
|
+
*/
|
|
1419
|
+
hideFromFeed?: boolean | null;
|
|
1420
|
+
/**
|
|
1421
|
+
* Set to true if the post is not allowed to be reshared.
|
|
1422
|
+
*/
|
|
1423
|
+
disableReshare?: boolean | null;
|
|
1424
|
+
} | null;
|
|
1425
|
+
YOUTUBE?: {
|
|
1426
|
+
type?: 'VIDEO' | 'SHORT';
|
|
1427
|
+
uploadIds?: Array<(string)> | null;
|
|
1428
|
+
text?: string | null;
|
|
1429
|
+
description?: string | null;
|
|
1430
|
+
privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
1431
|
+
/**
|
|
1432
|
+
* Set to true if the video is made for kids.
|
|
1433
|
+
*/
|
|
1434
|
+
madeForKids?: boolean | null;
|
|
1108
1435
|
} | null;
|
|
1109
1436
|
REDDIT?: {
|
|
1110
1437
|
sr: string;
|
|
1111
1438
|
text: string;
|
|
1112
1439
|
description?: string | null;
|
|
1113
1440
|
uploadIds?: Array<(string)> | null;
|
|
1114
|
-
|
|
1441
|
+
/**
|
|
1442
|
+
* The URL to which the post will link to.
|
|
1443
|
+
*/
|
|
1444
|
+
link?: string | null;
|
|
1445
|
+
/**
|
|
1446
|
+
* Set to true if the post is NSFW.
|
|
1447
|
+
*/
|
|
1115
1448
|
nsfw?: boolean | null;
|
|
1116
1449
|
} | null;
|
|
1117
1450
|
DISCORD?: {
|
|
1118
1451
|
channelId: string;
|
|
1119
1452
|
text?: string | null;
|
|
1120
1453
|
uploadIds?: Array<(string)> | null;
|
|
1454
|
+
/**
|
|
1455
|
+
* The username to display as the author of the message.
|
|
1456
|
+
*/
|
|
1121
1457
|
username?: string | null;
|
|
1458
|
+
/**
|
|
1459
|
+
* Avatar url to display as the author of the message.
|
|
1460
|
+
*/
|
|
1122
1461
|
avatarUrl?: string | null;
|
|
1123
1462
|
} | null;
|
|
1124
1463
|
SLACK?: {
|
|
1125
1464
|
channelId: string;
|
|
1126
1465
|
text?: string | null;
|
|
1127
1466
|
uploadIds?: Array<(string)> | null;
|
|
1467
|
+
/**
|
|
1468
|
+
* The username to display as the author of the message.
|
|
1469
|
+
*/
|
|
1128
1470
|
username?: string | null;
|
|
1471
|
+
/**
|
|
1472
|
+
* Avatar url to display as the author of the message.
|
|
1473
|
+
*/
|
|
1129
1474
|
avatarUrl?: string | null;
|
|
1130
1475
|
} | null;
|
|
1131
|
-
YOUTUBE?: {
|
|
1132
|
-
type?: 'SHORT';
|
|
1133
|
-
uploadIds?: Array<(string)> | null;
|
|
1134
|
-
text?: string | null;
|
|
1135
|
-
description?: string | null;
|
|
1136
|
-
categoryId?: string | null;
|
|
1137
|
-
privacyStatus?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
1138
|
-
madeForKids?: boolean;
|
|
1139
|
-
} | null;
|
|
1140
1476
|
TELEGRAM?: unknown;
|
|
1141
1477
|
THREADS?: unknown;
|
|
1142
1478
|
};
|
|
@@ -1233,9 +1569,21 @@ type PostDeleteResponse = {
|
|
|
1233
1569
|
description?: string | null;
|
|
1234
1570
|
boardName: string;
|
|
1235
1571
|
uploadIds?: Array<(string)> | null;
|
|
1572
|
+
/**
|
|
1573
|
+
* The URL to which the Pin will link to.
|
|
1574
|
+
*/
|
|
1236
1575
|
link?: string | null;
|
|
1576
|
+
/**
|
|
1577
|
+
* The alt text for the image. This is used by screen readers and when the image can't be loaded.
|
|
1578
|
+
*/
|
|
1237
1579
|
altText?: string | null;
|
|
1580
|
+
/**
|
|
1581
|
+
* A note about the Pin. This is not visible to the public.
|
|
1582
|
+
*/
|
|
1238
1583
|
note?: string | null;
|
|
1584
|
+
/**
|
|
1585
|
+
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
1586
|
+
*/
|
|
1239
1587
|
dominantColor?: string | null;
|
|
1240
1588
|
} | null;
|
|
1241
1589
|
FACEBOOK?: {
|
|
@@ -1252,47 +1600,91 @@ type PostDeleteResponse = {
|
|
|
1252
1600
|
text?: string | null;
|
|
1253
1601
|
uploadIds?: Array<(string)> | null;
|
|
1254
1602
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
1603
|
+
/**
|
|
1604
|
+
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
1605
|
+
*/
|
|
1606
|
+
isBrandContent?: boolean | null;
|
|
1607
|
+
/**
|
|
1608
|
+
* Set to true if this video is promoting the creator's own business.
|
|
1609
|
+
*/
|
|
1610
|
+
isOrganicBrandContent?: boolean | null;
|
|
1611
|
+
/**
|
|
1612
|
+
* If set to true, other TikTok users will not be allowed to make comments on this post.
|
|
1613
|
+
*/
|
|
1614
|
+
disableComments?: boolean | null;
|
|
1615
|
+
/**
|
|
1616
|
+
* If set to true, other TikTok users will not be allowed to make Stitches using this post.
|
|
1617
|
+
*/
|
|
1618
|
+
disableDuet?: boolean | null;
|
|
1619
|
+
/**
|
|
1620
|
+
* If set to true, other TikTok users will not be allowed to make Duets using this post.
|
|
1621
|
+
*/
|
|
1622
|
+
disableStitch?: boolean | null;
|
|
1255
1623
|
} | null;
|
|
1256
1624
|
LINKEDIN?: {
|
|
1257
1625
|
text: string;
|
|
1258
1626
|
uploadIds?: Array<(string)> | null;
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1627
|
+
privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
|
|
1628
|
+
/**
|
|
1629
|
+
* Set to true if the post shouldn't be displayed in the main feed.
|
|
1630
|
+
*/
|
|
1631
|
+
hideFromFeed?: boolean | null;
|
|
1632
|
+
/**
|
|
1633
|
+
* Set to true if the post is not allowed to be reshared.
|
|
1634
|
+
*/
|
|
1635
|
+
disableReshare?: boolean | null;
|
|
1636
|
+
} | null;
|
|
1637
|
+
YOUTUBE?: {
|
|
1638
|
+
type?: 'VIDEO' | 'SHORT';
|
|
1639
|
+
uploadIds?: Array<(string)> | null;
|
|
1640
|
+
text?: string | null;
|
|
1641
|
+
description?: string | null;
|
|
1642
|
+
privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
1643
|
+
/**
|
|
1644
|
+
* Set to true if the video is made for kids.
|
|
1645
|
+
*/
|
|
1646
|
+
madeForKids?: boolean | null;
|
|
1264
1647
|
} | null;
|
|
1265
1648
|
REDDIT?: {
|
|
1266
1649
|
sr: string;
|
|
1267
1650
|
text: string;
|
|
1268
1651
|
description?: string | null;
|
|
1269
1652
|
uploadIds?: Array<(string)> | null;
|
|
1270
|
-
|
|
1653
|
+
/**
|
|
1654
|
+
* The URL to which the post will link to.
|
|
1655
|
+
*/
|
|
1656
|
+
link?: string | null;
|
|
1657
|
+
/**
|
|
1658
|
+
* Set to true if the post is NSFW.
|
|
1659
|
+
*/
|
|
1271
1660
|
nsfw?: boolean | null;
|
|
1272
1661
|
} | null;
|
|
1273
1662
|
DISCORD?: {
|
|
1274
1663
|
channelId: string;
|
|
1275
1664
|
text?: string | null;
|
|
1276
1665
|
uploadIds?: Array<(string)> | null;
|
|
1666
|
+
/**
|
|
1667
|
+
* The username to display as the author of the message.
|
|
1668
|
+
*/
|
|
1277
1669
|
username?: string | null;
|
|
1670
|
+
/**
|
|
1671
|
+
* Avatar url to display as the author of the message.
|
|
1672
|
+
*/
|
|
1278
1673
|
avatarUrl?: string | null;
|
|
1279
1674
|
} | null;
|
|
1280
1675
|
SLACK?: {
|
|
1281
1676
|
channelId: string;
|
|
1282
1677
|
text?: string | null;
|
|
1283
1678
|
uploadIds?: Array<(string)> | null;
|
|
1679
|
+
/**
|
|
1680
|
+
* The username to display as the author of the message.
|
|
1681
|
+
*/
|
|
1284
1682
|
username?: string | null;
|
|
1683
|
+
/**
|
|
1684
|
+
* Avatar url to display as the author of the message.
|
|
1685
|
+
*/
|
|
1285
1686
|
avatarUrl?: string | null;
|
|
1286
1687
|
} | null;
|
|
1287
|
-
YOUTUBE?: {
|
|
1288
|
-
type?: 'SHORT';
|
|
1289
|
-
uploadIds?: Array<(string)> | null;
|
|
1290
|
-
text?: string | null;
|
|
1291
|
-
description?: string | null;
|
|
1292
|
-
categoryId?: string | null;
|
|
1293
|
-
privacyStatus?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
1294
|
-
madeForKids?: boolean;
|
|
1295
|
-
} | null;
|
|
1296
1688
|
TELEGRAM?: unknown;
|
|
1297
1689
|
THREADS?: unknown;
|
|
1298
1690
|
};
|
|
@@ -1899,9 +2291,21 @@ type $OpenApiTs = {
|
|
|
1899
2291
|
description?: string | null;
|
|
1900
2292
|
boardName: string;
|
|
1901
2293
|
uploadIds?: Array<(string)> | null;
|
|
2294
|
+
/**
|
|
2295
|
+
* The URL to which the Pin will link to.
|
|
2296
|
+
*/
|
|
1902
2297
|
link?: string | null;
|
|
2298
|
+
/**
|
|
2299
|
+
* The alt text for the image. This is used by screen readers and when the image can't be loaded.
|
|
2300
|
+
*/
|
|
1903
2301
|
altText?: string | null;
|
|
2302
|
+
/**
|
|
2303
|
+
* A note about the Pin. This is not visible to the public.
|
|
2304
|
+
*/
|
|
1904
2305
|
note?: string | null;
|
|
2306
|
+
/**
|
|
2307
|
+
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
2308
|
+
*/
|
|
1905
2309
|
dominantColor?: string | null;
|
|
1906
2310
|
} | null;
|
|
1907
2311
|
FACEBOOK?: {
|
|
@@ -1918,47 +2322,91 @@ type $OpenApiTs = {
|
|
|
1918
2322
|
text?: string | null;
|
|
1919
2323
|
uploadIds?: Array<(string)> | null;
|
|
1920
2324
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
2325
|
+
/**
|
|
2326
|
+
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
2327
|
+
*/
|
|
2328
|
+
isBrandContent?: boolean | null;
|
|
2329
|
+
/**
|
|
2330
|
+
* Set to true if this video is promoting the creator's own business.
|
|
2331
|
+
*/
|
|
2332
|
+
isOrganicBrandContent?: boolean | null;
|
|
2333
|
+
/**
|
|
2334
|
+
* If set to true, other TikTok users will not be allowed to make comments on this post.
|
|
2335
|
+
*/
|
|
2336
|
+
disableComments?: boolean | null;
|
|
2337
|
+
/**
|
|
2338
|
+
* If set to true, other TikTok users will not be allowed to make Stitches using this post.
|
|
2339
|
+
*/
|
|
2340
|
+
disableDuet?: boolean | null;
|
|
2341
|
+
/**
|
|
2342
|
+
* If set to true, other TikTok users will not be allowed to make Duets using this post.
|
|
2343
|
+
*/
|
|
2344
|
+
disableStitch?: boolean | null;
|
|
1921
2345
|
} | null;
|
|
1922
2346
|
LINKEDIN?: {
|
|
1923
2347
|
text: string;
|
|
1924
2348
|
uploadIds?: Array<(string)> | null;
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
2349
|
+
privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
|
|
2350
|
+
/**
|
|
2351
|
+
* Set to true if the post shouldn't be displayed in the main feed.
|
|
2352
|
+
*/
|
|
2353
|
+
hideFromFeed?: boolean | null;
|
|
2354
|
+
/**
|
|
2355
|
+
* Set to true if the post is not allowed to be reshared.
|
|
2356
|
+
*/
|
|
2357
|
+
disableReshare?: boolean | null;
|
|
2358
|
+
} | null;
|
|
2359
|
+
YOUTUBE?: {
|
|
2360
|
+
type?: 'VIDEO' | 'SHORT';
|
|
2361
|
+
uploadIds?: Array<(string)> | null;
|
|
2362
|
+
text?: string | null;
|
|
2363
|
+
description?: string | null;
|
|
2364
|
+
privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
2365
|
+
/**
|
|
2366
|
+
* Set to true if the video is made for kids.
|
|
2367
|
+
*/
|
|
2368
|
+
madeForKids?: boolean | null;
|
|
1930
2369
|
} | null;
|
|
1931
2370
|
REDDIT?: {
|
|
1932
2371
|
sr: string;
|
|
1933
2372
|
text: string;
|
|
1934
2373
|
description?: string | null;
|
|
1935
2374
|
uploadIds?: Array<(string)> | null;
|
|
1936
|
-
|
|
2375
|
+
/**
|
|
2376
|
+
* The URL to which the post will link to.
|
|
2377
|
+
*/
|
|
2378
|
+
link?: string | null;
|
|
2379
|
+
/**
|
|
2380
|
+
* Set to true if the post is NSFW.
|
|
2381
|
+
*/
|
|
1937
2382
|
nsfw?: boolean | null;
|
|
1938
2383
|
} | null;
|
|
1939
2384
|
DISCORD?: {
|
|
1940
2385
|
channelId: string;
|
|
1941
2386
|
text?: string | null;
|
|
1942
2387
|
uploadIds?: Array<(string)> | null;
|
|
2388
|
+
/**
|
|
2389
|
+
* The username to display as the author of the message.
|
|
2390
|
+
*/
|
|
1943
2391
|
username?: string | null;
|
|
2392
|
+
/**
|
|
2393
|
+
* Avatar url to display as the author of the message.
|
|
2394
|
+
*/
|
|
1944
2395
|
avatarUrl?: string | null;
|
|
1945
2396
|
} | null;
|
|
1946
2397
|
SLACK?: {
|
|
1947
2398
|
channelId: string;
|
|
1948
2399
|
text?: string | null;
|
|
1949
2400
|
uploadIds?: Array<(string)> | null;
|
|
2401
|
+
/**
|
|
2402
|
+
* The username to display as the author of the message.
|
|
2403
|
+
*/
|
|
1950
2404
|
username?: string | null;
|
|
2405
|
+
/**
|
|
2406
|
+
* Avatar url to display as the author of the message.
|
|
2407
|
+
*/
|
|
1951
2408
|
avatarUrl?: string | null;
|
|
1952
2409
|
} | null;
|
|
1953
|
-
YOUTUBE?: {
|
|
1954
|
-
type?: 'SHORT';
|
|
1955
|
-
uploadIds?: Array<(string)> | null;
|
|
1956
|
-
text?: string | null;
|
|
1957
|
-
description?: string | null;
|
|
1958
|
-
categoryId?: string | null;
|
|
1959
|
-
privacyStatus?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
1960
|
-
madeForKids?: boolean;
|
|
1961
|
-
} | null;
|
|
1962
2410
|
TELEGRAM?: unknown;
|
|
1963
2411
|
THREADS?: unknown;
|
|
1964
2412
|
};
|
|
@@ -2095,9 +2543,21 @@ type $OpenApiTs = {
|
|
|
2095
2543
|
description?: string | null;
|
|
2096
2544
|
boardName: string;
|
|
2097
2545
|
uploadIds?: Array<(string)> | null;
|
|
2546
|
+
/**
|
|
2547
|
+
* The URL to which the Pin will link to.
|
|
2548
|
+
*/
|
|
2098
2549
|
link?: string | null;
|
|
2550
|
+
/**
|
|
2551
|
+
* The alt text for the image. This is used by screen readers and when the image can't be loaded.
|
|
2552
|
+
*/
|
|
2099
2553
|
altText?: string | null;
|
|
2554
|
+
/**
|
|
2555
|
+
* A note about the Pin. This is not visible to the public.
|
|
2556
|
+
*/
|
|
2100
2557
|
note?: string | null;
|
|
2558
|
+
/**
|
|
2559
|
+
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
2560
|
+
*/
|
|
2101
2561
|
dominantColor?: string | null;
|
|
2102
2562
|
} | null;
|
|
2103
2563
|
FACEBOOK?: {
|
|
@@ -2114,47 +2574,91 @@ type $OpenApiTs = {
|
|
|
2114
2574
|
text?: string | null;
|
|
2115
2575
|
uploadIds?: Array<(string)> | null;
|
|
2116
2576
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
2577
|
+
/**
|
|
2578
|
+
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
2579
|
+
*/
|
|
2580
|
+
isBrandContent?: boolean | null;
|
|
2581
|
+
/**
|
|
2582
|
+
* Set to true if this video is promoting the creator's own business.
|
|
2583
|
+
*/
|
|
2584
|
+
isOrganicBrandContent?: boolean | null;
|
|
2585
|
+
/**
|
|
2586
|
+
* If set to true, other TikTok users will not be allowed to make comments on this post.
|
|
2587
|
+
*/
|
|
2588
|
+
disableComments?: boolean | null;
|
|
2589
|
+
/**
|
|
2590
|
+
* If set to true, other TikTok users will not be allowed to make Stitches using this post.
|
|
2591
|
+
*/
|
|
2592
|
+
disableDuet?: boolean | null;
|
|
2593
|
+
/**
|
|
2594
|
+
* If set to true, other TikTok users will not be allowed to make Duets using this post.
|
|
2595
|
+
*/
|
|
2596
|
+
disableStitch?: boolean | null;
|
|
2117
2597
|
} | null;
|
|
2118
2598
|
LINKEDIN?: {
|
|
2119
2599
|
text: string;
|
|
2120
2600
|
uploadIds?: Array<(string)> | null;
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2601
|
+
privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
|
|
2602
|
+
/**
|
|
2603
|
+
* Set to true if the post shouldn't be displayed in the main feed.
|
|
2604
|
+
*/
|
|
2605
|
+
hideFromFeed?: boolean | null;
|
|
2606
|
+
/**
|
|
2607
|
+
* Set to true if the post is not allowed to be reshared.
|
|
2608
|
+
*/
|
|
2609
|
+
disableReshare?: boolean | null;
|
|
2610
|
+
} | null;
|
|
2611
|
+
YOUTUBE?: {
|
|
2612
|
+
type?: 'VIDEO' | 'SHORT';
|
|
2613
|
+
uploadIds?: Array<(string)> | null;
|
|
2614
|
+
text?: string | null;
|
|
2615
|
+
description?: string | null;
|
|
2616
|
+
privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
2617
|
+
/**
|
|
2618
|
+
* Set to true if the video is made for kids.
|
|
2619
|
+
*/
|
|
2620
|
+
madeForKids?: boolean | null;
|
|
2126
2621
|
} | null;
|
|
2127
2622
|
REDDIT?: {
|
|
2128
2623
|
sr: string;
|
|
2129
2624
|
text: string;
|
|
2130
2625
|
description?: string | null;
|
|
2131
2626
|
uploadIds?: Array<(string)> | null;
|
|
2132
|
-
|
|
2627
|
+
/**
|
|
2628
|
+
* The URL to which the post will link to.
|
|
2629
|
+
*/
|
|
2630
|
+
link?: string | null;
|
|
2631
|
+
/**
|
|
2632
|
+
* Set to true if the post is NSFW.
|
|
2633
|
+
*/
|
|
2133
2634
|
nsfw?: boolean | null;
|
|
2134
2635
|
} | null;
|
|
2135
2636
|
DISCORD?: {
|
|
2136
2637
|
channelId: string;
|
|
2137
2638
|
text?: string | null;
|
|
2138
2639
|
uploadIds?: Array<(string)> | null;
|
|
2640
|
+
/**
|
|
2641
|
+
* The username to display as the author of the message.
|
|
2642
|
+
*/
|
|
2139
2643
|
username?: string | null;
|
|
2644
|
+
/**
|
|
2645
|
+
* Avatar url to display as the author of the message.
|
|
2646
|
+
*/
|
|
2140
2647
|
avatarUrl?: string | null;
|
|
2141
2648
|
} | null;
|
|
2142
2649
|
SLACK?: {
|
|
2143
2650
|
channelId: string;
|
|
2144
2651
|
text?: string | null;
|
|
2145
2652
|
uploadIds?: Array<(string)> | null;
|
|
2653
|
+
/**
|
|
2654
|
+
* The username to display as the author of the message.
|
|
2655
|
+
*/
|
|
2146
2656
|
username?: string | null;
|
|
2657
|
+
/**
|
|
2658
|
+
* Avatar url to display as the author of the message.
|
|
2659
|
+
*/
|
|
2147
2660
|
avatarUrl?: string | null;
|
|
2148
2661
|
} | null;
|
|
2149
|
-
YOUTUBE?: {
|
|
2150
|
-
type?: 'SHORT';
|
|
2151
|
-
uploadIds?: Array<(string)> | null;
|
|
2152
|
-
text?: string | null;
|
|
2153
|
-
description?: string | null;
|
|
2154
|
-
categoryId?: string | null;
|
|
2155
|
-
privacyStatus?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
2156
|
-
madeForKids?: boolean;
|
|
2157
|
-
} | null;
|
|
2158
2662
|
TELEGRAM?: unknown;
|
|
2159
2663
|
THREADS?: unknown;
|
|
2160
2664
|
};
|
|
@@ -2353,9 +2857,21 @@ type $OpenApiTs = {
|
|
|
2353
2857
|
description?: string | null;
|
|
2354
2858
|
boardName: string;
|
|
2355
2859
|
uploadIds?: Array<(string)> | null;
|
|
2860
|
+
/**
|
|
2861
|
+
* The URL to which the Pin will link to.
|
|
2862
|
+
*/
|
|
2356
2863
|
link?: string | null;
|
|
2864
|
+
/**
|
|
2865
|
+
* The alt text for the image. This is used by screen readers and when the image can't be loaded.
|
|
2866
|
+
*/
|
|
2357
2867
|
altText?: string | null;
|
|
2868
|
+
/**
|
|
2869
|
+
* A note about the Pin. This is not visible to the public.
|
|
2870
|
+
*/
|
|
2358
2871
|
note?: string | null;
|
|
2872
|
+
/**
|
|
2873
|
+
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
2874
|
+
*/
|
|
2359
2875
|
dominantColor?: string | null;
|
|
2360
2876
|
} | null;
|
|
2361
2877
|
FACEBOOK?: {
|
|
@@ -2372,47 +2888,91 @@ type $OpenApiTs = {
|
|
|
2372
2888
|
text?: string | null;
|
|
2373
2889
|
uploadIds?: Array<(string)> | null;
|
|
2374
2890
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
2891
|
+
/**
|
|
2892
|
+
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
2893
|
+
*/
|
|
2894
|
+
isBrandContent?: boolean | null;
|
|
2895
|
+
/**
|
|
2896
|
+
* Set to true if this video is promoting the creator's own business.
|
|
2897
|
+
*/
|
|
2898
|
+
isOrganicBrandContent?: boolean | null;
|
|
2899
|
+
/**
|
|
2900
|
+
* If set to true, other TikTok users will not be allowed to make comments on this post.
|
|
2901
|
+
*/
|
|
2902
|
+
disableComments?: boolean | null;
|
|
2903
|
+
/**
|
|
2904
|
+
* If set to true, other TikTok users will not be allowed to make Stitches using this post.
|
|
2905
|
+
*/
|
|
2906
|
+
disableDuet?: boolean | null;
|
|
2907
|
+
/**
|
|
2908
|
+
* If set to true, other TikTok users will not be allowed to make Duets using this post.
|
|
2909
|
+
*/
|
|
2910
|
+
disableStitch?: boolean | null;
|
|
2375
2911
|
} | null;
|
|
2376
2912
|
LINKEDIN?: {
|
|
2377
2913
|
text: string;
|
|
2378
2914
|
uploadIds?: Array<(string)> | null;
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2915
|
+
privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
|
|
2916
|
+
/**
|
|
2917
|
+
* Set to true if the post shouldn't be displayed in the main feed.
|
|
2918
|
+
*/
|
|
2919
|
+
hideFromFeed?: boolean | null;
|
|
2920
|
+
/**
|
|
2921
|
+
* Set to true if the post is not allowed to be reshared.
|
|
2922
|
+
*/
|
|
2923
|
+
disableReshare?: boolean | null;
|
|
2924
|
+
} | null;
|
|
2925
|
+
YOUTUBE?: {
|
|
2926
|
+
type?: 'VIDEO' | 'SHORT';
|
|
2927
|
+
uploadIds?: Array<(string)> | null;
|
|
2928
|
+
text?: string | null;
|
|
2929
|
+
description?: string | null;
|
|
2930
|
+
privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
2931
|
+
/**
|
|
2932
|
+
* Set to true if the video is made for kids.
|
|
2933
|
+
*/
|
|
2934
|
+
madeForKids?: boolean | null;
|
|
2384
2935
|
} | null;
|
|
2385
2936
|
REDDIT?: {
|
|
2386
2937
|
sr: string;
|
|
2387
2938
|
text: string;
|
|
2388
2939
|
description?: string | null;
|
|
2389
2940
|
uploadIds?: Array<(string)> | null;
|
|
2390
|
-
|
|
2941
|
+
/**
|
|
2942
|
+
* The URL to which the post will link to.
|
|
2943
|
+
*/
|
|
2944
|
+
link?: string | null;
|
|
2945
|
+
/**
|
|
2946
|
+
* Set to true if the post is NSFW.
|
|
2947
|
+
*/
|
|
2391
2948
|
nsfw?: boolean | null;
|
|
2392
2949
|
} | null;
|
|
2393
2950
|
DISCORD?: {
|
|
2394
2951
|
channelId: string;
|
|
2395
2952
|
text?: string | null;
|
|
2396
2953
|
uploadIds?: Array<(string)> | null;
|
|
2954
|
+
/**
|
|
2955
|
+
* The username to display as the author of the message.
|
|
2956
|
+
*/
|
|
2397
2957
|
username?: string | null;
|
|
2958
|
+
/**
|
|
2959
|
+
* Avatar url to display as the author of the message.
|
|
2960
|
+
*/
|
|
2398
2961
|
avatarUrl?: string | null;
|
|
2399
2962
|
} | null;
|
|
2400
2963
|
SLACK?: {
|
|
2401
2964
|
channelId: string;
|
|
2402
2965
|
text?: string | null;
|
|
2403
2966
|
uploadIds?: Array<(string)> | null;
|
|
2967
|
+
/**
|
|
2968
|
+
* The username to display as the author of the message.
|
|
2969
|
+
*/
|
|
2404
2970
|
username?: string | null;
|
|
2971
|
+
/**
|
|
2972
|
+
* Avatar url to display as the author of the message.
|
|
2973
|
+
*/
|
|
2405
2974
|
avatarUrl?: string | null;
|
|
2406
2975
|
} | null;
|
|
2407
|
-
YOUTUBE?: {
|
|
2408
|
-
type?: 'SHORT';
|
|
2409
|
-
uploadIds?: Array<(string)> | null;
|
|
2410
|
-
text?: string | null;
|
|
2411
|
-
description?: string | null;
|
|
2412
|
-
categoryId?: string | null;
|
|
2413
|
-
privacyStatus?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
2414
|
-
madeForKids?: boolean;
|
|
2415
|
-
} | null;
|
|
2416
2976
|
TELEGRAM?: unknown;
|
|
2417
2977
|
THREADS?: unknown;
|
|
2418
2978
|
};
|
|
@@ -2607,9 +3167,21 @@ type $OpenApiTs = {
|
|
|
2607
3167
|
description?: string | null;
|
|
2608
3168
|
boardName: string;
|
|
2609
3169
|
uploadIds?: Array<(string)> | null;
|
|
3170
|
+
/**
|
|
3171
|
+
* The URL to which the Pin will link to.
|
|
3172
|
+
*/
|
|
2610
3173
|
link?: string | null;
|
|
3174
|
+
/**
|
|
3175
|
+
* The alt text for the image. This is used by screen readers and when the image can't be loaded.
|
|
3176
|
+
*/
|
|
2611
3177
|
altText?: string | null;
|
|
3178
|
+
/**
|
|
3179
|
+
* A note about the Pin. This is not visible to the public.
|
|
3180
|
+
*/
|
|
2612
3181
|
note?: string | null;
|
|
3182
|
+
/**
|
|
3183
|
+
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
3184
|
+
*/
|
|
2613
3185
|
dominantColor?: string | null;
|
|
2614
3186
|
} | null;
|
|
2615
3187
|
FACEBOOK?: {
|
|
@@ -2626,47 +3198,91 @@ type $OpenApiTs = {
|
|
|
2626
3198
|
text?: string | null;
|
|
2627
3199
|
uploadIds?: Array<(string)> | null;
|
|
2628
3200
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
3201
|
+
/**
|
|
3202
|
+
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
3203
|
+
*/
|
|
3204
|
+
isBrandContent?: boolean | null;
|
|
3205
|
+
/**
|
|
3206
|
+
* Set to true if this video is promoting the creator's own business.
|
|
3207
|
+
*/
|
|
3208
|
+
isOrganicBrandContent?: boolean | null;
|
|
3209
|
+
/**
|
|
3210
|
+
* If set to true, other TikTok users will not be allowed to make comments on this post.
|
|
3211
|
+
*/
|
|
3212
|
+
disableComments?: boolean | null;
|
|
3213
|
+
/**
|
|
3214
|
+
* If set to true, other TikTok users will not be allowed to make Stitches using this post.
|
|
3215
|
+
*/
|
|
3216
|
+
disableDuet?: boolean | null;
|
|
3217
|
+
/**
|
|
3218
|
+
* If set to true, other TikTok users will not be allowed to make Duets using this post.
|
|
3219
|
+
*/
|
|
3220
|
+
disableStitch?: boolean | null;
|
|
2629
3221
|
} | null;
|
|
2630
3222
|
LINKEDIN?: {
|
|
2631
3223
|
text: string;
|
|
2632
3224
|
uploadIds?: Array<(string)> | null;
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
3225
|
+
privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
|
|
3226
|
+
/**
|
|
3227
|
+
* Set to true if the post shouldn't be displayed in the main feed.
|
|
3228
|
+
*/
|
|
3229
|
+
hideFromFeed?: boolean | null;
|
|
3230
|
+
/**
|
|
3231
|
+
* Set to true if the post is not allowed to be reshared.
|
|
3232
|
+
*/
|
|
3233
|
+
disableReshare?: boolean | null;
|
|
3234
|
+
} | null;
|
|
3235
|
+
YOUTUBE?: {
|
|
3236
|
+
type?: 'VIDEO' | 'SHORT';
|
|
3237
|
+
uploadIds?: Array<(string)> | null;
|
|
3238
|
+
text?: string | null;
|
|
3239
|
+
description?: string | null;
|
|
3240
|
+
privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
3241
|
+
/**
|
|
3242
|
+
* Set to true if the video is made for kids.
|
|
3243
|
+
*/
|
|
3244
|
+
madeForKids?: boolean | null;
|
|
2638
3245
|
} | null;
|
|
2639
3246
|
REDDIT?: {
|
|
2640
3247
|
sr: string;
|
|
2641
3248
|
text: string;
|
|
2642
3249
|
description?: string | null;
|
|
2643
3250
|
uploadIds?: Array<(string)> | null;
|
|
2644
|
-
|
|
3251
|
+
/**
|
|
3252
|
+
* The URL to which the post will link to.
|
|
3253
|
+
*/
|
|
3254
|
+
link?: string | null;
|
|
3255
|
+
/**
|
|
3256
|
+
* Set to true if the post is NSFW.
|
|
3257
|
+
*/
|
|
2645
3258
|
nsfw?: boolean | null;
|
|
2646
3259
|
} | null;
|
|
2647
3260
|
DISCORD?: {
|
|
2648
3261
|
channelId: string;
|
|
2649
3262
|
text?: string | null;
|
|
2650
3263
|
uploadIds?: Array<(string)> | null;
|
|
3264
|
+
/**
|
|
3265
|
+
* The username to display as the author of the message.
|
|
3266
|
+
*/
|
|
2651
3267
|
username?: string | null;
|
|
3268
|
+
/**
|
|
3269
|
+
* Avatar url to display as the author of the message.
|
|
3270
|
+
*/
|
|
2652
3271
|
avatarUrl?: string | null;
|
|
2653
3272
|
} | null;
|
|
2654
3273
|
SLACK?: {
|
|
2655
3274
|
channelId: string;
|
|
2656
3275
|
text?: string | null;
|
|
2657
3276
|
uploadIds?: Array<(string)> | null;
|
|
3277
|
+
/**
|
|
3278
|
+
* The username to display as the author of the message.
|
|
3279
|
+
*/
|
|
2658
3280
|
username?: string | null;
|
|
3281
|
+
/**
|
|
3282
|
+
* Avatar url to display as the author of the message.
|
|
3283
|
+
*/
|
|
2659
3284
|
avatarUrl?: string | null;
|
|
2660
3285
|
} | null;
|
|
2661
|
-
YOUTUBE?: {
|
|
2662
|
-
type?: 'SHORT';
|
|
2663
|
-
uploadIds?: Array<(string)> | null;
|
|
2664
|
-
text?: string | null;
|
|
2665
|
-
description?: string | null;
|
|
2666
|
-
categoryId?: string | null;
|
|
2667
|
-
privacyStatus?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
2668
|
-
madeForKids?: boolean;
|
|
2669
|
-
} | null;
|
|
2670
3286
|
TELEGRAM?: unknown;
|
|
2671
3287
|
THREADS?: unknown;
|
|
2672
3288
|
};
|
|
@@ -2802,9 +3418,21 @@ type $OpenApiTs = {
|
|
|
2802
3418
|
description?: string | null;
|
|
2803
3419
|
boardName: string;
|
|
2804
3420
|
uploadIds?: Array<(string)> | null;
|
|
3421
|
+
/**
|
|
3422
|
+
* The URL to which the Pin will link to.
|
|
3423
|
+
*/
|
|
2805
3424
|
link?: string | null;
|
|
3425
|
+
/**
|
|
3426
|
+
* The alt text for the image. This is used by screen readers and when the image can't be loaded.
|
|
3427
|
+
*/
|
|
2806
3428
|
altText?: string | null;
|
|
3429
|
+
/**
|
|
3430
|
+
* A note about the Pin. This is not visible to the public.
|
|
3431
|
+
*/
|
|
2807
3432
|
note?: string | null;
|
|
3433
|
+
/**
|
|
3434
|
+
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
3435
|
+
*/
|
|
2808
3436
|
dominantColor?: string | null;
|
|
2809
3437
|
} | null;
|
|
2810
3438
|
FACEBOOK?: {
|
|
@@ -2821,47 +3449,91 @@ type $OpenApiTs = {
|
|
|
2821
3449
|
text?: string | null;
|
|
2822
3450
|
uploadIds?: Array<(string)> | null;
|
|
2823
3451
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
3452
|
+
/**
|
|
3453
|
+
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
3454
|
+
*/
|
|
3455
|
+
isBrandContent?: boolean | null;
|
|
3456
|
+
/**
|
|
3457
|
+
* Set to true if this video is promoting the creator's own business.
|
|
3458
|
+
*/
|
|
3459
|
+
isOrganicBrandContent?: boolean | null;
|
|
3460
|
+
/**
|
|
3461
|
+
* If set to true, other TikTok users will not be allowed to make comments on this post.
|
|
3462
|
+
*/
|
|
3463
|
+
disableComments?: boolean | null;
|
|
3464
|
+
/**
|
|
3465
|
+
* If set to true, other TikTok users will not be allowed to make Stitches using this post.
|
|
3466
|
+
*/
|
|
3467
|
+
disableDuet?: boolean | null;
|
|
3468
|
+
/**
|
|
3469
|
+
* If set to true, other TikTok users will not be allowed to make Duets using this post.
|
|
3470
|
+
*/
|
|
3471
|
+
disableStitch?: boolean | null;
|
|
2824
3472
|
} | null;
|
|
2825
3473
|
LINKEDIN?: {
|
|
2826
3474
|
text: string;
|
|
2827
3475
|
uploadIds?: Array<(string)> | null;
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
3476
|
+
privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
|
|
3477
|
+
/**
|
|
3478
|
+
* Set to true if the post shouldn't be displayed in the main feed.
|
|
3479
|
+
*/
|
|
3480
|
+
hideFromFeed?: boolean | null;
|
|
3481
|
+
/**
|
|
3482
|
+
* Set to true if the post is not allowed to be reshared.
|
|
3483
|
+
*/
|
|
3484
|
+
disableReshare?: boolean | null;
|
|
3485
|
+
} | null;
|
|
3486
|
+
YOUTUBE?: {
|
|
3487
|
+
type?: 'VIDEO' | 'SHORT';
|
|
3488
|
+
uploadIds?: Array<(string)> | null;
|
|
3489
|
+
text?: string | null;
|
|
3490
|
+
description?: string | null;
|
|
3491
|
+
privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
3492
|
+
/**
|
|
3493
|
+
* Set to true if the video is made for kids.
|
|
3494
|
+
*/
|
|
3495
|
+
madeForKids?: boolean | null;
|
|
2833
3496
|
} | null;
|
|
2834
3497
|
REDDIT?: {
|
|
2835
3498
|
sr: string;
|
|
2836
3499
|
text: string;
|
|
2837
3500
|
description?: string | null;
|
|
2838
3501
|
uploadIds?: Array<(string)> | null;
|
|
2839
|
-
|
|
3502
|
+
/**
|
|
3503
|
+
* The URL to which the post will link to.
|
|
3504
|
+
*/
|
|
3505
|
+
link?: string | null;
|
|
3506
|
+
/**
|
|
3507
|
+
* Set to true if the post is NSFW.
|
|
3508
|
+
*/
|
|
2840
3509
|
nsfw?: boolean | null;
|
|
2841
3510
|
} | null;
|
|
2842
3511
|
DISCORD?: {
|
|
2843
3512
|
channelId: string;
|
|
2844
3513
|
text?: string | null;
|
|
2845
3514
|
uploadIds?: Array<(string)> | null;
|
|
3515
|
+
/**
|
|
3516
|
+
* The username to display as the author of the message.
|
|
3517
|
+
*/
|
|
2846
3518
|
username?: string | null;
|
|
3519
|
+
/**
|
|
3520
|
+
* Avatar url to display as the author of the message.
|
|
3521
|
+
*/
|
|
2847
3522
|
avatarUrl?: string | null;
|
|
2848
3523
|
} | null;
|
|
2849
3524
|
SLACK?: {
|
|
2850
3525
|
channelId: string;
|
|
2851
3526
|
text?: string | null;
|
|
2852
3527
|
uploadIds?: Array<(string)> | null;
|
|
3528
|
+
/**
|
|
3529
|
+
* The username to display as the author of the message.
|
|
3530
|
+
*/
|
|
2853
3531
|
username?: string | null;
|
|
3532
|
+
/**
|
|
3533
|
+
* Avatar url to display as the author of the message.
|
|
3534
|
+
*/
|
|
2854
3535
|
avatarUrl?: string | null;
|
|
2855
3536
|
} | null;
|
|
2856
|
-
YOUTUBE?: {
|
|
2857
|
-
type?: 'SHORT';
|
|
2858
|
-
uploadIds?: Array<(string)> | null;
|
|
2859
|
-
text?: string | null;
|
|
2860
|
-
description?: string | null;
|
|
2861
|
-
categoryId?: string | null;
|
|
2862
|
-
privacyStatus?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
2863
|
-
madeForKids?: boolean;
|
|
2864
|
-
} | null;
|
|
2865
3537
|
TELEGRAM?: unknown;
|
|
2866
3538
|
THREADS?: unknown;
|
|
2867
3539
|
};
|
|
@@ -2991,7 +3663,7 @@ declare class TeamService {
|
|
|
2991
3663
|
readonly httpRequest: BaseHttpRequest;
|
|
2992
3664
|
constructor(httpRequest: BaseHttpRequest);
|
|
2993
3665
|
/**
|
|
2994
|
-
* Get team
|
|
3666
|
+
* Get team
|
|
2995
3667
|
* @returns unknown 200
|
|
2996
3668
|
* @throws ApiError
|
|
2997
3669
|
*/
|