@getlatedev/node 0.1.0 → 0.1.1
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/README.md +212 -110
- package/dist/index.d.mts +381 -381
- package/dist/index.d.ts +381 -381
- package/dist/index.js +209 -209
- package/dist/index.mjs +209 -209
- package/package.json +9 -4
- package/src/client.ts +211 -230
- package/src/generated/sdk.gen.ts +177 -177
- package/src/generated/types.gen.ts +259 -259
package/dist/index.d.ts
CHANGED
|
@@ -56,186 +56,186 @@ declare class Late {
|
|
|
56
56
|
*/
|
|
57
57
|
baseURL: string;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
60
|
-
*/
|
|
61
|
-
posts: {
|
|
62
|
-
list: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<GetV1PostsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PostsListResponse, GetV1PostsError, ThrowOnError>;
|
|
63
|
-
create: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PostV1PostsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PostCreateResponse, PostV1PostsError, ThrowOnError>;
|
|
64
|
-
get: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1PostsByPostIdData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PostGetResponse, unknown, ThrowOnError>;
|
|
65
|
-
update: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PutV1PostsByPostIdData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
66
|
-
delete: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteV1PostsByPostIdData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PostDeleteResponse, unknown, ThrowOnError>;
|
|
67
|
-
retry: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PostV1PostsByPostIdRetryData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
68
|
-
bulkUpload: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PostV1PostsBulkUploadData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
69
|
-
getLogs: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1PostsByPostIdLogsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1PostsByPostIdLogsResponse, unknown, ThrowOnError>;
|
|
70
|
-
};
|
|
71
|
-
/**
|
|
72
|
-
* Accounts API - Manage connected social media accounts
|
|
73
|
-
*/
|
|
74
|
-
accounts: {
|
|
75
|
-
list: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<GetV1AccountsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1AccountsResponse, GetV1AccountsError, ThrowOnError>;
|
|
76
|
-
update: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PutV1AccountsByAccountIdData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PutV1AccountsByAccountIdResponse, unknown, ThrowOnError>;
|
|
77
|
-
delete: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteV1AccountsByAccountIdData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteV1AccountsByAccountIdResponse, DeleteV1AccountsByAccountIdError, ThrowOnError>;
|
|
78
|
-
getFollowerStats: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<GetV1AccountsFollowerStatsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1AccountsFollowerStatsResponse, GetV1AccountsFollowerStatsError, ThrowOnError>;
|
|
79
|
-
getAllHealth: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<GetV1AccountsHealthData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1AccountsHealthResponse, GetV1AccountsHealthError, ThrowOnError>;
|
|
80
|
-
getHealth: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1AccountsByAccountIdHealthData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1AccountsByAccountIdHealthResponse, GetV1AccountsByAccountIdHealthError, ThrowOnError>;
|
|
81
|
-
updateFacebookPage: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PutV1AccountsByAccountIdFacebookPageData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PutV1AccountsByAccountIdFacebookPageResponse, unknown, ThrowOnError>;
|
|
82
|
-
getLinkedInOrganizations: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1AccountsByAccountIdLinkedinOrganizationsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1AccountsByAccountIdLinkedinOrganizationsResponse, unknown, ThrowOnError>;
|
|
83
|
-
updateLinkedInOrganization: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PutV1AccountsByAccountIdLinkedinOrganizationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PutV1AccountsByAccountIdLinkedinOrganizationResponse, unknown, ThrowOnError>;
|
|
84
|
-
getLinkedInMentions: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1AccountsByAccountIdLinkedinMentionsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1AccountsByAccountIdLinkedinMentionsResponse, GetV1AccountsByAccountIdLinkedinMentionsError, ThrowOnError>;
|
|
85
|
-
getPinterestBoards: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1AccountsByAccountIdPinterestBoardsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1AccountsByAccountIdPinterestBoardsResponse, unknown, ThrowOnError>;
|
|
86
|
-
updatePinterestBoards: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PutV1AccountsByAccountIdPinterestBoardsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PutV1AccountsByAccountIdPinterestBoardsResponse, unknown, ThrowOnError>;
|
|
87
|
-
getRedditSubreddits: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1AccountsByAccountIdRedditSubredditsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1AccountsByAccountIdRedditSubredditsResponse, unknown, ThrowOnError>;
|
|
88
|
-
updateRedditSubreddits: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PutV1AccountsByAccountIdRedditSubredditsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PutV1AccountsByAccountIdRedditSubredditsResponse, unknown, ThrowOnError>;
|
|
89
|
-
getGoogleBusinessReviews: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1AccountsByAccountIdGmbReviewsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1AccountsByAccountIdGmbReviewsResponse, GetV1AccountsByAccountIdGmbReviewsError, ThrowOnError>;
|
|
90
|
-
};
|
|
91
|
-
/**
|
|
92
|
-
* Profiles API - Manage workspace profiles
|
|
59
|
+
* Tools API - Media download and utilities
|
|
93
60
|
*/
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
61
|
+
tools: {
|
|
62
|
+
downloadYouTubeVideo: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DownloadYouTubeVideoData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DownloadYouTubeVideoResponse, unknown, ThrowOnError>;
|
|
63
|
+
getYouTubeTranscript: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetYouTubeTranscriptData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetYouTubeTranscriptResponse, unknown, ThrowOnError>;
|
|
64
|
+
downloadInstagramMedia: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DownloadInstagramMediaData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DownloadInstagramMediaResponse, unknown, ThrowOnError>;
|
|
65
|
+
checkInstagramHashtags: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CheckInstagramHashtagsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CheckInstagramHashtagsResponse, unknown, ThrowOnError>;
|
|
66
|
+
downloadTikTokVideo: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DownloadTikTokVideoData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DownloadTikTokVideoResponse, unknown, ThrowOnError>;
|
|
67
|
+
downloadTwitterMedia: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DownloadTwitterMediaData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DownloadTwitterMediaResponse, unknown, ThrowOnError>;
|
|
68
|
+
downloadFacebookVideo: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DownloadFacebookVideoData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DownloadFacebookVideoResponse, unknown, ThrowOnError>;
|
|
69
|
+
downloadLinkedInVideo: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DownloadLinkedInVideoData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DownloadLinkedInVideoResponse, unknown, ThrowOnError>;
|
|
70
|
+
downloadBlueskyMedia: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DownloadBlueskyMediaData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DownloadBlueskyMediaResponse, unknown, ThrowOnError>;
|
|
100
71
|
};
|
|
101
72
|
/**
|
|
102
73
|
* Analytics API - Get performance metrics
|
|
103
74
|
*/
|
|
104
75
|
analytics: {
|
|
105
|
-
|
|
106
|
-
getYouTubeDailyViews: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<
|
|
107
|
-
|
|
108
|
-
getLinkedInPostAnalytics: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<
|
|
76
|
+
getAnalytics: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<GetAnalyticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetAnalyticsResponse, GetAnalyticsError, ThrowOnError>;
|
|
77
|
+
getYouTubeDailyViews: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetYouTubeDailyViewsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<YouTubeDailyViewsResponse, GetYouTubeDailyViewsError, ThrowOnError>;
|
|
78
|
+
getLinkedInAggregateAnalytics: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetLinkedInAggregateAnalyticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetLinkedInAggregateAnalyticsResponse, unknown, ThrowOnError>;
|
|
79
|
+
getLinkedInPostAnalytics: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetLinkedInPostAnalyticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetLinkedInPostAnalyticsResponse, unknown, ThrowOnError>;
|
|
109
80
|
};
|
|
110
81
|
/**
|
|
111
82
|
* Account Groups API - Organize accounts into groups
|
|
112
83
|
*/
|
|
113
84
|
accountGroups: {
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
85
|
+
listAccountGroups: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListAccountGroupsResponse, ListAccountGroupsError, ThrowOnError>;
|
|
86
|
+
createAccountGroup: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateAccountGroupData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateAccountGroupResponse, unknown, ThrowOnError>;
|
|
87
|
+
updateAccountGroup: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateAccountGroupData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateAccountGroupResponse, unknown, ThrowOnError>;
|
|
88
|
+
deleteAccountGroup: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteAccountGroupData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteAccountGroupResponse, DeleteAccountGroupError, ThrowOnError>;
|
|
118
89
|
};
|
|
119
90
|
/**
|
|
120
|
-
*
|
|
91
|
+
* Media API - Upload and manage media files
|
|
121
92
|
*/
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
createSlot: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PostV1QueueSlotsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PostV1QueueSlotsResponse, unknown, ThrowOnError>;
|
|
125
|
-
updateSlot: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PutV1QueueSlotsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PutV1QueueSlotsResponse, unknown, ThrowOnError>;
|
|
126
|
-
deleteSlot: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteV1QueueSlotsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteV1QueueSlotsResponse, unknown, ThrowOnError>;
|
|
127
|
-
preview: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1QueuePreviewData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1QueuePreviewResponse, unknown, ThrowOnError>;
|
|
128
|
-
getNextSlot: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1QueueNextSlotData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1QueueNextSlotResponse, unknown, ThrowOnError>;
|
|
93
|
+
media: {
|
|
94
|
+
getMediaPresignedUrl: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetMediaPresignedUrlData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetMediaPresignedUrlResponse, GetMediaPresignedUrlError, ThrowOnError>;
|
|
129
95
|
};
|
|
130
96
|
/**
|
|
131
|
-
*
|
|
97
|
+
* Reddit API - Search and feed
|
|
132
98
|
*/
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
updateSettings: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PutV1WebhooksSettingsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PutV1WebhooksSettingsResponse, unknown, ThrowOnError>;
|
|
137
|
-
deleteSettings: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteV1WebhooksSettingsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteV1WebhooksSettingsResponse, unknown, ThrowOnError>;
|
|
138
|
-
test: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PostV1WebhooksTestData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PostV1WebhooksTestResponse, unknown, ThrowOnError>;
|
|
139
|
-
getLogs: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<GetV1WebhooksLogsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1WebhooksLogsResponse, GetV1WebhooksLogsError, ThrowOnError>;
|
|
99
|
+
reddit: {
|
|
100
|
+
searchReddit: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SearchRedditData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SearchRedditResponse, unknown, ThrowOnError>;
|
|
101
|
+
getRedditFeed: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetRedditFeedData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetRedditFeedResponse, unknown, ThrowOnError>;
|
|
140
102
|
};
|
|
141
103
|
/**
|
|
142
|
-
*
|
|
104
|
+
* Usage API - Get usage statistics
|
|
143
105
|
*/
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
create: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PostV1ApiKeysData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PostV1ApiKeysResponse, unknown, ThrowOnError>;
|
|
147
|
-
delete: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteV1ApiKeysByKeyIdData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteV1ApiKeysByKeyIdResponse, DeleteV1ApiKeysByKeyIdError, ThrowOnError>;
|
|
106
|
+
usage: {
|
|
107
|
+
getUsageStats: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UsageStats, GetUsageStatsError, ThrowOnError>;
|
|
148
108
|
};
|
|
149
109
|
/**
|
|
150
|
-
*
|
|
110
|
+
* Posts API - Create, schedule, and manage social media posts
|
|
151
111
|
*/
|
|
152
|
-
|
|
153
|
-
|
|
112
|
+
posts: {
|
|
113
|
+
listPosts: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<ListPostsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PostsListResponse, ListPostsError, ThrowOnError>;
|
|
114
|
+
createPost: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreatePostData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PostCreateResponse, CreatePostError, ThrowOnError>;
|
|
115
|
+
getPost: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetPostData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PostGetResponse, unknown, ThrowOnError>;
|
|
116
|
+
updatePost: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdatePostData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
117
|
+
deletePost: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeletePostData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PostDeleteResponse, unknown, ThrowOnError>;
|
|
118
|
+
bulkUploadPosts: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<BulkUploadPostsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
119
|
+
retryPost: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<RetryPostData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
154
120
|
};
|
|
155
121
|
/**
|
|
156
|
-
*
|
|
122
|
+
* Users API - User management
|
|
157
123
|
*/
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
downloadInstagram: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1ToolsInstagramDownloadData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1ToolsInstagramDownloadResponse, unknown, ThrowOnError>;
|
|
162
|
-
checkInstagramHashtags: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PostV1ToolsInstagramHashtagCheckerData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PostV1ToolsInstagramHashtagCheckerResponse, unknown, ThrowOnError>;
|
|
163
|
-
downloadTikTok: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1ToolsTiktokDownloadData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1ToolsTiktokDownloadResponse, unknown, ThrowOnError>;
|
|
164
|
-
downloadTwitter: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1ToolsTwitterDownloadData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1ToolsTwitterDownloadResponse, unknown, ThrowOnError>;
|
|
165
|
-
downloadFacebook: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1ToolsFacebookDownloadData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1ToolsFacebookDownloadResponse, unknown, ThrowOnError>;
|
|
166
|
-
downloadLinkedIn: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1ToolsLinkedinDownloadData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1ToolsLinkedinDownloadResponse, unknown, ThrowOnError>;
|
|
167
|
-
downloadBluesky: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetV1ToolsBlueskyDownloadData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetV1ToolsBlueskyDownloadResponse, unknown, ThrowOnError>;
|
|
124
|
+
users: {
|
|
125
|
+
listUsers: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListUsersResponse, ListUsersError, ThrowOnError>;
|
|
126
|
+
getUser: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetUserData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetUserResponse, unknown, ThrowOnError>;
|
|
168
127
|
};
|
|
169
128
|
/**
|
|
170
|
-
*
|
|
129
|
+
* Profiles API - Manage workspace profiles
|
|
171
130
|
*/
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
131
|
+
profiles: {
|
|
132
|
+
listProfiles: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<ListProfilesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ProfilesListResponse, ListProfilesError, ThrowOnError>;
|
|
133
|
+
createProfile: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateProfileData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ProfileCreateResponse, unknown, ThrowOnError>;
|
|
134
|
+
getProfile: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetProfileData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetProfileResponse, GetProfileError, ThrowOnError>;
|
|
135
|
+
updateProfile: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateProfileData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateProfileResponse, UpdateProfileError, ThrowOnError>;
|
|
136
|
+
deleteProfile: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteProfileData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteProfileResponse, unknown, ThrowOnError>;
|
|
175
137
|
};
|
|
176
138
|
/**
|
|
177
|
-
*
|
|
139
|
+
* Accounts API - Manage connected social media accounts
|
|
178
140
|
*/
|
|
179
|
-
|
|
180
|
-
|
|
141
|
+
accounts: {
|
|
142
|
+
listAccounts: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<ListAccountsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListAccountsResponse, ListAccountsError, ThrowOnError>;
|
|
143
|
+
getFollowerStats: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<GetFollowerStatsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetFollowerStatsResponse, GetFollowerStatsError, ThrowOnError>;
|
|
144
|
+
updateAccount: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateAccountData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateAccountResponse, unknown, ThrowOnError>;
|
|
145
|
+
deleteAccount: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteAccountData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteAccountResponse, DeleteAccountError, ThrowOnError>;
|
|
146
|
+
getAllAccountsHealth: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<GetAllAccountsHealthData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetAllAccountsHealthResponse, GetAllAccountsHealthError, ThrowOnError>;
|
|
147
|
+
getAccountHealth: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetAccountHealthData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetAccountHealthResponse, GetAccountHealthError, ThrowOnError>;
|
|
148
|
+
getGoogleBusinessReviews: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetGoogleBusinessReviewsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetGoogleBusinessReviewsResponse, GetGoogleBusinessReviewsError, ThrowOnError>;
|
|
149
|
+
getLinkedInMentions: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetLinkedInMentionsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetLinkedInMentionsResponse, GetLinkedInMentionsError, ThrowOnError>;
|
|
181
150
|
};
|
|
182
151
|
/**
|
|
183
|
-
*
|
|
152
|
+
* API Keys API - Manage API keys
|
|
184
153
|
*/
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
154
|
+
apiKeys: {
|
|
155
|
+
listApiKeys: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListApiKeysResponse, ListApiKeysError, ThrowOnError>;
|
|
156
|
+
createApiKey: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateApiKeyData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateApiKeyResponse, unknown, ThrowOnError>;
|
|
157
|
+
deleteApiKey: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteApiKeyData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteApiKeyResponse, DeleteApiKeyError, ThrowOnError>;
|
|
158
|
+
};
|
|
159
|
+
/**
|
|
160
|
+
* Invites API - Team invitations
|
|
161
|
+
*/
|
|
162
|
+
invites: {
|
|
163
|
+
createInviteToken: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateInviteTokenData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateInviteTokenResponse, unknown, ThrowOnError>;
|
|
164
|
+
listPlatformInvites: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<ListPlatformInvitesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListPlatformInvitesResponse, ListPlatformInvitesError, ThrowOnError>;
|
|
165
|
+
createPlatformInvite: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreatePlatformInviteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreatePlatformInviteResponse, unknown, ThrowOnError>;
|
|
166
|
+
deletePlatformInvite: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeletePlatformInviteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeletePlatformInviteResponse, unknown, ThrowOnError>;
|
|
188
167
|
};
|
|
189
168
|
/**
|
|
190
169
|
* Connect API - OAuth connection flows
|
|
191
170
|
*/
|
|
192
171
|
connect: {
|
|
193
|
-
|
|
194
|
-
|
|
172
|
+
getConnectUrl: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetConnectUrlData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetConnectUrlResponse, unknown, ThrowOnError>;
|
|
173
|
+
handleOAuthCallback: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<HandleOAuthCallbackData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
174
|
+
updateFacebookPage: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateFacebookPageData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateFacebookPageResponse, unknown, ThrowOnError>;
|
|
175
|
+
getLinkedInOrganizations: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetLinkedInOrganizationsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetLinkedInOrganizationsResponse, unknown, ThrowOnError>;
|
|
176
|
+
updateLinkedInOrganization: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateLinkedInOrganizationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateLinkedInOrganizationResponse, unknown, ThrowOnError>;
|
|
177
|
+
getPinterestBoards: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetPinterestBoardsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetPinterestBoardsResponse, unknown, ThrowOnError>;
|
|
178
|
+
updatePinterestBoards: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdatePinterestBoardsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdatePinterestBoardsResponse, unknown, ThrowOnError>;
|
|
179
|
+
getRedditSubreddits: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetRedditSubredditsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetRedditSubredditsResponse, unknown, ThrowOnError>;
|
|
180
|
+
updateRedditSubreddits: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateRedditSubredditsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateRedditSubredditsResponse, unknown, ThrowOnError>;
|
|
195
181
|
facebook: {
|
|
196
|
-
|
|
197
|
-
|
|
182
|
+
listFacebookPages: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListFacebookPagesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListFacebookPagesResponse, unknown, ThrowOnError>;
|
|
183
|
+
selectFacebookPage: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SelectFacebookPageData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SelectFacebookPageResponse, unknown, ThrowOnError>;
|
|
198
184
|
};
|
|
199
185
|
googleBusiness: {
|
|
200
|
-
|
|
201
|
-
|
|
186
|
+
listGoogleBusinessLocations: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListGoogleBusinessLocationsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListGoogleBusinessLocationsResponse, unknown, ThrowOnError>;
|
|
187
|
+
selectGoogleBusinessLocation: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SelectGoogleBusinessLocationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SelectGoogleBusinessLocationResponse, unknown, ThrowOnError>;
|
|
202
188
|
};
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
189
|
+
linkedin: {
|
|
190
|
+
listLinkedInOrganizations: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListLinkedInOrganizationsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListLinkedInOrganizationsResponse, unknown, ThrowOnError>;
|
|
191
|
+
selectLinkedInOrganization: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SelectLinkedInOrganizationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SelectLinkedInOrganizationResponse, unknown, ThrowOnError>;
|
|
206
192
|
};
|
|
207
193
|
pinterest: {
|
|
208
|
-
|
|
209
|
-
|
|
194
|
+
listPinterestBoardsForSelection: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListPinterestBoardsForSelectionData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListPinterestBoardsForSelectionResponse, unknown, ThrowOnError>;
|
|
195
|
+
selectPinterestBoard: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SelectPinterestBoardData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SelectPinterestBoardResponse, unknown, ThrowOnError>;
|
|
210
196
|
};
|
|
211
197
|
snapchat: {
|
|
212
|
-
|
|
213
|
-
|
|
198
|
+
listSnapchatProfiles: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListSnapchatProfilesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListSnapchatProfilesResponse, unknown, ThrowOnError>;
|
|
199
|
+
selectSnapchatProfile: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SelectSnapchatProfileData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SelectSnapchatProfileResponse, unknown, ThrowOnError>;
|
|
214
200
|
};
|
|
215
201
|
bluesky: {
|
|
216
|
-
|
|
202
|
+
connectBlueskyCredentials: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ConnectBlueskyCredentialsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ConnectBlueskyCredentialsResponse, unknown, ThrowOnError>;
|
|
217
203
|
};
|
|
218
204
|
telegram: {
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
205
|
+
getTelegramConnectStatus: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetTelegramConnectStatusData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetTelegramConnectStatusResponse, unknown, ThrowOnError>;
|
|
206
|
+
initiateTelegramConnect: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<InitiateTelegramConnectData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<InitiateTelegramConnectResponse, unknown, ThrowOnError>;
|
|
207
|
+
completeTelegramConnect: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CompleteTelegramConnectData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CompleteTelegramConnectResponse, unknown, ThrowOnError>;
|
|
222
208
|
};
|
|
223
209
|
};
|
|
224
210
|
/**
|
|
225
|
-
*
|
|
211
|
+
* Queue API - Manage posting queue
|
|
226
212
|
*/
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
213
|
+
queue: {
|
|
214
|
+
listQueueSlots: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListQueueSlotsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListQueueSlotsResponse, unknown, ThrowOnError>;
|
|
215
|
+
createQueueSlot: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateQueueSlotData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateQueueSlotResponse, unknown, ThrowOnError>;
|
|
216
|
+
updateQueueSlot: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateQueueSlotData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateQueueSlotResponse, unknown, ThrowOnError>;
|
|
217
|
+
deleteQueueSlot: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteQueueSlotData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteQueueSlotResponse, unknown, ThrowOnError>;
|
|
218
|
+
previewQueue: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PreviewQueueData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PreviewQueueResponse, unknown, ThrowOnError>;
|
|
219
|
+
getNextQueueSlot: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetNextQueueSlotData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetNextQueueSlotResponse, unknown, ThrowOnError>;
|
|
230
220
|
};
|
|
231
221
|
/**
|
|
232
|
-
*
|
|
222
|
+
* Webhooks API - Configure event webhooks
|
|
233
223
|
*/
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
224
|
+
webhooks: {
|
|
225
|
+
getWebhookSettings: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetWebhookSettingsResponse, GetWebhookSettingsError, ThrowOnError>;
|
|
226
|
+
createWebhookSettings: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateWebhookSettingsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateWebhookSettingsResponse, unknown, ThrowOnError>;
|
|
227
|
+
updateWebhookSettings: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateWebhookSettingsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateWebhookSettingsResponse, unknown, ThrowOnError>;
|
|
228
|
+
deleteWebhookSettings: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteWebhookSettingsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteWebhookSettingsResponse, unknown, ThrowOnError>;
|
|
229
|
+
testWebhook: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<TestWebhookData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TestWebhookResponse, unknown, ThrowOnError>;
|
|
230
|
+
getWebhookLogs: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<GetWebhookLogsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetWebhookLogsResponse, GetWebhookLogsError, ThrowOnError>;
|
|
231
|
+
};
|
|
232
|
+
/**
|
|
233
|
+
* Logs API - Publishing logs
|
|
234
|
+
*/
|
|
235
|
+
logs: {
|
|
236
|
+
listLogs: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<ListLogsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListLogsResponse, ListLogsError, ThrowOnError>;
|
|
237
|
+
getLog: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetLogData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetLogResponse, unknown, ThrowOnError>;
|
|
238
|
+
getPostLogs: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetPostLogsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetPostLogsResponse, unknown, ThrowOnError>;
|
|
239
239
|
};
|
|
240
240
|
/**
|
|
241
241
|
* Create a new Late API client.
|
|
@@ -1695,7 +1695,7 @@ type YouTubeScopeMissingResponse = {
|
|
|
1695
1695
|
reauthorizeUrl?: string;
|
|
1696
1696
|
};
|
|
1697
1697
|
};
|
|
1698
|
-
type
|
|
1698
|
+
type DownloadYouTubeVideoData = {
|
|
1699
1699
|
query: {
|
|
1700
1700
|
/**
|
|
1701
1701
|
* Action to perform: 'download' returns download URL, 'formats' lists available formats
|
|
@@ -1719,7 +1719,7 @@ type GetV1ToolsYoutubeDownloadData = {
|
|
|
1719
1719
|
url: string;
|
|
1720
1720
|
};
|
|
1721
1721
|
};
|
|
1722
|
-
type
|
|
1722
|
+
type DownloadYouTubeVideoResponse = ({
|
|
1723
1723
|
success?: boolean;
|
|
1724
1724
|
title?: string;
|
|
1725
1725
|
downloadUrl?: string;
|
|
@@ -1732,10 +1732,10 @@ type GetV1ToolsYoutubeDownloadResponse = ({
|
|
|
1732
1732
|
width?: number;
|
|
1733
1733
|
}>;
|
|
1734
1734
|
});
|
|
1735
|
-
type
|
|
1735
|
+
type DownloadYouTubeVideoError = ({
|
|
1736
1736
|
error?: string;
|
|
1737
1737
|
} | unknown);
|
|
1738
|
-
type
|
|
1738
|
+
type GetYouTubeTranscriptData = {
|
|
1739
1739
|
query: {
|
|
1740
1740
|
/**
|
|
1741
1741
|
* Language code for transcript
|
|
@@ -1747,7 +1747,7 @@ type GetV1ToolsYoutubeTranscriptData = {
|
|
|
1747
1747
|
url: string;
|
|
1748
1748
|
};
|
|
1749
1749
|
};
|
|
1750
|
-
type
|
|
1750
|
+
type GetYouTubeTranscriptResponse = ({
|
|
1751
1751
|
success?: boolean;
|
|
1752
1752
|
videoId?: string;
|
|
1753
1753
|
language?: string;
|
|
@@ -1758,8 +1758,8 @@ type GetV1ToolsYoutubeTranscriptResponse = ({
|
|
|
1758
1758
|
duration?: number;
|
|
1759
1759
|
}>;
|
|
1760
1760
|
});
|
|
1761
|
-
type
|
|
1762
|
-
type
|
|
1761
|
+
type GetYouTubeTranscriptError = (unknown);
|
|
1762
|
+
type DownloadInstagramMediaData = {
|
|
1763
1763
|
query: {
|
|
1764
1764
|
/**
|
|
1765
1765
|
* Instagram reel or post URL
|
|
@@ -1767,18 +1767,18 @@ type GetV1ToolsInstagramDownloadData = {
|
|
|
1767
1767
|
url: string;
|
|
1768
1768
|
};
|
|
1769
1769
|
};
|
|
1770
|
-
type
|
|
1770
|
+
type DownloadInstagramMediaResponse = ({
|
|
1771
1771
|
success?: boolean;
|
|
1772
1772
|
title?: string;
|
|
1773
1773
|
downloadUrl?: string;
|
|
1774
1774
|
});
|
|
1775
|
-
type
|
|
1776
|
-
type
|
|
1775
|
+
type DownloadInstagramMediaError = unknown;
|
|
1776
|
+
type CheckInstagramHashtagsData = {
|
|
1777
1777
|
body: {
|
|
1778
1778
|
hashtags: Array<(string)>;
|
|
1779
1779
|
};
|
|
1780
1780
|
};
|
|
1781
|
-
type
|
|
1781
|
+
type CheckInstagramHashtagsResponse = ({
|
|
1782
1782
|
success?: boolean;
|
|
1783
1783
|
results?: Array<{
|
|
1784
1784
|
hashtag?: string;
|
|
@@ -1792,8 +1792,8 @@ type PostV1ToolsInstagramHashtagCheckerResponse = ({
|
|
|
1792
1792
|
safe?: number;
|
|
1793
1793
|
};
|
|
1794
1794
|
});
|
|
1795
|
-
type
|
|
1796
|
-
type
|
|
1795
|
+
type CheckInstagramHashtagsError = unknown;
|
|
1796
|
+
type DownloadTikTokVideoData = {
|
|
1797
1797
|
query: {
|
|
1798
1798
|
/**
|
|
1799
1799
|
* 'formats' to list available formats
|
|
@@ -1809,7 +1809,7 @@ type GetV1ToolsTiktokDownloadData = {
|
|
|
1809
1809
|
url: string;
|
|
1810
1810
|
};
|
|
1811
1811
|
};
|
|
1812
|
-
type
|
|
1812
|
+
type DownloadTikTokVideoResponse = ({
|
|
1813
1813
|
success?: boolean;
|
|
1814
1814
|
title?: string;
|
|
1815
1815
|
downloadUrl?: string;
|
|
@@ -1819,8 +1819,8 @@ type GetV1ToolsTiktokDownloadResponse = ({
|
|
|
1819
1819
|
ext?: string;
|
|
1820
1820
|
}>;
|
|
1821
1821
|
});
|
|
1822
|
-
type
|
|
1823
|
-
type
|
|
1822
|
+
type DownloadTikTokVideoError = unknown;
|
|
1823
|
+
type DownloadTwitterMediaData = {
|
|
1824
1824
|
query: {
|
|
1825
1825
|
action?: 'download' | 'formats';
|
|
1826
1826
|
formatId?: string;
|
|
@@ -1830,13 +1830,13 @@ type GetV1ToolsTwitterDownloadData = {
|
|
|
1830
1830
|
url: string;
|
|
1831
1831
|
};
|
|
1832
1832
|
};
|
|
1833
|
-
type
|
|
1833
|
+
type DownloadTwitterMediaResponse = ({
|
|
1834
1834
|
success?: boolean;
|
|
1835
1835
|
title?: string;
|
|
1836
1836
|
downloadUrl?: string;
|
|
1837
1837
|
});
|
|
1838
|
-
type
|
|
1839
|
-
type
|
|
1838
|
+
type DownloadTwitterMediaError = unknown;
|
|
1839
|
+
type DownloadFacebookVideoData = {
|
|
1840
1840
|
query: {
|
|
1841
1841
|
/**
|
|
1842
1842
|
* Facebook video or reel URL
|
|
@@ -1844,14 +1844,14 @@ type GetV1ToolsFacebookDownloadData = {
|
|
|
1844
1844
|
url: string;
|
|
1845
1845
|
};
|
|
1846
1846
|
};
|
|
1847
|
-
type
|
|
1847
|
+
type DownloadFacebookVideoResponse = ({
|
|
1848
1848
|
success?: boolean;
|
|
1849
1849
|
title?: string;
|
|
1850
1850
|
downloadUrl?: string;
|
|
1851
1851
|
thumbnail?: string;
|
|
1852
1852
|
});
|
|
1853
|
-
type
|
|
1854
|
-
type
|
|
1853
|
+
type DownloadFacebookVideoError = unknown;
|
|
1854
|
+
type DownloadLinkedInVideoData = {
|
|
1855
1855
|
query: {
|
|
1856
1856
|
/**
|
|
1857
1857
|
* LinkedIn post URL
|
|
@@ -1859,13 +1859,13 @@ type GetV1ToolsLinkedinDownloadData = {
|
|
|
1859
1859
|
url: string;
|
|
1860
1860
|
};
|
|
1861
1861
|
};
|
|
1862
|
-
type
|
|
1862
|
+
type DownloadLinkedInVideoResponse = ({
|
|
1863
1863
|
success?: boolean;
|
|
1864
1864
|
title?: string;
|
|
1865
1865
|
downloadUrl?: string;
|
|
1866
1866
|
});
|
|
1867
|
-
type
|
|
1868
|
-
type
|
|
1867
|
+
type DownloadLinkedInVideoError = unknown;
|
|
1868
|
+
type DownloadBlueskyMediaData = {
|
|
1869
1869
|
query: {
|
|
1870
1870
|
/**
|
|
1871
1871
|
* Bluesky post URL
|
|
@@ -1873,15 +1873,15 @@ type GetV1ToolsBlueskyDownloadData = {
|
|
|
1873
1873
|
url: string;
|
|
1874
1874
|
};
|
|
1875
1875
|
};
|
|
1876
|
-
type
|
|
1876
|
+
type DownloadBlueskyMediaResponse = ({
|
|
1877
1877
|
success?: boolean;
|
|
1878
1878
|
title?: string;
|
|
1879
1879
|
text?: string;
|
|
1880
1880
|
downloadUrl?: string;
|
|
1881
1881
|
thumbnail?: string;
|
|
1882
1882
|
});
|
|
1883
|
-
type
|
|
1884
|
-
type
|
|
1883
|
+
type DownloadBlueskyMediaError = unknown;
|
|
1884
|
+
type GetAnalyticsData = {
|
|
1885
1885
|
query?: {
|
|
1886
1886
|
/**
|
|
1887
1887
|
* Inclusive lower bound
|
|
@@ -1924,14 +1924,14 @@ type GetV1AnalyticsData = {
|
|
|
1924
1924
|
toDate?: string;
|
|
1925
1925
|
};
|
|
1926
1926
|
};
|
|
1927
|
-
type
|
|
1928
|
-
type
|
|
1927
|
+
type GetAnalyticsResponse = ((AnalyticsSinglePostResponse | AnalyticsListResponse));
|
|
1928
|
+
type GetAnalyticsError = ({
|
|
1929
1929
|
error?: string;
|
|
1930
1930
|
} | {
|
|
1931
1931
|
error?: string;
|
|
1932
1932
|
code?: string;
|
|
1933
1933
|
} | ErrorResponse);
|
|
1934
|
-
type
|
|
1934
|
+
type GetYouTubeDailyViewsData = {
|
|
1935
1935
|
query: {
|
|
1936
1936
|
/**
|
|
1937
1937
|
* The Late account ID for the YouTube account
|
|
@@ -1951,8 +1951,8 @@ type GetV1AnalyticsYoutubeDailyViewsData = {
|
|
|
1951
1951
|
videoId: string;
|
|
1952
1952
|
};
|
|
1953
1953
|
};
|
|
1954
|
-
type
|
|
1955
|
-
type
|
|
1954
|
+
type GetYouTubeDailyViewsResponse = (YouTubeDailyViewsResponse);
|
|
1955
|
+
type GetYouTubeDailyViewsError = ({
|
|
1956
1956
|
error?: string;
|
|
1957
1957
|
} | {
|
|
1958
1958
|
error?: string;
|
|
@@ -1961,23 +1961,23 @@ type GetV1AnalyticsYoutubeDailyViewsError = ({
|
|
|
1961
1961
|
success?: boolean;
|
|
1962
1962
|
error?: string;
|
|
1963
1963
|
});
|
|
1964
|
-
type
|
|
1964
|
+
type ListAccountGroupsResponse = ({
|
|
1965
1965
|
groups?: Array<{
|
|
1966
1966
|
_id?: string;
|
|
1967
1967
|
name?: string;
|
|
1968
1968
|
accountIds?: Array<(string)>;
|
|
1969
1969
|
}>;
|
|
1970
1970
|
});
|
|
1971
|
-
type
|
|
1971
|
+
type ListAccountGroupsError = ({
|
|
1972
1972
|
error?: string;
|
|
1973
1973
|
});
|
|
1974
|
-
type
|
|
1974
|
+
type CreateAccountGroupData = {
|
|
1975
1975
|
body: {
|
|
1976
1976
|
name: string;
|
|
1977
1977
|
accountIds: Array<(string)>;
|
|
1978
1978
|
};
|
|
1979
1979
|
};
|
|
1980
|
-
type
|
|
1980
|
+
type CreateAccountGroupResponse = ({
|
|
1981
1981
|
message?: string;
|
|
1982
1982
|
group?: {
|
|
1983
1983
|
_id?: string;
|
|
@@ -1985,10 +1985,10 @@ type PostV1AccountGroupsResponse = ({
|
|
|
1985
1985
|
accountIds?: Array<(string)>;
|
|
1986
1986
|
};
|
|
1987
1987
|
});
|
|
1988
|
-
type
|
|
1988
|
+
type CreateAccountGroupError = (unknown | {
|
|
1989
1989
|
error?: string;
|
|
1990
1990
|
});
|
|
1991
|
-
type
|
|
1991
|
+
type UpdateAccountGroupData = {
|
|
1992
1992
|
body: {
|
|
1993
1993
|
name?: string;
|
|
1994
1994
|
accountIds?: Array<(string)>;
|
|
@@ -1997,27 +1997,27 @@ type PutV1AccountGroupsByGroupIdData = {
|
|
|
1997
1997
|
groupId: string;
|
|
1998
1998
|
};
|
|
1999
1999
|
};
|
|
2000
|
-
type
|
|
2000
|
+
type UpdateAccountGroupResponse = ({
|
|
2001
2001
|
message?: string;
|
|
2002
2002
|
group?: {
|
|
2003
2003
|
[key: string]: unknown;
|
|
2004
2004
|
};
|
|
2005
2005
|
});
|
|
2006
|
-
type
|
|
2006
|
+
type UpdateAccountGroupError = ({
|
|
2007
2007
|
error?: string;
|
|
2008
2008
|
} | unknown);
|
|
2009
|
-
type
|
|
2009
|
+
type DeleteAccountGroupData = {
|
|
2010
2010
|
path: {
|
|
2011
2011
|
groupId: string;
|
|
2012
2012
|
};
|
|
2013
2013
|
};
|
|
2014
|
-
type
|
|
2014
|
+
type DeleteAccountGroupResponse = ({
|
|
2015
2015
|
message?: string;
|
|
2016
2016
|
});
|
|
2017
|
-
type
|
|
2017
|
+
type DeleteAccountGroupError = ({
|
|
2018
2018
|
error?: string;
|
|
2019
2019
|
});
|
|
2020
|
-
type
|
|
2020
|
+
type GetMediaPresignedUrlData = {
|
|
2021
2021
|
body: {
|
|
2022
2022
|
/**
|
|
2023
2023
|
* Name of the file to upload
|
|
@@ -2033,7 +2033,7 @@ type PostV1MediaPresignData = {
|
|
|
2033
2033
|
size?: number;
|
|
2034
2034
|
};
|
|
2035
2035
|
};
|
|
2036
|
-
type
|
|
2036
|
+
type GetMediaPresignedUrlResponse = ({
|
|
2037
2037
|
/**
|
|
2038
2038
|
* Presigned URL to PUT your file to (expires in 1 hour)
|
|
2039
2039
|
*/
|
|
@@ -2051,10 +2051,10 @@ type PostV1MediaPresignResponse = ({
|
|
|
2051
2051
|
*/
|
|
2052
2052
|
type?: 'image' | 'video' | 'document';
|
|
2053
2053
|
});
|
|
2054
|
-
type
|
|
2054
|
+
type GetMediaPresignedUrlError = ({
|
|
2055
2055
|
error?: string;
|
|
2056
2056
|
});
|
|
2057
|
-
type
|
|
2057
|
+
type SearchRedditData = {
|
|
2058
2058
|
query: {
|
|
2059
2059
|
accountId: string;
|
|
2060
2060
|
after?: string;
|
|
@@ -2065,7 +2065,7 @@ type GetV1RedditSearchData = {
|
|
|
2065
2065
|
subreddit?: string;
|
|
2066
2066
|
};
|
|
2067
2067
|
};
|
|
2068
|
-
type
|
|
2068
|
+
type SearchRedditResponse = ({
|
|
2069
2069
|
posts?: Array<{
|
|
2070
2070
|
id?: string;
|
|
2071
2071
|
title?: string;
|
|
@@ -2079,10 +2079,10 @@ type GetV1RedditSearchResponse = ({
|
|
|
2079
2079
|
}>;
|
|
2080
2080
|
after?: string;
|
|
2081
2081
|
});
|
|
2082
|
-
type
|
|
2082
|
+
type SearchRedditError = (unknown | {
|
|
2083
2083
|
error?: string;
|
|
2084
2084
|
});
|
|
2085
|
-
type
|
|
2085
|
+
type GetRedditFeedData = {
|
|
2086
2086
|
query: {
|
|
2087
2087
|
accountId: string;
|
|
2088
2088
|
after?: string;
|
|
@@ -2092,20 +2092,20 @@ type GetV1RedditFeedData = {
|
|
|
2092
2092
|
t?: 'hour' | 'day' | 'week' | 'month' | 'year' | 'all';
|
|
2093
2093
|
};
|
|
2094
2094
|
};
|
|
2095
|
-
type
|
|
2095
|
+
type GetRedditFeedResponse = ({
|
|
2096
2096
|
posts?: Array<{
|
|
2097
2097
|
[key: string]: unknown;
|
|
2098
2098
|
}>;
|
|
2099
2099
|
after?: string;
|
|
2100
2100
|
});
|
|
2101
|
-
type
|
|
2101
|
+
type GetRedditFeedError = (unknown | {
|
|
2102
2102
|
error?: string;
|
|
2103
2103
|
});
|
|
2104
|
-
type
|
|
2105
|
-
type
|
|
2104
|
+
type GetUsageStatsResponse = (UsageStats);
|
|
2105
|
+
type GetUsageStatsError = ({
|
|
2106
2106
|
error?: string;
|
|
2107
2107
|
});
|
|
2108
|
-
type
|
|
2108
|
+
type ListPostsData = {
|
|
2109
2109
|
query?: {
|
|
2110
2110
|
createdBy?: string;
|
|
2111
2111
|
dateFrom?: string;
|
|
@@ -2124,11 +2124,11 @@ type GetV1PostsData = {
|
|
|
2124
2124
|
status?: 'draft' | 'scheduled' | 'published' | 'failed';
|
|
2125
2125
|
};
|
|
2126
2126
|
};
|
|
2127
|
-
type
|
|
2128
|
-
type
|
|
2127
|
+
type ListPostsResponse = (PostsListResponse);
|
|
2128
|
+
type ListPostsError = ({
|
|
2129
2129
|
error?: string;
|
|
2130
2130
|
});
|
|
2131
|
-
type
|
|
2131
|
+
type CreatePostData = {
|
|
2132
2132
|
body: {
|
|
2133
2133
|
title?: string;
|
|
2134
2134
|
content?: string;
|
|
@@ -2184,20 +2184,20 @@ type PostV1PostsData = {
|
|
|
2184
2184
|
queueId?: string;
|
|
2185
2185
|
};
|
|
2186
2186
|
};
|
|
2187
|
-
type
|
|
2188
|
-
type
|
|
2187
|
+
type CreatePostResponse = (PostCreateResponse);
|
|
2188
|
+
type CreatePostError = ({
|
|
2189
2189
|
error?: string;
|
|
2190
2190
|
});
|
|
2191
|
-
type
|
|
2191
|
+
type GetPostData = {
|
|
2192
2192
|
path: {
|
|
2193
2193
|
postId: string;
|
|
2194
2194
|
};
|
|
2195
2195
|
};
|
|
2196
|
-
type
|
|
2197
|
-
type
|
|
2196
|
+
type GetPostResponse = (PostGetResponse);
|
|
2197
|
+
type GetPostError = ({
|
|
2198
2198
|
error?: string;
|
|
2199
2199
|
} | unknown);
|
|
2200
|
-
type
|
|
2200
|
+
type UpdatePostData = {
|
|
2201
2201
|
body: {
|
|
2202
2202
|
[key: string]: unknown;
|
|
2203
2203
|
};
|
|
@@ -2205,20 +2205,20 @@ type PutV1PostsByPostIdData = {
|
|
|
2205
2205
|
postId: string;
|
|
2206
2206
|
};
|
|
2207
2207
|
};
|
|
2208
|
-
type
|
|
2209
|
-
type
|
|
2208
|
+
type UpdatePostResponse = (PostUpdateResponse | unknown);
|
|
2209
|
+
type UpdatePostError = (unknown | {
|
|
2210
2210
|
error?: string;
|
|
2211
2211
|
});
|
|
2212
|
-
type
|
|
2212
|
+
type DeletePostData = {
|
|
2213
2213
|
path: {
|
|
2214
2214
|
postId: string;
|
|
2215
2215
|
};
|
|
2216
2216
|
};
|
|
2217
|
-
type
|
|
2218
|
-
type
|
|
2217
|
+
type DeletePostResponse = (PostDeleteResponse);
|
|
2218
|
+
type DeletePostError = (unknown | {
|
|
2219
2219
|
error?: string;
|
|
2220
2220
|
});
|
|
2221
|
-
type
|
|
2221
|
+
type BulkUploadPostsData = {
|
|
2222
2222
|
body: {
|
|
2223
2223
|
file?: (Blob | File);
|
|
2224
2224
|
};
|
|
@@ -2226,7 +2226,7 @@ type PostV1PostsBulkUploadData = {
|
|
|
2226
2226
|
dryRun?: boolean;
|
|
2227
2227
|
};
|
|
2228
2228
|
};
|
|
2229
|
-
type
|
|
2229
|
+
type BulkUploadPostsResponse = ({
|
|
2230
2230
|
success?: boolean;
|
|
2231
2231
|
totalRows?: number;
|
|
2232
2232
|
created?: number;
|
|
@@ -2237,19 +2237,19 @@ type PostV1PostsBulkUploadResponse = ({
|
|
|
2237
2237
|
}>;
|
|
2238
2238
|
posts?: Array<Post>;
|
|
2239
2239
|
} | unknown);
|
|
2240
|
-
type
|
|
2240
|
+
type BulkUploadPostsError = (unknown | {
|
|
2241
2241
|
error?: string;
|
|
2242
2242
|
});
|
|
2243
|
-
type
|
|
2243
|
+
type RetryPostData = {
|
|
2244
2244
|
path: {
|
|
2245
2245
|
postId: string;
|
|
2246
2246
|
};
|
|
2247
2247
|
};
|
|
2248
|
-
type
|
|
2249
|
-
type
|
|
2248
|
+
type RetryPostResponse = (PostRetryResponse | unknown);
|
|
2249
|
+
type RetryPostError = (unknown | {
|
|
2250
2250
|
error?: string;
|
|
2251
2251
|
});
|
|
2252
|
-
type
|
|
2252
|
+
type ListUsersResponse = ({
|
|
2253
2253
|
currentUserId?: string;
|
|
2254
2254
|
users?: Array<{
|
|
2255
2255
|
_id?: string;
|
|
@@ -2261,15 +2261,15 @@ type GetV1UsersResponse = ({
|
|
|
2261
2261
|
createdAt?: string;
|
|
2262
2262
|
}>;
|
|
2263
2263
|
});
|
|
2264
|
-
type
|
|
2264
|
+
type ListUsersError = ({
|
|
2265
2265
|
error?: string;
|
|
2266
2266
|
});
|
|
2267
|
-
type
|
|
2267
|
+
type GetUserData = {
|
|
2268
2268
|
path: {
|
|
2269
2269
|
userId: string;
|
|
2270
2270
|
};
|
|
2271
2271
|
};
|
|
2272
|
-
type
|
|
2272
|
+
type GetUserResponse = ({
|
|
2273
2273
|
user?: {
|
|
2274
2274
|
_id?: string;
|
|
2275
2275
|
name?: string;
|
|
@@ -2279,10 +2279,10 @@ type GetV1UsersByUserIdResponse = ({
|
|
|
2279
2279
|
profileAccess?: Array<(string)>;
|
|
2280
2280
|
};
|
|
2281
2281
|
});
|
|
2282
|
-
type
|
|
2282
|
+
type GetUserError = ({
|
|
2283
2283
|
error?: string;
|
|
2284
2284
|
} | unknown);
|
|
2285
|
-
type
|
|
2285
|
+
type ListProfilesData = {
|
|
2286
2286
|
query?: {
|
|
2287
2287
|
/**
|
|
2288
2288
|
* When true, includes profiles that exceed the user's plan limit.
|
|
@@ -2293,33 +2293,33 @@ type GetV1ProfilesData = {
|
|
|
2293
2293
|
includeOverLimit?: boolean;
|
|
2294
2294
|
};
|
|
2295
2295
|
};
|
|
2296
|
-
type
|
|
2297
|
-
type
|
|
2296
|
+
type ListProfilesResponse = (ProfilesListResponse);
|
|
2297
|
+
type ListProfilesError = ({
|
|
2298
2298
|
error?: string;
|
|
2299
2299
|
});
|
|
2300
|
-
type
|
|
2300
|
+
type CreateProfileData = {
|
|
2301
2301
|
body: {
|
|
2302
2302
|
name: string;
|
|
2303
2303
|
description?: string;
|
|
2304
2304
|
color?: string;
|
|
2305
2305
|
};
|
|
2306
2306
|
};
|
|
2307
|
-
type
|
|
2308
|
-
type
|
|
2307
|
+
type CreateProfileResponse = (ProfileCreateResponse);
|
|
2308
|
+
type CreateProfileError = (unknown | {
|
|
2309
2309
|
error?: string;
|
|
2310
2310
|
});
|
|
2311
|
-
type
|
|
2311
|
+
type GetProfileData = {
|
|
2312
2312
|
path: {
|
|
2313
2313
|
profileId: string;
|
|
2314
2314
|
};
|
|
2315
2315
|
};
|
|
2316
|
-
type
|
|
2316
|
+
type GetProfileResponse = ({
|
|
2317
2317
|
profile?: Profile;
|
|
2318
2318
|
});
|
|
2319
|
-
type
|
|
2319
|
+
type GetProfileError = ({
|
|
2320
2320
|
error?: string;
|
|
2321
2321
|
});
|
|
2322
|
-
type
|
|
2322
|
+
type UpdateProfileData = {
|
|
2323
2323
|
body: {
|
|
2324
2324
|
name?: string;
|
|
2325
2325
|
description?: string;
|
|
@@ -2330,25 +2330,25 @@ type PutV1ProfilesByProfileIdData = {
|
|
|
2330
2330
|
profileId: string;
|
|
2331
2331
|
};
|
|
2332
2332
|
};
|
|
2333
|
-
type
|
|
2333
|
+
type UpdateProfileResponse = ({
|
|
2334
2334
|
message?: string;
|
|
2335
2335
|
profile?: Profile;
|
|
2336
2336
|
});
|
|
2337
|
-
type
|
|
2337
|
+
type UpdateProfileError = ({
|
|
2338
2338
|
error?: string;
|
|
2339
2339
|
});
|
|
2340
|
-
type
|
|
2340
|
+
type DeleteProfileData = {
|
|
2341
2341
|
path: {
|
|
2342
2342
|
profileId: string;
|
|
2343
2343
|
};
|
|
2344
2344
|
};
|
|
2345
|
-
type
|
|
2345
|
+
type DeleteProfileResponse = ({
|
|
2346
2346
|
message?: string;
|
|
2347
2347
|
});
|
|
2348
|
-
type
|
|
2348
|
+
type DeleteProfileError = (unknown | {
|
|
2349
2349
|
error?: string;
|
|
2350
2350
|
});
|
|
2351
|
-
type
|
|
2351
|
+
type ListAccountsData = {
|
|
2352
2352
|
query?: {
|
|
2353
2353
|
/**
|
|
2354
2354
|
* When true, includes accounts from profiles that exceed the user's plan limit.
|
|
@@ -2362,17 +2362,17 @@ type GetV1AccountsData = {
|
|
|
2362
2362
|
profileId?: string;
|
|
2363
2363
|
};
|
|
2364
2364
|
};
|
|
2365
|
-
type
|
|
2365
|
+
type ListAccountsResponse = ({
|
|
2366
2366
|
accounts?: Array<SocialAccount>;
|
|
2367
2367
|
/**
|
|
2368
2368
|
* Whether user has analytics add-on access
|
|
2369
2369
|
*/
|
|
2370
2370
|
hasAnalyticsAccess?: boolean;
|
|
2371
2371
|
});
|
|
2372
|
-
type
|
|
2372
|
+
type ListAccountsError = ({
|
|
2373
2373
|
error?: string;
|
|
2374
2374
|
});
|
|
2375
|
-
type
|
|
2375
|
+
type GetFollowerStatsData = {
|
|
2376
2376
|
query?: {
|
|
2377
2377
|
/**
|
|
2378
2378
|
* Comma-separated list of account IDs (optional, defaults to all user's accounts)
|
|
@@ -2396,7 +2396,7 @@ type GetV1AccountsFollowerStatsData = {
|
|
|
2396
2396
|
toDate?: string;
|
|
2397
2397
|
};
|
|
2398
2398
|
};
|
|
2399
|
-
type
|
|
2399
|
+
type GetFollowerStatsResponse = ({
|
|
2400
2400
|
accounts?: Array<AccountWithFollowerStats>;
|
|
2401
2401
|
stats?: {
|
|
2402
2402
|
[key: string]: Array<{
|
|
@@ -2410,14 +2410,14 @@ type GetV1AccountsFollowerStatsResponse = ({
|
|
|
2410
2410
|
};
|
|
2411
2411
|
granularity?: string;
|
|
2412
2412
|
});
|
|
2413
|
-
type
|
|
2413
|
+
type GetFollowerStatsError = ({
|
|
2414
2414
|
error?: string;
|
|
2415
2415
|
} | {
|
|
2416
2416
|
error?: string;
|
|
2417
2417
|
message?: string;
|
|
2418
2418
|
requiresAddon?: boolean;
|
|
2419
2419
|
});
|
|
2420
|
-
type
|
|
2420
|
+
type UpdateAccountData = {
|
|
2421
2421
|
body: {
|
|
2422
2422
|
username?: string;
|
|
2423
2423
|
displayName?: string;
|
|
@@ -2426,26 +2426,26 @@ type PutV1AccountsByAccountIdData = {
|
|
|
2426
2426
|
accountId: string;
|
|
2427
2427
|
};
|
|
2428
2428
|
};
|
|
2429
|
-
type
|
|
2429
|
+
type UpdateAccountResponse = ({
|
|
2430
2430
|
message?: string;
|
|
2431
2431
|
username?: string;
|
|
2432
2432
|
displayName?: string;
|
|
2433
2433
|
});
|
|
2434
|
-
type
|
|
2434
|
+
type UpdateAccountError = (unknown | {
|
|
2435
2435
|
error?: string;
|
|
2436
2436
|
});
|
|
2437
|
-
type
|
|
2437
|
+
type DeleteAccountData = {
|
|
2438
2438
|
path: {
|
|
2439
2439
|
accountId: string;
|
|
2440
2440
|
};
|
|
2441
2441
|
};
|
|
2442
|
-
type
|
|
2442
|
+
type DeleteAccountResponse = ({
|
|
2443
2443
|
message?: string;
|
|
2444
2444
|
});
|
|
2445
|
-
type
|
|
2445
|
+
type DeleteAccountError = ({
|
|
2446
2446
|
error?: string;
|
|
2447
2447
|
});
|
|
2448
|
-
type
|
|
2448
|
+
type GetAllAccountsHealthData = {
|
|
2449
2449
|
query?: {
|
|
2450
2450
|
/**
|
|
2451
2451
|
* Filter by platform
|
|
@@ -2461,7 +2461,7 @@ type GetV1AccountsHealthData = {
|
|
|
2461
2461
|
status?: 'healthy' | 'warning' | 'error';
|
|
2462
2462
|
};
|
|
2463
2463
|
};
|
|
2464
|
-
type
|
|
2464
|
+
type GetAllAccountsHealthResponse = ({
|
|
2465
2465
|
summary?: {
|
|
2466
2466
|
/**
|
|
2467
2467
|
* Total number of accounts
|
|
@@ -2499,10 +2499,10 @@ type GetV1AccountsHealthResponse = ({
|
|
|
2499
2499
|
issues?: Array<(string)>;
|
|
2500
2500
|
}>;
|
|
2501
2501
|
});
|
|
2502
|
-
type
|
|
2502
|
+
type GetAllAccountsHealthError = ({
|
|
2503
2503
|
error?: string;
|
|
2504
2504
|
});
|
|
2505
|
-
type
|
|
2505
|
+
type GetAccountHealthData = {
|
|
2506
2506
|
path: {
|
|
2507
2507
|
/**
|
|
2508
2508
|
* The account ID to check
|
|
@@ -2510,7 +2510,7 @@ type GetV1AccountsByAccountIdHealthData = {
|
|
|
2510
2510
|
accountId: string;
|
|
2511
2511
|
};
|
|
2512
2512
|
};
|
|
2513
|
-
type
|
|
2513
|
+
type GetAccountHealthResponse = ({
|
|
2514
2514
|
accountId?: string;
|
|
2515
2515
|
platform?: string;
|
|
2516
2516
|
username?: string;
|
|
@@ -2563,16 +2563,16 @@ type GetV1AccountsByAccountIdHealthResponse = ({
|
|
|
2563
2563
|
*/
|
|
2564
2564
|
recommendations?: Array<(string)>;
|
|
2565
2565
|
});
|
|
2566
|
-
type
|
|
2566
|
+
type GetAccountHealthError = ({
|
|
2567
2567
|
error?: string;
|
|
2568
2568
|
});
|
|
2569
|
-
type
|
|
2569
|
+
type ListApiKeysResponse = ({
|
|
2570
2570
|
apiKeys?: Array<ApiKey>;
|
|
2571
2571
|
});
|
|
2572
|
-
type
|
|
2572
|
+
type ListApiKeysError = ({
|
|
2573
2573
|
error?: string;
|
|
2574
2574
|
});
|
|
2575
|
-
type
|
|
2575
|
+
type CreateApiKeyData = {
|
|
2576
2576
|
body: {
|
|
2577
2577
|
name: string;
|
|
2578
2578
|
/**
|
|
@@ -2581,25 +2581,25 @@ type PostV1ApiKeysData = {
|
|
|
2581
2581
|
expiresIn?: number;
|
|
2582
2582
|
};
|
|
2583
2583
|
};
|
|
2584
|
-
type
|
|
2584
|
+
type CreateApiKeyResponse = ({
|
|
2585
2585
|
message?: string;
|
|
2586
2586
|
apiKey?: ApiKey;
|
|
2587
2587
|
});
|
|
2588
|
-
type
|
|
2588
|
+
type CreateApiKeyError = (unknown | {
|
|
2589
2589
|
error?: string;
|
|
2590
2590
|
});
|
|
2591
|
-
type
|
|
2591
|
+
type DeleteApiKeyData = {
|
|
2592
2592
|
path: {
|
|
2593
2593
|
keyId: string;
|
|
2594
2594
|
};
|
|
2595
2595
|
};
|
|
2596
|
-
type
|
|
2596
|
+
type DeleteApiKeyResponse = ({
|
|
2597
2597
|
message?: string;
|
|
2598
2598
|
});
|
|
2599
|
-
type
|
|
2599
|
+
type DeleteApiKeyError = ({
|
|
2600
2600
|
error?: string;
|
|
2601
2601
|
});
|
|
2602
|
-
type
|
|
2602
|
+
type CreateInviteTokenData = {
|
|
2603
2603
|
body: {
|
|
2604
2604
|
/**
|
|
2605
2605
|
* 'all' grants access to all profiles, 'profiles' restricts to specific profiles
|
|
@@ -2611,17 +2611,17 @@ type PostV1InviteTokensData = {
|
|
|
2611
2611
|
profileIds?: Array<(string)>;
|
|
2612
2612
|
};
|
|
2613
2613
|
};
|
|
2614
|
-
type
|
|
2614
|
+
type CreateInviteTokenResponse = ({
|
|
2615
2615
|
token?: string;
|
|
2616
2616
|
scope?: string;
|
|
2617
2617
|
invitedProfileIds?: Array<(string)>;
|
|
2618
2618
|
expiresAt?: string;
|
|
2619
2619
|
inviteUrl?: string;
|
|
2620
2620
|
});
|
|
2621
|
-
type
|
|
2621
|
+
type CreateInviteTokenError = (unknown | {
|
|
2622
2622
|
error?: string;
|
|
2623
2623
|
});
|
|
2624
|
-
type
|
|
2624
|
+
type ListPlatformInvitesData = {
|
|
2625
2625
|
query?: {
|
|
2626
2626
|
/**
|
|
2627
2627
|
* Optional. Filter invites by profile ID
|
|
@@ -2629,7 +2629,7 @@ type GetV1PlatformInvitesData = {
|
|
|
2629
2629
|
profileId?: string;
|
|
2630
2630
|
};
|
|
2631
2631
|
};
|
|
2632
|
-
type
|
|
2632
|
+
type ListPlatformInvitesResponse = ({
|
|
2633
2633
|
invites?: Array<{
|
|
2634
2634
|
_id?: string;
|
|
2635
2635
|
token?: string;
|
|
@@ -2649,10 +2649,10 @@ type GetV1PlatformInvitesResponse = ({
|
|
|
2649
2649
|
createdAt?: string;
|
|
2650
2650
|
}>;
|
|
2651
2651
|
});
|
|
2652
|
-
type
|
|
2652
|
+
type ListPlatformInvitesError = ({
|
|
2653
2653
|
error?: string;
|
|
2654
2654
|
});
|
|
2655
|
-
type
|
|
2655
|
+
type CreatePlatformInviteData = {
|
|
2656
2656
|
body: {
|
|
2657
2657
|
/**
|
|
2658
2658
|
* Profile ID to connect the account to
|
|
@@ -2664,7 +2664,7 @@ type PostV1PlatformInvitesData = {
|
|
|
2664
2664
|
platform: 'facebook' | 'instagram' | 'linkedin' | 'twitter' | 'threads' | 'tiktok' | 'youtube' | 'pinterest' | 'reddit' | 'bluesky' | 'googlebusiness' | 'telegram' | 'snapchat';
|
|
2665
2665
|
};
|
|
2666
2666
|
};
|
|
2667
|
-
type
|
|
2667
|
+
type CreatePlatformInviteResponse = ({
|
|
2668
2668
|
invite?: {
|
|
2669
2669
|
_id?: string;
|
|
2670
2670
|
token?: string;
|
|
@@ -2685,10 +2685,10 @@ type PostV1PlatformInvitesResponse = ({
|
|
|
2685
2685
|
inviteUrl?: string;
|
|
2686
2686
|
};
|
|
2687
2687
|
});
|
|
2688
|
-
type
|
|
2688
|
+
type CreatePlatformInviteError = (unknown | {
|
|
2689
2689
|
error?: string;
|
|
2690
2690
|
});
|
|
2691
|
-
type
|
|
2691
|
+
type DeletePlatformInviteData = {
|
|
2692
2692
|
query: {
|
|
2693
2693
|
/**
|
|
2694
2694
|
* Invite ID to revoke
|
|
@@ -2696,13 +2696,13 @@ type DeleteV1PlatformInvitesData = {
|
|
|
2696
2696
|
id: string;
|
|
2697
2697
|
};
|
|
2698
2698
|
};
|
|
2699
|
-
type
|
|
2699
|
+
type DeletePlatformInviteResponse = ({
|
|
2700
2700
|
message?: string;
|
|
2701
2701
|
});
|
|
2702
|
-
type
|
|
2702
|
+
type DeletePlatformInviteError = (unknown | {
|
|
2703
2703
|
error?: string;
|
|
2704
2704
|
});
|
|
2705
|
-
type
|
|
2705
|
+
type GetConnectUrlData = {
|
|
2706
2706
|
path: {
|
|
2707
2707
|
/**
|
|
2708
2708
|
* Social media platform to connect
|
|
@@ -2751,7 +2751,7 @@ type GetV1ConnectByPlatformData = {
|
|
|
2751
2751
|
redirect_url?: string;
|
|
2752
2752
|
};
|
|
2753
2753
|
};
|
|
2754
|
-
type
|
|
2754
|
+
type GetConnectUrlResponse = ({
|
|
2755
2755
|
/**
|
|
2756
2756
|
* URL to redirect your user to for OAuth authorization
|
|
2757
2757
|
*/
|
|
@@ -2761,10 +2761,10 @@ type GetV1ConnectByPlatformResponse = ({
|
|
|
2761
2761
|
*/
|
|
2762
2762
|
state?: string;
|
|
2763
2763
|
});
|
|
2764
|
-
type
|
|
2764
|
+
type GetConnectUrlError = (unknown | {
|
|
2765
2765
|
error?: string;
|
|
2766
2766
|
});
|
|
2767
|
-
type
|
|
2767
|
+
type HandleOAuthCallbackData = {
|
|
2768
2768
|
body: {
|
|
2769
2769
|
code: string;
|
|
2770
2770
|
state: string;
|
|
@@ -2774,11 +2774,11 @@ type PostV1ConnectByPlatformData = {
|
|
|
2774
2774
|
platform: string;
|
|
2775
2775
|
};
|
|
2776
2776
|
};
|
|
2777
|
-
type
|
|
2778
|
-
type
|
|
2777
|
+
type HandleOAuthCallbackResponse = (unknown);
|
|
2778
|
+
type HandleOAuthCallbackError = (unknown | {
|
|
2779
2779
|
error?: string;
|
|
2780
2780
|
});
|
|
2781
|
-
type
|
|
2781
|
+
type ListFacebookPagesData = {
|
|
2782
2782
|
query: {
|
|
2783
2783
|
/**
|
|
2784
2784
|
* Profile ID from your connection flow
|
|
@@ -2790,7 +2790,7 @@ type GetV1ConnectFacebookSelectPageData = {
|
|
|
2790
2790
|
tempToken: string;
|
|
2791
2791
|
};
|
|
2792
2792
|
};
|
|
2793
|
-
type
|
|
2793
|
+
type ListFacebookPagesResponse = ({
|
|
2794
2794
|
pages?: Array<{
|
|
2795
2795
|
/**
|
|
2796
2796
|
* Facebook Page ID
|
|
@@ -2818,10 +2818,10 @@ type GetV1ConnectFacebookSelectPageResponse = ({
|
|
|
2818
2818
|
tasks?: Array<(string)>;
|
|
2819
2819
|
}>;
|
|
2820
2820
|
});
|
|
2821
|
-
type
|
|
2821
|
+
type ListFacebookPagesError = (unknown | {
|
|
2822
2822
|
error?: string;
|
|
2823
2823
|
});
|
|
2824
|
-
type
|
|
2824
|
+
type SelectFacebookPageData = {
|
|
2825
2825
|
body: {
|
|
2826
2826
|
/**
|
|
2827
2827
|
* Profile ID from your connection flow
|
|
@@ -2849,7 +2849,7 @@ type PostV1ConnectFacebookSelectPageData = {
|
|
|
2849
2849
|
redirect_url?: string;
|
|
2850
2850
|
};
|
|
2851
2851
|
};
|
|
2852
|
-
type
|
|
2852
|
+
type SelectFacebookPageResponse = ({
|
|
2853
2853
|
message?: string;
|
|
2854
2854
|
/**
|
|
2855
2855
|
* Redirect URL if custom redirect_url was provided
|
|
@@ -2864,10 +2864,10 @@ type PostV1ConnectFacebookSelectPageResponse = ({
|
|
|
2864
2864
|
selectedPageName?: string;
|
|
2865
2865
|
};
|
|
2866
2866
|
});
|
|
2867
|
-
type
|
|
2867
|
+
type SelectFacebookPageError = (unknown | {
|
|
2868
2868
|
error?: string;
|
|
2869
2869
|
});
|
|
2870
|
-
type
|
|
2870
|
+
type ListGoogleBusinessLocationsData = {
|
|
2871
2871
|
query: {
|
|
2872
2872
|
/**
|
|
2873
2873
|
* Profile ID from your connection flow
|
|
@@ -2879,7 +2879,7 @@ type GetV1ConnectGooglebusinessLocationsData = {
|
|
|
2879
2879
|
tempToken: string;
|
|
2880
2880
|
};
|
|
2881
2881
|
};
|
|
2882
|
-
type
|
|
2882
|
+
type ListGoogleBusinessLocationsResponse = ({
|
|
2883
2883
|
locations?: Array<{
|
|
2884
2884
|
/**
|
|
2885
2885
|
* Location ID
|
|
@@ -2907,10 +2907,10 @@ type GetV1ConnectGooglebusinessLocationsResponse = ({
|
|
|
2907
2907
|
category?: string;
|
|
2908
2908
|
}>;
|
|
2909
2909
|
});
|
|
2910
|
-
type
|
|
2910
|
+
type ListGoogleBusinessLocationsError = (unknown | {
|
|
2911
2911
|
error?: string;
|
|
2912
2912
|
});
|
|
2913
|
-
type
|
|
2913
|
+
type SelectGoogleBusinessLocationData = {
|
|
2914
2914
|
body: {
|
|
2915
2915
|
/**
|
|
2916
2916
|
* Profile ID from your connection flow
|
|
@@ -2951,7 +2951,7 @@ type PostV1ConnectGooglebusinessSelectLocationData = {
|
|
|
2951
2951
|
redirect_url?: string;
|
|
2952
2952
|
};
|
|
2953
2953
|
};
|
|
2954
|
-
type
|
|
2954
|
+
type SelectGoogleBusinessLocationResponse = ({
|
|
2955
2955
|
message?: string;
|
|
2956
2956
|
/**
|
|
2957
2957
|
* Redirect URL if custom redirect_url was provided
|
|
@@ -2966,10 +2966,10 @@ type PostV1ConnectGooglebusinessSelectLocationResponse = ({
|
|
|
2966
2966
|
selectedLocationId?: string;
|
|
2967
2967
|
};
|
|
2968
2968
|
});
|
|
2969
|
-
type
|
|
2969
|
+
type SelectGoogleBusinessLocationError = (unknown | {
|
|
2970
2970
|
error?: string;
|
|
2971
2971
|
});
|
|
2972
|
-
type
|
|
2972
|
+
type GetGoogleBusinessReviewsData = {
|
|
2973
2973
|
path: {
|
|
2974
2974
|
/**
|
|
2975
2975
|
* The Late account ID (from /v1/accounts)
|
|
@@ -2987,7 +2987,7 @@ type GetV1AccountsByAccountIdGmbReviewsData = {
|
|
|
2987
2987
|
pageToken?: string;
|
|
2988
2988
|
};
|
|
2989
2989
|
};
|
|
2990
|
-
type
|
|
2990
|
+
type GetGoogleBusinessReviewsResponse = ({
|
|
2991
2991
|
success?: boolean;
|
|
2992
2992
|
accountId?: string;
|
|
2993
2993
|
locationId?: string;
|
|
@@ -3040,10 +3040,10 @@ type GetV1AccountsByAccountIdGmbReviewsResponse = ({
|
|
|
3040
3040
|
*/
|
|
3041
3041
|
nextPageToken?: (string) | null;
|
|
3042
3042
|
});
|
|
3043
|
-
type
|
|
3043
|
+
type GetGoogleBusinessReviewsError = (ErrorResponse | {
|
|
3044
3044
|
error?: string;
|
|
3045
3045
|
});
|
|
3046
|
-
type
|
|
3046
|
+
type ListLinkedInOrganizationsData = {
|
|
3047
3047
|
query: {
|
|
3048
3048
|
/**
|
|
3049
3049
|
* Comma-separated list of organization IDs to fetch details for (max 100)
|
|
@@ -3055,7 +3055,7 @@ type GetV1ConnectLinkedinOrganizationsData = {
|
|
|
3055
3055
|
tempToken: string;
|
|
3056
3056
|
};
|
|
3057
3057
|
};
|
|
3058
|
-
type
|
|
3058
|
+
type ListLinkedInOrganizationsResponse = ({
|
|
3059
3059
|
organizations?: Array<{
|
|
3060
3060
|
/**
|
|
3061
3061
|
* Organization ID
|
|
@@ -3083,10 +3083,10 @@ type GetV1ConnectLinkedinOrganizationsResponse = ({
|
|
|
3083
3083
|
description?: string;
|
|
3084
3084
|
}>;
|
|
3085
3085
|
});
|
|
3086
|
-
type
|
|
3086
|
+
type ListLinkedInOrganizationsError = ({
|
|
3087
3087
|
error?: string;
|
|
3088
3088
|
} | unknown);
|
|
3089
|
-
type
|
|
3089
|
+
type SelectLinkedInOrganizationData = {
|
|
3090
3090
|
body: {
|
|
3091
3091
|
profileId: string;
|
|
3092
3092
|
tempToken: string;
|
|
@@ -3100,14 +3100,14 @@ type PostV1ConnectLinkedinSelectOrganizationData = {
|
|
|
3100
3100
|
redirect_url?: string;
|
|
3101
3101
|
};
|
|
3102
3102
|
};
|
|
3103
|
-
type
|
|
3103
|
+
type SelectLinkedInOrganizationResponse = ({
|
|
3104
3104
|
message?: string;
|
|
3105
3105
|
account?: SocialAccount;
|
|
3106
3106
|
});
|
|
3107
|
-
type
|
|
3107
|
+
type SelectLinkedInOrganizationError = (unknown | {
|
|
3108
3108
|
error?: string;
|
|
3109
3109
|
});
|
|
3110
|
-
type
|
|
3110
|
+
type ListPinterestBoardsForSelectionData = {
|
|
3111
3111
|
headers: {
|
|
3112
3112
|
/**
|
|
3113
3113
|
* Short-lived connect token from the OAuth redirect
|
|
@@ -3125,7 +3125,7 @@ type GetV1ConnectPinterestSelectBoardData = {
|
|
|
3125
3125
|
tempToken: string;
|
|
3126
3126
|
};
|
|
3127
3127
|
};
|
|
3128
|
-
type
|
|
3128
|
+
type ListPinterestBoardsForSelectionResponse = ({
|
|
3129
3129
|
boards?: Array<{
|
|
3130
3130
|
/**
|
|
3131
3131
|
* Pinterest Board ID
|
|
@@ -3145,10 +3145,10 @@ type GetV1ConnectPinterestSelectBoardResponse = ({
|
|
|
3145
3145
|
privacy?: string;
|
|
3146
3146
|
}>;
|
|
3147
3147
|
});
|
|
3148
|
-
type
|
|
3148
|
+
type ListPinterestBoardsForSelectionError = (unknown | {
|
|
3149
3149
|
error?: string;
|
|
3150
3150
|
});
|
|
3151
|
-
type
|
|
3151
|
+
type SelectPinterestBoardData = {
|
|
3152
3152
|
body: {
|
|
3153
3153
|
/**
|
|
3154
3154
|
* Your Late profile ID
|
|
@@ -3186,7 +3186,7 @@ type PostV1ConnectPinterestSelectBoardData = {
|
|
|
3186
3186
|
redirect_url?: string;
|
|
3187
3187
|
};
|
|
3188
3188
|
};
|
|
3189
|
-
type
|
|
3189
|
+
type SelectPinterestBoardResponse = ({
|
|
3190
3190
|
message?: string;
|
|
3191
3191
|
/**
|
|
3192
3192
|
* Redirect URL with connection params (if provided)
|
|
@@ -3201,10 +3201,10 @@ type PostV1ConnectPinterestSelectBoardResponse = ({
|
|
|
3201
3201
|
defaultBoardName?: string;
|
|
3202
3202
|
};
|
|
3203
3203
|
});
|
|
3204
|
-
type
|
|
3204
|
+
type SelectPinterestBoardError = (unknown | {
|
|
3205
3205
|
error?: string;
|
|
3206
3206
|
});
|
|
3207
|
-
type
|
|
3207
|
+
type ListSnapchatProfilesData = {
|
|
3208
3208
|
headers: {
|
|
3209
3209
|
/**
|
|
3210
3210
|
* Short-lived connect token from the OAuth redirect
|
|
@@ -3222,7 +3222,7 @@ type GetV1ConnectSnapchatSelectProfileData = {
|
|
|
3222
3222
|
tempToken: string;
|
|
3223
3223
|
};
|
|
3224
3224
|
};
|
|
3225
|
-
type
|
|
3225
|
+
type ListSnapchatProfilesResponse = ({
|
|
3226
3226
|
publicProfiles?: Array<{
|
|
3227
3227
|
/**
|
|
3228
3228
|
* Snapchat Public Profile ID
|
|
@@ -3246,10 +3246,10 @@ type GetV1ConnectSnapchatSelectProfileResponse = ({
|
|
|
3246
3246
|
subscriber_count?: number;
|
|
3247
3247
|
}>;
|
|
3248
3248
|
});
|
|
3249
|
-
type
|
|
3249
|
+
type ListSnapchatProfilesError = (unknown | {
|
|
3250
3250
|
error?: string;
|
|
3251
3251
|
});
|
|
3252
|
-
type
|
|
3252
|
+
type SelectSnapchatProfileData = {
|
|
3253
3253
|
body: {
|
|
3254
3254
|
/**
|
|
3255
3255
|
* Your Late profile ID
|
|
@@ -3310,7 +3310,7 @@ type PostV1ConnectSnapchatSelectProfileData = {
|
|
|
3310
3310
|
'X-Connect-Token'?: string;
|
|
3311
3311
|
};
|
|
3312
3312
|
};
|
|
3313
|
-
type
|
|
3313
|
+
type SelectSnapchatProfileResponse = ({
|
|
3314
3314
|
message?: string;
|
|
3315
3315
|
/**
|
|
3316
3316
|
* Redirect URL with connection params (if provided in request)
|
|
@@ -3325,10 +3325,10 @@ type PostV1ConnectSnapchatSelectProfileResponse = ({
|
|
|
3325
3325
|
publicProfileName?: string;
|
|
3326
3326
|
};
|
|
3327
3327
|
});
|
|
3328
|
-
type
|
|
3328
|
+
type SelectSnapchatProfileError = (unknown | {
|
|
3329
3329
|
error?: string;
|
|
3330
3330
|
});
|
|
3331
|
-
type
|
|
3331
|
+
type ConnectBlueskyCredentialsData = {
|
|
3332
3332
|
body: {
|
|
3333
3333
|
/**
|
|
3334
3334
|
* Your Bluesky handle (e.g. user.bsky.social) or email address
|
|
@@ -3351,14 +3351,14 @@ type PostV1ConnectBlueskyCredentialsData = {
|
|
|
3351
3351
|
redirectUri?: string;
|
|
3352
3352
|
};
|
|
3353
3353
|
};
|
|
3354
|
-
type
|
|
3354
|
+
type ConnectBlueskyCredentialsResponse = ({
|
|
3355
3355
|
message?: string;
|
|
3356
3356
|
account?: SocialAccount;
|
|
3357
3357
|
});
|
|
3358
|
-
type
|
|
3358
|
+
type ConnectBlueskyCredentialsError = (unknown | {
|
|
3359
3359
|
error?: string;
|
|
3360
3360
|
});
|
|
3361
|
-
type
|
|
3361
|
+
type GetTelegramConnectStatusData = {
|
|
3362
3362
|
query: {
|
|
3363
3363
|
/**
|
|
3364
3364
|
* The profile ID to connect the Telegram account to
|
|
@@ -3366,7 +3366,7 @@ type GetV1ConnectTelegramData = {
|
|
|
3366
3366
|
profileId: string;
|
|
3367
3367
|
};
|
|
3368
3368
|
};
|
|
3369
|
-
type
|
|
3369
|
+
type GetTelegramConnectStatusResponse = ({
|
|
3370
3370
|
/**
|
|
3371
3371
|
* The access code to send to the Telegram bot
|
|
3372
3372
|
*/
|
|
@@ -3388,10 +3388,10 @@ type GetV1ConnectTelegramResponse = ({
|
|
|
3388
3388
|
*/
|
|
3389
3389
|
instructions?: Array<(string)>;
|
|
3390
3390
|
});
|
|
3391
|
-
type
|
|
3391
|
+
type GetTelegramConnectStatusError = (unknown | {
|
|
3392
3392
|
error?: string;
|
|
3393
3393
|
});
|
|
3394
|
-
type
|
|
3394
|
+
type InitiateTelegramConnectData = {
|
|
3395
3395
|
body: {
|
|
3396
3396
|
/**
|
|
3397
3397
|
* The Telegram chat ID. Can be:
|
|
@@ -3406,7 +3406,7 @@ type PostV1ConnectTelegramData = {
|
|
|
3406
3406
|
profileId: string;
|
|
3407
3407
|
};
|
|
3408
3408
|
};
|
|
3409
|
-
type
|
|
3409
|
+
type InitiateTelegramConnectResponse = ({
|
|
3410
3410
|
message?: string;
|
|
3411
3411
|
account?: {
|
|
3412
3412
|
_id?: string;
|
|
@@ -3417,10 +3417,10 @@ type PostV1ConnectTelegramResponse = ({
|
|
|
3417
3417
|
chatType?: 'channel' | 'group' | 'supergroup' | 'private';
|
|
3418
3418
|
};
|
|
3419
3419
|
});
|
|
3420
|
-
type
|
|
3420
|
+
type InitiateTelegramConnectError = (unknown | {
|
|
3421
3421
|
error?: string;
|
|
3422
3422
|
});
|
|
3423
|
-
type
|
|
3423
|
+
type CompleteTelegramConnectData = {
|
|
3424
3424
|
query: {
|
|
3425
3425
|
/**
|
|
3426
3426
|
* The access code to check status for
|
|
@@ -3428,7 +3428,7 @@ type PatchV1ConnectTelegramData = {
|
|
|
3428
3428
|
code: string;
|
|
3429
3429
|
};
|
|
3430
3430
|
};
|
|
3431
|
-
type
|
|
3431
|
+
type CompleteTelegramConnectResponse = (({
|
|
3432
3432
|
status?: 'pending';
|
|
3433
3433
|
expiresAt?: string;
|
|
3434
3434
|
/**
|
|
@@ -3450,10 +3450,10 @@ type PatchV1ConnectTelegramResponse = (({
|
|
|
3450
3450
|
status?: 'expired';
|
|
3451
3451
|
message?: string;
|
|
3452
3452
|
}));
|
|
3453
|
-
type
|
|
3453
|
+
type CompleteTelegramConnectError = ({
|
|
3454
3454
|
error?: string;
|
|
3455
3455
|
} | unknown);
|
|
3456
|
-
type
|
|
3456
|
+
type UpdateFacebookPageData = {
|
|
3457
3457
|
body: {
|
|
3458
3458
|
selectedPageId: string;
|
|
3459
3459
|
};
|
|
@@ -3461,19 +3461,19 @@ type PutV1AccountsByAccountIdFacebookPageData = {
|
|
|
3461
3461
|
accountId: string;
|
|
3462
3462
|
};
|
|
3463
3463
|
};
|
|
3464
|
-
type
|
|
3464
|
+
type UpdateFacebookPageResponse = ({
|
|
3465
3465
|
message?: string;
|
|
3466
3466
|
account?: SocialAccount;
|
|
3467
3467
|
});
|
|
3468
|
-
type
|
|
3468
|
+
type UpdateFacebookPageError = (unknown | {
|
|
3469
3469
|
error?: string;
|
|
3470
3470
|
});
|
|
3471
|
-
type
|
|
3471
|
+
type GetLinkedInOrganizationsData = {
|
|
3472
3472
|
path: {
|
|
3473
3473
|
accountId: string;
|
|
3474
3474
|
};
|
|
3475
3475
|
};
|
|
3476
|
-
type
|
|
3476
|
+
type GetLinkedInOrganizationsResponse = ({
|
|
3477
3477
|
organizations?: Array<{
|
|
3478
3478
|
id?: string;
|
|
3479
3479
|
name?: string;
|
|
@@ -3481,10 +3481,10 @@ type GetV1AccountsByAccountIdLinkedinOrganizationsResponse = ({
|
|
|
3481
3481
|
localizedName?: string;
|
|
3482
3482
|
}>;
|
|
3483
3483
|
});
|
|
3484
|
-
type
|
|
3484
|
+
type GetLinkedInOrganizationsError = ({
|
|
3485
3485
|
error?: string;
|
|
3486
3486
|
} | unknown);
|
|
3487
|
-
type
|
|
3487
|
+
type GetLinkedInAggregateAnalyticsData = {
|
|
3488
3488
|
path: {
|
|
3489
3489
|
/**
|
|
3490
3490
|
* The ID of the LinkedIn personal account
|
|
@@ -3522,8 +3522,8 @@ type GetV1AccountsByAccountIdLinkedinAggregateAnalyticsData = {
|
|
|
3522
3522
|
startDate?: string;
|
|
3523
3523
|
};
|
|
3524
3524
|
};
|
|
3525
|
-
type
|
|
3526
|
-
type
|
|
3525
|
+
type GetLinkedInAggregateAnalyticsResponse = ((LinkedInAggregateAnalyticsTotalResponse | LinkedInAggregateAnalyticsDailyResponse));
|
|
3526
|
+
type GetLinkedInAggregateAnalyticsError = ({
|
|
3527
3527
|
error?: string;
|
|
3528
3528
|
code?: string;
|
|
3529
3529
|
validOptions?: Array<(string)>;
|
|
@@ -3538,7 +3538,7 @@ type GetV1AccountsByAccountIdLinkedinAggregateAnalyticsError = ({
|
|
|
3538
3538
|
requiredScope?: string;
|
|
3539
3539
|
action?: string;
|
|
3540
3540
|
} | unknown);
|
|
3541
|
-
type
|
|
3541
|
+
type GetLinkedInPostAnalyticsData = {
|
|
3542
3542
|
path: {
|
|
3543
3543
|
/**
|
|
3544
3544
|
* The ID of the LinkedIn account
|
|
@@ -3552,7 +3552,7 @@ type GetV1AccountsByAccountIdLinkedinPostAnalyticsData = {
|
|
|
3552
3552
|
urn: string;
|
|
3553
3553
|
};
|
|
3554
3554
|
};
|
|
3555
|
-
type
|
|
3555
|
+
type GetLinkedInPostAnalyticsResponse = ({
|
|
3556
3556
|
accountId?: string;
|
|
3557
3557
|
platform?: string;
|
|
3558
3558
|
accountType?: 'personal' | 'organization';
|
|
@@ -3594,7 +3594,7 @@ type GetV1AccountsByAccountIdLinkedinPostAnalyticsResponse = ({
|
|
|
3594
3594
|
};
|
|
3595
3595
|
lastUpdated?: string;
|
|
3596
3596
|
});
|
|
3597
|
-
type
|
|
3597
|
+
type GetLinkedInPostAnalyticsError = ({
|
|
3598
3598
|
error?: string;
|
|
3599
3599
|
code?: 'missing_urn' | 'invalid_urn' | 'invalid_platform';
|
|
3600
3600
|
} | {
|
|
@@ -3608,7 +3608,7 @@ type GetV1AccountsByAccountIdLinkedinPostAnalyticsError = ({
|
|
|
3608
3608
|
error?: string;
|
|
3609
3609
|
code?: string;
|
|
3610
3610
|
});
|
|
3611
|
-
type
|
|
3611
|
+
type UpdateLinkedInOrganizationData = {
|
|
3612
3612
|
body: {
|
|
3613
3613
|
accountType: 'personal' | 'organization';
|
|
3614
3614
|
selectedOrganization?: {
|
|
@@ -3619,14 +3619,14 @@ type PutV1AccountsByAccountIdLinkedinOrganizationData = {
|
|
|
3619
3619
|
accountId: string;
|
|
3620
3620
|
};
|
|
3621
3621
|
};
|
|
3622
|
-
type
|
|
3622
|
+
type UpdateLinkedInOrganizationResponse = ({
|
|
3623
3623
|
message?: string;
|
|
3624
3624
|
account?: SocialAccount;
|
|
3625
3625
|
});
|
|
3626
|
-
type
|
|
3626
|
+
type UpdateLinkedInOrganizationError = (unknown | {
|
|
3627
3627
|
error?: string;
|
|
3628
3628
|
});
|
|
3629
|
-
type
|
|
3629
|
+
type GetLinkedInMentionsData = {
|
|
3630
3630
|
path: {
|
|
3631
3631
|
/**
|
|
3632
3632
|
* The LinkedIn account ID
|
|
@@ -3650,7 +3650,7 @@ type GetV1AccountsByAccountIdLinkedinMentionsData = {
|
|
|
3650
3650
|
url: string;
|
|
3651
3651
|
};
|
|
3652
3652
|
};
|
|
3653
|
-
type
|
|
3653
|
+
type GetLinkedInMentionsResponse = ({
|
|
3654
3654
|
/**
|
|
3655
3655
|
* The LinkedIn URN (person or organization)
|
|
3656
3656
|
*/
|
|
@@ -3676,15 +3676,15 @@ type GetV1AccountsByAccountIdLinkedinMentionsResponse = ({
|
|
|
3676
3676
|
*/
|
|
3677
3677
|
warning?: string;
|
|
3678
3678
|
});
|
|
3679
|
-
type
|
|
3679
|
+
type GetLinkedInMentionsError = ({
|
|
3680
3680
|
error?: string;
|
|
3681
3681
|
});
|
|
3682
|
-
type
|
|
3682
|
+
type GetPinterestBoardsData = {
|
|
3683
3683
|
path: {
|
|
3684
3684
|
accountId: string;
|
|
3685
3685
|
};
|
|
3686
3686
|
};
|
|
3687
|
-
type
|
|
3687
|
+
type GetPinterestBoardsResponse = ({
|
|
3688
3688
|
boards?: Array<{
|
|
3689
3689
|
id?: string;
|
|
3690
3690
|
name?: string;
|
|
@@ -3692,10 +3692,10 @@ type GetV1AccountsByAccountIdPinterestBoardsResponse = ({
|
|
|
3692
3692
|
privacy?: string;
|
|
3693
3693
|
}>;
|
|
3694
3694
|
});
|
|
3695
|
-
type
|
|
3695
|
+
type GetPinterestBoardsError = (unknown | {
|
|
3696
3696
|
error?: string;
|
|
3697
3697
|
});
|
|
3698
|
-
type
|
|
3698
|
+
type UpdatePinterestBoardsData = {
|
|
3699
3699
|
body: {
|
|
3700
3700
|
defaultBoardId: string;
|
|
3701
3701
|
defaultBoardName?: string;
|
|
@@ -3704,19 +3704,19 @@ type PutV1AccountsByAccountIdPinterestBoardsData = {
|
|
|
3704
3704
|
accountId: string;
|
|
3705
3705
|
};
|
|
3706
3706
|
};
|
|
3707
|
-
type
|
|
3707
|
+
type UpdatePinterestBoardsResponse = ({
|
|
3708
3708
|
message?: string;
|
|
3709
3709
|
account?: SocialAccount;
|
|
3710
3710
|
});
|
|
3711
|
-
type
|
|
3711
|
+
type UpdatePinterestBoardsError = (unknown | {
|
|
3712
3712
|
error?: string;
|
|
3713
3713
|
});
|
|
3714
|
-
type
|
|
3714
|
+
type GetRedditSubredditsData = {
|
|
3715
3715
|
path: {
|
|
3716
3716
|
accountId: string;
|
|
3717
3717
|
};
|
|
3718
3718
|
};
|
|
3719
|
-
type
|
|
3719
|
+
type GetRedditSubredditsResponse = ({
|
|
3720
3720
|
subreddits?: Array<{
|
|
3721
3721
|
name?: string;
|
|
3722
3722
|
displayName?: string;
|
|
@@ -3724,10 +3724,10 @@ type GetV1AccountsByAccountIdRedditSubredditsResponse = ({
|
|
|
3724
3724
|
public_description?: string;
|
|
3725
3725
|
}>;
|
|
3726
3726
|
});
|
|
3727
|
-
type
|
|
3727
|
+
type GetRedditSubredditsError = (unknown | {
|
|
3728
3728
|
error?: string;
|
|
3729
3729
|
});
|
|
3730
|
-
type
|
|
3730
|
+
type UpdateRedditSubredditsData = {
|
|
3731
3731
|
body: {
|
|
3732
3732
|
defaultSubreddit: string;
|
|
3733
3733
|
};
|
|
@@ -3735,14 +3735,14 @@ type PutV1AccountsByAccountIdRedditSubredditsData = {
|
|
|
3735
3735
|
accountId: string;
|
|
3736
3736
|
};
|
|
3737
3737
|
};
|
|
3738
|
-
type
|
|
3738
|
+
type UpdateRedditSubredditsResponse = ({
|
|
3739
3739
|
message?: string;
|
|
3740
3740
|
account?: SocialAccount;
|
|
3741
3741
|
});
|
|
3742
|
-
type
|
|
3742
|
+
type UpdateRedditSubredditsError = (unknown | {
|
|
3743
3743
|
error?: string;
|
|
3744
3744
|
});
|
|
3745
|
-
type
|
|
3745
|
+
type ListQueueSlotsData = {
|
|
3746
3746
|
query: {
|
|
3747
3747
|
/**
|
|
3748
3748
|
* Set to 'true' to list all queues for the profile
|
|
@@ -3758,7 +3758,7 @@ type GetV1QueueSlotsData = {
|
|
|
3758
3758
|
queueId?: string;
|
|
3759
3759
|
};
|
|
3760
3760
|
};
|
|
3761
|
-
type
|
|
3761
|
+
type ListQueueSlotsResponse = (({
|
|
3762
3762
|
exists?: boolean;
|
|
3763
3763
|
schedule?: QueueSchedule;
|
|
3764
3764
|
nextSlots?: Array<(string)>;
|
|
@@ -3766,10 +3766,10 @@ type GetV1QueueSlotsResponse = (({
|
|
|
3766
3766
|
queues?: Array<QueueSchedule>;
|
|
3767
3767
|
count?: number;
|
|
3768
3768
|
}));
|
|
3769
|
-
type
|
|
3769
|
+
type ListQueueSlotsError = (unknown | {
|
|
3770
3770
|
error?: string;
|
|
3771
3771
|
});
|
|
3772
|
-
type
|
|
3772
|
+
type CreateQueueSlotData = {
|
|
3773
3773
|
body: {
|
|
3774
3774
|
/**
|
|
3775
3775
|
* Profile ID
|
|
@@ -3787,15 +3787,15 @@ type PostV1QueueSlotsData = {
|
|
|
3787
3787
|
active?: boolean;
|
|
3788
3788
|
};
|
|
3789
3789
|
};
|
|
3790
|
-
type
|
|
3790
|
+
type CreateQueueSlotResponse = ({
|
|
3791
3791
|
success?: boolean;
|
|
3792
3792
|
schedule?: QueueSchedule;
|
|
3793
3793
|
nextSlots?: Array<(string)>;
|
|
3794
3794
|
});
|
|
3795
|
-
type
|
|
3795
|
+
type CreateQueueSlotError = (unknown | {
|
|
3796
3796
|
error?: string;
|
|
3797
3797
|
});
|
|
3798
|
-
type
|
|
3798
|
+
type UpdateQueueSlotData = {
|
|
3799
3799
|
body: {
|
|
3800
3800
|
profileId: string;
|
|
3801
3801
|
/**
|
|
@@ -3819,16 +3819,16 @@ type PutV1QueueSlotsData = {
|
|
|
3819
3819
|
reshuffleExisting?: boolean;
|
|
3820
3820
|
};
|
|
3821
3821
|
};
|
|
3822
|
-
type
|
|
3822
|
+
type UpdateQueueSlotResponse = ({
|
|
3823
3823
|
success?: boolean;
|
|
3824
3824
|
schedule?: QueueSchedule;
|
|
3825
3825
|
nextSlots?: Array<(string)>;
|
|
3826
3826
|
reshuffledCount?: number;
|
|
3827
3827
|
});
|
|
3828
|
-
type
|
|
3828
|
+
type UpdateQueueSlotError = (unknown | {
|
|
3829
3829
|
error?: string;
|
|
3830
3830
|
});
|
|
3831
|
-
type
|
|
3831
|
+
type DeleteQueueSlotData = {
|
|
3832
3832
|
query: {
|
|
3833
3833
|
profileId: string;
|
|
3834
3834
|
/**
|
|
@@ -3837,28 +3837,28 @@ type DeleteV1QueueSlotsData = {
|
|
|
3837
3837
|
queueId: string;
|
|
3838
3838
|
};
|
|
3839
3839
|
};
|
|
3840
|
-
type
|
|
3840
|
+
type DeleteQueueSlotResponse = ({
|
|
3841
3841
|
success?: boolean;
|
|
3842
3842
|
deleted?: boolean;
|
|
3843
3843
|
});
|
|
3844
|
-
type
|
|
3844
|
+
type DeleteQueueSlotError = (unknown | {
|
|
3845
3845
|
error?: string;
|
|
3846
3846
|
});
|
|
3847
|
-
type
|
|
3847
|
+
type PreviewQueueData = {
|
|
3848
3848
|
query: {
|
|
3849
3849
|
count?: number;
|
|
3850
3850
|
profileId: string;
|
|
3851
3851
|
};
|
|
3852
3852
|
};
|
|
3853
|
-
type
|
|
3853
|
+
type PreviewQueueResponse = ({
|
|
3854
3854
|
profileId?: string;
|
|
3855
3855
|
count?: number;
|
|
3856
3856
|
slots?: Array<(string)>;
|
|
3857
3857
|
});
|
|
3858
|
-
type
|
|
3858
|
+
type PreviewQueueError = (unknown | {
|
|
3859
3859
|
error?: string;
|
|
3860
3860
|
});
|
|
3861
|
-
type
|
|
3861
|
+
type GetNextQueueSlotData = {
|
|
3862
3862
|
query: {
|
|
3863
3863
|
profileId: string;
|
|
3864
3864
|
/**
|
|
@@ -3867,7 +3867,7 @@ type GetV1QueueNextSlotData = {
|
|
|
3867
3867
|
queueId?: string;
|
|
3868
3868
|
};
|
|
3869
3869
|
};
|
|
3870
|
-
type
|
|
3870
|
+
type GetNextQueueSlotResponse = ({
|
|
3871
3871
|
profileId?: string;
|
|
3872
3872
|
nextSlot?: string;
|
|
3873
3873
|
timezone?: string;
|
|
@@ -3880,16 +3880,16 @@ type GetV1QueueNextSlotResponse = ({
|
|
|
3880
3880
|
*/
|
|
3881
3881
|
queueName?: string;
|
|
3882
3882
|
});
|
|
3883
|
-
type
|
|
3883
|
+
type GetNextQueueSlotError = (unknown | {
|
|
3884
3884
|
error?: string;
|
|
3885
3885
|
});
|
|
3886
|
-
type
|
|
3886
|
+
type GetWebhookSettingsResponse = ({
|
|
3887
3887
|
webhooks?: Array<Webhook>;
|
|
3888
3888
|
});
|
|
3889
|
-
type
|
|
3889
|
+
type GetWebhookSettingsError = ({
|
|
3890
3890
|
error?: string;
|
|
3891
3891
|
});
|
|
3892
|
-
type
|
|
3892
|
+
type CreateWebhookSettingsData = {
|
|
3893
3893
|
body: {
|
|
3894
3894
|
/**
|
|
3895
3895
|
* Webhook name (max 50 characters)
|
|
@@ -3919,14 +3919,14 @@ type PostV1WebhooksSettingsData = {
|
|
|
3919
3919
|
};
|
|
3920
3920
|
};
|
|
3921
3921
|
};
|
|
3922
|
-
type
|
|
3922
|
+
type CreateWebhookSettingsResponse = ({
|
|
3923
3923
|
success?: boolean;
|
|
3924
3924
|
webhook?: Webhook;
|
|
3925
3925
|
});
|
|
3926
|
-
type
|
|
3926
|
+
type CreateWebhookSettingsError = (unknown | {
|
|
3927
3927
|
error?: string;
|
|
3928
3928
|
});
|
|
3929
|
-
type
|
|
3929
|
+
type UpdateWebhookSettingsData = {
|
|
3930
3930
|
body: {
|
|
3931
3931
|
/**
|
|
3932
3932
|
* Webhook ID to update (required)
|
|
@@ -3960,14 +3960,14 @@ type PutV1WebhooksSettingsData = {
|
|
|
3960
3960
|
};
|
|
3961
3961
|
};
|
|
3962
3962
|
};
|
|
3963
|
-
type
|
|
3963
|
+
type UpdateWebhookSettingsResponse = ({
|
|
3964
3964
|
success?: boolean;
|
|
3965
3965
|
webhook?: Webhook;
|
|
3966
3966
|
});
|
|
3967
|
-
type
|
|
3967
|
+
type UpdateWebhookSettingsError = (unknown | {
|
|
3968
3968
|
error?: string;
|
|
3969
3969
|
});
|
|
3970
|
-
type
|
|
3970
|
+
type DeleteWebhookSettingsData = {
|
|
3971
3971
|
query: {
|
|
3972
3972
|
/**
|
|
3973
3973
|
* Webhook ID to delete
|
|
@@ -3975,13 +3975,13 @@ type DeleteV1WebhooksSettingsData = {
|
|
|
3975
3975
|
id: string;
|
|
3976
3976
|
};
|
|
3977
3977
|
};
|
|
3978
|
-
type
|
|
3978
|
+
type DeleteWebhookSettingsResponse = ({
|
|
3979
3979
|
success?: boolean;
|
|
3980
3980
|
});
|
|
3981
|
-
type
|
|
3981
|
+
type DeleteWebhookSettingsError = (unknown | {
|
|
3982
3982
|
error?: string;
|
|
3983
3983
|
});
|
|
3984
|
-
type
|
|
3984
|
+
type TestWebhookData = {
|
|
3985
3985
|
body: {
|
|
3986
3986
|
/**
|
|
3987
3987
|
* ID of the webhook to test
|
|
@@ -3989,17 +3989,17 @@ type PostV1WebhooksTestData = {
|
|
|
3989
3989
|
webhookId: string;
|
|
3990
3990
|
};
|
|
3991
3991
|
};
|
|
3992
|
-
type
|
|
3992
|
+
type TestWebhookResponse = ({
|
|
3993
3993
|
success?: boolean;
|
|
3994
3994
|
message?: string;
|
|
3995
3995
|
});
|
|
3996
|
-
type
|
|
3996
|
+
type TestWebhookError = (unknown | {
|
|
3997
3997
|
error?: string;
|
|
3998
3998
|
} | {
|
|
3999
3999
|
success?: boolean;
|
|
4000
4000
|
message?: string;
|
|
4001
4001
|
});
|
|
4002
|
-
type
|
|
4002
|
+
type GetWebhookLogsData = {
|
|
4003
4003
|
query?: {
|
|
4004
4004
|
/**
|
|
4005
4005
|
* Filter by event type
|
|
@@ -4019,13 +4019,13 @@ type GetV1WebhooksLogsData = {
|
|
|
4019
4019
|
webhookId?: string;
|
|
4020
4020
|
};
|
|
4021
4021
|
};
|
|
4022
|
-
type
|
|
4022
|
+
type GetWebhookLogsResponse = ({
|
|
4023
4023
|
logs?: Array<WebhookLog>;
|
|
4024
4024
|
});
|
|
4025
|
-
type
|
|
4025
|
+
type GetWebhookLogsError = ({
|
|
4026
4026
|
error?: string;
|
|
4027
4027
|
});
|
|
4028
|
-
type
|
|
4028
|
+
type ListLogsData = {
|
|
4029
4029
|
query?: {
|
|
4030
4030
|
/**
|
|
4031
4031
|
* Filter by action type
|
|
@@ -4053,7 +4053,7 @@ type GetV1LogsData = {
|
|
|
4053
4053
|
status?: 'success' | 'failed' | 'pending' | 'skipped' | 'all';
|
|
4054
4054
|
};
|
|
4055
4055
|
};
|
|
4056
|
-
type
|
|
4056
|
+
type ListLogsResponse = ({
|
|
4057
4057
|
logs?: Array<PostLog>;
|
|
4058
4058
|
pagination?: {
|
|
4059
4059
|
/**
|
|
@@ -4069,10 +4069,10 @@ type GetV1LogsResponse = ({
|
|
|
4069
4069
|
hasMore?: boolean;
|
|
4070
4070
|
};
|
|
4071
4071
|
});
|
|
4072
|
-
type
|
|
4072
|
+
type ListLogsError = ({
|
|
4073
4073
|
error?: string;
|
|
4074
4074
|
});
|
|
4075
|
-
type
|
|
4075
|
+
type GetLogData = {
|
|
4076
4076
|
path: {
|
|
4077
4077
|
/**
|
|
4078
4078
|
* The log entry ID
|
|
@@ -4080,13 +4080,13 @@ type GetV1LogsByLogIdData = {
|
|
|
4080
4080
|
logId: string;
|
|
4081
4081
|
};
|
|
4082
4082
|
};
|
|
4083
|
-
type
|
|
4083
|
+
type GetLogResponse = ({
|
|
4084
4084
|
log?: PostLogDetail;
|
|
4085
4085
|
});
|
|
4086
|
-
type
|
|
4086
|
+
type GetLogError = ({
|
|
4087
4087
|
error?: string;
|
|
4088
4088
|
} | unknown);
|
|
4089
|
-
type
|
|
4089
|
+
type GetPostLogsData = {
|
|
4090
4090
|
path: {
|
|
4091
4091
|
/**
|
|
4092
4092
|
* The post ID
|
|
@@ -4100,7 +4100,7 @@ type GetV1PostsByPostIdLogsData = {
|
|
|
4100
4100
|
limit?: number;
|
|
4101
4101
|
};
|
|
4102
4102
|
};
|
|
4103
|
-
type
|
|
4103
|
+
type GetPostLogsResponse = ({
|
|
4104
4104
|
logs?: Array<PostLog>;
|
|
4105
4105
|
/**
|
|
4106
4106
|
* Number of logs returned
|
|
@@ -4108,8 +4108,8 @@ type GetV1PostsByPostIdLogsResponse = ({
|
|
|
4108
4108
|
count?: number;
|
|
4109
4109
|
postId?: string;
|
|
4110
4110
|
});
|
|
4111
|
-
type
|
|
4111
|
+
type GetPostLogsError = ({
|
|
4112
4112
|
error?: string;
|
|
4113
4113
|
} | unknown);
|
|
4114
4114
|
|
|
4115
|
-
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type CaptionResponse, type ClientOptions, type DeleteV1AccountGroupsByGroupIdData, type DeleteV1AccountGroupsByGroupIdError, type DeleteV1AccountGroupsByGroupIdResponse, type DeleteV1AccountsByAccountIdData, type DeleteV1AccountsByAccountIdError, type DeleteV1AccountsByAccountIdResponse, type DeleteV1ApiKeysByKeyIdData, type DeleteV1ApiKeysByKeyIdError, type DeleteV1ApiKeysByKeyIdResponse, type DeleteV1PlatformInvitesData, type DeleteV1PlatformInvitesError, type DeleteV1PlatformInvitesResponse, type DeleteV1PostsByPostIdData, type DeleteV1PostsByPostIdError, type DeleteV1PostsByPostIdResponse, type DeleteV1ProfilesByProfileIdData, type DeleteV1ProfilesByProfileIdError, type DeleteV1ProfilesByProfileIdResponse, type DeleteV1QueueSlotsData, type DeleteV1QueueSlotsError, type DeleteV1QueueSlotsResponse, type DeleteV1WebhooksSettingsData, type DeleteV1WebhooksSettingsError, type DeleteV1WebhooksSettingsResponse, type DownloadFormat, type DownloadResponse, type ErrorResponse, type FacebookPlatformData, type FollowerStatsResponse, type GetV1AccountGroupsError, type GetV1AccountGroupsResponse, type GetV1AccountsByAccountIdGmbReviewsData, type GetV1AccountsByAccountIdGmbReviewsError, type GetV1AccountsByAccountIdGmbReviewsResponse, type GetV1AccountsByAccountIdHealthData, type GetV1AccountsByAccountIdHealthError, type GetV1AccountsByAccountIdHealthResponse, type GetV1AccountsByAccountIdLinkedinAggregateAnalyticsData, type GetV1AccountsByAccountIdLinkedinAggregateAnalyticsError, type GetV1AccountsByAccountIdLinkedinAggregateAnalyticsResponse, type GetV1AccountsByAccountIdLinkedinMentionsData, type GetV1AccountsByAccountIdLinkedinMentionsError, type GetV1AccountsByAccountIdLinkedinMentionsResponse, type GetV1AccountsByAccountIdLinkedinOrganizationsData, type GetV1AccountsByAccountIdLinkedinOrganizationsError, type GetV1AccountsByAccountIdLinkedinOrganizationsResponse, type GetV1AccountsByAccountIdLinkedinPostAnalyticsData, type GetV1AccountsByAccountIdLinkedinPostAnalyticsError, type GetV1AccountsByAccountIdLinkedinPostAnalyticsResponse, type GetV1AccountsByAccountIdPinterestBoardsData, type GetV1AccountsByAccountIdPinterestBoardsError, type GetV1AccountsByAccountIdPinterestBoardsResponse, type GetV1AccountsByAccountIdRedditSubredditsData, type GetV1AccountsByAccountIdRedditSubredditsError, type GetV1AccountsByAccountIdRedditSubredditsResponse, type GetV1AccountsData, type GetV1AccountsError, type GetV1AccountsFollowerStatsData, type GetV1AccountsFollowerStatsError, type GetV1AccountsFollowerStatsResponse, type GetV1AccountsHealthData, type GetV1AccountsHealthError, type GetV1AccountsHealthResponse, type GetV1AccountsResponse, type GetV1AnalyticsData, type GetV1AnalyticsError, type GetV1AnalyticsResponse, type GetV1AnalyticsYoutubeDailyViewsData, type GetV1AnalyticsYoutubeDailyViewsError, type GetV1AnalyticsYoutubeDailyViewsResponse, type GetV1ApiKeysError, type GetV1ApiKeysResponse, type GetV1ConnectByPlatformData, type GetV1ConnectByPlatformError, type GetV1ConnectByPlatformResponse, type GetV1ConnectFacebookSelectPageData, type GetV1ConnectFacebookSelectPageError, type GetV1ConnectFacebookSelectPageResponse, type GetV1ConnectGooglebusinessLocationsData, type GetV1ConnectGooglebusinessLocationsError, type GetV1ConnectGooglebusinessLocationsResponse, type GetV1ConnectLinkedinOrganizationsData, type GetV1ConnectLinkedinOrganizationsError, type GetV1ConnectLinkedinOrganizationsResponse, type GetV1ConnectPinterestSelectBoardData, type GetV1ConnectPinterestSelectBoardError, type GetV1ConnectPinterestSelectBoardResponse, type GetV1ConnectSnapchatSelectProfileData, type GetV1ConnectSnapchatSelectProfileError, type GetV1ConnectSnapchatSelectProfileResponse, type GetV1ConnectTelegramData, type GetV1ConnectTelegramError, type GetV1ConnectTelegramResponse, type GetV1LogsByLogIdData, type GetV1LogsByLogIdError, type GetV1LogsByLogIdResponse, type GetV1LogsData, type GetV1LogsError, type GetV1LogsResponse, type GetV1PlatformInvitesData, type GetV1PlatformInvitesError, type GetV1PlatformInvitesResponse, type GetV1PostsByPostIdData, type GetV1PostsByPostIdError, type GetV1PostsByPostIdLogsData, type GetV1PostsByPostIdLogsError, type GetV1PostsByPostIdLogsResponse, type GetV1PostsByPostIdResponse, type GetV1PostsData, type GetV1PostsError, type GetV1PostsResponse, type GetV1ProfilesByProfileIdData, type GetV1ProfilesByProfileIdError, type GetV1ProfilesByProfileIdResponse, type GetV1ProfilesData, type GetV1ProfilesError, type GetV1ProfilesResponse, type GetV1QueueNextSlotData, type GetV1QueueNextSlotError, type GetV1QueueNextSlotResponse, type GetV1QueuePreviewData, type GetV1QueuePreviewError, type GetV1QueuePreviewResponse, type GetV1QueueSlotsData, type GetV1QueueSlotsError, type GetV1QueueSlotsResponse, type GetV1RedditFeedData, type GetV1RedditFeedError, type GetV1RedditFeedResponse, type GetV1RedditSearchData, type GetV1RedditSearchError, type GetV1RedditSearchResponse, type GetV1ToolsBlueskyDownloadData, type GetV1ToolsBlueskyDownloadError, type GetV1ToolsBlueskyDownloadResponse, type GetV1ToolsFacebookDownloadData, type GetV1ToolsFacebookDownloadError, type GetV1ToolsFacebookDownloadResponse, type GetV1ToolsInstagramDownloadData, type GetV1ToolsInstagramDownloadError, type GetV1ToolsInstagramDownloadResponse, type GetV1ToolsLinkedinDownloadData, type GetV1ToolsLinkedinDownloadError, type GetV1ToolsLinkedinDownloadResponse, type GetV1ToolsTiktokDownloadData, type GetV1ToolsTiktokDownloadError, type GetV1ToolsTiktokDownloadResponse, type GetV1ToolsTwitterDownloadData, type GetV1ToolsTwitterDownloadError, type GetV1ToolsTwitterDownloadResponse, type GetV1ToolsYoutubeDownloadData, type GetV1ToolsYoutubeDownloadError, type GetV1ToolsYoutubeDownloadResponse, type GetV1ToolsYoutubeTranscriptData, type GetV1ToolsYoutubeTranscriptError, type GetV1ToolsYoutubeTranscriptResponse, type GetV1UsageStatsError, type GetV1UsageStatsResponse, type GetV1UsersByUserIdData, type GetV1UsersByUserIdError, type GetV1UsersByUserIdResponse, type GetV1UsersError, type GetV1UsersResponse, type GetV1WebhooksLogsData, type GetV1WebhooksLogsError, type GetV1WebhooksLogsResponse, type GetV1WebhooksSettingsError, type GetV1WebhooksSettingsResponse, type GoogleBusinessPlatformData, type HashtagCheckResponse, type HashtagInfo, type InstagramPlatformData, Late, LateApiError, type LinkedInAggregateAnalyticsDailyResponse, type LinkedInAggregateAnalyticsTotalResponse, type LinkedInPlatformData, type MediaItem, type MediaUploadResponse, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PatchV1ConnectTelegramData, type PatchV1ConnectTelegramError, type PatchV1ConnectTelegramResponse, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostLog, type PostLogDetail, type PostRetryResponse, type PostUpdateResponse, type PostV1AccountGroupsData, type PostV1AccountGroupsError, type PostV1AccountGroupsResponse, type PostV1ApiKeysData, type PostV1ApiKeysError, type PostV1ApiKeysResponse, type PostV1ConnectBlueskyCredentialsData, type PostV1ConnectBlueskyCredentialsError, type PostV1ConnectBlueskyCredentialsResponse, type PostV1ConnectByPlatformData, type PostV1ConnectByPlatformError, type PostV1ConnectByPlatformResponse, type PostV1ConnectFacebookSelectPageData, type PostV1ConnectFacebookSelectPageError, type PostV1ConnectFacebookSelectPageResponse, type PostV1ConnectGooglebusinessSelectLocationData, type PostV1ConnectGooglebusinessSelectLocationError, type PostV1ConnectGooglebusinessSelectLocationResponse, type PostV1ConnectLinkedinSelectOrganizationData, type PostV1ConnectLinkedinSelectOrganizationError, type PostV1ConnectLinkedinSelectOrganizationResponse, type PostV1ConnectPinterestSelectBoardData, type PostV1ConnectPinterestSelectBoardError, type PostV1ConnectPinterestSelectBoardResponse, type PostV1ConnectSnapchatSelectProfileData, type PostV1ConnectSnapchatSelectProfileError, type PostV1ConnectSnapchatSelectProfileResponse, type PostV1ConnectTelegramData, type PostV1ConnectTelegramError, type PostV1ConnectTelegramResponse, type PostV1InviteTokensData, type PostV1InviteTokensError, type PostV1InviteTokensResponse, type PostV1MediaPresignData, type PostV1MediaPresignError, type PostV1MediaPresignResponse, type PostV1PlatformInvitesData, type PostV1PlatformInvitesError, type PostV1PlatformInvitesResponse, type PostV1PostsBulkUploadData, type PostV1PostsBulkUploadError, type PostV1PostsBulkUploadResponse, type PostV1PostsByPostIdRetryData, type PostV1PostsByPostIdRetryError, type PostV1PostsByPostIdRetryResponse, type PostV1PostsData, type PostV1PostsError, type PostV1PostsResponse, type PostV1ProfilesData, type PostV1ProfilesError, type PostV1ProfilesResponse, type PostV1QueueSlotsData, type PostV1QueueSlotsError, type PostV1QueueSlotsResponse, type PostV1ToolsInstagramHashtagCheckerData, type PostV1ToolsInstagramHashtagCheckerError, type PostV1ToolsInstagramHashtagCheckerResponse, type PostV1WebhooksSettingsData, type PostV1WebhooksSettingsError, type PostV1WebhooksSettingsResponse, type PostV1WebhooksTestData, type PostV1WebhooksTestError, type PostV1WebhooksTestResponse, type PostsListResponse, type Profile, type ProfileCreateResponse, type ProfileDeleteResponse, type ProfileGetResponse, type ProfileUpdateResponse, type ProfilesListResponse, type PutV1AccountGroupsByGroupIdData, type PutV1AccountGroupsByGroupIdError, type PutV1AccountGroupsByGroupIdResponse, type PutV1AccountsByAccountIdData, type PutV1AccountsByAccountIdError, type PutV1AccountsByAccountIdFacebookPageData, type PutV1AccountsByAccountIdFacebookPageError, type PutV1AccountsByAccountIdFacebookPageResponse, type PutV1AccountsByAccountIdLinkedinOrganizationData, type PutV1AccountsByAccountIdLinkedinOrganizationError, type PutV1AccountsByAccountIdLinkedinOrganizationResponse, type PutV1AccountsByAccountIdPinterestBoardsData, type PutV1AccountsByAccountIdPinterestBoardsError, type PutV1AccountsByAccountIdPinterestBoardsResponse, type PutV1AccountsByAccountIdRedditSubredditsData, type PutV1AccountsByAccountIdRedditSubredditsError, type PutV1AccountsByAccountIdRedditSubredditsResponse, type PutV1AccountsByAccountIdResponse, type PutV1PostsByPostIdData, type PutV1PostsByPostIdError, type PutV1PostsByPostIdResponse, type PutV1ProfilesByProfileIdData, type PutV1ProfilesByProfileIdError, type PutV1ProfilesByProfileIdResponse, type PutV1QueueSlotsData, type PutV1QueueSlotsError, type PutV1QueueSlotsResponse, type PutV1WebhooksSettingsData, type PutV1WebhooksSettingsError, type PutV1WebhooksSettingsResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type ThreadsPlatformData, type TikTokPlatformData, type TikTokSettings, type TranscriptResponse, type TranscriptSegment, type TwitterPlatformData, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, ValidationError, type Webhook, type WebhookLog, type WebhookPayloadAccountDisconnected, type WebhookPayloadPost, type YouTubeDailyViewsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, type action, type aggregation, type aggregation2, type aggregation3, type billingPeriod, type commercialContentType, type contentType, type contentType2, Late as default, type disconnectionType, type event, type event2, type event3, type graduationStrategy, type mediaType, parseApiError, type parseMode, type platform, type status, type status2, type status3, type status4, type status5, type type, type type2, type type3, type visibility };
|
|
4115
|
+
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CaptionResponse, type CheckInstagramHashtagsData, type CheckInstagramHashtagsError, type CheckInstagramHashtagsResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreatePlatformInviteData, type CreatePlatformInviteError, type CreatePlatformInviteResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyResponse, type DeletePlatformInviteData, type DeletePlatformInviteError, type DeletePlatformInviteResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteWebhookSettingsData, type DeleteWebhookSettingsError, type DeleteWebhookSettingsResponse, type DownloadBlueskyMediaData, type DownloadBlueskyMediaError, type DownloadBlueskyMediaResponse, type DownloadFacebookVideoData, type DownloadFacebookVideoError, type DownloadFacebookVideoResponse, type DownloadFormat, type DownloadInstagramMediaData, type DownloadInstagramMediaError, type DownloadInstagramMediaResponse, type DownloadLinkedInVideoData, type DownloadLinkedInVideoError, type DownloadLinkedInVideoResponse, type DownloadResponse, type DownloadTikTokVideoData, type DownloadTikTokVideoError, type DownloadTikTokVideoResponse, type DownloadTwitterMediaData, type DownloadTwitterMediaError, type DownloadTwitterMediaResponse, type DownloadYouTubeVideoData, type DownloadYouTubeVideoError, type DownloadYouTubeVideoResponse, type ErrorResponse, type FacebookPlatformData, type FollowerStatsResponse, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetFollowerStatsData, type GetFollowerStatsError, type GetFollowerStatsResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrganizationsData, type GetLinkedInOrganizationsError, type GetLinkedInOrganizationsResponse, type GetLinkedInPostAnalyticsData, type GetLinkedInPostAnalyticsError, type GetLinkedInPostAnalyticsResponse, type GetLogData, type GetLogError, type GetLogResponse, type GetMediaPresignedUrlData, type GetMediaPresignedUrlError, type GetMediaPresignedUrlResponse, type GetNextQueueSlotData, type GetNextQueueSlotError, type GetNextQueueSlotResponse, type GetPinterestBoardsData, type GetPinterestBoardsError, type GetPinterestBoardsResponse, type GetPostData, type GetPostError, type GetPostLogsData, type GetPostLogsError, type GetPostLogsResponse, type GetPostResponse, type GetProfileData, type GetProfileError, type GetProfileResponse, type GetRedditFeedData, type GetRedditFeedError, type GetRedditFeedResponse, type GetRedditSubredditsData, type GetRedditSubredditsError, type GetRedditSubredditsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetWebhookLogsData, type GetWebhookLogsError, type GetWebhookLogsResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeTranscriptData, type GetYouTubeTranscriptError, type GetYouTubeTranscriptResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HashtagCheckResponse, type HashtagInfo, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InstagramPlatformData, Late, LateApiError, type LinkedInAggregateAnalyticsDailyResponse, type LinkedInAggregateAnalyticsTotalResponse, type LinkedInPlatformData, type ListAccountGroupsError, type ListAccountGroupsResponse, type ListAccountsData, type ListAccountsError, type ListAccountsResponse, type ListApiKeysError, type ListApiKeysResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListLogsData, type ListLogsError, type ListLogsResponse, type ListPinterestBoardsForSelectionData, type ListPinterestBoardsForSelectionError, type ListPinterestBoardsForSelectionResponse, type ListPlatformInvitesData, type ListPlatformInvitesError, type ListPlatformInvitesResponse, type ListPostsData, type ListPostsError, type ListPostsResponse, type ListProfilesData, type ListProfilesError, type ListProfilesResponse, type ListQueueSlotsData, type ListQueueSlotsError, type ListQueueSlotsResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type MediaItem, type MediaUploadResponse, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostLog, type PostLogDetail, type PostRetryResponse, type PostUpdateResponse, type PostsListResponse, type PreviewQueueData, type PreviewQueueError, type PreviewQueueResponse, type Profile, type ProfileCreateResponse, type ProfileDeleteResponse, type ProfileGetResponse, type ProfileUpdateResponse, type ProfilesListResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RetryPostData, type RetryPostError, type RetryPostResponse, type SearchRedditData, type SearchRedditError, type SearchRedditResponse, type SelectFacebookPageData, type SelectFacebookPageError, type SelectFacebookPageResponse, type SelectGoogleBusinessLocationData, type SelectGoogleBusinessLocationError, type SelectGoogleBusinessLocationResponse, type SelectLinkedInOrganizationData, type SelectLinkedInOrganizationError, type SelectLinkedInOrganizationResponse, type SelectPinterestBoardData, type SelectPinterestBoardError, type SelectPinterestBoardResponse, type SelectSnapchatProfileData, type SelectSnapchatProfileError, type SelectSnapchatProfileResponse, type SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TikTokSettings, type TranscriptResponse, type TranscriptSegment, type TwitterPlatformData, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateFacebookPageData, type UpdateFacebookPageError, type UpdateFacebookPageResponse, type UpdateLinkedInOrganizationData, type UpdateLinkedInOrganizationError, type UpdateLinkedInOrganizationResponse, type UpdatePinterestBoardsData, type UpdatePinterestBoardsError, type UpdatePinterestBoardsResponse, type UpdatePostData, type UpdatePostError, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, ValidationError, type Webhook, type WebhookLog, type WebhookPayloadAccountDisconnected, type WebhookPayloadPost, type YouTubeDailyViewsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, type action, type aggregation, type aggregation2, type aggregation3, type billingPeriod, type commercialContentType, type contentType, type contentType2, Late as default, type disconnectionType, type event, type event2, type event3, type graduationStrategy, type mediaType, parseApiError, type parseMode, type platform, type status, type status2, type status3, type status4, type status5, type type, type type2, type type3, type visibility };
|