bundlesocial 2.16.0 → 2.17.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.ts CHANGED
@@ -81,7 +81,6 @@ type OrganizationGetOrganizationResponse = {
81
81
  promotionCodeId?: string | null;
82
82
  name?: string | null;
83
83
  avatarUrl?: string | null;
84
- apiAccess?: boolean;
85
84
  ref?: string | null;
86
85
  dailyPostLimit?: {
87
86
  TWITTER?: number;
@@ -97,6 +96,8 @@ type OrganizationGetOrganizationResponse = {
97
96
  SLACK?: number;
98
97
  MASTODON?: number;
99
98
  } | null;
99
+ apiAccess?: boolean;
100
+ analyticsDisabled?: boolean;
100
101
  createdAt: string | null;
101
102
  updatedAt: string | null;
102
103
  deletedAt?: string | null;
@@ -248,7 +249,6 @@ type TeamGetTeamResponse = {
248
249
  promotionCodeId?: string | null;
249
250
  name?: string | null;
250
251
  avatarUrl?: string | null;
251
- apiAccess?: boolean;
252
252
  ref?: string | null;
253
253
  dailyPostLimit?: {
254
254
  TWITTER?: number;
@@ -264,6 +264,8 @@ type TeamGetTeamResponse = {
264
264
  SLACK?: number;
265
265
  MASTODON?: number;
266
266
  } | null;
267
+ apiAccess?: boolean;
268
+ analyticsDisabled?: boolean;
267
269
  createdAt: string | null;
268
270
  updatedAt: string | null;
269
271
  deletedAt?: string | null;
@@ -406,7 +408,6 @@ type TeamGetListResponse = {
406
408
  promotionCodeId?: string | null;
407
409
  name?: string | null;
408
410
  avatarUrl?: string | null;
409
- apiAccess?: boolean;
410
411
  ref?: string | null;
411
412
  dailyPostLimit?: {
412
413
  TWITTER?: number;
@@ -422,6 +423,8 @@ type TeamGetListResponse = {
422
423
  SLACK?: number;
423
424
  MASTODON?: number;
424
425
  } | null;
426
+ apiAccess?: boolean;
427
+ analyticsDisabled?: boolean;
425
428
  createdAt: string | null;
426
429
  updatedAt: string | null;
427
430
  deletedAt?: string | null;
@@ -865,7 +868,7 @@ type UploadInitLargeUploadData = {
865
868
  requestBody?: {
866
869
  teamId?: string | null;
867
870
  fileName: string;
868
- mimeType: string;
871
+ mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'video/mp4';
869
872
  };
870
873
  };
871
874
  type UploadInitLargeUploadResponse = {
@@ -2931,66 +2934,11 @@ type PostCreateResponse = {
2931
2934
  updatedAt: string | null;
2932
2935
  deletedAt?: string | null;
2933
2936
  };
2934
- type AnalyticsGetProfileAnalyticsData = {
2935
- platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON';
2936
- teamId: string;
2937
- };
2938
- type AnalyticsGetProfileAnalyticsResponse = Array<{
2939
- id: string;
2940
- socialAccountId: string;
2941
- impressions: number;
2942
- impressionsUnique: number;
2943
- views: number;
2944
- viewsUnique: number;
2945
- likes: number;
2946
- comments: number;
2947
- postCount: number;
2948
- followers: number;
2949
- following: number;
2950
- raw?: unknown;
2951
- createdAt: string | null;
2952
- updatedAt: string | null;
2953
- deletedAt?: string | null;
2954
- }>;
2955
- type AnalyticsGetProfilePostsData = {
2956
- ids?: Array<(string)>;
2937
+ type AnalyticsGetSocialAccountAnalyticsData = {
2957
2938
  platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON';
2958
2939
  teamId: string;
2959
2940
  };
2960
- type AnalyticsGetProfilePostsResponse = Array<{
2961
- id: string;
2962
- socialAccountId: string;
2963
- postId?: string | null;
2964
- externalId?: string | null;
2965
- title?: string | null;
2966
- description?: string | null;
2967
- smallThumbnail?: string | null;
2968
- thumbnail?: string | null;
2969
- permalink?: string | null;
2970
- subreddit?: string | null;
2971
- publishedAt?: string | null;
2972
- type: 'POST' | 'REEL' | 'STORY' | 'VIDEO' | 'IMAGE';
2973
- init: boolean;
2974
- createdAt: string | null;
2975
- updatedAt: string | null;
2976
- deletedAt?: string | null;
2977
- analytics: Array<{
2978
- id: string;
2979
- profilePostId: string;
2980
- impressions: number;
2981
- impressionsUnique: number;
2982
- views: number;
2983
- viewsUnique: number;
2984
- likes: number;
2985
- dislikes: number;
2986
- comments: number;
2987
- shares: number;
2988
- saves: number;
2989
- raw?: unknown;
2990
- createdAt: string | null;
2991
- updatedAt: string | null;
2992
- deletedAt?: string | null;
2993
- }>;
2941
+ type AnalyticsGetSocialAccountAnalyticsResponse = {
2994
2942
  socialAccount: {
2995
2943
  id: string;
2996
2944
  type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
@@ -3016,7 +2964,29 @@ type AnalyticsGetProfilePostsResponse = Array<{
3016
2964
  updatedAt: string | null;
3017
2965
  deletedAt?: string | null;
3018
2966
  };
3019
- post?: {
2967
+ items: Array<{
2968
+ id: string;
2969
+ socialAccountId: string;
2970
+ impressions: number;
2971
+ impressionsUnique: number;
2972
+ views: number;
2973
+ viewsUnique: number;
2974
+ likes: number;
2975
+ comments: number;
2976
+ postCount: number;
2977
+ followers: number;
2978
+ following: number;
2979
+ createdAt: string | null;
2980
+ updatedAt: string | null;
2981
+ deletedAt?: string | null;
2982
+ }>;
2983
+ };
2984
+ type AnalyticsGetPostAnalyticsData = {
2985
+ platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON';
2986
+ postId: string;
2987
+ };
2988
+ type AnalyticsGetPostAnalyticsResponse = {
2989
+ post: {
3020
2990
  id: string;
3021
2991
  teamId: string;
3022
2992
  organizationId?: string | null;
@@ -3307,29 +3277,8 @@ type AnalyticsGetProfilePostsResponse = Array<{
3307
3277
  createdAt: string | null;
3308
3278
  updatedAt: string | null;
3309
3279
  deletedAt?: string | null;
3310
- } | null;
3311
- }>;
3312
- type AnalyticsGetProfilePostData = {
3313
- id: string;
3314
- };
3315
- type AnalyticsGetProfilePostResponse = {
3316
- id: string;
3317
- socialAccountId: string;
3318
- postId?: string | null;
3319
- externalId?: string | null;
3320
- title?: string | null;
3321
- description?: string | null;
3322
- smallThumbnail?: string | null;
3323
- thumbnail?: string | null;
3324
- permalink?: string | null;
3325
- subreddit?: string | null;
3326
- publishedAt?: string | null;
3327
- type: 'POST' | 'REEL' | 'STORY' | 'VIDEO' | 'IMAGE';
3328
- init: boolean;
3329
- createdAt: string | null;
3330
- updatedAt: string | null;
3331
- deletedAt?: string | null;
3332
- analytics: Array<{
3280
+ };
3281
+ items: Array<{
3333
3282
  id: string;
3334
3283
  profilePostId: string;
3335
3284
  impressions: number;
@@ -3346,6 +3295,12 @@ type AnalyticsGetProfilePostResponse = {
3346
3295
  updatedAt: string | null;
3347
3296
  deletedAt?: string | null;
3348
3297
  }>;
3298
+ };
3299
+ type AnalyticsGetSocialAccountAnalyticsRawData = {
3300
+ platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON';
3301
+ teamId: string;
3302
+ };
3303
+ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
3349
3304
  socialAccount: {
3350
3305
  id: string;
3351
3306
  type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
@@ -3371,7 +3326,22 @@ type AnalyticsGetProfilePostResponse = {
3371
3326
  updatedAt: string | null;
3372
3327
  deletedAt?: string | null;
3373
3328
  };
3374
- post?: {
3329
+ items: Array<{
3330
+ id: string;
3331
+ socialAccountId?: string | null;
3332
+ analyticsId?: string | null;
3333
+ raw?: unknown;
3334
+ createdAt: string | null;
3335
+ updatedAt: string | null;
3336
+ deletedAt?: string | null;
3337
+ }>;
3338
+ };
3339
+ type AnalyticsGetPostAnalyticsRawData = {
3340
+ platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON';
3341
+ postId: string;
3342
+ };
3343
+ type AnalyticsGetPostAnalyticsRawResponse = {
3344
+ post: {
3375
3345
  id: string;
3376
3346
  teamId: string;
3377
3347
  organizationId?: string | null;
@@ -3662,536 +3632,176 @@ type AnalyticsGetProfilePostResponse = {
3662
3632
  createdAt: string | null;
3663
3633
  updatedAt: string | null;
3664
3634
  deletedAt?: string | null;
3665
- } | null;
3635
+ };
3636
+ items: Array<{
3637
+ id: string;
3638
+ profilePostId?: string | null;
3639
+ analyticsId?: string | null;
3640
+ raw?: unknown;
3641
+ createdAt: string | null;
3642
+ updatedAt: string | null;
3643
+ deletedAt?: string | null;
3644
+ }>;
3645
+ };
3646
+ type AnalyticsGetProfileAnalyticsResponse = string;
3647
+ type AnalyticsGetProfilePostsResponse = string;
3648
+ type AnalyticsGetProfilePostData = {
3649
+ id: string;
3666
3650
  };
3651
+ type AnalyticsGetProfilePostResponse = string;
3667
3652
  type AnalyticsGetProfilePostByPostIdData = {
3668
3653
  id: string;
3669
3654
  };
3670
- type AnalyticsGetProfilePostByPostIdResponse = {
3655
+ type AnalyticsGetProfilePostByPostIdResponse = string;
3656
+ type AnalyticsGetRawSocialAccountAnalyticsResponse = string;
3657
+ type AnalyticsGetRawPostsAnalyticsResponse = string;
3658
+ type CommentGetData = {
3671
3659
  id: string;
3672
- socialAccountId: string;
3673
- postId?: string | null;
3674
- externalId?: string | null;
3675
- title?: string | null;
3676
- description?: string | null;
3677
- smallThumbnail?: string | null;
3678
- thumbnail?: string | null;
3679
- permalink?: string | null;
3680
- subreddit?: string | null;
3681
- publishedAt?: string | null;
3682
- type: 'POST' | 'REEL' | 'STORY' | 'VIDEO' | 'IMAGE';
3683
- init: boolean;
3660
+ };
3661
+ type CommentGetResponse = {
3662
+ id: string;
3663
+ teamId: string;
3664
+ organizationId?: string | null;
3665
+ internalPostId: string;
3666
+ internalParentCommentId?: string | null;
3667
+ title: string;
3668
+ postDate: string | null;
3669
+ postedDate?: string | null;
3670
+ status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
3671
+ data: {
3672
+ FACEBOOK?: {
3673
+ text?: string | null;
3674
+ } | null;
3675
+ INSTAGRAM?: {
3676
+ text?: string | null;
3677
+ } | null;
3678
+ THREADS?: {
3679
+ text?: string | null;
3680
+ } | null;
3681
+ TIKTOK?: {
3682
+ text?: string | null;
3683
+ } | null;
3684
+ LINKEDIN?: {
3685
+ text?: string | null;
3686
+ } | null;
3687
+ YOUTUBE?: {
3688
+ text?: string | null;
3689
+ } | null;
3690
+ REDDIT?: {
3691
+ text?: string | null;
3692
+ } | null;
3693
+ MASTODON?: {
3694
+ text?: string | null;
3695
+ } | null;
3696
+ DISCORD?: {
3697
+ text?: string | null;
3698
+ } | null;
3699
+ SLACK?: {
3700
+ text?: string | null;
3701
+ } | null;
3702
+ };
3703
+ error?: string | null;
3704
+ errors?: {
3705
+ FACEBOOK?: string | null;
3706
+ INSTAGRAM?: string | null;
3707
+ TIKTOK?: string | null;
3708
+ LINKEDIN?: string | null;
3709
+ REDDIT?: string | null;
3710
+ YOUTUBE?: string | null;
3711
+ MASTODON?: string | null;
3712
+ THREADS?: string | null;
3713
+ DISCORD?: string | null;
3714
+ SLACK?: string | null;
3715
+ } | null;
3716
+ externalData?: {
3717
+ FACEBOOK?: {
3718
+ id?: string | null;
3719
+ permalink?: string | null;
3720
+ } | null;
3721
+ INSTAGRAM?: {
3722
+ id?: string | null;
3723
+ permalink?: string | null;
3724
+ } | null;
3725
+ TIKTOK?: {
3726
+ id?: string | null;
3727
+ permalink?: string | null;
3728
+ } | null;
3729
+ LINKEDIN?: {
3730
+ id?: string | null;
3731
+ commentUrn?: string | null;
3732
+ permalink?: string | null;
3733
+ } | null;
3734
+ REDDIT?: {
3735
+ id?: string | null;
3736
+ permalink?: string | null;
3737
+ } | null;
3738
+ YOUTUBE?: {
3739
+ id?: string | null;
3740
+ permalink?: string | null;
3741
+ } | null;
3742
+ MASTODON?: {
3743
+ id?: string | null;
3744
+ permalink?: string | null;
3745
+ } | null;
3746
+ THREADS?: {
3747
+ id?: string | null;
3748
+ permalink?: string | null;
3749
+ } | null;
3750
+ DISCORD?: {
3751
+ id?: string | null;
3752
+ permalink?: string | null;
3753
+ } | null;
3754
+ SLACK?: {
3755
+ id?: string | null;
3756
+ permalink?: string | null;
3757
+ } | null;
3758
+ } | null;
3684
3759
  createdAt: string | null;
3685
3760
  updatedAt: string | null;
3686
3761
  deletedAt?: string | null;
3687
- analytics: Array<{
3688
- id: string;
3689
- profilePostId: string;
3690
- impressions: number;
3691
- impressionsUnique: number;
3692
- views: number;
3693
- viewsUnique: number;
3694
- likes: number;
3695
- dislikes: number;
3696
- comments: number;
3697
- shares: number;
3698
- saves: number;
3699
- raw?: unknown;
3700
- createdAt: string | null;
3701
- updatedAt: string | null;
3702
- deletedAt?: string | null;
3703
- }>;
3704
- socialAccount: {
3705
- id: string;
3706
- type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
3707
- teamId: string;
3708
- username?: string | null;
3709
- displayName?: string | null;
3710
- externalId?: string | null;
3711
- userUsername?: string | null;
3712
- userDisplayName?: string | null;
3713
- userId?: string | null;
3714
- channels?: Array<{
3715
- id: string;
3716
- name?: string | null;
3717
- username?: string | null;
3718
- webhook?: {
3719
- id?: string | null;
3720
- name?: string | null;
3721
- avatar?: string | null;
3722
- url?: string | null;
3723
- } | null;
3724
- }> | null;
3725
- createdAt: string | null;
3726
- updatedAt: string | null;
3727
- deletedAt?: string | null;
3728
- };
3729
- post?: {
3730
- id: string;
3731
- teamId: string;
3732
- organizationId?: string | null;
3733
- title: string;
3734
- postDate: string | null;
3735
- postedDate?: string | null;
3736
- status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW';
3737
- data: {
3738
- TWITTER?: {
3762
+ };
3763
+ type CommentUpdateData = {
3764
+ id: string;
3765
+ /**
3766
+ * Body
3767
+ */
3768
+ requestBody?: {
3769
+ title?: string;
3770
+ internalPostId?: string;
3771
+ internalParentCommentId?: string | null;
3772
+ postDate?: string;
3773
+ status?: 'DRAFT' | 'SCHEDULED';
3774
+ socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
3775
+ data?: {
3776
+ FACEBOOK?: {
3739
3777
  text?: string | null;
3740
- uploadIds?: Array<(string)> | null;
3741
- } | null;
3742
- PINTEREST?: {
3743
- text?: string | null;
3744
- description?: string | null;
3745
- boardName: string;
3746
- uploadIds?: Array<(string)> | null;
3747
- /**
3748
- * The URL to image uploaded on bundle.social.
3749
- */
3750
- thumbnail?: string | null;
3751
- /**
3752
- * The URL to which the Pin will link to.
3753
- */
3754
- link?: string | null;
3755
- /**
3756
- * The alt text for the image. This is used by screen readers and when the image can't be loaded.
3757
- */
3758
- altText?: string | null;
3759
- /**
3760
- * A note about the Pin. This is not visible to the public.
3761
- */
3762
- note?: string | null;
3763
- /**
3764
- * The dominant color of the image. This is used to display the image before it's loaded.
3765
- */
3766
- dominantColor?: string | null;
3767
- } | null;
3768
- FACEBOOK?: {
3769
- type?: 'POST' | 'REEL' | 'STORY';
3770
- text?: string | null;
3771
- uploadIds?: Array<(string)> | null;
3772
- /**
3773
- * The URL to which the post will link to. Only available for type POST.
3774
- */
3775
- link?: string | null;
3776
- /**
3777
- * The URL to image uploaded on bundle.social.
3778
- */
3779
- thumbnail?: string | null;
3780
3778
  } | null;
3781
3779
  INSTAGRAM?: {
3782
- type?: 'POST' | 'REEL' | 'STORY';
3783
3780
  text?: string | null;
3784
- uploadIds?: Array<(string)> | null;
3785
- /**
3786
- * Choose a frame of the published video as the cover photo in ms
3787
- */
3788
- thumbnailOffset?: number | null;
3789
- /**
3790
- * The URL to image uploaded on bundle.social.
3791
- */
3792
- thumbnail?: string | null;
3793
- /**
3794
- * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
3795
- */
3796
- shareToFeed?: boolean | null;
3797
- collaborators?: Array<(string)> | null;
3798
- tagged?: Array<{
3799
- username: string;
3800
- x: number;
3801
- y: number;
3802
- }> | null;
3803
3781
  } | null;
3804
3782
  THREADS?: {
3805
3783
  text?: string | null;
3806
- uploadIds?: Array<(string)> | null;
3807
3784
  } | null;
3808
3785
  TIKTOK?: {
3809
- type?: 'VIDEO' | 'IMAGE';
3810
3786
  text?: string | null;
3811
- uploadIds?: Array<(string)> | null;
3812
- /**
3813
- * The URL to image uploaded on bundle.social.
3814
- */
3815
- thumbnail?: string | null;
3816
- privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
3817
- /**
3818
- * Set to true if the video is a paid partnership to promote a third-party business.
3819
- */
3820
- isBrandContent?: boolean | null;
3821
- /**
3822
- * Set to true if this video is promoting the creator's own business.
3823
- */
3824
- isOrganicBrandContent?: boolean | null;
3825
- /**
3826
- * If set to true, other TikTok users will not be allowed to make comments on this post.
3827
- */
3828
- disableComments?: boolean | null;
3829
- /**
3830
- * If set to true, other TikTok users will not be allowed to make Stitches using this post.
3831
- */
3832
- disableDuet?: boolean | null;
3833
- /**
3834
- * If set to true, other TikTok users will not be allowed to make Duets using this post.
3835
- */
3836
- disableStitch?: boolean | null;
3837
- /**
3838
- * Choose a frame of the published video as the cover photo in ms
3839
- */
3840
- thumbnailOffset?: number | null;
3841
- /**
3842
- * Set to true if this video is AI generated.
3843
- */
3844
- isAiGenerated?: boolean | null;
3845
3787
  } | null;
3846
3788
  LINKEDIN?: {
3847
- text: string;
3848
- uploadIds?: Array<(string)> | null;
3849
- /**
3850
- * The URL to image uploaded on bundle.social.
3851
- */
3852
- thumbnail?: string | null;
3853
- privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
3854
- /**
3855
- * Set to true if the post shouldn't be displayed in the main feed.
3856
- */
3857
- hideFromFeed?: boolean | null;
3858
- /**
3859
- * Set to true if the post is not allowed to be reshared.
3860
- */
3861
- disableReshare?: boolean | null;
3789
+ text?: string | null;
3862
3790
  } | null;
3863
3791
  YOUTUBE?: {
3864
- type?: 'VIDEO' | 'SHORT';
3865
- uploadIds?: Array<(string)> | null;
3866
3792
  text?: string | null;
3867
- description?: string | null;
3868
- /**
3869
- * The URL to image uploaded on bundle.social.
3870
- */
3871
- thumbnail?: string | null;
3872
- privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
3873
- /**
3874
- * Set to true if the video is made for kids.
3875
- */
3876
- madeForKids?: boolean | null;
3877
- /**
3878
- * Set to true if video contains AI generated content
3879
- */
3880
- containsSyntheticMedia?: boolean | null;
3881
- /**
3882
- * Set to true if video has paid product placement
3883
- */
3884
- hasPaidProductPlacement?: boolean | null;
3885
3793
  } | null;
3886
3794
  REDDIT?: {
3887
- /**
3888
- * Subreddit name. Example: r/subredditName or u/username
3889
- */
3890
- sr: string;
3891
- text: string;
3892
- description?: string | null;
3893
- uploadIds?: Array<(string)> | null;
3894
- /**
3895
- * The URL to which the post will link to.
3896
- */
3897
- link?: string | null;
3898
- /**
3899
- * Set to true if the post is NSFW.
3900
- */
3901
- nsfw?: boolean | null;
3902
- } | null;
3903
- DISCORD?: {
3904
- channelId: string;
3905
- text?: string | null;
3906
- uploadIds?: Array<(string)> | null;
3907
- /**
3908
- * The username to display as the author of the message.
3909
- */
3910
- username?: string | null;
3911
- /**
3912
- * Avatar url to display as the author of the message.
3913
- */
3914
- avatarUrl?: string | null;
3915
- } | null;
3916
- SLACK?: {
3917
- channelId: string;
3918
3795
  text?: string | null;
3919
- uploadIds?: Array<(string)> | null;
3920
- /**
3921
- * The username to display as the author of the message.
3922
- */
3923
- username?: string | null;
3924
- /**
3925
- * Avatar url to display as the author of the message.
3926
- */
3927
- avatarUrl?: string | null;
3928
3796
  } | null;
3929
3797
  MASTODON?: {
3930
3798
  text?: string | null;
3931
- uploadIds?: Array<(string)> | null;
3932
- /**
3933
- * The URL to image uploaded on bundle.social.
3934
- */
3935
- thumbnail?: string | null;
3936
- privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
3937
- spoiler?: string | null;
3938
- } | null;
3939
- };
3940
- error?: string | null;
3941
- errors?: {
3942
- TWITTER?: string | null;
3943
- PINTEREST?: string | null;
3944
- FACEBOOK?: string | null;
3945
- INSTAGRAM?: string | null;
3946
- TIKTOK?: string | null;
3947
- LINKEDIN?: string | null;
3948
- REDDIT?: string | null;
3949
- DISCORD?: string | null;
3950
- SLACK?: string | null;
3951
- YOUTUBE?: string | null;
3952
- MASTODON?: string | null;
3953
- THREADS?: string | null;
3954
- } | null;
3955
- externalData?: {
3956
- TWITTER?: {
3957
- id?: string | null;
3958
- permalink?: string | null;
3959
- } | null;
3960
- PINTEREST?: {
3961
- id?: string | null;
3962
- permalink?: string | null;
3963
- thumbnail?: string | null;
3964
- } | null;
3965
- FACEBOOK?: {
3966
- id?: string | null;
3967
- postId?: string | null;
3968
- videoId?: string | null;
3969
- permalink?: string | null;
3970
- thumbnail?: string;
3971
- } | null;
3972
- INSTAGRAM?: {
3973
- id?: string | null;
3974
- permalink?: string | null;
3975
- thumbnail?: string;
3976
- } | null;
3977
- TIKTOK?: {
3978
- id?: string | null;
3979
- permalink?: string | null;
3980
- } | null;
3981
- LINKEDIN?: {
3982
- id?: string | null;
3983
- activity?: string | null;
3984
- permalink?: string | null;
3985
- thumbnail?: string;
3986
- } | null;
3987
- REDDIT?: {
3988
- id?: string | null;
3989
- permalink?: string | null;
3990
- subreddit_name?: string | null;
3991
3799
  } | null;
3992
3800
  DISCORD?: {
3993
- id?: string | null;
3994
- permalink?: string | null;
3995
- channelId?: string | null;
3801
+ text?: string | null;
3996
3802
  } | null;
3997
3803
  SLACK?: {
3998
- id?: string | null;
3999
- permalink?: string | null;
4000
- channelId?: string | null;
4001
- } | null;
4002
- YOUTUBE?: {
4003
- id?: string | null;
4004
- permalink?: string | null;
4005
- thumbnail?: string | null;
4006
- } | null;
4007
- MASTODON?: {
4008
- id?: string | null;
4009
- permalink?: string | null;
4010
- thumbnail?: string | null;
4011
- } | null;
4012
- THREADS?: {
4013
- id?: string | null;
4014
- permalink?: string | null;
4015
- } | null;
4016
- } | null;
4017
- createdAt: string | null;
4018
- updatedAt: string | null;
4019
- deletedAt?: string | null;
4020
- } | null;
4021
- };
4022
- type AnalyticsGetRawProfileAnalyticsData = {
4023
- socialAccountId: string;
4024
- teamId: string;
4025
- };
4026
- type AnalyticsGetRawProfileAnalyticsResponse = {
4027
- id: string;
4028
- profilePostId?: string | null;
4029
- socialAccountId?: string | null;
4030
- raw?: unknown;
4031
- createdAt: string | null;
4032
- updatedAt: string | null;
4033
- deletedAt?: string | null;
4034
- };
4035
- type AnalyticsGetRawPostsAnalyticsData = {
4036
- profilePostId: string;
4037
- teamId: string;
4038
- };
4039
- type AnalyticsGetRawPostsAnalyticsResponse = {
4040
- id: string;
4041
- profilePostId?: string | null;
4042
- socialAccountId?: string | null;
4043
- raw?: unknown;
4044
- createdAt: string | null;
4045
- updatedAt: string | null;
4046
- deletedAt?: string | null;
4047
- };
4048
- type CommentGetData = {
4049
- id: string;
4050
- };
4051
- type CommentGetResponse = {
4052
- id: string;
4053
- teamId: string;
4054
- organizationId?: string | null;
4055
- internalPostId: string;
4056
- internalParentCommentId?: string | null;
4057
- title: string;
4058
- postDate: string | null;
4059
- postedDate?: string | null;
4060
- status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
4061
- data: {
4062
- FACEBOOK?: {
4063
- text?: string | null;
4064
- } | null;
4065
- INSTAGRAM?: {
4066
- text?: string | null;
4067
- } | null;
4068
- THREADS?: {
4069
- text?: string | null;
4070
- } | null;
4071
- TIKTOK?: {
4072
- text?: string | null;
4073
- } | null;
4074
- LINKEDIN?: {
4075
- text?: string | null;
4076
- } | null;
4077
- YOUTUBE?: {
4078
- text?: string | null;
4079
- } | null;
4080
- REDDIT?: {
4081
- text?: string | null;
4082
- } | null;
4083
- MASTODON?: {
4084
- text?: string | null;
4085
- } | null;
4086
- DISCORD?: {
4087
- text?: string | null;
4088
- } | null;
4089
- SLACK?: {
4090
- text?: string | null;
4091
- } | null;
4092
- };
4093
- error?: string | null;
4094
- errors?: {
4095
- FACEBOOK?: string | null;
4096
- INSTAGRAM?: string | null;
4097
- TIKTOK?: string | null;
4098
- LINKEDIN?: string | null;
4099
- REDDIT?: string | null;
4100
- YOUTUBE?: string | null;
4101
- MASTODON?: string | null;
4102
- THREADS?: string | null;
4103
- DISCORD?: string | null;
4104
- SLACK?: string | null;
4105
- } | null;
4106
- externalData?: {
4107
- FACEBOOK?: {
4108
- id?: string | null;
4109
- permalink?: string | null;
4110
- } | null;
4111
- INSTAGRAM?: {
4112
- id?: string | null;
4113
- permalink?: string | null;
4114
- } | null;
4115
- TIKTOK?: {
4116
- id?: string | null;
4117
- permalink?: string | null;
4118
- } | null;
4119
- LINKEDIN?: {
4120
- id?: string | null;
4121
- commentUrn?: string | null;
4122
- permalink?: string | null;
4123
- } | null;
4124
- REDDIT?: {
4125
- id?: string | null;
4126
- permalink?: string | null;
4127
- } | null;
4128
- YOUTUBE?: {
4129
- id?: string | null;
4130
- permalink?: string | null;
4131
- } | null;
4132
- MASTODON?: {
4133
- id?: string | null;
4134
- permalink?: string | null;
4135
- } | null;
4136
- THREADS?: {
4137
- id?: string | null;
4138
- permalink?: string | null;
4139
- } | null;
4140
- DISCORD?: {
4141
- id?: string | null;
4142
- permalink?: string | null;
4143
- } | null;
4144
- SLACK?: {
4145
- id?: string | null;
4146
- permalink?: string | null;
4147
- } | null;
4148
- } | null;
4149
- createdAt: string | null;
4150
- updatedAt: string | null;
4151
- deletedAt?: string | null;
4152
- };
4153
- type CommentUpdateData = {
4154
- id: string;
4155
- /**
4156
- * Body
4157
- */
4158
- requestBody?: {
4159
- title?: string;
4160
- internalPostId?: string;
4161
- internalParentCommentId?: string | null;
4162
- postDate?: string;
4163
- status?: 'DRAFT' | 'SCHEDULED';
4164
- socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
4165
- data?: {
4166
- FACEBOOK?: {
4167
- text?: string | null;
4168
- } | null;
4169
- INSTAGRAM?: {
4170
- text?: string | null;
4171
- } | null;
4172
- THREADS?: {
4173
- text?: string | null;
4174
- } | null;
4175
- TIKTOK?: {
4176
- text?: string | null;
4177
- } | null;
4178
- LINKEDIN?: {
4179
- text?: string | null;
4180
- } | null;
4181
- YOUTUBE?: {
4182
- text?: string | null;
4183
- } | null;
4184
- REDDIT?: {
4185
- text?: string | null;
4186
- } | null;
4187
- MASTODON?: {
4188
- text?: string | null;
4189
- } | null;
4190
- DISCORD?: {
4191
- text?: string | null;
4192
- } | null;
4193
- SLACK?: {
4194
- text?: string | null;
3804
+ text?: string | null;
4195
3805
  } | null;
4196
3806
  };
4197
3807
  };
@@ -4732,7 +4342,6 @@ type $OpenApiTs = {
4732
4342
  promotionCodeId?: string | null;
4733
4343
  name?: string | null;
4734
4344
  avatarUrl?: string | null;
4735
- apiAccess?: boolean;
4736
4345
  ref?: string | null;
4737
4346
  dailyPostLimit?: {
4738
4347
  TWITTER?: number;
@@ -4748,6 +4357,8 @@ type $OpenApiTs = {
4748
4357
  SLACK?: number;
4749
4358
  MASTODON?: number;
4750
4359
  } | null;
4360
+ apiAccess?: boolean;
4361
+ analyticsDisabled?: boolean;
4751
4362
  createdAt: string | null;
4752
4363
  updatedAt: string | null;
4753
4364
  deletedAt?: string | null;
@@ -4946,7 +4557,6 @@ type $OpenApiTs = {
4946
4557
  promotionCodeId?: string | null;
4947
4558
  name?: string | null;
4948
4559
  avatarUrl?: string | null;
4949
- apiAccess?: boolean;
4950
4560
  ref?: string | null;
4951
4561
  dailyPostLimit?: {
4952
4562
  TWITTER?: number;
@@ -4962,6 +4572,8 @@ type $OpenApiTs = {
4962
4572
  SLACK?: number;
4963
4573
  MASTODON?: number;
4964
4574
  } | null;
4575
+ apiAccess?: boolean;
4576
+ analyticsDisabled?: boolean;
4965
4577
  createdAt: string | null;
4966
4578
  updatedAt: string | null;
4967
4579
  deletedAt?: string | null;
@@ -5233,7 +4845,6 @@ type $OpenApiTs = {
5233
4845
  promotionCodeId?: string | null;
5234
4846
  name?: string | null;
5235
4847
  avatarUrl?: string | null;
5236
- apiAccess?: boolean;
5237
4848
  ref?: string | null;
5238
4849
  dailyPostLimit?: {
5239
4850
  TWITTER?: number;
@@ -5249,6 +4860,8 @@ type $OpenApiTs = {
5249
4860
  SLACK?: number;
5250
4861
  MASTODON?: number;
5251
4862
  } | null;
4863
+ apiAccess?: boolean;
4864
+ analyticsDisabled?: boolean;
5252
4865
  createdAt: string | null;
5253
4866
  updatedAt: string | null;
5254
4867
  deletedAt?: string | null;
@@ -8106,491 +7719,22 @@ type $OpenApiTs = {
8106
7719
  YOUTUBE?: {
8107
7720
  id?: string | null;
8108
7721
  permalink?: string | null;
8109
- thumbnail?: string | null;
8110
- } | null;
8111
- MASTODON?: {
8112
- id?: string | null;
8113
- permalink?: string | null;
8114
- thumbnail?: string | null;
8115
- } | null;
8116
- THREADS?: {
8117
- id?: string | null;
8118
- permalink?: string | null;
8119
- } | null;
8120
- } | null;
8121
- createdAt: string | null;
8122
- updatedAt: string | null;
8123
- deletedAt?: string | null;
8124
- };
8125
- /**
8126
- * 400
8127
- */
8128
- 400: {
8129
- message: string;
8130
- issues?: Array<{
8131
- message: string;
8132
- path?: Array<(string | number)> | null;
8133
- }> | null;
8134
- };
8135
- /**
8136
- * 401
8137
- */
8138
- 401: {
8139
- message: string;
8140
- };
8141
- /**
8142
- * 403
8143
- */
8144
- 403: {
8145
- message: string;
8146
- };
8147
- /**
8148
- * 404
8149
- */
8150
- 404: {
8151
- message: string;
8152
- };
8153
- /**
8154
- * 429
8155
- */
8156
- 429: {
8157
- message: string;
8158
- };
8159
- /**
8160
- * 500
8161
- */
8162
- 500: {
8163
- message: string;
8164
- };
8165
- };
8166
- };
8167
- };
8168
- '/api/v1/analytics/profile': {
8169
- get: {
8170
- req: AnalyticsGetProfileAnalyticsData;
8171
- res: {
8172
- /**
8173
- * 200
8174
- */
8175
- 200: Array<{
8176
- id: string;
8177
- socialAccountId: string;
8178
- impressions: number;
8179
- impressionsUnique: number;
8180
- views: number;
8181
- viewsUnique: number;
8182
- likes: number;
8183
- comments: number;
8184
- postCount: number;
8185
- followers: number;
8186
- following: number;
8187
- raw?: unknown;
8188
- createdAt: string | null;
8189
- updatedAt: string | null;
8190
- deletedAt?: string | null;
8191
- }>;
8192
- /**
8193
- * 400
8194
- */
8195
- 400: {
8196
- message: string;
8197
- issues?: Array<{
8198
- message: string;
8199
- path?: Array<(string | number)> | null;
8200
- }> | null;
8201
- };
8202
- /**
8203
- * 401
8204
- */
8205
- 401: {
8206
- message: string;
8207
- };
8208
- /**
8209
- * 403
8210
- */
8211
- 403: {
8212
- message: string;
8213
- };
8214
- /**
8215
- * 404
8216
- */
8217
- 404: {
8218
- message: string;
8219
- };
8220
- /**
8221
- * 429
8222
- */
8223
- 429: {
8224
- message: string;
8225
- };
8226
- /**
8227
- * 500
8228
- */
8229
- 500: {
8230
- message: string;
8231
- };
8232
- };
8233
- };
8234
- };
8235
- '/api/v1/analytics/profile-post': {
8236
- get: {
8237
- req: AnalyticsGetProfilePostsData;
8238
- res: {
8239
- /**
8240
- * 200
8241
- */
8242
- 200: Array<{
8243
- id: string;
8244
- socialAccountId: string;
8245
- postId?: string | null;
8246
- externalId?: string | null;
8247
- title?: string | null;
8248
- description?: string | null;
8249
- smallThumbnail?: string | null;
8250
- thumbnail?: string | null;
8251
- permalink?: string | null;
8252
- subreddit?: string | null;
8253
- publishedAt?: string | null;
8254
- type: 'POST' | 'REEL' | 'STORY' | 'VIDEO' | 'IMAGE';
8255
- init: boolean;
8256
- createdAt: string | null;
8257
- updatedAt: string | null;
8258
- deletedAt?: string | null;
8259
- analytics: Array<{
8260
- id: string;
8261
- profilePostId: string;
8262
- impressions: number;
8263
- impressionsUnique: number;
8264
- views: number;
8265
- viewsUnique: number;
8266
- likes: number;
8267
- dislikes: number;
8268
- comments: number;
8269
- shares: number;
8270
- saves: number;
8271
- raw?: unknown;
8272
- createdAt: string | null;
8273
- updatedAt: string | null;
8274
- deletedAt?: string | null;
8275
- }>;
8276
- socialAccount: {
8277
- id: string;
8278
- type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
8279
- teamId: string;
8280
- username?: string | null;
8281
- displayName?: string | null;
8282
- externalId?: string | null;
8283
- userUsername?: string | null;
8284
- userDisplayName?: string | null;
8285
- userId?: string | null;
8286
- channels?: Array<{
8287
- id: string;
8288
- name?: string | null;
8289
- username?: string | null;
8290
- webhook?: {
8291
- id?: string | null;
8292
- name?: string | null;
8293
- avatar?: string | null;
8294
- url?: string | null;
8295
- } | null;
8296
- }> | null;
8297
- createdAt: string | null;
8298
- updatedAt: string | null;
8299
- deletedAt?: string | null;
8300
- };
8301
- post?: {
8302
- id: string;
8303
- teamId: string;
8304
- organizationId?: string | null;
8305
- title: string;
8306
- postDate: string | null;
8307
- postedDate?: string | null;
8308
- status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW';
8309
- data: {
8310
- TWITTER?: {
8311
- text?: string | null;
8312
- uploadIds?: Array<(string)> | null;
8313
- } | null;
8314
- PINTEREST?: {
8315
- text?: string | null;
8316
- description?: string | null;
8317
- boardName: string;
8318
- uploadIds?: Array<(string)> | null;
8319
- /**
8320
- * The URL to image uploaded on bundle.social.
8321
- */
8322
- thumbnail?: string | null;
8323
- /**
8324
- * The URL to which the Pin will link to.
8325
- */
8326
- link?: string | null;
8327
- /**
8328
- * The alt text for the image. This is used by screen readers and when the image can't be loaded.
8329
- */
8330
- altText?: string | null;
8331
- /**
8332
- * A note about the Pin. This is not visible to the public.
8333
- */
8334
- note?: string | null;
8335
- /**
8336
- * The dominant color of the image. This is used to display the image before it's loaded.
8337
- */
8338
- dominantColor?: string | null;
8339
- } | null;
8340
- FACEBOOK?: {
8341
- type?: 'POST' | 'REEL' | 'STORY';
8342
- text?: string | null;
8343
- uploadIds?: Array<(string)> | null;
8344
- /**
8345
- * The URL to which the post will link to. Only available for type POST.
8346
- */
8347
- link?: string | null;
8348
- /**
8349
- * The URL to image uploaded on bundle.social.
8350
- */
8351
- thumbnail?: string | null;
8352
- } | null;
8353
- INSTAGRAM?: {
8354
- type?: 'POST' | 'REEL' | 'STORY';
8355
- text?: string | null;
8356
- uploadIds?: Array<(string)> | null;
8357
- /**
8358
- * Choose a frame of the published video as the cover photo in ms
8359
- */
8360
- thumbnailOffset?: number | null;
8361
- /**
8362
- * The URL to image uploaded on bundle.social.
8363
- */
8364
- thumbnail?: string | null;
8365
- /**
8366
- * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
8367
- */
8368
- shareToFeed?: boolean | null;
8369
- collaborators?: Array<(string)> | null;
8370
- tagged?: Array<{
8371
- username: string;
8372
- x: number;
8373
- y: number;
8374
- }> | null;
8375
- } | null;
8376
- THREADS?: {
8377
- text?: string | null;
8378
- uploadIds?: Array<(string)> | null;
8379
- } | null;
8380
- TIKTOK?: {
8381
- type?: 'VIDEO' | 'IMAGE';
8382
- text?: string | null;
8383
- uploadIds?: Array<(string)> | null;
8384
- /**
8385
- * The URL to image uploaded on bundle.social.
8386
- */
8387
- thumbnail?: string | null;
8388
- privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
8389
- /**
8390
- * Set to true if the video is a paid partnership to promote a third-party business.
8391
- */
8392
- isBrandContent?: boolean | null;
8393
- /**
8394
- * Set to true if this video is promoting the creator's own business.
8395
- */
8396
- isOrganicBrandContent?: boolean | null;
8397
- /**
8398
- * If set to true, other TikTok users will not be allowed to make comments on this post.
8399
- */
8400
- disableComments?: boolean | null;
8401
- /**
8402
- * If set to true, other TikTok users will not be allowed to make Stitches using this post.
8403
- */
8404
- disableDuet?: boolean | null;
8405
- /**
8406
- * If set to true, other TikTok users will not be allowed to make Duets using this post.
8407
- */
8408
- disableStitch?: boolean | null;
8409
- /**
8410
- * Choose a frame of the published video as the cover photo in ms
8411
- */
8412
- thumbnailOffset?: number | null;
8413
- /**
8414
- * Set to true if this video is AI generated.
8415
- */
8416
- isAiGenerated?: boolean | null;
8417
- } | null;
8418
- LINKEDIN?: {
8419
- text: string;
8420
- uploadIds?: Array<(string)> | null;
8421
- /**
8422
- * The URL to image uploaded on bundle.social.
8423
- */
8424
- thumbnail?: string | null;
8425
- privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
8426
- /**
8427
- * Set to true if the post shouldn't be displayed in the main feed.
8428
- */
8429
- hideFromFeed?: boolean | null;
8430
- /**
8431
- * Set to true if the post is not allowed to be reshared.
8432
- */
8433
- disableReshare?: boolean | null;
8434
- } | null;
8435
- YOUTUBE?: {
8436
- type?: 'VIDEO' | 'SHORT';
8437
- uploadIds?: Array<(string)> | null;
8438
- text?: string | null;
8439
- description?: string | null;
8440
- /**
8441
- * The URL to image uploaded on bundle.social.
8442
- */
8443
- thumbnail?: string | null;
8444
- privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
8445
- /**
8446
- * Set to true if the video is made for kids.
8447
- */
8448
- madeForKids?: boolean | null;
8449
- /**
8450
- * Set to true if video contains AI generated content
8451
- */
8452
- containsSyntheticMedia?: boolean | null;
8453
- /**
8454
- * Set to true if video has paid product placement
8455
- */
8456
- hasPaidProductPlacement?: boolean | null;
8457
- } | null;
8458
- REDDIT?: {
8459
- /**
8460
- * Subreddit name. Example: r/subredditName or u/username
8461
- */
8462
- sr: string;
8463
- text: string;
8464
- description?: string | null;
8465
- uploadIds?: Array<(string)> | null;
8466
- /**
8467
- * The URL to which the post will link to.
8468
- */
8469
- link?: string | null;
8470
- /**
8471
- * Set to true if the post is NSFW.
8472
- */
8473
- nsfw?: boolean | null;
8474
- } | null;
8475
- DISCORD?: {
8476
- channelId: string;
8477
- text?: string | null;
8478
- uploadIds?: Array<(string)> | null;
8479
- /**
8480
- * The username to display as the author of the message.
8481
- */
8482
- username?: string | null;
8483
- /**
8484
- * Avatar url to display as the author of the message.
8485
- */
8486
- avatarUrl?: string | null;
8487
- } | null;
8488
- SLACK?: {
8489
- channelId: string;
8490
- text?: string | null;
8491
- uploadIds?: Array<(string)> | null;
8492
- /**
8493
- * The username to display as the author of the message.
8494
- */
8495
- username?: string | null;
8496
- /**
8497
- * Avatar url to display as the author of the message.
8498
- */
8499
- avatarUrl?: string | null;
8500
- } | null;
8501
- MASTODON?: {
8502
- text?: string | null;
8503
- uploadIds?: Array<(string)> | null;
8504
- /**
8505
- * The URL to image uploaded on bundle.social.
8506
- */
8507
- thumbnail?: string | null;
8508
- privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
8509
- spoiler?: string | null;
8510
- } | null;
8511
- };
8512
- error?: string | null;
8513
- errors?: {
8514
- TWITTER?: string | null;
8515
- PINTEREST?: string | null;
8516
- FACEBOOK?: string | null;
8517
- INSTAGRAM?: string | null;
8518
- TIKTOK?: string | null;
8519
- LINKEDIN?: string | null;
8520
- REDDIT?: string | null;
8521
- DISCORD?: string | null;
8522
- SLACK?: string | null;
8523
- YOUTUBE?: string | null;
8524
- MASTODON?: string | null;
8525
- THREADS?: string | null;
7722
+ thumbnail?: string | null;
8526
7723
  } | null;
8527
- externalData?: {
8528
- TWITTER?: {
8529
- id?: string | null;
8530
- permalink?: string | null;
8531
- } | null;
8532
- PINTEREST?: {
8533
- id?: string | null;
8534
- permalink?: string | null;
8535
- thumbnail?: string | null;
8536
- } | null;
8537
- FACEBOOK?: {
8538
- id?: string | null;
8539
- postId?: string | null;
8540
- videoId?: string | null;
8541
- permalink?: string | null;
8542
- thumbnail?: string;
8543
- } | null;
8544
- INSTAGRAM?: {
8545
- id?: string | null;
8546
- permalink?: string | null;
8547
- thumbnail?: string;
8548
- } | null;
8549
- TIKTOK?: {
8550
- id?: string | null;
8551
- permalink?: string | null;
8552
- } | null;
8553
- LINKEDIN?: {
8554
- id?: string | null;
8555
- activity?: string | null;
8556
- permalink?: string | null;
8557
- thumbnail?: string;
8558
- } | null;
8559
- REDDIT?: {
8560
- id?: string | null;
8561
- permalink?: string | null;
8562
- subreddit_name?: string | null;
8563
- } | null;
8564
- DISCORD?: {
8565
- id?: string | null;
8566
- permalink?: string | null;
8567
- channelId?: string | null;
8568
- } | null;
8569
- SLACK?: {
8570
- id?: string | null;
8571
- permalink?: string | null;
8572
- channelId?: string | null;
8573
- } | null;
8574
- YOUTUBE?: {
8575
- id?: string | null;
8576
- permalink?: string | null;
8577
- thumbnail?: string | null;
8578
- } | null;
8579
- MASTODON?: {
8580
- id?: string | null;
8581
- permalink?: string | null;
8582
- thumbnail?: string | null;
8583
- } | null;
8584
- THREADS?: {
8585
- id?: string | null;
8586
- permalink?: string | null;
8587
- } | null;
7724
+ MASTODON?: {
7725
+ id?: string | null;
7726
+ permalink?: string | null;
7727
+ thumbnail?: string | null;
7728
+ } | null;
7729
+ THREADS?: {
7730
+ id?: string | null;
7731
+ permalink?: string | null;
8588
7732
  } | null;
8589
- createdAt: string | null;
8590
- updatedAt: string | null;
8591
- deletedAt?: string | null;
8592
7733
  } | null;
8593
- }>;
7734
+ createdAt: string | null;
7735
+ updatedAt: string | null;
7736
+ deletedAt?: string | null;
7737
+ };
8594
7738
  /**
8595
7739
  * 400
8596
7740
  */
@@ -8634,47 +7778,14 @@ type $OpenApiTs = {
8634
7778
  };
8635
7779
  };
8636
7780
  };
8637
- '/api/v1/analytics/profile-post/{id}': {
7781
+ '/api/v1/analytics/social-account': {
8638
7782
  get: {
8639
- req: AnalyticsGetProfilePostData;
7783
+ req: AnalyticsGetSocialAccountAnalyticsData;
8640
7784
  res: {
8641
7785
  /**
8642
7786
  * 200
8643
7787
  */
8644
7788
  200: {
8645
- id: string;
8646
- socialAccountId: string;
8647
- postId?: string | null;
8648
- externalId?: string | null;
8649
- title?: string | null;
8650
- description?: string | null;
8651
- smallThumbnail?: string | null;
8652
- thumbnail?: string | null;
8653
- permalink?: string | null;
8654
- subreddit?: string | null;
8655
- publishedAt?: string | null;
8656
- type: 'POST' | 'REEL' | 'STORY' | 'VIDEO' | 'IMAGE';
8657
- init: boolean;
8658
- createdAt: string | null;
8659
- updatedAt: string | null;
8660
- deletedAt?: string | null;
8661
- analytics: Array<{
8662
- id: string;
8663
- profilePostId: string;
8664
- impressions: number;
8665
- impressionsUnique: number;
8666
- views: number;
8667
- viewsUnique: number;
8668
- likes: number;
8669
- dislikes: number;
8670
- comments: number;
8671
- shares: number;
8672
- saves: number;
8673
- raw?: unknown;
8674
- createdAt: string | null;
8675
- updatedAt: string | null;
8676
- deletedAt?: string | null;
8677
- }>;
8678
7789
  socialAccount: {
8679
7790
  id: string;
8680
7791
  type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
@@ -8700,7 +7811,75 @@ type $OpenApiTs = {
8700
7811
  updatedAt: string | null;
8701
7812
  deletedAt?: string | null;
8702
7813
  };
8703
- post?: {
7814
+ items: Array<{
7815
+ id: string;
7816
+ socialAccountId: string;
7817
+ impressions: number;
7818
+ impressionsUnique: number;
7819
+ views: number;
7820
+ viewsUnique: number;
7821
+ likes: number;
7822
+ comments: number;
7823
+ postCount: number;
7824
+ followers: number;
7825
+ following: number;
7826
+ createdAt: string | null;
7827
+ updatedAt: string | null;
7828
+ deletedAt?: string | null;
7829
+ }>;
7830
+ };
7831
+ /**
7832
+ * 400
7833
+ */
7834
+ 400: {
7835
+ message: string;
7836
+ issues?: Array<{
7837
+ message: string;
7838
+ path?: Array<(string | number)> | null;
7839
+ }> | null;
7840
+ };
7841
+ /**
7842
+ * 401
7843
+ */
7844
+ 401: {
7845
+ message: string;
7846
+ };
7847
+ /**
7848
+ * 403
7849
+ */
7850
+ 403: {
7851
+ message: string;
7852
+ };
7853
+ /**
7854
+ * 404
7855
+ */
7856
+ 404: {
7857
+ message: string;
7858
+ };
7859
+ /**
7860
+ * 429
7861
+ */
7862
+ 429: {
7863
+ message: string;
7864
+ };
7865
+ /**
7866
+ * 500
7867
+ */
7868
+ 500: {
7869
+ message: string;
7870
+ };
7871
+ };
7872
+ };
7873
+ };
7874
+ '/api/v1/analytics/post': {
7875
+ get: {
7876
+ req: AnalyticsGetPostAnalyticsData;
7877
+ res: {
7878
+ /**
7879
+ * 200
7880
+ */
7881
+ 200: {
7882
+ post: {
8704
7883
  id: string;
8705
7884
  teamId: string;
8706
7885
  organizationId?: string | null;
@@ -8991,7 +8170,24 @@ type $OpenApiTs = {
8991
8170
  createdAt: string | null;
8992
8171
  updatedAt: string | null;
8993
8172
  deletedAt?: string | null;
8994
- } | null;
8173
+ };
8174
+ items: Array<{
8175
+ id: string;
8176
+ profilePostId: string;
8177
+ impressions: number;
8178
+ impressionsUnique: number;
8179
+ views: number;
8180
+ viewsUnique: number;
8181
+ likes: number;
8182
+ dislikes: number;
8183
+ comments: number;
8184
+ shares: number;
8185
+ saves: number;
8186
+ raw?: unknown;
8187
+ createdAt: string | null;
8188
+ updatedAt: string | null;
8189
+ deletedAt?: string | null;
8190
+ }>;
8995
8191
  };
8996
8192
  /**
8997
8193
  * 400
@@ -9036,47 +8232,14 @@ type $OpenApiTs = {
9036
8232
  };
9037
8233
  };
9038
8234
  };
9039
- '/api/v1/analytics/profile-post/post/{id}': {
8235
+ '/api/v1/analytics/social-account/raw': {
9040
8236
  get: {
9041
- req: AnalyticsGetProfilePostByPostIdData;
8237
+ req: AnalyticsGetSocialAccountAnalyticsRawData;
9042
8238
  res: {
9043
8239
  /**
9044
8240
  * 200
9045
8241
  */
9046
8242
  200: {
9047
- id: string;
9048
- socialAccountId: string;
9049
- postId?: string | null;
9050
- externalId?: string | null;
9051
- title?: string | null;
9052
- description?: string | null;
9053
- smallThumbnail?: string | null;
9054
- thumbnail?: string | null;
9055
- permalink?: string | null;
9056
- subreddit?: string | null;
9057
- publishedAt?: string | null;
9058
- type: 'POST' | 'REEL' | 'STORY' | 'VIDEO' | 'IMAGE';
9059
- init: boolean;
9060
- createdAt: string | null;
9061
- updatedAt: string | null;
9062
- deletedAt?: string | null;
9063
- analytics: Array<{
9064
- id: string;
9065
- profilePostId: string;
9066
- impressions: number;
9067
- impressionsUnique: number;
9068
- views: number;
9069
- viewsUnique: number;
9070
- likes: number;
9071
- dislikes: number;
9072
- comments: number;
9073
- shares: number;
9074
- saves: number;
9075
- raw?: unknown;
9076
- createdAt: string | null;
9077
- updatedAt: string | null;
9078
- deletedAt?: string | null;
9079
- }>;
9080
8243
  socialAccount: {
9081
8244
  id: string;
9082
8245
  type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
@@ -9102,7 +8265,68 @@ type $OpenApiTs = {
9102
8265
  updatedAt: string | null;
9103
8266
  deletedAt?: string | null;
9104
8267
  };
9105
- post?: {
8268
+ items: Array<{
8269
+ id: string;
8270
+ socialAccountId?: string | null;
8271
+ analyticsId?: string | null;
8272
+ raw?: unknown;
8273
+ createdAt: string | null;
8274
+ updatedAt: string | null;
8275
+ deletedAt?: string | null;
8276
+ }>;
8277
+ };
8278
+ /**
8279
+ * 400
8280
+ */
8281
+ 400: {
8282
+ message: string;
8283
+ issues?: Array<{
8284
+ message: string;
8285
+ path?: Array<(string | number)> | null;
8286
+ }> | null;
8287
+ };
8288
+ /**
8289
+ * 401
8290
+ */
8291
+ 401: {
8292
+ message: string;
8293
+ };
8294
+ /**
8295
+ * 403
8296
+ */
8297
+ 403: {
8298
+ message: string;
8299
+ };
8300
+ /**
8301
+ * 404
8302
+ */
8303
+ 404: {
8304
+ message: string;
8305
+ };
8306
+ /**
8307
+ * 429
8308
+ */
8309
+ 429: {
8310
+ message: string;
8311
+ };
8312
+ /**
8313
+ * 500
8314
+ */
8315
+ 500: {
8316
+ message: string;
8317
+ };
8318
+ };
8319
+ };
8320
+ };
8321
+ '/api/v1/analytics/post/raw': {
8322
+ get: {
8323
+ req: AnalyticsGetPostAnalyticsRawData;
8324
+ res: {
8325
+ /**
8326
+ * 200
8327
+ */
8328
+ 200: {
8329
+ post: {
9106
8330
  id: string;
9107
8331
  teamId: string;
9108
8332
  organizationId?: string | null;
@@ -9393,7 +8617,16 @@ type $OpenApiTs = {
9393
8617
  createdAt: string | null;
9394
8618
  updatedAt: string | null;
9395
8619
  deletedAt?: string | null;
9396
- } | null;
8620
+ };
8621
+ items: Array<{
8622
+ id: string;
8623
+ profilePostId?: string | null;
8624
+ analyticsId?: string | null;
8625
+ raw?: unknown;
8626
+ createdAt: string | null;
8627
+ updatedAt: string | null;
8628
+ deletedAt?: string | null;
8629
+ }>;
9397
8630
  };
9398
8631
  /**
9399
8632
  * 400
@@ -9438,22 +8671,63 @@ type $OpenApiTs = {
9438
8671
  };
9439
8672
  };
9440
8673
  };
9441
- '/api/v1/analytics/raw-profile': {
8674
+ '/api/v1/analytics/profile': {
9442
8675
  get: {
9443
- req: AnalyticsGetRawProfileAnalyticsData;
9444
8676
  res: {
9445
8677
  /**
9446
8678
  * 200
9447
8679
  */
9448
- 200: {
9449
- id: string;
9450
- profilePostId?: string | null;
9451
- socialAccountId?: string | null;
9452
- raw?: unknown;
9453
- createdAt: string | null;
9454
- updatedAt: string | null;
9455
- deletedAt?: string | null;
8680
+ 200: string;
8681
+ /**
8682
+ * 400
8683
+ */
8684
+ 400: {
8685
+ message: string;
8686
+ issues?: Array<{
8687
+ message: string;
8688
+ path?: Array<(string | number)> | null;
8689
+ }> | null;
9456
8690
  };
8691
+ /**
8692
+ * 401
8693
+ */
8694
+ 401: {
8695
+ message: string;
8696
+ };
8697
+ /**
8698
+ * 403
8699
+ */
8700
+ 403: {
8701
+ message: string;
8702
+ };
8703
+ /**
8704
+ * 404
8705
+ */
8706
+ 404: {
8707
+ message: string;
8708
+ };
8709
+ /**
8710
+ * 429
8711
+ */
8712
+ 429: {
8713
+ message: string;
8714
+ };
8715
+ /**
8716
+ * 500
8717
+ */
8718
+ 500: {
8719
+ message: string;
8720
+ };
8721
+ };
8722
+ };
8723
+ };
8724
+ '/api/v1/analytics/profile-post': {
8725
+ get: {
8726
+ res: {
8727
+ /**
8728
+ * 200
8729
+ */
8730
+ 200: string;
9457
8731
  /**
9458
8732
  * 400
9459
8733
  */
@@ -9497,22 +8771,165 @@ type $OpenApiTs = {
9497
8771
  };
9498
8772
  };
9499
8773
  };
9500
- '/api/v1/analytics/raw-post': {
8774
+ '/api/v1/analytics/profile-post/{id}': {
9501
8775
  get: {
9502
- req: AnalyticsGetRawPostsAnalyticsData;
8776
+ req: AnalyticsGetProfilePostData;
9503
8777
  res: {
9504
8778
  /**
9505
8779
  * 200
9506
8780
  */
9507
- 200: {
9508
- id: string;
9509
- profilePostId?: string | null;
9510
- socialAccountId?: string | null;
9511
- raw?: unknown;
9512
- createdAt: string | null;
9513
- updatedAt: string | null;
9514
- deletedAt?: string | null;
8781
+ 200: string;
8782
+ /**
8783
+ * 400
8784
+ */
8785
+ 400: {
8786
+ message: string;
8787
+ issues?: Array<{
8788
+ message: string;
8789
+ path?: Array<(string | number)> | null;
8790
+ }> | null;
8791
+ };
8792
+ /**
8793
+ * 401
8794
+ */
8795
+ 401: {
8796
+ message: string;
8797
+ };
8798
+ /**
8799
+ * 403
8800
+ */
8801
+ 403: {
8802
+ message: string;
8803
+ };
8804
+ /**
8805
+ * 404
8806
+ */
8807
+ 404: {
8808
+ message: string;
8809
+ };
8810
+ /**
8811
+ * 429
8812
+ */
8813
+ 429: {
8814
+ message: string;
8815
+ };
8816
+ /**
8817
+ * 500
8818
+ */
8819
+ 500: {
8820
+ message: string;
8821
+ };
8822
+ };
8823
+ };
8824
+ };
8825
+ '/api/v1/analytics/profile-post/post/{id}': {
8826
+ get: {
8827
+ req: AnalyticsGetProfilePostByPostIdData;
8828
+ res: {
8829
+ /**
8830
+ * 200
8831
+ */
8832
+ 200: string;
8833
+ /**
8834
+ * 400
8835
+ */
8836
+ 400: {
8837
+ message: string;
8838
+ issues?: Array<{
8839
+ message: string;
8840
+ path?: Array<(string | number)> | null;
8841
+ }> | null;
8842
+ };
8843
+ /**
8844
+ * 401
8845
+ */
8846
+ 401: {
8847
+ message: string;
8848
+ };
8849
+ /**
8850
+ * 403
8851
+ */
8852
+ 403: {
8853
+ message: string;
8854
+ };
8855
+ /**
8856
+ * 404
8857
+ */
8858
+ 404: {
8859
+ message: string;
8860
+ };
8861
+ /**
8862
+ * 429
8863
+ */
8864
+ 429: {
8865
+ message: string;
8866
+ };
8867
+ /**
8868
+ * 500
8869
+ */
8870
+ 500: {
8871
+ message: string;
8872
+ };
8873
+ };
8874
+ };
8875
+ };
8876
+ '/api/v1/analytics/raw-profile': {
8877
+ get: {
8878
+ res: {
8879
+ /**
8880
+ * 200
8881
+ */
8882
+ 200: string;
8883
+ /**
8884
+ * 400
8885
+ */
8886
+ 400: {
8887
+ message: string;
8888
+ issues?: Array<{
8889
+ message: string;
8890
+ path?: Array<(string | number)> | null;
8891
+ }> | null;
8892
+ };
8893
+ /**
8894
+ * 401
8895
+ */
8896
+ 401: {
8897
+ message: string;
8898
+ };
8899
+ /**
8900
+ * 403
8901
+ */
8902
+ 403: {
8903
+ message: string;
8904
+ };
8905
+ /**
8906
+ * 404
8907
+ */
8908
+ 404: {
8909
+ message: string;
8910
+ };
8911
+ /**
8912
+ * 429
8913
+ */
8914
+ 429: {
8915
+ message: string;
8916
+ };
8917
+ /**
8918
+ * 500
8919
+ */
8920
+ 500: {
8921
+ message: string;
9515
8922
  };
8923
+ };
8924
+ };
8925
+ };
8926
+ '/api/v1/analytics/raw-post': {
8927
+ get: {
8928
+ res: {
8929
+ /**
8930
+ * 200
8931
+ */
8932
+ 200: string;
9516
8933
  /**
9517
8934
  * 400
9518
8935
  */
@@ -10559,58 +9976,87 @@ declare class AnalyticsService {
10559
9976
  readonly httpRequest: BaseHttpRequest;
10560
9977
  constructor(httpRequest: BaseHttpRequest);
10561
9978
  /**
10562
- * Get Profile Analytics
9979
+ * Get Social Account Analytics
10563
9980
  * @param data The data for the request.
10564
9981
  * @param data.teamId
10565
9982
  * @param data.platformType
10566
9983
  * @returns unknown 200
10567
9984
  * @throws ApiError
10568
9985
  */
10569
- analyticsGetProfileAnalytics(data: AnalyticsGetProfileAnalyticsData): CancelablePromise<AnalyticsGetProfileAnalyticsResponse>;
9986
+ analyticsGetSocialAccountAnalytics(data: AnalyticsGetSocialAccountAnalyticsData): CancelablePromise<AnalyticsGetSocialAccountAnalyticsResponse>;
10570
9987
  /**
10571
- * Get Profile Post List - profile posts are basically external posts
9988
+ * Get Post Analytics
9989
+ * @param data The data for the request.
9990
+ * @param data.postId
9991
+ * @param data.platformType
9992
+ * @returns unknown 200
9993
+ * @throws ApiError
9994
+ */
9995
+ analyticsGetPostAnalytics(data: AnalyticsGetPostAnalyticsData): CancelablePromise<AnalyticsGetPostAnalyticsResponse>;
9996
+ /**
9997
+ * Get Social Account Analytics Raw
10572
9998
  * @param data The data for the request.
10573
9999
  * @param data.teamId
10574
10000
  * @param data.platformType
10575
- * @param data.ids
10576
10001
  * @returns unknown 200
10577
10002
  * @throws ApiError
10578
10003
  */
10579
- analyticsGetProfilePosts(data: AnalyticsGetProfilePostsData): CancelablePromise<AnalyticsGetProfilePostsResponse>;
10004
+ analyticsGetSocialAccountAnalyticsRaw(data: AnalyticsGetSocialAccountAnalyticsRawData): CancelablePromise<AnalyticsGetSocialAccountAnalyticsRawResponse>;
10005
+ /**
10006
+ * Get Post Analytics Raw
10007
+ * @param data The data for the request.
10008
+ * @param data.postId
10009
+ * @param data.platformType
10010
+ * @returns unknown 200
10011
+ * @throws ApiError
10012
+ */
10013
+ analyticsGetPostAnalyticsRaw(data: AnalyticsGetPostAnalyticsRawData): CancelablePromise<AnalyticsGetPostAnalyticsRawResponse>;
10580
10014
  /**
10015
+ * @deprecated
10016
+ * Get Profile Analytics
10017
+ * @returns string 200
10018
+ * @throws ApiError
10019
+ */
10020
+ analyticsGetProfileAnalytics(): CancelablePromise<AnalyticsGetProfileAnalyticsResponse>;
10021
+ /**
10022
+ * @deprecated
10023
+ * Get Profile Post List - profile posts are basically external posts
10024
+ * @returns string 200
10025
+ * @throws ApiError
10026
+ */
10027
+ analyticsGetProfilePosts(): CancelablePromise<AnalyticsGetProfilePostsResponse>;
10028
+ /**
10029
+ * @deprecated
10581
10030
  * Get Profile Post By Profile Post ID - profile posts are basically external posts
10582
10031
  * @param data The data for the request.
10583
10032
  * @param data.id
10584
- * @returns unknown 200
10033
+ * @returns string 200
10585
10034
  * @throws ApiError
10586
10035
  */
10587
10036
  analyticsGetProfilePost(data: AnalyticsGetProfilePostData): CancelablePromise<AnalyticsGetProfilePostResponse>;
10588
10037
  /**
10038
+ * @deprecated
10589
10039
  * Get Profile Post By Post ID
10590
10040
  * @param data The data for the request.
10591
10041
  * @param data.id
10592
- * @returns unknown 200
10042
+ * @returns string 200
10593
10043
  * @throws ApiError
10594
10044
  */
10595
10045
  analyticsGetProfilePostByPostId(data: AnalyticsGetProfilePostByPostIdData): CancelablePromise<AnalyticsGetProfilePostByPostIdResponse>;
10596
10046
  /**
10047
+ * @deprecated
10597
10048
  * Get Raw Profile Analytics In Last 24 Hours
10598
- * @param data The data for the request.
10599
- * @param data.socialAccountId
10600
- * @param data.teamId
10601
- * @returns unknown 200
10049
+ * @returns string 200
10602
10050
  * @throws ApiError
10603
10051
  */
10604
- analyticsGetRawProfileAnalytics(data: AnalyticsGetRawProfileAnalyticsData): CancelablePromise<AnalyticsGetRawProfileAnalyticsResponse>;
10052
+ analyticsGetRawSocialAccountAnalytics(): CancelablePromise<AnalyticsGetRawSocialAccountAnalyticsResponse>;
10605
10053
  /**
10054
+ * @deprecated
10606
10055
  * Get Raw Post Analytics In Last 24 Hours
10607
- * @param data The data for the request.
10608
- * @param data.profilePostId
10609
- * @param data.teamId
10610
- * @returns unknown 200
10056
+ * @returns string 200
10611
10057
  * @throws ApiError
10612
10058
  */
10613
- analyticsGetRawPostsAnalytics(data: AnalyticsGetRawPostsAnalyticsData): CancelablePromise<AnalyticsGetRawPostsAnalyticsResponse>;
10059
+ analyticsGetRawPostsAnalytics(): CancelablePromise<AnalyticsGetRawPostsAnalyticsResponse>;
10614
10060
  }
10615
10061
  declare class CommentService {
10616
10062
  readonly httpRequest: BaseHttpRequest;
@@ -10738,4 +10184,4 @@ declare class Bundlesocial extends Client {
10738
10184
  constructor(apiKey: string, options?: OpenAPIConfig);
10739
10185
  }
10740
10186
 
10741
- export { $OpenApiTs, AnalyticsGetProfileAnalyticsData, AnalyticsGetProfileAnalyticsResponse, AnalyticsGetProfilePostByPostIdData, AnalyticsGetProfilePostByPostIdResponse, AnalyticsGetProfilePostData, AnalyticsGetProfilePostResponse, AnalyticsGetProfilePostsData, AnalyticsGetProfilePostsResponse, AnalyticsGetRawPostsAnalyticsData, AnalyticsGetRawPostsAnalyticsResponse, AnalyticsGetRawProfileAnalyticsData, AnalyticsGetRawProfileAnalyticsResponse, 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 };
10187
+ export { $OpenApiTs, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetProfileAnalyticsResponse, AnalyticsGetProfilePostByPostIdData, AnalyticsGetProfilePostByPostIdResponse, AnalyticsGetProfilePostData, AnalyticsGetProfilePostResponse, AnalyticsGetProfilePostsResponse, AnalyticsGetRawPostsAnalyticsResponse, AnalyticsGetRawSocialAccountAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, 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 };