@zernio/node 0.2.63 → 0.2.65
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 +9 -0
- package/dist/index.d.mts +507 -7
- package/dist/index.d.ts +507 -7
- package/dist/index.js +41 -1
- package/dist/index.mjs +41 -1
- package/package.json +1 -1
- package/src/client.ts +16 -0
- package/src/generated/sdk.gen.ts +94 -1
- package/src/generated/types.gen.ts +515 -6
package/dist/index.d.ts
CHANGED
|
@@ -260,6 +260,14 @@ declare class Zernio {
|
|
|
260
260
|
createGoogleBusinessPlaceAction: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateGoogleBusinessPlaceActionData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateGoogleBusinessPlaceActionResponse, ErrorResponse, ThrowOnError>;
|
|
261
261
|
deleteGoogleBusinessPlaceAction: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteGoogleBusinessPlaceActionData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteGoogleBusinessPlaceActionResponse, ErrorResponse, ThrowOnError>;
|
|
262
262
|
};
|
|
263
|
+
/**
|
|
264
|
+
* discord API
|
|
265
|
+
*/
|
|
266
|
+
discord: {
|
|
267
|
+
getDiscordSettings: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetDiscordSettingsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetDiscordSettingsResponse, unknown, ThrowOnError>;
|
|
268
|
+
updateDiscordSettings: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateDiscordSettingsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateDiscordSettingsResponse, unknown, ThrowOnError>;
|
|
269
|
+
getDiscordChannels: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetDiscordChannelsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetDiscordChannelsResponse, unknown, ThrowOnError>;
|
|
270
|
+
};
|
|
263
271
|
/**
|
|
264
272
|
* Queue API - Manage posting queue
|
|
265
273
|
*/
|
|
@@ -478,6 +486,8 @@ declare class Zernio {
|
|
|
478
486
|
boostPost: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<BoostPostData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<BoostPostResponse, unknown, ThrowOnError>;
|
|
479
487
|
createStandaloneAd: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateStandaloneAdData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateStandaloneAdResponse, unknown, ThrowOnError>;
|
|
480
488
|
searchAdInterests: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SearchAdInterestsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SearchAdInterestsResponse, unknown, ThrowOnError>;
|
|
489
|
+
sendConversions: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SendConversionsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SendConversionsResponse, unknown, ThrowOnError>;
|
|
490
|
+
listConversionDestinations: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListConversionDestinationsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListConversionDestinationsResponse, unknown, ThrowOnError>;
|
|
481
491
|
};
|
|
482
492
|
/**
|
|
483
493
|
* adcampaigns API
|
|
@@ -658,7 +668,10 @@ type Ad = {
|
|
|
658
668
|
platform?: 'facebook' | 'instagram' | 'tiktok' | 'linkedin' | 'pinterest' | 'google' | 'twitter';
|
|
659
669
|
status?: AdStatus;
|
|
660
670
|
adType?: 'boost' | 'standalone';
|
|
661
|
-
|
|
671
|
+
/**
|
|
672
|
+
* Available goals vary by platform. Meta (Facebook/Instagram) and TikTok support all 7. LinkedIn supports all except app_promotion. Twitter/X supports engagement, traffic, awareness, video_views, app_promotion. Pinterest and Google Ads support only engagement, traffic, awareness, video_views.
|
|
673
|
+
*/
|
|
674
|
+
goal?: 'engagement' | 'traffic' | 'awareness' | 'video_views' | 'lead_generation' | 'conversions' | 'app_promotion';
|
|
662
675
|
/**
|
|
663
676
|
* True for ads synced from platform ad managers
|
|
664
677
|
*/
|
|
@@ -772,7 +785,10 @@ type Ad = {
|
|
|
772
785
|
};
|
|
773
786
|
type platform = 'facebook' | 'instagram' | 'tiktok' | 'linkedin' | 'pinterest' | 'google' | 'twitter';
|
|
774
787
|
type adType = 'boost' | 'standalone';
|
|
775
|
-
|
|
788
|
+
/**
|
|
789
|
+
* Available goals vary by platform. Meta (Facebook/Instagram) and TikTok support all 7. LinkedIn supports all except app_promotion. Twitter/X supports engagement, traffic, awareness, video_views, app_promotion. Pinterest and Google Ads support only engagement, traffic, awareness, video_views.
|
|
790
|
+
*/
|
|
791
|
+
type goal = 'engagement' | 'traffic' | 'awareness' | 'video_views' | 'lead_generation' | 'conversions' | 'app_promotion';
|
|
776
792
|
type type = 'daily' | 'lifetime';
|
|
777
793
|
type AdCampaign = {
|
|
778
794
|
platformCampaignId?: string;
|
|
@@ -1083,6 +1099,276 @@ type BlueskyPlatformData = {
|
|
|
1083
1099
|
mediaItems?: Array<MediaItem>;
|
|
1084
1100
|
}>;
|
|
1085
1101
|
};
|
|
1102
|
+
/**
|
|
1103
|
+
* A single conversion event to relay to the ad platform. All PII fields
|
|
1104
|
+
* (email, phone, names) are hashed with SHA-256 server-side using each
|
|
1105
|
+
* platform's normalization rules before they leave Zernio. Callers send
|
|
1106
|
+
* plaintext.
|
|
1107
|
+
*
|
|
1108
|
+
*/
|
|
1109
|
+
type ConversionEvent = {
|
|
1110
|
+
/**
|
|
1111
|
+
* Standard event name (Purchase, Lead, CompleteRegistration, AddToCart,
|
|
1112
|
+
* InitiateCheckout, AddPaymentInfo, Subscribe, StartTrial, ViewContent,
|
|
1113
|
+
* Search, Contact, SubmitApplication, Schedule) or a custom string
|
|
1114
|
+
* (only supported on platforms that accept custom events).
|
|
1115
|
+
*
|
|
1116
|
+
*/
|
|
1117
|
+
eventName: string;
|
|
1118
|
+
/**
|
|
1119
|
+
* When the conversion happened, in unix seconds.
|
|
1120
|
+
*/
|
|
1121
|
+
eventTime: number;
|
|
1122
|
+
/**
|
|
1123
|
+
* Unique dedup key. The same eventId must be used on pixel + CAPI
|
|
1124
|
+
* to prevent double-counting. Mapped to event_id on Meta and
|
|
1125
|
+
* transactionId on Google.
|
|
1126
|
+
*
|
|
1127
|
+
*/
|
|
1128
|
+
eventId: string;
|
|
1129
|
+
/**
|
|
1130
|
+
* Conversion value in the specified currency.
|
|
1131
|
+
*/
|
|
1132
|
+
value?: number;
|
|
1133
|
+
/**
|
|
1134
|
+
* ISO 4217 currency code.
|
|
1135
|
+
*/
|
|
1136
|
+
currency?: string;
|
|
1137
|
+
/**
|
|
1138
|
+
* User identity fields. More signals mean higher match rates.
|
|
1139
|
+
*/
|
|
1140
|
+
user: {
|
|
1141
|
+
/**
|
|
1142
|
+
* Plaintext email. Hashed server-side.
|
|
1143
|
+
*/
|
|
1144
|
+
email?: string;
|
|
1145
|
+
/**
|
|
1146
|
+
* Phone number, ideally E.164. Hashed server-side.
|
|
1147
|
+
*/
|
|
1148
|
+
phone?: string;
|
|
1149
|
+
/**
|
|
1150
|
+
* Plaintext first name. Hashed server-side.
|
|
1151
|
+
*/
|
|
1152
|
+
firstName?: string;
|
|
1153
|
+
/**
|
|
1154
|
+
* Plaintext last name. Hashed server-side.
|
|
1155
|
+
*/
|
|
1156
|
+
lastName?: string;
|
|
1157
|
+
/**
|
|
1158
|
+
* Stable customer identifier (e.g. CRM user ID). Hashed server-side.
|
|
1159
|
+
*/
|
|
1160
|
+
externalId?: string;
|
|
1161
|
+
/**
|
|
1162
|
+
* Client IP address. Sent plaintext.
|
|
1163
|
+
*/
|
|
1164
|
+
ipAddress?: string;
|
|
1165
|
+
/**
|
|
1166
|
+
* Client user-agent string. Sent plaintext.
|
|
1167
|
+
*/
|
|
1168
|
+
userAgent?: string;
|
|
1169
|
+
/**
|
|
1170
|
+
* ISO 3166-1 alpha-2 country code, e.g. 'us'.
|
|
1171
|
+
*/
|
|
1172
|
+
country?: string;
|
|
1173
|
+
/**
|
|
1174
|
+
* Platform click identifiers captured from the originating ad click.
|
|
1175
|
+
*/
|
|
1176
|
+
clickIds?: {
|
|
1177
|
+
/**
|
|
1178
|
+
* Meta click ID (from fbclid URL param).
|
|
1179
|
+
*/
|
|
1180
|
+
fbc?: string;
|
|
1181
|
+
/**
|
|
1182
|
+
* Meta browser ID (_fbp cookie).
|
|
1183
|
+
*/
|
|
1184
|
+
fbp?: string;
|
|
1185
|
+
/**
|
|
1186
|
+
* Google click ID (from gclid URL param).
|
|
1187
|
+
*/
|
|
1188
|
+
gclid?: string;
|
|
1189
|
+
/**
|
|
1190
|
+
* Google iOS 14.5+ app attribution ID.
|
|
1191
|
+
*/
|
|
1192
|
+
gbraid?: string;
|
|
1193
|
+
/**
|
|
1194
|
+
* Google iOS 14.5+ web-to-app attribution ID.
|
|
1195
|
+
*/
|
|
1196
|
+
wbraid?: string;
|
|
1197
|
+
};
|
|
1198
|
+
};
|
|
1199
|
+
/**
|
|
1200
|
+
* Item-level detail for ecommerce events.
|
|
1201
|
+
*/
|
|
1202
|
+
items?: Array<{
|
|
1203
|
+
id?: string;
|
|
1204
|
+
name?: string;
|
|
1205
|
+
price?: number;
|
|
1206
|
+
quantity?: number;
|
|
1207
|
+
category?: string;
|
|
1208
|
+
}>;
|
|
1209
|
+
/**
|
|
1210
|
+
* URL where the conversion originated (used by Meta).
|
|
1211
|
+
*/
|
|
1212
|
+
sourceUrl?: string;
|
|
1213
|
+
/**
|
|
1214
|
+
* Where the conversion happened. Used by Meta; Google ignores.
|
|
1215
|
+
*/
|
|
1216
|
+
actionSource?: 'web' | 'app' | 'offline' | 'crm' | 'phone_call' | 'system_generated';
|
|
1217
|
+
/**
|
|
1218
|
+
* Escape hatch for platform-specific fields we haven't normalized. Forwarded as-is.
|
|
1219
|
+
*/
|
|
1220
|
+
platformData?: {
|
|
1221
|
+
[key: string]: unknown;
|
|
1222
|
+
};
|
|
1223
|
+
};
|
|
1224
|
+
/**
|
|
1225
|
+
* Where the conversion happened. Used by Meta; Google ignores.
|
|
1226
|
+
*/
|
|
1227
|
+
type actionSource = 'web' | 'app' | 'offline' | 'crm' | 'phone_call' | 'system_generated';
|
|
1228
|
+
/**
|
|
1229
|
+
* Discord message settings. Supports plain text (2,000 chars), rich embeds (up to 10), native polls, forum posts, threads, and announcement crossposts. Media attachments support images (JPEG, PNG, GIF, WebP), videos (MP4), and documents (up to 10 files, 25 MB each). Webhook identity (username + avatar) can be customized per-account via PATCH /v1/connect/discord or per-post via webhookUsername/webhookAvatarUrl.
|
|
1230
|
+
*
|
|
1231
|
+
*/
|
|
1232
|
+
type DiscordPlatformData = {
|
|
1233
|
+
/**
|
|
1234
|
+
* Target channel snowflake ID. Determines which channel in the connected server receives the message.
|
|
1235
|
+
*/
|
|
1236
|
+
channelId: string;
|
|
1237
|
+
/**
|
|
1238
|
+
* Up to 10 Discord embed objects (combined max 6,000 characters across all embeds). Sent alongside or instead of plain-text content.
|
|
1239
|
+
*/
|
|
1240
|
+
embeds?: Array<{
|
|
1241
|
+
/**
|
|
1242
|
+
* Embed title (max 256 chars)
|
|
1243
|
+
*/
|
|
1244
|
+
title?: string;
|
|
1245
|
+
/**
|
|
1246
|
+
* Embed body text (max 4,096 chars)
|
|
1247
|
+
*/
|
|
1248
|
+
description?: string;
|
|
1249
|
+
/**
|
|
1250
|
+
* URL the title links to
|
|
1251
|
+
*/
|
|
1252
|
+
url?: string;
|
|
1253
|
+
/**
|
|
1254
|
+
* Embed accent color as decimal integer (e.g. 5814783 for blue). Convert hex to decimal.
|
|
1255
|
+
*/
|
|
1256
|
+
color?: number;
|
|
1257
|
+
image?: {
|
|
1258
|
+
url?: string;
|
|
1259
|
+
};
|
|
1260
|
+
thumbnail?: {
|
|
1261
|
+
url?: string;
|
|
1262
|
+
};
|
|
1263
|
+
footer?: {
|
|
1264
|
+
/**
|
|
1265
|
+
* Footer text (max 2
|
|
1266
|
+
*/
|
|
1267
|
+
text?: string;
|
|
1268
|
+
icon_url?: string;
|
|
1269
|
+
};
|
|
1270
|
+
author?: {
|
|
1271
|
+
/**
|
|
1272
|
+
* Author name (max 256 chars)
|
|
1273
|
+
*/
|
|
1274
|
+
name?: string;
|
|
1275
|
+
url?: string;
|
|
1276
|
+
icon_url?: string;
|
|
1277
|
+
};
|
|
1278
|
+
/**
|
|
1279
|
+
* Up to 25 fields per embed
|
|
1280
|
+
*/
|
|
1281
|
+
fields?: Array<{
|
|
1282
|
+
/**
|
|
1283
|
+
* Field name (max 256 chars)
|
|
1284
|
+
*/
|
|
1285
|
+
name: string;
|
|
1286
|
+
/**
|
|
1287
|
+
* Field value (max 1
|
|
1288
|
+
*/
|
|
1289
|
+
value: string;
|
|
1290
|
+
/**
|
|
1291
|
+
* Display fields side-by-side
|
|
1292
|
+
*/
|
|
1293
|
+
inline?: boolean;
|
|
1294
|
+
}>;
|
|
1295
|
+
}>;
|
|
1296
|
+
/**
|
|
1297
|
+
* Native Discord poll. Cannot be combined with media attachments in the same message.
|
|
1298
|
+
*/
|
|
1299
|
+
poll?: {
|
|
1300
|
+
question?: {
|
|
1301
|
+
/**
|
|
1302
|
+
* Poll question (max 300 chars)
|
|
1303
|
+
*/
|
|
1304
|
+
text: string;
|
|
1305
|
+
};
|
|
1306
|
+
/**
|
|
1307
|
+
* 1-10 answer options
|
|
1308
|
+
*/
|
|
1309
|
+
answers?: Array<{
|
|
1310
|
+
poll_media?: {
|
|
1311
|
+
/**
|
|
1312
|
+
* Answer text
|
|
1313
|
+
*/
|
|
1314
|
+
text?: string;
|
|
1315
|
+
};
|
|
1316
|
+
}>;
|
|
1317
|
+
/**
|
|
1318
|
+
* Poll duration in hours (1-768). Default 24.
|
|
1319
|
+
*/
|
|
1320
|
+
duration?: number;
|
|
1321
|
+
/**
|
|
1322
|
+
* Allow users to select multiple answers. Default false.
|
|
1323
|
+
*/
|
|
1324
|
+
allow_multiselect?: boolean;
|
|
1325
|
+
};
|
|
1326
|
+
/**
|
|
1327
|
+
* Auto-crosspost to every server following this announcement channel (type 5). No-op for regular text channels.
|
|
1328
|
+
*/
|
|
1329
|
+
crosspost?: boolean;
|
|
1330
|
+
/**
|
|
1331
|
+
* Thread title for forum channel posts (type 15). Required when posting to a forum channel.
|
|
1332
|
+
*/
|
|
1333
|
+
forumThreadName?: string;
|
|
1334
|
+
/**
|
|
1335
|
+
* Tag snowflake IDs to apply to forum posts. Max 5 tags.
|
|
1336
|
+
*/
|
|
1337
|
+
forumAppliedTags?: Array<(string)>;
|
|
1338
|
+
/**
|
|
1339
|
+
* Create a follow-up thread under the published message.
|
|
1340
|
+
*/
|
|
1341
|
+
threadFromMessage?: {
|
|
1342
|
+
/**
|
|
1343
|
+
* Thread name (1-100 chars)
|
|
1344
|
+
*/
|
|
1345
|
+
name?: string;
|
|
1346
|
+
/**
|
|
1347
|
+
* Auto-archive after inactivity (minutes)
|
|
1348
|
+
*/
|
|
1349
|
+
autoArchiveDuration?: 60 | 1440 | 4320 | 10080;
|
|
1350
|
+
/**
|
|
1351
|
+
* Slow-mode duration in seconds (0-21600)
|
|
1352
|
+
*/
|
|
1353
|
+
rateLimitPerUser?: number;
|
|
1354
|
+
};
|
|
1355
|
+
/**
|
|
1356
|
+
* Send as text-to-speech message. Discord reads the message aloud in the channel.
|
|
1357
|
+
*/
|
|
1358
|
+
tts?: boolean;
|
|
1359
|
+
/**
|
|
1360
|
+
* Override the webhook display name for this post only (1-80 chars). Falls back to the account-level default set via PATCH /v1/connect/discord.
|
|
1361
|
+
*/
|
|
1362
|
+
webhookUsername?: string;
|
|
1363
|
+
/**
|
|
1364
|
+
* Override the webhook avatar URL for this post only. Falls back to the account-level default.
|
|
1365
|
+
*/
|
|
1366
|
+
webhookAvatarUrl?: string;
|
|
1367
|
+
};
|
|
1368
|
+
/**
|
|
1369
|
+
* Auto-archive after inactivity (minutes)
|
|
1370
|
+
*/
|
|
1371
|
+
type autoArchiveDuration = 60 | 1440 | 4320 | 10080;
|
|
1086
1372
|
type ErrorResponse = {
|
|
1087
1373
|
error?: string;
|
|
1088
1374
|
details?: {
|
|
@@ -1658,6 +1944,10 @@ type PinterestPlatformData = {
|
|
|
1658
1944
|
type PlatformAnalytics = {
|
|
1659
1945
|
platform?: string;
|
|
1660
1946
|
status?: 'published' | 'failed';
|
|
1947
|
+
/**
|
|
1948
|
+
* The native post ID on the platform (e.g. Instagram media ID, tweet ID)
|
|
1949
|
+
*/
|
|
1950
|
+
platformPostId?: (string) | null;
|
|
1661
1951
|
accountId?: string;
|
|
1662
1952
|
accountUsername?: (string) | null;
|
|
1663
1953
|
analytics?: (PostAnalytics) | null;
|
|
@@ -1694,7 +1984,7 @@ type PlatformTarget = {
|
|
|
1694
1984
|
/**
|
|
1695
1985
|
* Platform-specific overrides and options.
|
|
1696
1986
|
*/
|
|
1697
|
-
platformSpecificData?: (TwitterPlatformData | ThreadsPlatformData | FacebookPlatformData | InstagramPlatformData | LinkedInPlatformData | PinterestPlatformData | YouTubePlatformData | GoogleBusinessPlatformData | TikTokPlatformData | TelegramPlatformData | SnapchatPlatformData | RedditPlatformData | BlueskyPlatformData);
|
|
1987
|
+
platformSpecificData?: (TwitterPlatformData | ThreadsPlatformData | FacebookPlatformData | InstagramPlatformData | LinkedInPlatformData | PinterestPlatformData | YouTubePlatformData | GoogleBusinessPlatformData | TikTokPlatformData | TelegramPlatformData | SnapchatPlatformData | RedditPlatformData | BlueskyPlatformData | DiscordPlatformData);
|
|
1698
1988
|
/**
|
|
1699
1989
|
* Platform-specific status: pending, publishing, published, failed
|
|
1700
1990
|
*/
|
|
@@ -3978,7 +4268,7 @@ type CreatePostData = {
|
|
|
3978
4268
|
* Optional per-platform scheduled time override. When omitted, the top-level scheduledFor is used.
|
|
3979
4269
|
*/
|
|
3980
4270
|
scheduledFor?: string;
|
|
3981
|
-
platformSpecificData?: (TwitterPlatformData | ThreadsPlatformData | FacebookPlatformData | InstagramPlatformData | LinkedInPlatformData | PinterestPlatformData | YouTubePlatformData | GoogleBusinessPlatformData | TikTokPlatformData | TelegramPlatformData | SnapchatPlatformData | RedditPlatformData | BlueskyPlatformData);
|
|
4271
|
+
platformSpecificData?: (TwitterPlatformData | ThreadsPlatformData | FacebookPlatformData | InstagramPlatformData | LinkedInPlatformData | PinterestPlatformData | YouTubePlatformData | GoogleBusinessPlatformData | TikTokPlatformData | TelegramPlatformData | SnapchatPlatformData | RedditPlatformData | BlueskyPlatformData | DiscordPlatformData);
|
|
3982
4272
|
}>;
|
|
3983
4273
|
scheduledFor?: string;
|
|
3984
4274
|
publishNow?: boolean;
|
|
@@ -6631,6 +6921,122 @@ type GetRedditFlairsResponse = ({
|
|
|
6631
6921
|
type GetRedditFlairsError = (unknown | {
|
|
6632
6922
|
error?: string;
|
|
6633
6923
|
});
|
|
6924
|
+
type GetDiscordSettingsData = {
|
|
6925
|
+
path: {
|
|
6926
|
+
accountId: string;
|
|
6927
|
+
};
|
|
6928
|
+
};
|
|
6929
|
+
type GetDiscordSettingsResponse = ({
|
|
6930
|
+
account?: {
|
|
6931
|
+
_id?: string;
|
|
6932
|
+
platform?: string;
|
|
6933
|
+
/**
|
|
6934
|
+
* Channel name
|
|
6935
|
+
*/
|
|
6936
|
+
username?: string;
|
|
6937
|
+
/**
|
|
6938
|
+
* Guild - #channel display name
|
|
6939
|
+
*/
|
|
6940
|
+
displayName?: string;
|
|
6941
|
+
/**
|
|
6942
|
+
* Guild icon URL
|
|
6943
|
+
*/
|
|
6944
|
+
profilePicture?: string;
|
|
6945
|
+
/**
|
|
6946
|
+
* Connected channel snowflake ID
|
|
6947
|
+
*/
|
|
6948
|
+
channelId?: string;
|
|
6949
|
+
/**
|
|
6950
|
+
* Channel name
|
|
6951
|
+
*/
|
|
6952
|
+
channelName?: string;
|
|
6953
|
+
/**
|
|
6954
|
+
* Channel type (0 = text, 5 = announcement, 15 = forum)
|
|
6955
|
+
*/
|
|
6956
|
+
channelType?: string;
|
|
6957
|
+
/**
|
|
6958
|
+
* Guild (server) snowflake ID
|
|
6959
|
+
*/
|
|
6960
|
+
guildId?: string;
|
|
6961
|
+
/**
|
|
6962
|
+
* Custom webhook display name (null = default "Zernio")
|
|
6963
|
+
*/
|
|
6964
|
+
webhookUsername?: (string) | null;
|
|
6965
|
+
/**
|
|
6966
|
+
* Custom webhook avatar URL (null = default bot avatar)
|
|
6967
|
+
*/
|
|
6968
|
+
webhookAvatarUrl?: (string) | null;
|
|
6969
|
+
};
|
|
6970
|
+
});
|
|
6971
|
+
type GetDiscordSettingsError = (unknown | {
|
|
6972
|
+
error?: string;
|
|
6973
|
+
});
|
|
6974
|
+
type UpdateDiscordSettingsData = {
|
|
6975
|
+
body: {
|
|
6976
|
+
/**
|
|
6977
|
+
* Discord account ID
|
|
6978
|
+
*/
|
|
6979
|
+
accountId: string;
|
|
6980
|
+
/**
|
|
6981
|
+
* Custom display name for the webhook (1-80 chars). Empty string resets to default ("Zernio"). Cannot contain "clyde" or "discord".
|
|
6982
|
+
*/
|
|
6983
|
+
webhookUsername?: string;
|
|
6984
|
+
/**
|
|
6985
|
+
* Custom avatar URL. Empty string resets to default bot avatar.
|
|
6986
|
+
*/
|
|
6987
|
+
webhookAvatarUrl?: string;
|
|
6988
|
+
/**
|
|
6989
|
+
* Switch to a different channel in the same guild. Must be a text (0), announcement (5), or forum (15) channel.
|
|
6990
|
+
*/
|
|
6991
|
+
channelId?: string;
|
|
6992
|
+
};
|
|
6993
|
+
path: {
|
|
6994
|
+
accountId: string;
|
|
6995
|
+
};
|
|
6996
|
+
};
|
|
6997
|
+
type UpdateDiscordSettingsResponse = ({
|
|
6998
|
+
message?: string;
|
|
6999
|
+
account?: {
|
|
7000
|
+
_id?: string;
|
|
7001
|
+
platform?: string;
|
|
7002
|
+
username?: string;
|
|
7003
|
+
displayName?: string;
|
|
7004
|
+
profilePicture?: string;
|
|
7005
|
+
channelId?: string;
|
|
7006
|
+
channelName?: string;
|
|
7007
|
+
channelType?: string;
|
|
7008
|
+
guildId?: string;
|
|
7009
|
+
webhookUsername?: (string) | null;
|
|
7010
|
+
webhookAvatarUrl?: (string) | null;
|
|
7011
|
+
};
|
|
7012
|
+
});
|
|
7013
|
+
type UpdateDiscordSettingsError = (unknown | {
|
|
7014
|
+
error?: string;
|
|
7015
|
+
});
|
|
7016
|
+
type GetDiscordChannelsData = {
|
|
7017
|
+
path: {
|
|
7018
|
+
accountId: string;
|
|
7019
|
+
};
|
|
7020
|
+
};
|
|
7021
|
+
type GetDiscordChannelsResponse = ({
|
|
7022
|
+
channels?: Array<{
|
|
7023
|
+
/**
|
|
7024
|
+
* Channel snowflake ID
|
|
7025
|
+
*/
|
|
7026
|
+
id?: string;
|
|
7027
|
+
/**
|
|
7028
|
+
* Channel name
|
|
7029
|
+
*/
|
|
7030
|
+
name?: string;
|
|
7031
|
+
/**
|
|
7032
|
+
* Channel type: 0 (text), 5 (announcement), 15 (forum)
|
|
7033
|
+
*/
|
|
7034
|
+
type?: number;
|
|
7035
|
+
}>;
|
|
7036
|
+
});
|
|
7037
|
+
type GetDiscordChannelsError = (unknown | {
|
|
7038
|
+
error?: string;
|
|
7039
|
+
});
|
|
6634
7040
|
type ListQueueSlotsData = {
|
|
6635
7041
|
query: {
|
|
6636
7042
|
/**
|
|
@@ -10868,7 +11274,10 @@ type BoostPostData = {
|
|
|
10868
11274
|
*/
|
|
10869
11275
|
adAccountId: string;
|
|
10870
11276
|
name: string;
|
|
10871
|
-
|
|
11277
|
+
/**
|
|
11278
|
+
* Available goals vary by platform. Meta (Facebook/Instagram) and TikTok support all 7. LinkedIn supports all except app_promotion. Twitter/X supports engagement, traffic, awareness, video_views, app_promotion. Pinterest and Google Ads support only engagement, traffic, awareness, video_views.
|
|
11279
|
+
*/
|
|
11280
|
+
goal: 'engagement' | 'traffic' | 'awareness' | 'video_views' | 'lead_generation' | 'conversions' | 'app_promotion';
|
|
10872
11281
|
budget: {
|
|
10873
11282
|
/**
|
|
10874
11283
|
* Minimum varies: TikTok=$20, Pinterest=$5, others=$1
|
|
@@ -10925,7 +11334,10 @@ type CreateStandaloneAdData = {
|
|
|
10925
11334
|
accountId: string;
|
|
10926
11335
|
adAccountId: string;
|
|
10927
11336
|
name: string;
|
|
10928
|
-
|
|
11337
|
+
/**
|
|
11338
|
+
* Available goals vary by platform. Meta (Facebook/Instagram) and TikTok support all 7. LinkedIn supports all except app_promotion. Twitter/X supports engagement, traffic, awareness, video_views, app_promotion. Pinterest and Google Ads support only engagement, traffic, awareness, video_views.
|
|
11339
|
+
*/
|
|
11340
|
+
goal: 'engagement' | 'traffic' | 'awareness' | 'video_views' | 'lead_generation' | 'conversions' | 'app_promotion';
|
|
10929
11341
|
budgetAmount: number;
|
|
10930
11342
|
budgetType: 'daily' | 'lifetime';
|
|
10931
11343
|
currency?: string;
|
|
@@ -11151,5 +11563,93 @@ type AddUsersToAdAudienceResponse = ({
|
|
|
11151
11563
|
type AddUsersToAdAudienceError = (unknown | {
|
|
11152
11564
|
error?: string;
|
|
11153
11565
|
});
|
|
11566
|
+
type SendConversionsData = {
|
|
11567
|
+
body: {
|
|
11568
|
+
/**
|
|
11569
|
+
* SocialAccount ID (metaads or googleads).
|
|
11570
|
+
*/
|
|
11571
|
+
accountId: string;
|
|
11572
|
+
/**
|
|
11573
|
+
* Platform destination identifier. For Meta, the pixel/dataset
|
|
11574
|
+
* ID. For Google, the conversion action resource name.
|
|
11575
|
+
*
|
|
11576
|
+
*/
|
|
11577
|
+
destinationId: string;
|
|
11578
|
+
events: Array<ConversionEvent>;
|
|
11579
|
+
/**
|
|
11580
|
+
* Meta `test_event_code` passthrough. Ignored by Google.
|
|
11581
|
+
*/
|
|
11582
|
+
testCode?: string;
|
|
11583
|
+
/**
|
|
11584
|
+
* Batch-level user consent. Required by Google for EEA/UK
|
|
11585
|
+
* events under the Feb 2026 restrictions. Ignored by Meta.
|
|
11586
|
+
*
|
|
11587
|
+
*/
|
|
11588
|
+
consent?: {
|
|
11589
|
+
adUserData?: 'GRANTED' | 'DENIED';
|
|
11590
|
+
adPersonalization?: 'GRANTED' | 'DENIED';
|
|
11591
|
+
};
|
|
11592
|
+
};
|
|
11593
|
+
};
|
|
11594
|
+
type SendConversionsResponse = ({
|
|
11595
|
+
platform?: 'metaads' | 'googleads';
|
|
11596
|
+
/**
|
|
11597
|
+
* Events accepted by the platform.
|
|
11598
|
+
*/
|
|
11599
|
+
eventsReceived?: number;
|
|
11600
|
+
/**
|
|
11601
|
+
* Events rejected (see failures).
|
|
11602
|
+
*/
|
|
11603
|
+
eventsFailed?: number;
|
|
11604
|
+
failures?: Array<{
|
|
11605
|
+
/**
|
|
11606
|
+
* Index into the submitted events array.
|
|
11607
|
+
*/
|
|
11608
|
+
eventIndex?: number;
|
|
11609
|
+
/**
|
|
11610
|
+
* Echoes back the eventId of the failed event.
|
|
11611
|
+
*/
|
|
11612
|
+
eventId?: string;
|
|
11613
|
+
message?: string;
|
|
11614
|
+
code?: (string | number);
|
|
11615
|
+
}>;
|
|
11616
|
+
/**
|
|
11617
|
+
* Platform trace ID (fbtrace_id for Meta, requestId for Google) for debugging.
|
|
11618
|
+
*/
|
|
11619
|
+
traceId?: string;
|
|
11620
|
+
});
|
|
11621
|
+
type SendConversionsError = (unknown | {
|
|
11622
|
+
error?: string;
|
|
11623
|
+
});
|
|
11624
|
+
type ListConversionDestinationsData = {
|
|
11625
|
+
path: {
|
|
11626
|
+
/**
|
|
11627
|
+
* SocialAccount ID (metaads or googleads).
|
|
11628
|
+
*/
|
|
11629
|
+
accountId: string;
|
|
11630
|
+
};
|
|
11631
|
+
};
|
|
11632
|
+
type ListConversionDestinationsResponse = ({
|
|
11633
|
+
platform?: 'metaads' | 'googleads';
|
|
11634
|
+
destinations?: Array<{
|
|
11635
|
+
/**
|
|
11636
|
+
* Destination identifier. Meta: pixel ID. Google:
|
|
11637
|
+
* conversion action resource name.
|
|
11638
|
+
*
|
|
11639
|
+
*/
|
|
11640
|
+
id?: string;
|
|
11641
|
+
name?: string;
|
|
11642
|
+
/**
|
|
11643
|
+
* Present when the platform locks event type to the
|
|
11644
|
+
* destination (Google conversion actions).
|
|
11645
|
+
*
|
|
11646
|
+
*/
|
|
11647
|
+
type?: string;
|
|
11648
|
+
status?: 'active' | 'inactive';
|
|
11649
|
+
}>;
|
|
11650
|
+
});
|
|
11651
|
+
type ListConversionDestinationsError = (unknown | {
|
|
11652
|
+
error?: string;
|
|
11653
|
+
});
|
|
11154
11654
|
|
|
11155
|
-
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type ActivateSequenceData, type ActivateSequenceError, type ActivateSequenceResponse, type Ad, type AdCampaign, type AdMetrics, type AdStatus, type AdTreeAdSet, type AdTreeCampaign, type AddBroadcastRecipientsData, type AddBroadcastRecipientsError, type AddBroadcastRecipientsResponse, type AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddUsersToAdAudienceData, type AddUsersToAdAudienceError, type AddUsersToAdAudienceResponse, type AddWhatsAppGroupParticipantsData, type AddWhatsAppGroupParticipantsError, type AddWhatsAppGroupParticipantsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type ApproveWhatsAppGroupJoinRequestsData, type ApproveWhatsAppGroupJoinRequestsError, type ApproveWhatsAppGroupJoinRequestsResponse, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BoostPostData, type BoostPostError, type BoostPostResponse, type BulkCreateContactsData, type BulkCreateContactsError, type BulkCreateContactsResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CancelBroadcastData, type CancelBroadcastError, type CancelBroadcastResponse, type ClearContactFieldValueData, type ClearContactFieldValueError, type ClearContactFieldValueResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type ConnectAdsData, type ConnectAdsError, type ConnectAdsResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateAdAudienceData, type CreateAdAudienceError, type CreateAdAudienceResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateBroadcastData, type CreateBroadcastError, type CreateBroadcastResponse, type CreateCommentAutomationData, type CreateCommentAutomationError, type CreateCommentAutomationResponse, type CreateContactData, type CreateContactError, type CreateContactResponse, type CreateCustomFieldData, type CreateCustomFieldError, type CreateCustomFieldResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInboxConversationData, type CreateInboxConversationError, type CreateInboxConversationResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateSequenceData, type CreateSequenceError, type CreateSequenceResponse, type CreateStandaloneAdData, type CreateStandaloneAdError, type CreateStandaloneAdResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppFlowData, type CreateWhatsAppFlowError, type CreateWhatsAppFlowResponse, type CreateWhatsAppGroupChatData, type CreateWhatsAppGroupChatError, type CreateWhatsAppGroupChatResponse, type CreateWhatsAppGroupInviteLinkData, type CreateWhatsAppGroupInviteLinkError, type CreateWhatsAppGroupInviteLinkResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteAdAudienceData, type DeleteAdAudienceError, type DeleteAdAudienceResponse, type DeleteAdData, type DeleteAdError, type DeleteAdResponse, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyResponse, type DeleteBroadcastData, type DeleteBroadcastError, type DeleteBroadcastResponse, type DeleteCommentAutomationData, type DeleteCommentAutomationError, type DeleteCommentAutomationResponse, type DeleteContactData, type DeleteContactError, type DeleteContactResponse, type DeleteCustomFieldData, type DeleteCustomFieldError, type DeleteCustomFieldResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxMessageData, type DeleteInboxMessageError, type DeleteInboxMessageResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteMessengerMenuData, type DeleteMessengerMenuError, type DeleteMessengerMenuResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteSequenceData, type DeleteSequenceError, type DeleteSequenceResponse, type DeleteTelegramCommandsData, type DeleteTelegramCommandsError, type DeleteTelegramCommandsResponse, type DeleteWebhookSettingsData, type DeleteWebhookSettingsError, type DeleteWebhookSettingsResponse, type DeleteWhatsAppFlowData, type DeleteWhatsAppFlowError, type DeleteWhatsAppFlowResponse, type DeleteWhatsAppGroupChatData, type DeleteWhatsAppGroupChatError, type DeleteWhatsAppGroupChatResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, type DeprecateWhatsAppFlowData, type DeprecateWhatsAppFlowError, type DeprecateWhatsAppFlowResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type EditPostData, type EditPostError, type EditPostResponse, type EnrollContactsData, type EnrollContactsError, type EnrollContactsResponse, type ErrorResponse, type FacebookPlatformData, type FollowUserData, type FollowUserError, type FollowUserResponse, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAdAnalyticsData, type GetAdAnalyticsError, type GetAdAnalyticsResponse, type GetAdAudienceData, type GetAdAudienceError, type GetAdAudienceResponse, type GetAdData, type GetAdError, type GetAdResponse, type GetAdTreeData, type GetAdTreeError, type GetAdTreeResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetBroadcastData, type GetBroadcastError, type GetBroadcastResponse, type GetCommentAutomationData, type GetCommentAutomationError, type GetCommentAutomationResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetContactChannelsData, type GetContactChannelsError, type GetContactChannelsResponse, type GetContactData, type GetContactError, type GetContactResponse, type GetContentDecayData, type GetContentDecayError, type GetContentDecayResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetFacebookPagesData, type GetFacebookPagesError, type GetFacebookPagesResponse, type GetFollowerStatsData, type GetFollowerStatsError, type GetFollowerStatsResponse, type GetGmbLocationsData, type GetGmbLocationsError, type GetGmbLocationsResponse, type GetGoogleBusinessAttributesData, type GetGoogleBusinessAttributesError, type GetGoogleBusinessAttributesResponse, type GetGoogleBusinessFoodMenusData, type GetGoogleBusinessFoodMenusError, type GetGoogleBusinessFoodMenusResponse, type GetGoogleBusinessLocationDetailsData, type GetGoogleBusinessLocationDetailsError, type GetGoogleBusinessLocationDetailsResponse, type GetGoogleBusinessPerformanceData, type GetGoogleBusinessPerformanceError, type GetGoogleBusinessPerformanceResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetGoogleBusinessSearchKeywordsData, type GetGoogleBusinessSearchKeywordsError, type GetGoogleBusinessSearchKeywordsResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetInstagramAccountInsightsData, type GetInstagramAccountInsightsError, type GetInstagramAccountInsightsResponse, type GetInstagramDemographicsData, type GetInstagramDemographicsError, type GetInstagramDemographicsResponse, type GetInstagramIceBreakersData, type GetInstagramIceBreakersError, type GetInstagramIceBreakersResponse, 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 GetLinkedInPostReactionsData, type GetLinkedInPostReactionsError, type GetLinkedInPostReactionsResponse, type GetMediaPresignedUrlData, type GetMediaPresignedUrlError, type GetMediaPresignedUrlResponse, type GetMessengerMenuData, type GetMessengerMenuError, type GetMessengerMenuResponse, type GetNextQueueSlotData, type GetNextQueueSlotError, type GetNextQueueSlotResponse, type GetPendingOAuthDataData, type GetPendingOAuthDataError, type GetPendingOAuthDataResponse, type GetPinterestBoardsData, type GetPinterestBoardsError, type GetPinterestBoardsResponse, type GetPostData, type GetPostError, type GetPostResponse, type GetPostTimelineData, type GetPostTimelineError, type GetPostTimelineResponse, type GetPostingFrequencyData, type GetPostingFrequencyError, type GetPostingFrequencyResponse, type GetProfileData, type GetProfileError, type GetProfileResponse, type GetRedditFeedData, type GetRedditFeedError, type GetRedditFeedResponse, type GetRedditFlairsData, type GetRedditFlairsError, type GetRedditFlairsResponse, type GetRedditSubredditsData, type GetRedditSubredditsError, type GetRedditSubredditsResponse, type GetSequenceData, type GetSequenceError, type GetSequenceResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetWhatsAppBusinessProfileData, type GetWhatsAppBusinessProfileError, type GetWhatsAppBusinessProfileResponse, type GetWhatsAppDisplayNameData, type GetWhatsAppDisplayNameError, type GetWhatsAppDisplayNameResponse, type GetWhatsAppFlowData, type GetWhatsAppFlowError, type GetWhatsAppFlowJsonData, type GetWhatsAppFlowJsonError, type GetWhatsAppFlowJsonResponse, type GetWhatsAppFlowResponse, type GetWhatsAppGroupChatData, type GetWhatsAppGroupChatError, type GetWhatsAppGroupChatResponse, type GetWhatsAppPhoneNumberData, type GetWhatsAppPhoneNumberError, type GetWhatsAppPhoneNumberResponse, type GetWhatsAppPhoneNumbersData, type GetWhatsAppPhoneNumbersError, type GetWhatsAppPhoneNumbersResponse, type GetWhatsAppTemplateData, type GetWhatsAppTemplateError, type GetWhatsAppTemplateResponse, type GetWhatsAppTemplatesData, type GetWhatsAppTemplatesError, type GetWhatsAppTemplatesResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeDemographicsData, type GetYouTubeDemographicsError, type GetYouTubeDemographicsResponse, type GetYoutubePlaylistsData, type GetYoutubePlaylistsError, type GetYoutubePlaylistsResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type InboxWebhookAccount, type InboxWebhookConversation, type InboxWebhookMessage, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InstagramAccountInsightsResponse, type InstagramDemographicsResponse, type InstagramPlatformData, Late, LateApiError, type LikeInboxCommentData, type LikeInboxCommentError, type LikeInboxCommentResponse, type LinkedInAggregateAnalyticsDailyResponse, type LinkedInAggregateAnalyticsTotalResponse, type LinkedInPlatformData, type ListAccountGroupsError, type ListAccountGroupsResponse, type ListAccountsData, type ListAccountsError, type ListAccountsResponse, type ListAdAccountsData, type ListAdAccountsError, type ListAdAccountsResponse, type ListAdAudiencesData, type ListAdAudiencesError, type ListAdAudiencesResponse, type ListAdCampaignsData, type ListAdCampaignsError, type ListAdCampaignsResponse, type ListAdsData, type ListAdsError, type ListAdsResponse, type ListApiKeysError, type ListApiKeysResponse, type ListBroadcastRecipientsData, type ListBroadcastRecipientsError, type ListBroadcastRecipientsResponse, type ListBroadcastsData, type ListBroadcastsError, type ListBroadcastsResponse, type ListCommentAutomationLogsData, type ListCommentAutomationLogsError, type ListCommentAutomationLogsResponse, type ListCommentAutomationsData, type ListCommentAutomationsError, type ListCommentAutomationsResponse, type ListContactsData, type ListContactsError, type ListContactsResponse, type ListCustomFieldsData, type ListCustomFieldsError, type ListCustomFieldsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListGoogleBusinessMediaData, type ListGoogleBusinessMediaError, type ListGoogleBusinessMediaResponse, type ListGoogleBusinessPlaceActionsData, type ListGoogleBusinessPlaceActionsError, type ListGoogleBusinessPlaceActionsResponse, type ListInboxCommentsData, type ListInboxCommentsError, type ListInboxCommentsResponse, type ListInboxConversationsData, type ListInboxConversationsError, type ListInboxConversationsResponse, type ListInboxReviewsData, type ListInboxReviewsError, type ListInboxReviewsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListLogsData, type ListLogsError, type ListLogsResponse, type ListPinterestBoardsForSelectionData, type ListPinterestBoardsForSelectionError, type ListPinterestBoardsForSelectionResponse, type ListPostsData, type ListPostsError, type ListPostsResponse, type ListProfilesData, type ListProfilesError, type ListProfilesResponse, type ListQueueSlotsData, type ListQueueSlotsError, type ListQueueSlotsResponse, type ListSequenceEnrollmentsData, type ListSequenceEnrollmentsError, type ListSequenceEnrollmentsResponse, type ListSequencesData, type ListSequencesError, type ListSequencesResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type ListWhatsAppFlowsData, type ListWhatsAppFlowsError, type ListWhatsAppFlowsResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type MediaItem, type MediaUploadResponse, type Money, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PauseSequenceData, type PauseSequenceError, type PauseSequenceResponse, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, 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 PublishWhatsAppFlowData, type PublishWhatsAppFlowError, type PublishWhatsAppFlowResponse, type PurchaseWhatsAppPhoneNumberData, type PurchaseWhatsAppPhoneNumberError, type PurchaseWhatsAppPhoneNumberResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type RedditPost, type RejectWhatsAppGroupJoinRequestsData, type RejectWhatsAppGroupJoinRequestsError, type RejectWhatsAppGroupJoinRequestsResponse, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type ScheduleBroadcastData, type ScheduleBroadcastError, type ScheduleBroadcastResponse, type SearchAdInterestsData, type SearchAdInterestsError, type SearchAdInterestsResponse, 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 SendBroadcastData, type SendBroadcastError, type SendBroadcastResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SendTypingIndicatorData, type SendTypingIndicatorError, type SendTypingIndicatorResponse, type SendWhatsAppFlowMessageData, type SendWhatsAppFlowMessageError, type SendWhatsAppFlowMessageResponse, type SetContactFieldValueData, type SetContactFieldValueError, type SetContactFieldValueResponse, type SetInstagramIceBreakersData, type SetInstagramIceBreakersError, type SetInstagramIceBreakersResponse, type SetMessengerMenuData, type SetMessengerMenuError, type SetMessengerMenuResponse, type SetTelegramCommandsData, type SetTelegramCommandsError, type SetTelegramCommandsResponse, type SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TwitterPlatformData, type UndoRetweetData, type UndoRetweetError, type UndoRetweetResponse, type UnenrollContactData, type UnenrollContactError, type UnenrollContactResponse, type UnfollowUserData, type UnfollowUserError, type UnfollowUserResponse, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateAdCampaignStatusData, type UpdateAdCampaignStatusError, type UpdateAdCampaignStatusResponse, type UpdateAdData, type UpdateAdError, type UpdateAdResponse, type UpdateBroadcastData, type UpdateBroadcastError, type UpdateBroadcastResponse, type UpdateCommentAutomationData, type UpdateCommentAutomationError, type UpdateCommentAutomationResponse, type UpdateContactData, type UpdateContactError, type UpdateContactResponse, type UpdateCustomFieldData, type UpdateCustomFieldError, type UpdateCustomFieldResponse, type UpdateFacebookPageData, type UpdateFacebookPageError, type UpdateFacebookPageResponse, type UpdateGmbLocationData, type UpdateGmbLocationError, type UpdateGmbLocationResponse, type UpdateGoogleBusinessAttributesData, type UpdateGoogleBusinessAttributesError, type UpdateGoogleBusinessAttributesResponse, type UpdateGoogleBusinessFoodMenusData, type UpdateGoogleBusinessFoodMenusError, type UpdateGoogleBusinessFoodMenusResponse, type UpdateGoogleBusinessLocationDetailsData, type UpdateGoogleBusinessLocationDetailsError, type UpdateGoogleBusinessLocationDetailsResponse, type UpdateInboxConversationData, type UpdateInboxConversationError, type UpdateInboxConversationResponse, type UpdateLinkedInOrganizationData, type UpdateLinkedInOrganizationError, type UpdateLinkedInOrganizationResponse, type UpdatePinterestBoardsData, type UpdatePinterestBoardsError, type UpdatePinterestBoardsResponse, type UpdatePostData, type UpdatePostError, type UpdatePostMetadataData, type UpdatePostMetadataError, type UpdatePostMetadataResponse, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateSequenceData, type UpdateSequenceError, type UpdateSequenceResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppDisplayNameData, type UpdateWhatsAppDisplayNameError, type UpdateWhatsAppDisplayNameResponse, type UpdateWhatsAppFlowData, type UpdateWhatsAppFlowError, type UpdateWhatsAppFlowResponse, type UpdateWhatsAppGroupChatData, type UpdateWhatsAppGroupChatError, type UpdateWhatsAppGroupChatResponse, type UpdateWhatsAppTemplateData, type UpdateWhatsAppTemplateError, type UpdateWhatsAppTemplateResponse, type UpdateYoutubeDefaultPlaylistData, type UpdateYoutubeDefaultPlaylistError, type UpdateYoutubeDefaultPlaylistResponse, type UploadMediaDirectData, type UploadMediaDirectError, type UploadMediaDirectResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadWhatsAppFlowJsonData, type UploadWhatsAppFlowJsonError, type UploadWhatsAppFlowJsonResponse, type UploadWhatsAppProfilePhotoData, type UploadWhatsAppProfilePhotoError, type UploadWhatsAppProfilePhotoResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, type ValidateMediaData, type ValidateMediaError, type ValidateMediaResponse, type ValidatePostData, type ValidatePostError, type ValidatePostLengthData, type ValidatePostLengthError, type ValidatePostLengthResponse, type ValidatePostResponse, type ValidateSubredditData, type ValidateSubredditError, type ValidateSubredditResponse, ValidationError, type Webhook, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadComment, type WebhookPayloadMessage, type WebhookPayloadMessageDeleted, type WebhookPayloadMessageDeliveryStatus, type WebhookPayloadMessageEdited, type WebhookPayloadMessageSent, type WebhookPayloadPost, type WebhookPayloadTest, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type YouTubeDailyViewsResponse, type YouTubeDemographicsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, Zernio, ZernioApiError, type adType, type aggregation, type aggregation2, type aggregation3, type billingPeriod, type commercialContentType, type contentType, type contentType2, type contentType3, Zernio as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event10, type event2, type event3, type event4, type event5, type event6, type event7, type event8, type event9, type format, type gapFreq, type goal, type graduationStrategy, type mediaType, type mediaType2, type metric, type metricType, type otp_type, parseApiError, type parseMode, type permission, type platform, type platform2, type platform3, type platform4, type replySettings, type scope, type status, type status2, type status3, type status4, type status5, type syncStatus, type syncStatus2, type timeframe, type type, type type2, type type3, type type4, type type5, type visibility };
|
|
11655
|
+
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type ActivateSequenceData, type ActivateSequenceError, type ActivateSequenceResponse, type Ad, type AdCampaign, type AdMetrics, type AdStatus, type AdTreeAdSet, type AdTreeCampaign, type AddBroadcastRecipientsData, type AddBroadcastRecipientsError, type AddBroadcastRecipientsResponse, type AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddUsersToAdAudienceData, type AddUsersToAdAudienceError, type AddUsersToAdAudienceResponse, type AddWhatsAppGroupParticipantsData, type AddWhatsAppGroupParticipantsError, type AddWhatsAppGroupParticipantsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type ApproveWhatsAppGroupJoinRequestsData, type ApproveWhatsAppGroupJoinRequestsError, type ApproveWhatsAppGroupJoinRequestsResponse, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BoostPostData, type BoostPostError, type BoostPostResponse, type BulkCreateContactsData, type BulkCreateContactsError, type BulkCreateContactsResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CancelBroadcastData, type CancelBroadcastError, type CancelBroadcastResponse, type ClearContactFieldValueData, type ClearContactFieldValueError, type ClearContactFieldValueResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type ConnectAdsData, type ConnectAdsError, type ConnectAdsResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type ConversionEvent, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateAdAudienceData, type CreateAdAudienceError, type CreateAdAudienceResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateBroadcastData, type CreateBroadcastError, type CreateBroadcastResponse, type CreateCommentAutomationData, type CreateCommentAutomationError, type CreateCommentAutomationResponse, type CreateContactData, type CreateContactError, type CreateContactResponse, type CreateCustomFieldData, type CreateCustomFieldError, type CreateCustomFieldResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInboxConversationData, type CreateInboxConversationError, type CreateInboxConversationResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateSequenceData, type CreateSequenceError, type CreateSequenceResponse, type CreateStandaloneAdData, type CreateStandaloneAdError, type CreateStandaloneAdResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppFlowData, type CreateWhatsAppFlowError, type CreateWhatsAppFlowResponse, type CreateWhatsAppGroupChatData, type CreateWhatsAppGroupChatError, type CreateWhatsAppGroupChatResponse, type CreateWhatsAppGroupInviteLinkData, type CreateWhatsAppGroupInviteLinkError, type CreateWhatsAppGroupInviteLinkResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteAdAudienceData, type DeleteAdAudienceError, type DeleteAdAudienceResponse, type DeleteAdData, type DeleteAdError, type DeleteAdResponse, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyResponse, type DeleteBroadcastData, type DeleteBroadcastError, type DeleteBroadcastResponse, type DeleteCommentAutomationData, type DeleteCommentAutomationError, type DeleteCommentAutomationResponse, type DeleteContactData, type DeleteContactError, type DeleteContactResponse, type DeleteCustomFieldData, type DeleteCustomFieldError, type DeleteCustomFieldResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxMessageData, type DeleteInboxMessageError, type DeleteInboxMessageResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteMessengerMenuData, type DeleteMessengerMenuError, type DeleteMessengerMenuResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteSequenceData, type DeleteSequenceError, type DeleteSequenceResponse, type DeleteTelegramCommandsData, type DeleteTelegramCommandsError, type DeleteTelegramCommandsResponse, type DeleteWebhookSettingsData, type DeleteWebhookSettingsError, type DeleteWebhookSettingsResponse, type DeleteWhatsAppFlowData, type DeleteWhatsAppFlowError, type DeleteWhatsAppFlowResponse, type DeleteWhatsAppGroupChatData, type DeleteWhatsAppGroupChatError, type DeleteWhatsAppGroupChatResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, type DeprecateWhatsAppFlowData, type DeprecateWhatsAppFlowError, type DeprecateWhatsAppFlowResponse, type DiscordPlatformData, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type EditPostData, type EditPostError, type EditPostResponse, type EnrollContactsData, type EnrollContactsError, type EnrollContactsResponse, type ErrorResponse, type FacebookPlatformData, type FollowUserData, type FollowUserError, type FollowUserResponse, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAdAnalyticsData, type GetAdAnalyticsError, type GetAdAnalyticsResponse, type GetAdAudienceData, type GetAdAudienceError, type GetAdAudienceResponse, type GetAdData, type GetAdError, type GetAdResponse, type GetAdTreeData, type GetAdTreeError, type GetAdTreeResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetBroadcastData, type GetBroadcastError, type GetBroadcastResponse, type GetCommentAutomationData, type GetCommentAutomationError, type GetCommentAutomationResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetContactChannelsData, type GetContactChannelsError, type GetContactChannelsResponse, type GetContactData, type GetContactError, type GetContactResponse, type GetContentDecayData, type GetContentDecayError, type GetContentDecayResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetDiscordChannelsData, type GetDiscordChannelsError, type GetDiscordChannelsResponse, type GetDiscordSettingsData, type GetDiscordSettingsError, type GetDiscordSettingsResponse, type GetFacebookPagesData, type GetFacebookPagesError, type GetFacebookPagesResponse, type GetFollowerStatsData, type GetFollowerStatsError, type GetFollowerStatsResponse, type GetGmbLocationsData, type GetGmbLocationsError, type GetGmbLocationsResponse, type GetGoogleBusinessAttributesData, type GetGoogleBusinessAttributesError, type GetGoogleBusinessAttributesResponse, type GetGoogleBusinessFoodMenusData, type GetGoogleBusinessFoodMenusError, type GetGoogleBusinessFoodMenusResponse, type GetGoogleBusinessLocationDetailsData, type GetGoogleBusinessLocationDetailsError, type GetGoogleBusinessLocationDetailsResponse, type GetGoogleBusinessPerformanceData, type GetGoogleBusinessPerformanceError, type GetGoogleBusinessPerformanceResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetGoogleBusinessSearchKeywordsData, type GetGoogleBusinessSearchKeywordsError, type GetGoogleBusinessSearchKeywordsResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetInstagramAccountInsightsData, type GetInstagramAccountInsightsError, type GetInstagramAccountInsightsResponse, type GetInstagramDemographicsData, type GetInstagramDemographicsError, type GetInstagramDemographicsResponse, type GetInstagramIceBreakersData, type GetInstagramIceBreakersError, type GetInstagramIceBreakersResponse, 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 GetLinkedInPostReactionsData, type GetLinkedInPostReactionsError, type GetLinkedInPostReactionsResponse, type GetMediaPresignedUrlData, type GetMediaPresignedUrlError, type GetMediaPresignedUrlResponse, type GetMessengerMenuData, type GetMessengerMenuError, type GetMessengerMenuResponse, type GetNextQueueSlotData, type GetNextQueueSlotError, type GetNextQueueSlotResponse, type GetPendingOAuthDataData, type GetPendingOAuthDataError, type GetPendingOAuthDataResponse, type GetPinterestBoardsData, type GetPinterestBoardsError, type GetPinterestBoardsResponse, type GetPostData, type GetPostError, type GetPostResponse, type GetPostTimelineData, type GetPostTimelineError, type GetPostTimelineResponse, type GetPostingFrequencyData, type GetPostingFrequencyError, type GetPostingFrequencyResponse, type GetProfileData, type GetProfileError, type GetProfileResponse, type GetRedditFeedData, type GetRedditFeedError, type GetRedditFeedResponse, type GetRedditFlairsData, type GetRedditFlairsError, type GetRedditFlairsResponse, type GetRedditSubredditsData, type GetRedditSubredditsError, type GetRedditSubredditsResponse, type GetSequenceData, type GetSequenceError, type GetSequenceResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetWhatsAppBusinessProfileData, type GetWhatsAppBusinessProfileError, type GetWhatsAppBusinessProfileResponse, type GetWhatsAppDisplayNameData, type GetWhatsAppDisplayNameError, type GetWhatsAppDisplayNameResponse, type GetWhatsAppFlowData, type GetWhatsAppFlowError, type GetWhatsAppFlowJsonData, type GetWhatsAppFlowJsonError, type GetWhatsAppFlowJsonResponse, type GetWhatsAppFlowResponse, type GetWhatsAppGroupChatData, type GetWhatsAppGroupChatError, type GetWhatsAppGroupChatResponse, type GetWhatsAppPhoneNumberData, type GetWhatsAppPhoneNumberError, type GetWhatsAppPhoneNumberResponse, type GetWhatsAppPhoneNumbersData, type GetWhatsAppPhoneNumbersError, type GetWhatsAppPhoneNumbersResponse, type GetWhatsAppTemplateData, type GetWhatsAppTemplateError, type GetWhatsAppTemplateResponse, type GetWhatsAppTemplatesData, type GetWhatsAppTemplatesError, type GetWhatsAppTemplatesResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeDemographicsData, type GetYouTubeDemographicsError, type GetYouTubeDemographicsResponse, type GetYoutubePlaylistsData, type GetYoutubePlaylistsError, type GetYoutubePlaylistsResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type InboxWebhookAccount, type InboxWebhookConversation, type InboxWebhookMessage, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InstagramAccountInsightsResponse, type InstagramDemographicsResponse, type InstagramPlatformData, Late, LateApiError, type LikeInboxCommentData, type LikeInboxCommentError, type LikeInboxCommentResponse, type LinkedInAggregateAnalyticsDailyResponse, type LinkedInAggregateAnalyticsTotalResponse, type LinkedInPlatformData, type ListAccountGroupsError, type ListAccountGroupsResponse, type ListAccountsData, type ListAccountsError, type ListAccountsResponse, type ListAdAccountsData, type ListAdAccountsError, type ListAdAccountsResponse, type ListAdAudiencesData, type ListAdAudiencesError, type ListAdAudiencesResponse, type ListAdCampaignsData, type ListAdCampaignsError, type ListAdCampaignsResponse, type ListAdsData, type ListAdsError, type ListAdsResponse, type ListApiKeysError, type ListApiKeysResponse, type ListBroadcastRecipientsData, type ListBroadcastRecipientsError, type ListBroadcastRecipientsResponse, type ListBroadcastsData, type ListBroadcastsError, type ListBroadcastsResponse, type ListCommentAutomationLogsData, type ListCommentAutomationLogsError, type ListCommentAutomationLogsResponse, type ListCommentAutomationsData, type ListCommentAutomationsError, type ListCommentAutomationsResponse, type ListContactsData, type ListContactsError, type ListContactsResponse, type ListConversionDestinationsData, type ListConversionDestinationsError, type ListConversionDestinationsResponse, type ListCustomFieldsData, type ListCustomFieldsError, type ListCustomFieldsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListGoogleBusinessMediaData, type ListGoogleBusinessMediaError, type ListGoogleBusinessMediaResponse, type ListGoogleBusinessPlaceActionsData, type ListGoogleBusinessPlaceActionsError, type ListGoogleBusinessPlaceActionsResponse, type ListInboxCommentsData, type ListInboxCommentsError, type ListInboxCommentsResponse, type ListInboxConversationsData, type ListInboxConversationsError, type ListInboxConversationsResponse, type ListInboxReviewsData, type ListInboxReviewsError, type ListInboxReviewsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListLogsData, type ListLogsError, type ListLogsResponse, type ListPinterestBoardsForSelectionData, type ListPinterestBoardsForSelectionError, type ListPinterestBoardsForSelectionResponse, type ListPostsData, type ListPostsError, type ListPostsResponse, type ListProfilesData, type ListProfilesError, type ListProfilesResponse, type ListQueueSlotsData, type ListQueueSlotsError, type ListQueueSlotsResponse, type ListSequenceEnrollmentsData, type ListSequenceEnrollmentsError, type ListSequenceEnrollmentsResponse, type ListSequencesData, type ListSequencesError, type ListSequencesResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type ListWhatsAppFlowsData, type ListWhatsAppFlowsError, type ListWhatsAppFlowsResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type MediaItem, type MediaUploadResponse, type Money, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PauseSequenceData, type PauseSequenceError, type PauseSequenceResponse, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, 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 PublishWhatsAppFlowData, type PublishWhatsAppFlowError, type PublishWhatsAppFlowResponse, type PurchaseWhatsAppPhoneNumberData, type PurchaseWhatsAppPhoneNumberError, type PurchaseWhatsAppPhoneNumberResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type RedditPost, type RejectWhatsAppGroupJoinRequestsData, type RejectWhatsAppGroupJoinRequestsError, type RejectWhatsAppGroupJoinRequestsResponse, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type ScheduleBroadcastData, type ScheduleBroadcastError, type ScheduleBroadcastResponse, type SearchAdInterestsData, type SearchAdInterestsError, type SearchAdInterestsResponse, 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 SendBroadcastData, type SendBroadcastError, type SendBroadcastResponse, type SendConversionsData, type SendConversionsError, type SendConversionsResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SendTypingIndicatorData, type SendTypingIndicatorError, type SendTypingIndicatorResponse, type SendWhatsAppFlowMessageData, type SendWhatsAppFlowMessageError, type SendWhatsAppFlowMessageResponse, type SetContactFieldValueData, type SetContactFieldValueError, type SetContactFieldValueResponse, type SetInstagramIceBreakersData, type SetInstagramIceBreakersError, type SetInstagramIceBreakersResponse, type SetMessengerMenuData, type SetMessengerMenuError, type SetMessengerMenuResponse, type SetTelegramCommandsData, type SetTelegramCommandsError, type SetTelegramCommandsResponse, type SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TwitterPlatformData, type UndoRetweetData, type UndoRetweetError, type UndoRetweetResponse, type UnenrollContactData, type UnenrollContactError, type UnenrollContactResponse, type UnfollowUserData, type UnfollowUserError, type UnfollowUserResponse, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateAdCampaignStatusData, type UpdateAdCampaignStatusError, type UpdateAdCampaignStatusResponse, type UpdateAdData, type UpdateAdError, type UpdateAdResponse, type UpdateBroadcastData, type UpdateBroadcastError, type UpdateBroadcastResponse, type UpdateCommentAutomationData, type UpdateCommentAutomationError, type UpdateCommentAutomationResponse, type UpdateContactData, type UpdateContactError, type UpdateContactResponse, type UpdateCustomFieldData, type UpdateCustomFieldError, type UpdateCustomFieldResponse, type UpdateDiscordSettingsData, type UpdateDiscordSettingsError, type UpdateDiscordSettingsResponse, type UpdateFacebookPageData, type UpdateFacebookPageError, type UpdateFacebookPageResponse, type UpdateGmbLocationData, type UpdateGmbLocationError, type UpdateGmbLocationResponse, type UpdateGoogleBusinessAttributesData, type UpdateGoogleBusinessAttributesError, type UpdateGoogleBusinessAttributesResponse, type UpdateGoogleBusinessFoodMenusData, type UpdateGoogleBusinessFoodMenusError, type UpdateGoogleBusinessFoodMenusResponse, type UpdateGoogleBusinessLocationDetailsData, type UpdateGoogleBusinessLocationDetailsError, type UpdateGoogleBusinessLocationDetailsResponse, type UpdateInboxConversationData, type UpdateInboxConversationError, type UpdateInboxConversationResponse, type UpdateLinkedInOrganizationData, type UpdateLinkedInOrganizationError, type UpdateLinkedInOrganizationResponse, type UpdatePinterestBoardsData, type UpdatePinterestBoardsError, type UpdatePinterestBoardsResponse, type UpdatePostData, type UpdatePostError, type UpdatePostMetadataData, type UpdatePostMetadataError, type UpdatePostMetadataResponse, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateSequenceData, type UpdateSequenceError, type UpdateSequenceResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppDisplayNameData, type UpdateWhatsAppDisplayNameError, type UpdateWhatsAppDisplayNameResponse, type UpdateWhatsAppFlowData, type UpdateWhatsAppFlowError, type UpdateWhatsAppFlowResponse, type UpdateWhatsAppGroupChatData, type UpdateWhatsAppGroupChatError, type UpdateWhatsAppGroupChatResponse, type UpdateWhatsAppTemplateData, type UpdateWhatsAppTemplateError, type UpdateWhatsAppTemplateResponse, type UpdateYoutubeDefaultPlaylistData, type UpdateYoutubeDefaultPlaylistError, type UpdateYoutubeDefaultPlaylistResponse, type UploadMediaDirectData, type UploadMediaDirectError, type UploadMediaDirectResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadWhatsAppFlowJsonData, type UploadWhatsAppFlowJsonError, type UploadWhatsAppFlowJsonResponse, type UploadWhatsAppProfilePhotoData, type UploadWhatsAppProfilePhotoError, type UploadWhatsAppProfilePhotoResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, type ValidateMediaData, type ValidateMediaError, type ValidateMediaResponse, type ValidatePostData, type ValidatePostError, type ValidatePostLengthData, type ValidatePostLengthError, type ValidatePostLengthResponse, type ValidatePostResponse, type ValidateSubredditData, type ValidateSubredditError, type ValidateSubredditResponse, ValidationError, type Webhook, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadComment, type WebhookPayloadMessage, type WebhookPayloadMessageDeleted, type WebhookPayloadMessageDeliveryStatus, type WebhookPayloadMessageEdited, type WebhookPayloadMessageSent, type WebhookPayloadPost, type WebhookPayloadTest, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type YouTubeDailyViewsResponse, type YouTubeDemographicsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, Zernio, ZernioApiError, type actionSource, type adType, type aggregation, type aggregation2, type aggregation3, type autoArchiveDuration, type billingPeriod, type commercialContentType, type contentType, type contentType2, type contentType3, Zernio as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event10, type event2, type event3, type event4, type event5, type event6, type event7, type event8, type event9, type format, type gapFreq, type goal, type graduationStrategy, type mediaType, type mediaType2, type metric, type metricType, type otp_type, parseApiError, type parseMode, type permission, type platform, type platform2, type platform3, type platform4, type replySettings, type scope, type status, type status2, type status3, type status4, type status5, type syncStatus, type syncStatus2, type timeframe, type type, type type2, type type3, type type4, type type5, type visibility };
|