@zernio/node 0.2.157 → 0.2.170
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 +19 -2
- package/dist/index.d.mts +1071 -93
- package/dist/index.d.ts +1071 -93
- package/dist/index.js +98 -2
- package/dist/index.mjs +98 -2
- package/package.json +1 -1
- package/src/client.ts +34 -2
- package/src/generated/sdk.gen.ts +201 -19
- package/src/generated/types.gen.ts +1144 -135
package/dist/index.d.mts
CHANGED
|
@@ -127,7 +127,7 @@ declare class Zernio {
|
|
|
127
127
|
getPost: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetPostData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PostGetResponse, unknown, ThrowOnError>;
|
|
128
128
|
updatePost: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdatePostData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
129
129
|
deletePost: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeletePostData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PostDeleteResponse, unknown, ThrowOnError>;
|
|
130
|
-
bulkUploadPosts: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<BulkUploadPostsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<
|
|
130
|
+
bulkUploadPosts: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<BulkUploadPostsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<BulkUploadResult, unknown, ThrowOnError>;
|
|
131
131
|
retryPost: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<RetryPostData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
132
132
|
unpublishPost: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UnpublishPostData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UnpublishPostResponse, unknown, ThrowOnError>;
|
|
133
133
|
editPost: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<EditPostData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<EditPostResponse, unknown, ThrowOnError>;
|
|
@@ -236,6 +236,15 @@ declare class Zernio {
|
|
|
236
236
|
completeTelegramConnect: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CompleteTelegramConnectData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CompleteTelegramConnectResponse, unknown, ThrowOnError>;
|
|
237
237
|
};
|
|
238
238
|
};
|
|
239
|
+
/**
|
|
240
|
+
* gmbverifications API
|
|
241
|
+
*/
|
|
242
|
+
gmbverifications: {
|
|
243
|
+
getGoogleBusinessVerifications: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetGoogleBusinessVerificationsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetGoogleBusinessVerificationsResponse, GetGoogleBusinessVerificationsError, ThrowOnError>;
|
|
244
|
+
startGoogleBusinessVerification: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<StartGoogleBusinessVerificationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<StartGoogleBusinessVerificationResponse, StartGoogleBusinessVerificationError, ThrowOnError>;
|
|
245
|
+
fetchGoogleBusinessVerificationOptions: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<FetchGoogleBusinessVerificationOptionsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<FetchGoogleBusinessVerificationOptionsResponse, FetchGoogleBusinessVerificationOptionsError, ThrowOnError>;
|
|
246
|
+
completeGoogleBusinessVerification: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CompleteGoogleBusinessVerificationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CompleteGoogleBusinessVerificationResponse, CompleteGoogleBusinessVerificationError, ThrowOnError>;
|
|
247
|
+
};
|
|
239
248
|
/**
|
|
240
249
|
* gmbfoodmenus API
|
|
241
250
|
*/
|
|
@@ -336,6 +345,7 @@ declare class Zernio {
|
|
|
336
345
|
editInboxMessage: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<EditInboxMessageData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<EditInboxMessageResponse, unknown, ThrowOnError>;
|
|
337
346
|
deleteInboxMessage: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteInboxMessageData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteInboxMessageResponse, unknown, ThrowOnError>;
|
|
338
347
|
sendTypingIndicator: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SendTypingIndicatorData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SendTypingIndicatorResponse, unknown, ThrowOnError>;
|
|
348
|
+
markConversationRead: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<MarkConversationReadData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<MarkConversationReadResponse, unknown, ThrowOnError>;
|
|
339
349
|
addMessageReaction: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<AddMessageReactionData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<AddMessageReactionResponse, unknown, ThrowOnError>;
|
|
340
350
|
removeMessageReaction: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<RemoveMessageReactionData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<RemoveMessageReactionResponse, unknown, ThrowOnError>;
|
|
341
351
|
uploadMediaDirect: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UploadMediaDirectData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UploadMediaDirectResponse, unknown, ThrowOnError>;
|
|
@@ -516,8 +526,16 @@ declare class Zernio {
|
|
|
516
526
|
listAdAccounts: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListAdAccountsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListAdAccountsResponse, unknown, ThrowOnError>;
|
|
517
527
|
boostPost: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<BoostPostData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<BoostPostResponse, unknown, ThrowOnError>;
|
|
518
528
|
createStandaloneAd: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateStandaloneAdData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateStandaloneAdResponse, unknown, ThrowOnError>;
|
|
529
|
+
listLeads: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<ListLeadsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListLeadsResponse, unknown, ThrowOnError>;
|
|
530
|
+
listLeadForms: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListLeadFormsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListLeadFormsResponse, unknown, ThrowOnError>;
|
|
531
|
+
createLeadForm: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateLeadFormData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateLeadFormResponse, unknown, ThrowOnError>;
|
|
532
|
+
getLeadForm: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetLeadFormData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetLeadFormResponse, GetLeadFormError, ThrowOnError>;
|
|
533
|
+
archiveLeadForm: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ArchiveLeadFormData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ArchiveLeadFormResponse, ArchiveLeadFormError, ThrowOnError>;
|
|
534
|
+
listFormLeads: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListFormLeadsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListFormLeadsResponse, ListFormLeadsError, ThrowOnError>;
|
|
535
|
+
createTestLead: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateTestLeadData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateTestLeadResponse, CreateTestLeadError, ThrowOnError>;
|
|
519
536
|
searchAdInterests: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SearchAdInterestsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SearchAdInterestsResponse, unknown, ThrowOnError>;
|
|
520
|
-
|
|
537
|
+
searchAdTargeting: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SearchAdTargetingData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SearchAdTargetingResponse, unknown, ThrowOnError>;
|
|
538
|
+
estimateAdReach: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<EstimateAdReachData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<EstimateAdReachResponse, unknown, ThrowOnError>;
|
|
521
539
|
sendConversions: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SendConversionsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SendConversionsResponse, unknown, ThrowOnError>;
|
|
522
540
|
listConversionDestinations: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListConversionDestinationsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListConversionDestinationsResponse, unknown, ThrowOnError>;
|
|
523
541
|
createConversionDestination: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateConversionDestinationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateConversionDestinationResponse, unknown, ThrowOnError>;
|
|
@@ -1401,6 +1419,66 @@ type BlueskyPlatformData = {
|
|
|
1401
1419
|
mediaItems?: Array<MediaItem>;
|
|
1402
1420
|
}>;
|
|
1403
1421
|
};
|
|
1422
|
+
/**
|
|
1423
|
+
* Result of a CSV bulk upload. The same shape is returned for `200` (all rows
|
|
1424
|
+
* succeeded or all failed) and `207` (mixed). Per-row outcomes live in `results`;
|
|
1425
|
+
* the row's success is `ok`, and failures carry machine-readable codes in `errors`.
|
|
1426
|
+
*
|
|
1427
|
+
*/
|
|
1428
|
+
type BulkUploadResult = {
|
|
1429
|
+
/**
|
|
1430
|
+
* Number of data rows processed from the CSV
|
|
1431
|
+
*/
|
|
1432
|
+
total?: number;
|
|
1433
|
+
/**
|
|
1434
|
+
* Count of rows that succeeded (results[].ok === true)
|
|
1435
|
+
*/
|
|
1436
|
+
valid?: number;
|
|
1437
|
+
/**
|
|
1438
|
+
* Count of rows that failed (total - valid)
|
|
1439
|
+
*/
|
|
1440
|
+
invalid?: number;
|
|
1441
|
+
/**
|
|
1442
|
+
* One entry per CSV data row, in row order.
|
|
1443
|
+
*/
|
|
1444
|
+
results?: Array<{
|
|
1445
|
+
/**
|
|
1446
|
+
* 1-based index of the CSV data row (header excluded)
|
|
1447
|
+
*/
|
|
1448
|
+
rowIndex?: number;
|
|
1449
|
+
/**
|
|
1450
|
+
* Whether the row was created successfully
|
|
1451
|
+
*/
|
|
1452
|
+
ok?: boolean;
|
|
1453
|
+
/**
|
|
1454
|
+
* ID of the created post. Present only when `ok` is true and not a dry run.
|
|
1455
|
+
*/
|
|
1456
|
+
createdPostId?: string;
|
|
1457
|
+
/**
|
|
1458
|
+
* Machine-readable failure codes for this row. Present only when `ok` is false.
|
|
1459
|
+
* Examples: `unknown_profile:<id>`, `no_account_for_platform:<platform>`,
|
|
1460
|
+
* `schedule_time_missing`, `rate_limited:<platform>:@<username>:<remaining>`.
|
|
1461
|
+
*
|
|
1462
|
+
*/
|
|
1463
|
+
errors?: Array<(string)>;
|
|
1464
|
+
}>;
|
|
1465
|
+
/**
|
|
1466
|
+
* Top-level advisory warnings (e.g. `rows_exceed_advisory_limit:500`). Empty when none.
|
|
1467
|
+
*/
|
|
1468
|
+
warnings?: Array<(string)>;
|
|
1469
|
+
/**
|
|
1470
|
+
* Present only when one or more rows targeted an account currently in cooldown.
|
|
1471
|
+
* Lets callers map `rate_limited:*` row errors back to structured metadata without
|
|
1472
|
+
* parsing the error strings.
|
|
1473
|
+
*
|
|
1474
|
+
*/
|
|
1475
|
+
rateLimitedAccounts?: Array<{
|
|
1476
|
+
accountId?: string;
|
|
1477
|
+
platform?: string;
|
|
1478
|
+
username?: string;
|
|
1479
|
+
rateLimitedUntil?: string;
|
|
1480
|
+
}>;
|
|
1481
|
+
};
|
|
1404
1482
|
/**
|
|
1405
1483
|
* TikTok Business Center entity. Returned by `GET /v1/ads/business-centers`. BCs are
|
|
1406
1484
|
* TikTok's agency container — one BC owns N advertisers (ad accounts). Most solo
|
|
@@ -2508,6 +2586,10 @@ type MediaItem = {
|
|
|
2508
2586
|
* Optional title for the media item. Used as the document title for LinkedIn PDF/carousel posts. If omitted, falls back to the post title, then the filename.
|
|
2509
2587
|
*/
|
|
2510
2588
|
title?: string;
|
|
2589
|
+
/**
|
|
2590
|
+
* Accessibility alternative text for an image, applied on every platform that supports it: Instagram (feed images only, not Reels/Stories), Facebook, Threads, X/Twitter (max 1000 chars), LinkedIn, Bluesky, and Pinterest (max 500 chars). Ignored on platforms without alt-text support (TikTok, YouTube, Snapchat, Telegram, Reddit, Google Business, WhatsApp) and on video items where the platform does not accept it. Set once per image; the same value is sent to each selected platform.
|
|
2591
|
+
*/
|
|
2592
|
+
altText?: string;
|
|
2511
2593
|
filename?: string;
|
|
2512
2594
|
/**
|
|
2513
2595
|
* Optional file size in bytes
|
|
@@ -3144,6 +3226,166 @@ type SocialAccount = {
|
|
|
3144
3226
|
};
|
|
3145
3227
|
};
|
|
3146
3228
|
type platform5 = 'tiktok' | 'instagram' | 'facebook' | 'youtube' | 'linkedin' | 'twitter' | 'threads' | 'pinterest' | 'reddit' | 'bluesky' | 'googlebusiness' | 'telegram' | 'snapchat' | 'discord' | 'whatsapp' | 'linkedinads' | 'metaads' | 'pinterestads' | 'tiktokads' | 'xads' | 'googleads';
|
|
3229
|
+
/**
|
|
3230
|
+
* Normalized, platform-agnostic ad-targeting spec. Every field is optional, an
|
|
3231
|
+
* empty object targets the platform's default broadest audience. Field names are
|
|
3232
|
+
* camelCase and identical across `POST /v1/ads/create` (the `targeting` object),
|
|
3233
|
+
* `POST /v1/ads/targeting/reach-estimate`, and `saved_targeting` audiences, so a
|
|
3234
|
+
* spec resolved once can be reused verbatim.
|
|
3235
|
+
*
|
|
3236
|
+
* Entity ids (`regions[].key`, `cities[].key`, `zips[].key`, `metros[].key`,
|
|
3237
|
+
* `interests[].id`, `behaviors[].id`) are the platform's opaque identifiers
|
|
3238
|
+
* resolved via `GET /v1/ads/targeting/search`. A spec is therefore meaningful only
|
|
3239
|
+
* for the platform it was built against, except the portable fields (`countries`,
|
|
3240
|
+
* `ageMin`/`ageMax`, `gender`, `incomeTier`, `languages`) which carry across
|
|
3241
|
+
* platforms. Fields a platform cannot honour are rejected at create time with
|
|
3242
|
+
* `INVALID_FIELD_VALUE` naming the offending field (not silently dropped).
|
|
3243
|
+
*
|
|
3244
|
+
*/
|
|
3245
|
+
type TargetingSpec = {
|
|
3246
|
+
/**
|
|
3247
|
+
* ISO 3166-1 alpha-2 country codes (e.g. ['US']).
|
|
3248
|
+
*/
|
|
3249
|
+
countries?: Array<(string)>;
|
|
3250
|
+
/**
|
|
3251
|
+
* Region/state targeting. `key` is the platform location ID from /v1/ads/targeting/search?dimension=geo&geoType=region.
|
|
3252
|
+
*/
|
|
3253
|
+
regions?: Array<{
|
|
3254
|
+
key: string;
|
|
3255
|
+
name?: string;
|
|
3256
|
+
}>;
|
|
3257
|
+
/**
|
|
3258
|
+
* City targeting. Optional `radius` + `distanceUnit` extend beyond the city limits; both must be set together or both omitted. `radius` is only honoured on platforms whose capability map allows city radius (Meta).
|
|
3259
|
+
*/
|
|
3260
|
+
cities?: Array<{
|
|
3261
|
+
key: string;
|
|
3262
|
+
name?: string;
|
|
3263
|
+
/**
|
|
3264
|
+
* Radius around the city. Requires distanceUnit.
|
|
3265
|
+
*/
|
|
3266
|
+
radius?: number;
|
|
3267
|
+
/**
|
|
3268
|
+
* Required if radius is set.
|
|
3269
|
+
*/
|
|
3270
|
+
distanceUnit?: 'mile' | 'kilometer';
|
|
3271
|
+
}>;
|
|
3272
|
+
/**
|
|
3273
|
+
* Postal/ZIP targeting. `key` is the platform's postal location ID (e.g. Meta `US:94304`). Supported on Meta, Google, TikTok, Pinterest, X.
|
|
3274
|
+
*/
|
|
3275
|
+
zips?: Array<{
|
|
3276
|
+
key: string;
|
|
3277
|
+
name?: string;
|
|
3278
|
+
}>;
|
|
3279
|
+
/**
|
|
3280
|
+
* DMA / metro-area targeting. `key` is the platform's metro ID (e.g. Meta `DMA:807`).
|
|
3281
|
+
*/
|
|
3282
|
+
metros?: Array<{
|
|
3283
|
+
key: string;
|
|
3284
|
+
name?: string;
|
|
3285
|
+
}>;
|
|
3286
|
+
/**
|
|
3287
|
+
* Point-radius (lat/lng) targeting (Meta custom_locations / Google proximity). Honoured only where the capability map allows radius (Meta).
|
|
3288
|
+
*/
|
|
3289
|
+
customLocations?: Array<{
|
|
3290
|
+
latitude: number;
|
|
3291
|
+
longitude: number;
|
|
3292
|
+
/**
|
|
3293
|
+
* Positive radius around the point.
|
|
3294
|
+
*/
|
|
3295
|
+
radius: number;
|
|
3296
|
+
distanceUnit: 'mile' | 'kilometer';
|
|
3297
|
+
name?: string;
|
|
3298
|
+
address?: string;
|
|
3299
|
+
}>;
|
|
3300
|
+
/**
|
|
3301
|
+
* Geo to exclude from the audience. A subset of the inclusion geo shape.
|
|
3302
|
+
*/
|
|
3303
|
+
excludedLocations?: {
|
|
3304
|
+
countries?: Array<(string)>;
|
|
3305
|
+
regions?: Array<{
|
|
3306
|
+
key: string;
|
|
3307
|
+
name?: string;
|
|
3308
|
+
}>;
|
|
3309
|
+
cities?: Array<{
|
|
3310
|
+
key: string;
|
|
3311
|
+
name?: string;
|
|
3312
|
+
}>;
|
|
3313
|
+
zips?: Array<{
|
|
3314
|
+
key: string;
|
|
3315
|
+
name?: string;
|
|
3316
|
+
}>;
|
|
3317
|
+
};
|
|
3318
|
+
ageMin?: number;
|
|
3319
|
+
ageMax?: number;
|
|
3320
|
+
/**
|
|
3321
|
+
* Restrict by gender. 'all' (default) targets everyone.
|
|
3322
|
+
*/
|
|
3323
|
+
gender?: 'all' | 'male' | 'female';
|
|
3324
|
+
/**
|
|
3325
|
+
* Normalized household-income tier (ZIP/percentile based). Meta and TikTok
|
|
3326
|
+
* express all four. Google maps only `top_10` (its INCOME_RANGE_90_UP); other
|
|
3327
|
+
* tiers on Google, and any income tier on LinkedIn / X / Pinterest, are rejected.
|
|
3328
|
+
* On Meta, income/zip targeting requires the relevant `specialAdCategories` to be
|
|
3329
|
+
* unset (housing/employment/credit ads cannot use it).
|
|
3330
|
+
*
|
|
3331
|
+
*/
|
|
3332
|
+
incomeTier?: 'top_5' | 'top_10' | 'top_10_25' | 'top_25_50';
|
|
3333
|
+
/**
|
|
3334
|
+
* Language codes (e.g. ['en']).
|
|
3335
|
+
*/
|
|
3336
|
+
languages?: Array<(string)>;
|
|
3337
|
+
/**
|
|
3338
|
+
* Interest entities from /v1/ads/targeting/search?dimension=interest. Each carries the platform's opaque id.
|
|
3339
|
+
*/
|
|
3340
|
+
interests?: Array<{
|
|
3341
|
+
id: string;
|
|
3342
|
+
name?: string;
|
|
3343
|
+
}>;
|
|
3344
|
+
/**
|
|
3345
|
+
* Behaviour entities from /v1/ads/targeting/search?dimension=behavior. Supported on Meta and TikTok.
|
|
3346
|
+
*/
|
|
3347
|
+
behaviors?: Array<{
|
|
3348
|
+
id: string;
|
|
3349
|
+
name?: string;
|
|
3350
|
+
}>;
|
|
3351
|
+
/**
|
|
3352
|
+
* LinkedIn B2B only. Industry URN id fragments.
|
|
3353
|
+
*/
|
|
3354
|
+
industries?: Array<(string)>;
|
|
3355
|
+
/**
|
|
3356
|
+
* LinkedIn B2B only.
|
|
3357
|
+
*/
|
|
3358
|
+
companySizes?: Array<(string)>;
|
|
3359
|
+
/**
|
|
3360
|
+
* LinkedIn B2B only.
|
|
3361
|
+
*/
|
|
3362
|
+
seniorities?: Array<(string)>;
|
|
3363
|
+
/**
|
|
3364
|
+
* LinkedIn B2B only.
|
|
3365
|
+
*/
|
|
3366
|
+
jobFunctions?: Array<(string)>;
|
|
3367
|
+
/**
|
|
3368
|
+
* Platform audience IDs to include.
|
|
3369
|
+
*/
|
|
3370
|
+
audienceInclude?: Array<(string)>;
|
|
3371
|
+
/**
|
|
3372
|
+
* Platform audience IDs to exclude.
|
|
3373
|
+
*/
|
|
3374
|
+
audienceExclude?: Array<(string)>;
|
|
3375
|
+
};
|
|
3376
|
+
/**
|
|
3377
|
+
* Restrict by gender. 'all' (default) targets everyone.
|
|
3378
|
+
*/
|
|
3379
|
+
type gender = 'all' | 'male' | 'female';
|
|
3380
|
+
/**
|
|
3381
|
+
* Normalized household-income tier (ZIP/percentile based). Meta and TikTok
|
|
3382
|
+
* express all four. Google maps only `top_10` (its INCOME_RANGE_90_UP); other
|
|
3383
|
+
* tiers on Google, and any income tier on LinkedIn / X / Pinterest, are rejected.
|
|
3384
|
+
* On Meta, income/zip targeting requires the relevant `specialAdCategories` to be
|
|
3385
|
+
* unset (housing/employment/credit ads cannot use it).
|
|
3386
|
+
*
|
|
3387
|
+
*/
|
|
3388
|
+
type incomeTier = 'top_5' | 'top_10' | 'top_10_25' | 'top_25_50';
|
|
3147
3389
|
/**
|
|
3148
3390
|
* Text, images (up to 10), videos (up to 10), and mixed media albums. Captions up to 1024 chars for media, 4096 for text-only.
|
|
3149
3391
|
*/
|
|
@@ -3594,7 +3836,7 @@ type Webhook = {
|
|
|
3594
3836
|
/**
|
|
3595
3837
|
* Events subscribed to
|
|
3596
3838
|
*/
|
|
3597
|
-
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'comment.received' | 'review.new' | 'review.updated' | 'ad.status_changed' | 'whatsapp.template.status_updated')>;
|
|
3839
|
+
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'ad.status_changed' | 'whatsapp.template.status_updated')>;
|
|
3598
3840
|
/**
|
|
3599
3841
|
* Whether webhook delivery is enabled
|
|
3600
3842
|
*/
|
|
@@ -4007,6 +4249,65 @@ type WebhookPayloadComment = {
|
|
|
4007
4249
|
};
|
|
4008
4250
|
type event5 = 'comment.received';
|
|
4009
4251
|
type platform7 = 'instagram' | 'facebook' | 'twitter' | 'youtube' | 'linkedin' | 'bluesky' | 'reddit';
|
|
4252
|
+
/**
|
|
4253
|
+
* Webhook payload for lead.received events (Meta Lead Gen / Instant Forms).
|
|
4254
|
+
*/
|
|
4255
|
+
type WebhookPayloadLead = {
|
|
4256
|
+
/**
|
|
4257
|
+
* Stable webhook event ID
|
|
4258
|
+
*/
|
|
4259
|
+
id: string;
|
|
4260
|
+
event: 'lead.received';
|
|
4261
|
+
lead: {
|
|
4262
|
+
/**
|
|
4263
|
+
* Zernio lead ID (AdLead document ID)
|
|
4264
|
+
*/
|
|
4265
|
+
id: string;
|
|
4266
|
+
/**
|
|
4267
|
+
* Meta lead ID (the platform's leadgen_id)
|
|
4268
|
+
*/
|
|
4269
|
+
leadgenId: string;
|
|
4270
|
+
/**
|
|
4271
|
+
* Lead Gen form ID the lead was submitted against
|
|
4272
|
+
*/
|
|
4273
|
+
formId: string;
|
|
4274
|
+
/**
|
|
4275
|
+
* Human-readable form name (best-effort; may be null)
|
|
4276
|
+
*/
|
|
4277
|
+
formName?: (string) | null;
|
|
4278
|
+
/**
|
|
4279
|
+
* Meta ad ID that drove the lead (null for organic/test leads)
|
|
4280
|
+
*/
|
|
4281
|
+
adId?: (string) | null;
|
|
4282
|
+
adsetId?: (string) | null;
|
|
4283
|
+
campaignId?: (string) | null;
|
|
4284
|
+
/**
|
|
4285
|
+
* Flattened question key -> answer map. For multiple-choice questions the value is the option key (e.g. "k1"), not the display label.
|
|
4286
|
+
*
|
|
4287
|
+
*/
|
|
4288
|
+
fields: {
|
|
4289
|
+
[key: string]: (string);
|
|
4290
|
+
};
|
|
4291
|
+
/**
|
|
4292
|
+
* True when the lead came from an organic post rather than a paid ad
|
|
4293
|
+
*/
|
|
4294
|
+
isOrganic: boolean;
|
|
4295
|
+
/**
|
|
4296
|
+
* Meta's lead creation time (ISO 8601)
|
|
4297
|
+
*/
|
|
4298
|
+
createdAt: string;
|
|
4299
|
+
};
|
|
4300
|
+
account: {
|
|
4301
|
+
/**
|
|
4302
|
+
* Social account ID (the facebook account owning the Page)
|
|
4303
|
+
*/
|
|
4304
|
+
id: string;
|
|
4305
|
+
platform: 'facebook';
|
|
4306
|
+
};
|
|
4307
|
+
timestamp: string;
|
|
4308
|
+
};
|
|
4309
|
+
type event6 = 'lead.received';
|
|
4310
|
+
type platform8 = 'facebook';
|
|
4010
4311
|
/**
|
|
4011
4312
|
* Webhook payload for message received events
|
|
4012
4313
|
*/
|
|
@@ -4290,7 +4591,7 @@ type WebhookPayloadMessage = {
|
|
|
4290
4591
|
} | null;
|
|
4291
4592
|
timestamp: string;
|
|
4292
4593
|
};
|
|
4293
|
-
type
|
|
4594
|
+
type event7 = 'message.received';
|
|
4294
4595
|
/**
|
|
4295
4596
|
* WhatsApp only. Which kind of interactive reply the user sent:
|
|
4296
4597
|
* `button_reply` (tap on an interactive button), `list_reply` (tap on a
|
|
@@ -4319,7 +4620,7 @@ type WebhookPayloadMessageDeleted = {
|
|
|
4319
4620
|
account: InboxWebhookAccount;
|
|
4320
4621
|
timestamp: string;
|
|
4321
4622
|
};
|
|
4322
|
-
type
|
|
4623
|
+
type event8 = 'message.deleted';
|
|
4323
4624
|
/**
|
|
4324
4625
|
* Shared payload for message.delivered, message.read, and
|
|
4325
4626
|
* message.failed events. Fires when the platform reports a new
|
|
@@ -4352,7 +4653,7 @@ type WebhookPayloadMessageDeliveryStatus = {
|
|
|
4352
4653
|
account: InboxWebhookAccount;
|
|
4353
4654
|
timestamp: string;
|
|
4354
4655
|
};
|
|
4355
|
-
type
|
|
4656
|
+
type event9 = 'message.delivered' | 'message.read' | 'message.failed';
|
|
4356
4657
|
/**
|
|
4357
4658
|
* Webhook payload for message.edited events. Fires when the sender
|
|
4358
4659
|
* edits a previously-sent message. Supported platforms: Instagram,
|
|
@@ -4392,7 +4693,7 @@ type WebhookPayloadMessageEdited = {
|
|
|
4392
4693
|
account: InboxWebhookAccount;
|
|
4393
4694
|
timestamp: string;
|
|
4394
4695
|
};
|
|
4395
|
-
type
|
|
4696
|
+
type event10 = 'message.edited';
|
|
4396
4697
|
/**
|
|
4397
4698
|
* Webhook payload for message sent events (fired when a message is sent via the API)
|
|
4398
4699
|
*/
|
|
@@ -4466,7 +4767,7 @@ type WebhookPayloadMessageSent = {
|
|
|
4466
4767
|
};
|
|
4467
4768
|
timestamp: string;
|
|
4468
4769
|
};
|
|
4469
|
-
type
|
|
4770
|
+
type event11 = 'message.sent';
|
|
4470
4771
|
/**
|
|
4471
4772
|
* Webhook payload for post events
|
|
4472
4773
|
*/
|
|
@@ -4492,7 +4793,7 @@ type WebhookPayloadPost = {
|
|
|
4492
4793
|
};
|
|
4493
4794
|
timestamp: string;
|
|
4494
4795
|
};
|
|
4495
|
-
type
|
|
4796
|
+
type event12 = 'post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled';
|
|
4496
4797
|
/**
|
|
4497
4798
|
* Webhook payload for the per-platform terminal events
|
|
4498
4799
|
* `post.platform.published` and `post.platform.failed`. Fires once
|
|
@@ -4566,7 +4867,69 @@ type WebhookPayloadPostPlatform = {
|
|
|
4566
4867
|
};
|
|
4567
4868
|
timestamp: string;
|
|
4568
4869
|
};
|
|
4569
|
-
type
|
|
4870
|
+
type event13 = 'post.platform.published' | 'post.platform.failed';
|
|
4871
|
+
/**
|
|
4872
|
+
* Webhook payload for reaction received events (WhatsApp, Telegram)
|
|
4873
|
+
*/
|
|
4874
|
+
type WebhookPayloadReaction = {
|
|
4875
|
+
/**
|
|
4876
|
+
* Stable webhook event ID
|
|
4877
|
+
*/
|
|
4878
|
+
id: string;
|
|
4879
|
+
event: 'reaction.received';
|
|
4880
|
+
reaction: {
|
|
4881
|
+
/**
|
|
4882
|
+
* The emoji reacted with. May be an empty string when `action` is
|
|
4883
|
+
* `removed` on WhatsApp (Meta does not report which emoji was removed).
|
|
4884
|
+
*
|
|
4885
|
+
*/
|
|
4886
|
+
emoji: string;
|
|
4887
|
+
action: 'added' | 'removed';
|
|
4888
|
+
/**
|
|
4889
|
+
* Internal Zernio message ID of the reacted-to message, when resolvable from the platform ID.
|
|
4890
|
+
*/
|
|
4891
|
+
messageId?: string;
|
|
4892
|
+
/**
|
|
4893
|
+
* Platform-native ID of the reacted-to message (e.g. WhatsApp wamid).
|
|
4894
|
+
*/
|
|
4895
|
+
platformMessageId: string;
|
|
4896
|
+
/**
|
|
4897
|
+
* The participant who added or removed the reaction.
|
|
4898
|
+
*/
|
|
4899
|
+
sender: {
|
|
4900
|
+
id: string;
|
|
4901
|
+
name?: string;
|
|
4902
|
+
username?: string;
|
|
4903
|
+
picture?: string;
|
|
4904
|
+
/**
|
|
4905
|
+
* WhatsApp only. Sender's phone number in E.164 format (with leading `+`), when available.
|
|
4906
|
+
*/
|
|
4907
|
+
phoneNumber?: (string) | null;
|
|
4908
|
+
};
|
|
4909
|
+
reactedAt: string;
|
|
4910
|
+
};
|
|
4911
|
+
conversation: {
|
|
4912
|
+
id: string;
|
|
4913
|
+
platformConversationId: string;
|
|
4914
|
+
participantId?: string;
|
|
4915
|
+
participantName?: string;
|
|
4916
|
+
participantUsername?: string;
|
|
4917
|
+
participantPicture?: string;
|
|
4918
|
+
status: 'active' | 'archived';
|
|
4919
|
+
};
|
|
4920
|
+
account: {
|
|
4921
|
+
/**
|
|
4922
|
+
* Social account ID
|
|
4923
|
+
*/
|
|
4924
|
+
id: string;
|
|
4925
|
+
platform: string;
|
|
4926
|
+
username: string;
|
|
4927
|
+
displayName?: string;
|
|
4928
|
+
};
|
|
4929
|
+
timestamp: string;
|
|
4930
|
+
};
|
|
4931
|
+
type event14 = 'reaction.received';
|
|
4932
|
+
type action = 'added' | 'removed';
|
|
4570
4933
|
/**
|
|
4571
4934
|
* Webhook payload for the review.new event (new review posted on a connected account).
|
|
4572
4935
|
*/
|
|
@@ -4584,7 +4947,7 @@ type WebhookPayloadReviewNew = {
|
|
|
4584
4947
|
};
|
|
4585
4948
|
timestamp: string;
|
|
4586
4949
|
};
|
|
4587
|
-
type
|
|
4950
|
+
type event15 = 'review.new';
|
|
4588
4951
|
/**
|
|
4589
4952
|
* Webhook payload for the review.updated event. Fired when the reviewer edits
|
|
4590
4953
|
* their text or rating, or when a reply is added (via the API or directly on the
|
|
@@ -4606,7 +4969,7 @@ type WebhookPayloadReviewUpdated = {
|
|
|
4606
4969
|
};
|
|
4607
4970
|
timestamp: string;
|
|
4608
4971
|
};
|
|
4609
|
-
type
|
|
4972
|
+
type event16 = 'review.updated';
|
|
4610
4973
|
/**
|
|
4611
4974
|
* Webhook payload for test deliveries
|
|
4612
4975
|
*/
|
|
@@ -4622,7 +4985,7 @@ type WebhookPayloadTest = {
|
|
|
4622
4985
|
message: string;
|
|
4623
4986
|
timestamp: string;
|
|
4624
4987
|
};
|
|
4625
|
-
type
|
|
4988
|
+
type event17 = 'webhook.test';
|
|
4626
4989
|
/**
|
|
4627
4990
|
* Webhook payload for the `whatsapp.template.status_updated` event.
|
|
4628
4991
|
* Fired when Meta completes (re)review of a template attached to a
|
|
@@ -4675,8 +5038,8 @@ type WebhookPayloadWhatsAppTemplateStatusUpdated = {
|
|
|
4675
5038
|
*/
|
|
4676
5039
|
timestamp: string;
|
|
4677
5040
|
};
|
|
4678
|
-
type
|
|
4679
|
-
type
|
|
5041
|
+
type event18 = 'whatsapp.template.status_updated';
|
|
5042
|
+
type platform9 = 'whatsapp';
|
|
4680
5043
|
/**
|
|
4681
5044
|
* New status. Forwarded verbatim from Meta's `event` field.
|
|
4682
5045
|
* `PENDING_DELETION` is the 24h-grace state after a delete
|
|
@@ -5011,18 +5374,12 @@ type ValidatePostData = {
|
|
|
5011
5374
|
platformSpecificData?: {
|
|
5012
5375
|
[key: string]: unknown;
|
|
5013
5376
|
};
|
|
5014
|
-
customMedia?: Array<
|
|
5015
|
-
url?: string;
|
|
5016
|
-
type?: 'image' | 'video';
|
|
5017
|
-
}>;
|
|
5377
|
+
customMedia?: Array<MediaItem>;
|
|
5018
5378
|
}>;
|
|
5019
5379
|
/**
|
|
5020
5380
|
* Root media items shared across platforms
|
|
5021
5381
|
*/
|
|
5022
|
-
mediaItems?: Array<
|
|
5023
|
-
url?: string;
|
|
5024
|
-
type?: 'image' | 'video';
|
|
5025
|
-
}>;
|
|
5382
|
+
mediaItems?: Array<MediaItem>;
|
|
5026
5383
|
};
|
|
5027
5384
|
};
|
|
5028
5385
|
type ValidatePostResponse = (({
|
|
@@ -6119,10 +6476,7 @@ type CreatePostData = {
|
|
|
6119
6476
|
* Post caption/text. Optional when media is attached or all platforms have customContent. Required for text-only posts.
|
|
6120
6477
|
*/
|
|
6121
6478
|
content?: string;
|
|
6122
|
-
mediaItems?: Array<
|
|
6123
|
-
type?: 'image' | 'video' | 'gif' | 'document';
|
|
6124
|
-
url?: string;
|
|
6125
|
-
}>;
|
|
6479
|
+
mediaItems?: Array<MediaItem>;
|
|
6126
6480
|
/**
|
|
6127
6481
|
* Target platforms and accounts for this post. Required for non-draft posts (returns 400 if empty). Drafts can omit platforms.
|
|
6128
6482
|
*/
|
|
@@ -6133,10 +6487,7 @@ type CreatePostData = {
|
|
|
6133
6487
|
* Platform-specific text override. When set, this content is used instead of the top-level post content for this platform. Useful for tailoring captions per platform (e.g. keeping tweets under 280 characters).
|
|
6134
6488
|
*/
|
|
6135
6489
|
customContent?: string;
|
|
6136
|
-
customMedia?: Array<
|
|
6137
|
-
type?: 'image' | 'video' | 'gif' | 'document';
|
|
6138
|
-
url?: string;
|
|
6139
|
-
}>;
|
|
6490
|
+
customMedia?: Array<MediaItem>;
|
|
6140
6491
|
/**
|
|
6141
6492
|
* Optional per-platform scheduled time override. When omitted, the top-level scheduledFor is used.
|
|
6142
6493
|
*/
|
|
@@ -6260,17 +6611,7 @@ type BulkUploadPostsData = {
|
|
|
6260
6611
|
dryRun?: boolean;
|
|
6261
6612
|
};
|
|
6262
6613
|
};
|
|
6263
|
-
type BulkUploadPostsResponse = (
|
|
6264
|
-
success?: boolean;
|
|
6265
|
-
totalRows?: number;
|
|
6266
|
-
created?: number;
|
|
6267
|
-
failed?: number;
|
|
6268
|
-
errors?: Array<{
|
|
6269
|
-
row?: number;
|
|
6270
|
-
error?: string;
|
|
6271
|
-
}>;
|
|
6272
|
-
posts?: Array<Post>;
|
|
6273
|
-
} | unknown);
|
|
6614
|
+
type BulkUploadPostsResponse = (BulkUploadResult);
|
|
6274
6615
|
type BulkUploadPostsError = (unknown | {
|
|
6275
6616
|
error?: string;
|
|
6276
6617
|
} | {
|
|
@@ -7443,7 +7784,7 @@ type GetGoogleBusinessReviewsResponse = ({
|
|
|
7443
7784
|
type GetGoogleBusinessReviewsError = (ErrorResponse | {
|
|
7444
7785
|
error?: string;
|
|
7445
7786
|
});
|
|
7446
|
-
type
|
|
7787
|
+
type GetGoogleBusinessVerificationsData = {
|
|
7447
7788
|
path: {
|
|
7448
7789
|
/**
|
|
7449
7790
|
* The Zernio account ID (from /v1/accounts)
|
|
@@ -7457,39 +7798,229 @@ type GetGoogleBusinessFoodMenusData = {
|
|
|
7457
7798
|
locationId?: string;
|
|
7458
7799
|
};
|
|
7459
7800
|
};
|
|
7460
|
-
type
|
|
7801
|
+
type GetGoogleBusinessVerificationsResponse = ({
|
|
7461
7802
|
success?: boolean;
|
|
7462
7803
|
accountId?: string;
|
|
7463
7804
|
locationId?: string;
|
|
7464
7805
|
/**
|
|
7465
|
-
*
|
|
7806
|
+
* Raw Voice of Merchant state from Google.
|
|
7466
7807
|
*/
|
|
7467
|
-
|
|
7468
|
-
menus?: Array<FoodMenu>;
|
|
7469
|
-
});
|
|
7470
|
-
type GetGoogleBusinessFoodMenusError = (ErrorResponse | {
|
|
7471
|
-
error?: string;
|
|
7472
|
-
});
|
|
7473
|
-
type UpdateGoogleBusinessFoodMenusData = {
|
|
7474
|
-
body: {
|
|
7808
|
+
voiceOfMerchantState?: {
|
|
7475
7809
|
/**
|
|
7476
|
-
*
|
|
7810
|
+
* True when the listing is verified and published (eligible to surface reviews
|
|
7477
7811
|
*/
|
|
7478
|
-
|
|
7812
|
+
hasVoiceOfMerchant?: boolean;
|
|
7479
7813
|
/**
|
|
7480
|
-
*
|
|
7814
|
+
* True when the authenticated user has owner/manager authority over the listing.
|
|
7481
7815
|
*/
|
|
7482
|
-
|
|
7483
|
-
};
|
|
7484
|
-
path: {
|
|
7816
|
+
hasBusinessAuthority?: boolean;
|
|
7485
7817
|
/**
|
|
7486
|
-
*
|
|
7818
|
+
* Present when verification is the path to Voice of Merchant.
|
|
7487
7819
|
*/
|
|
7488
|
-
|
|
7820
|
+
verify?: {
|
|
7821
|
+
/**
|
|
7822
|
+
* True when a verification is already in progress.
|
|
7823
|
+
*/
|
|
7824
|
+
hasPendingVerification?: boolean;
|
|
7825
|
+
};
|
|
7489
7826
|
};
|
|
7490
|
-
|
|
7827
|
+
/**
|
|
7828
|
+
* Verification history, newest first. Empty when none exist.
|
|
7829
|
+
*/
|
|
7830
|
+
verifications?: Array<{
|
|
7491
7831
|
/**
|
|
7492
|
-
*
|
|
7832
|
+
* Resource name, e.g. "locations/123/verifications/0T1776879124712". The last segment is the verificationId.
|
|
7833
|
+
*/
|
|
7834
|
+
name?: string;
|
|
7835
|
+
/**
|
|
7836
|
+
* Method used (omitted on some entries).
|
|
7837
|
+
*/
|
|
7838
|
+
method?: 'ADDRESS' | 'EMAIL' | 'PHONE_CALL' | 'SMS' | 'AUTO' | 'VETTED_PARTNER';
|
|
7839
|
+
state?: 'PENDING' | 'COMPLETED' | 'FAILED';
|
|
7840
|
+
createTime?: string;
|
|
7841
|
+
}>;
|
|
7842
|
+
});
|
|
7843
|
+
type GetGoogleBusinessVerificationsError = (ErrorResponse | {
|
|
7844
|
+
error?: string;
|
|
7845
|
+
});
|
|
7846
|
+
type StartGoogleBusinessVerificationData = {
|
|
7847
|
+
body: {
|
|
7848
|
+
/**
|
|
7849
|
+
* The verification method. Selects which method-specific field below is required.
|
|
7850
|
+
*/
|
|
7851
|
+
method: 'ADDRESS' | 'EMAIL' | 'PHONE_CALL' | 'SMS' | 'AUTO' | 'VETTED_PARTNER';
|
|
7852
|
+
languageCode?: string;
|
|
7853
|
+
/**
|
|
7854
|
+
* For PHONE_CALL / SMS.
|
|
7855
|
+
*/
|
|
7856
|
+
phoneNumber?: string;
|
|
7857
|
+
/**
|
|
7858
|
+
* For EMAIL.
|
|
7859
|
+
*/
|
|
7860
|
+
emailAddress?: string;
|
|
7861
|
+
/**
|
|
7862
|
+
* For ADDRESS (postcard) verification.
|
|
7863
|
+
*/
|
|
7864
|
+
mailerContact?: {
|
|
7865
|
+
[key: string]: unknown;
|
|
7866
|
+
};
|
|
7867
|
+
/**
|
|
7868
|
+
* ServiceBusinessContext (e.g. service address). Required for service-area businesses.
|
|
7869
|
+
*/
|
|
7870
|
+
context?: {
|
|
7871
|
+
[key: string]: unknown;
|
|
7872
|
+
};
|
|
7873
|
+
};
|
|
7874
|
+
path: {
|
|
7875
|
+
/**
|
|
7876
|
+
* The Zernio account ID (from /v1/accounts)
|
|
7877
|
+
*/
|
|
7878
|
+
accountId: string;
|
|
7879
|
+
};
|
|
7880
|
+
query?: {
|
|
7881
|
+
/**
|
|
7882
|
+
* Override which location to target. If omitted, uses the account's selected location.
|
|
7883
|
+
*/
|
|
7884
|
+
locationId?: string;
|
|
7885
|
+
};
|
|
7886
|
+
};
|
|
7887
|
+
type StartGoogleBusinessVerificationResponse = ({
|
|
7888
|
+
success?: boolean;
|
|
7889
|
+
accountId?: string;
|
|
7890
|
+
locationId?: string;
|
|
7891
|
+
verification?: {
|
|
7892
|
+
name?: string;
|
|
7893
|
+
method?: 'ADDRESS' | 'EMAIL' | 'PHONE_CALL' | 'SMS' | 'AUTO' | 'VETTED_PARTNER';
|
|
7894
|
+
state?: 'PENDING' | 'COMPLETED' | 'FAILED';
|
|
7895
|
+
createTime?: string;
|
|
7896
|
+
};
|
|
7897
|
+
});
|
|
7898
|
+
type StartGoogleBusinessVerificationError = (ErrorResponse | {
|
|
7899
|
+
error?: string;
|
|
7900
|
+
});
|
|
7901
|
+
type FetchGoogleBusinessVerificationOptionsData = {
|
|
7902
|
+
body: {
|
|
7903
|
+
languageCode: string;
|
|
7904
|
+
/**
|
|
7905
|
+
* ServiceBusinessContext. Required for service-area businesses (must include the service address).
|
|
7906
|
+
*/
|
|
7907
|
+
context?: {
|
|
7908
|
+
[key: string]: unknown;
|
|
7909
|
+
};
|
|
7910
|
+
};
|
|
7911
|
+
path: {
|
|
7912
|
+
/**
|
|
7913
|
+
* The Zernio account ID (from /v1/accounts)
|
|
7914
|
+
*/
|
|
7915
|
+
accountId: string;
|
|
7916
|
+
};
|
|
7917
|
+
query?: {
|
|
7918
|
+
/**
|
|
7919
|
+
* Override which location to query. If omitted, uses the account's selected location.
|
|
7920
|
+
*/
|
|
7921
|
+
locationId?: string;
|
|
7922
|
+
};
|
|
7923
|
+
};
|
|
7924
|
+
type FetchGoogleBusinessVerificationOptionsResponse = ({
|
|
7925
|
+
success?: boolean;
|
|
7926
|
+
accountId?: string;
|
|
7927
|
+
locationId?: string;
|
|
7928
|
+
options?: Array<{
|
|
7929
|
+
verificationMethod?: 'ADDRESS' | 'EMAIL' | 'PHONE_CALL' | 'SMS' | 'AUTO' | 'VETTED_PARTNER';
|
|
7930
|
+
/**
|
|
7931
|
+
* Present for PHONE_CALL / SMS.
|
|
7932
|
+
*/
|
|
7933
|
+
phoneNumber?: string;
|
|
7934
|
+
}>;
|
|
7935
|
+
});
|
|
7936
|
+
type FetchGoogleBusinessVerificationOptionsError = (ErrorResponse | {
|
|
7937
|
+
error?: string;
|
|
7938
|
+
});
|
|
7939
|
+
type CompleteGoogleBusinessVerificationData = {
|
|
7940
|
+
body: {
|
|
7941
|
+
/**
|
|
7942
|
+
* The code Google sent to the business.
|
|
7943
|
+
*/
|
|
7944
|
+
pin: string;
|
|
7945
|
+
};
|
|
7946
|
+
path: {
|
|
7947
|
+
/**
|
|
7948
|
+
* The Zernio account ID (from /v1/accounts)
|
|
7949
|
+
*/
|
|
7950
|
+
accountId: string;
|
|
7951
|
+
/**
|
|
7952
|
+
* The last segment of a verification `name` from GET /gmb-verifications.
|
|
7953
|
+
*/
|
|
7954
|
+
verificationId: string;
|
|
7955
|
+
};
|
|
7956
|
+
query?: {
|
|
7957
|
+
/**
|
|
7958
|
+
* Override which location to target. If omitted, uses the account's selected location.
|
|
7959
|
+
*/
|
|
7960
|
+
locationId?: string;
|
|
7961
|
+
};
|
|
7962
|
+
};
|
|
7963
|
+
type CompleteGoogleBusinessVerificationResponse = ({
|
|
7964
|
+
success?: boolean;
|
|
7965
|
+
accountId?: string;
|
|
7966
|
+
locationId?: string;
|
|
7967
|
+
verification?: {
|
|
7968
|
+
name?: string;
|
|
7969
|
+
method?: 'ADDRESS' | 'EMAIL' | 'PHONE_CALL' | 'SMS' | 'AUTO' | 'VETTED_PARTNER';
|
|
7970
|
+
state?: 'PENDING' | 'COMPLETED' | 'FAILED';
|
|
7971
|
+
createTime?: string;
|
|
7972
|
+
};
|
|
7973
|
+
});
|
|
7974
|
+
type CompleteGoogleBusinessVerificationError = (ErrorResponse | {
|
|
7975
|
+
error?: string;
|
|
7976
|
+
});
|
|
7977
|
+
type GetGoogleBusinessFoodMenusData = {
|
|
7978
|
+
path: {
|
|
7979
|
+
/**
|
|
7980
|
+
* The Zernio account ID (from /v1/accounts)
|
|
7981
|
+
*/
|
|
7982
|
+
accountId: string;
|
|
7983
|
+
};
|
|
7984
|
+
query?: {
|
|
7985
|
+
/**
|
|
7986
|
+
* Override which location to query. If omitted, uses the account's selected location. Use GET /gmb-locations to list valid IDs.
|
|
7987
|
+
*/
|
|
7988
|
+
locationId?: string;
|
|
7989
|
+
};
|
|
7990
|
+
};
|
|
7991
|
+
type GetGoogleBusinessFoodMenusResponse = ({
|
|
7992
|
+
success?: boolean;
|
|
7993
|
+
accountId?: string;
|
|
7994
|
+
locationId?: string;
|
|
7995
|
+
/**
|
|
7996
|
+
* Resource name of the food menus
|
|
7997
|
+
*/
|
|
7998
|
+
name?: string;
|
|
7999
|
+
menus?: Array<FoodMenu>;
|
|
8000
|
+
});
|
|
8001
|
+
type GetGoogleBusinessFoodMenusError = (ErrorResponse | {
|
|
8002
|
+
error?: string;
|
|
8003
|
+
});
|
|
8004
|
+
type UpdateGoogleBusinessFoodMenusData = {
|
|
8005
|
+
body: {
|
|
8006
|
+
/**
|
|
8007
|
+
* Array of food menus to set
|
|
8008
|
+
*/
|
|
8009
|
+
menus: Array<FoodMenu>;
|
|
8010
|
+
/**
|
|
8011
|
+
* Field mask for partial updates (e.g. "menus")
|
|
8012
|
+
*/
|
|
8013
|
+
updateMask?: string;
|
|
8014
|
+
};
|
|
8015
|
+
path: {
|
|
8016
|
+
/**
|
|
8017
|
+
* The Zernio account ID (from /v1/accounts)
|
|
8018
|
+
*/
|
|
8019
|
+
accountId: string;
|
|
8020
|
+
};
|
|
8021
|
+
query?: {
|
|
8022
|
+
/**
|
|
8023
|
+
* Override which location to target. If omitted, uses the account's selected location. Use GET /gmb-locations to list valid IDs.
|
|
7493
8024
|
*/
|
|
7494
8025
|
locationId?: string;
|
|
7495
8026
|
};
|
|
@@ -9751,7 +10282,7 @@ type CreateWebhookSettingsData = {
|
|
|
9751
10282
|
/**
|
|
9752
10283
|
* Events to subscribe to (at least one required)
|
|
9753
10284
|
*/
|
|
9754
|
-
events: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'comment.received' | 'review.new' | 'review.updated' | 'ad.status_changed' | 'whatsapp.template.status_updated')>;
|
|
10285
|
+
events: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'ad.status_changed' | 'whatsapp.template.status_updated')>;
|
|
9755
10286
|
/**
|
|
9756
10287
|
* Enable or disable webhook delivery. Defaults to `true` when omitted.
|
|
9757
10288
|
*/
|
|
@@ -9792,7 +10323,7 @@ type UpdateWebhookSettingsData = {
|
|
|
9792
10323
|
/**
|
|
9793
10324
|
* Events to subscribe to. Must contain at least one event if provided.
|
|
9794
10325
|
*/
|
|
9795
|
-
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'comment.received' | 'review.new' | 'review.updated' | 'ad.status_changed' | 'whatsapp.template.status_updated')>;
|
|
10326
|
+
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'ad.status_changed' | 'whatsapp.template.status_updated')>;
|
|
9796
10327
|
/**
|
|
9797
10328
|
* Enable or disable webhook delivery
|
|
9798
10329
|
*/
|
|
@@ -10712,6 +11243,30 @@ type SendTypingIndicatorResponse = ({
|
|
|
10712
11243
|
type SendTypingIndicatorError = ({
|
|
10713
11244
|
error?: string;
|
|
10714
11245
|
} | unknown);
|
|
11246
|
+
type MarkConversationReadData = {
|
|
11247
|
+
body: {
|
|
11248
|
+
/**
|
|
11249
|
+
* Social account ID
|
|
11250
|
+
*/
|
|
11251
|
+
accountId: string;
|
|
11252
|
+
};
|
|
11253
|
+
path: {
|
|
11254
|
+
/**
|
|
11255
|
+
* The conversation ID
|
|
11256
|
+
*/
|
|
11257
|
+
conversationId: string;
|
|
11258
|
+
};
|
|
11259
|
+
};
|
|
11260
|
+
type MarkConversationReadResponse = ({
|
|
11261
|
+
success?: boolean;
|
|
11262
|
+
/**
|
|
11263
|
+
* Number of messages marked read by this call
|
|
11264
|
+
*/
|
|
11265
|
+
markedCount?: number;
|
|
11266
|
+
});
|
|
11267
|
+
type MarkConversationReadError = ({
|
|
11268
|
+
error?: string;
|
|
11269
|
+
} | unknown);
|
|
10715
11270
|
type AddMessageReactionData = {
|
|
10716
11271
|
body: {
|
|
10717
11272
|
/**
|
|
@@ -11107,6 +11662,63 @@ type GetInboxPostCommentsResponse = ({
|
|
|
11107
11662
|
*/
|
|
11108
11663
|
rootCid?: (string) | null;
|
|
11109
11664
|
}>;
|
|
11665
|
+
/**
|
|
11666
|
+
* (Reddit only) Metadata for the target post, returned alongside the comments in Reddit's
|
|
11667
|
+
* single round-trip. Lets integrators render a preview of the post the user is commenting on
|
|
11668
|
+
* without an additional request. Absent for non-Reddit platforms and when the upstream
|
|
11669
|
+
* response is missing the post listing (deleted post, malformed response).
|
|
11670
|
+
*
|
|
11671
|
+
*/
|
|
11672
|
+
post?: {
|
|
11673
|
+
/**
|
|
11674
|
+
* Reddit post base36 id (e.g. "1tjtj26")
|
|
11675
|
+
*/
|
|
11676
|
+
id?: string;
|
|
11677
|
+
/**
|
|
11678
|
+
* Fullname with type prefix (e.g. "t3_1tjtj26")
|
|
11679
|
+
*/
|
|
11680
|
+
fullname?: string;
|
|
11681
|
+
title?: string;
|
|
11682
|
+
/**
|
|
11683
|
+
* Body text for self-posts (empty for link posts)
|
|
11684
|
+
*/
|
|
11685
|
+
selftext?: string;
|
|
11686
|
+
/**
|
|
11687
|
+
* Reddit username
|
|
11688
|
+
*/
|
|
11689
|
+
author?: string;
|
|
11690
|
+
/**
|
|
11691
|
+
* Subreddit name
|
|
11692
|
+
*/
|
|
11693
|
+
subreddit?: string;
|
|
11694
|
+
/**
|
|
11695
|
+
* Absolute URL to the post on reddit.com
|
|
11696
|
+
*/
|
|
11697
|
+
permalink?: string;
|
|
11698
|
+
/**
|
|
11699
|
+
* For link posts
|
|
11700
|
+
*/
|
|
11701
|
+
url?: string;
|
|
11702
|
+
/**
|
|
11703
|
+
* Net upvotes (upvotes minus downvotes)
|
|
11704
|
+
*/
|
|
11705
|
+
score?: number;
|
|
11706
|
+
numComments?: number;
|
|
11707
|
+
/**
|
|
11708
|
+
* Unix timestamp in seconds
|
|
11709
|
+
*/
|
|
11710
|
+
createdUtc?: number;
|
|
11711
|
+
over18?: boolean;
|
|
11712
|
+
stickied?: boolean;
|
|
11713
|
+
/**
|
|
11714
|
+
* Link flair text if any
|
|
11715
|
+
*/
|
|
11716
|
+
flairText?: (string) | null;
|
|
11717
|
+
/**
|
|
11718
|
+
* True if the post is a Reddit gallery (multiple images)
|
|
11719
|
+
*/
|
|
11720
|
+
isGallery?: boolean;
|
|
11721
|
+
} | null;
|
|
11110
11722
|
pagination?: {
|
|
11111
11723
|
hasMore?: boolean;
|
|
11112
11724
|
cursor?: (string) | null;
|
|
@@ -13081,6 +13693,18 @@ type CreateBroadcastData = {
|
|
|
13081
13693
|
name?: string;
|
|
13082
13694
|
language?: string;
|
|
13083
13695
|
components?: unknown[];
|
|
13696
|
+
/**
|
|
13697
|
+
* Maps template variable positions ("1", "2") to contact fields or static values. Resolved per recipient at send time.
|
|
13698
|
+
*/
|
|
13699
|
+
variableMapping?: {
|
|
13700
|
+
[key: string]: {
|
|
13701
|
+
field?: 'name' | 'phone' | 'email' | 'company' | 'custom';
|
|
13702
|
+
/**
|
|
13703
|
+
* Static value used when field is "custom"
|
|
13704
|
+
*/
|
|
13705
|
+
customValue?: string;
|
|
13706
|
+
};
|
|
13707
|
+
};
|
|
13084
13708
|
};
|
|
13085
13709
|
segmentFilters?: {
|
|
13086
13710
|
tags?: Array<(string)>;
|
|
@@ -14789,9 +15413,13 @@ type CreateStandaloneAdData = {
|
|
|
14789
15413
|
*/
|
|
14790
15414
|
callToAction?: 'LEARN_MORE' | 'SHOP_NOW' | 'SIGN_UP' | 'BOOK_TRAVEL' | 'CONTACT_US' | 'DOWNLOAD' | 'GET_OFFER' | 'GET_QUOTE' | 'SUBSCRIBE' | 'WATCH_MORE' | 'REGISTER' | 'JOIN' | 'ATTEND' | 'REQUEST_DEMO' | 'VIEW_QUOTE' | 'APPLY' | 'SEE_MORE' | 'BUY_NOW';
|
|
14791
15415
|
/**
|
|
14792
|
-
* Required on legacy + attach shapes (skip for multi-creative). On LinkedIn it's the ad's destination URL; required for `traffic` ads, optional for `engagement` / `awareness`.
|
|
15416
|
+
* Required on legacy + attach shapes (skip for multi-creative). On LinkedIn it's the ad's destination URL; required for `traffic` ads, optional for `engagement` / `awareness`. NOT required when `goal` is `lead_generation` (the ad opens a Lead Gen form instead of a destination).
|
|
14793
15417
|
*/
|
|
14794
15418
|
linkUrl?: string;
|
|
15419
|
+
/**
|
|
15420
|
+
* Meta Lead Gen forms only (facebook/instagram). The leadgen_forms ID to attach to the ad's creative — create one via POST /v1/ads/lead-forms. REQUIRED when `goal` is `lead_generation`; ignored otherwise. The ad set's promoted_object.page_id + LEAD_GENERATION optimization are derived automatically from the goal.
|
|
15421
|
+
*/
|
|
15422
|
+
leadGenFormId?: string;
|
|
14795
15423
|
/**
|
|
14796
15424
|
* Image creative for Meta/Google/Pinterest/LinkedIn on legacy + attach shapes (mutually exclusive with `video`). Required for LinkedIn ads unless `video` is set. Not required for Google Search campaigns. For TikTok, this field carries the VIDEO URL (the TikTok ads endpoint is video-only; the field retains the `imageUrl` name for cross-platform consistency). Ignored for X/Twitter. For Google Display, treated as the landscape image (alias of `images.landscape`); supply `images.square` alongside or the request is rejected. For LinkedIn the image is uploaded to LinkedIn under the authoring Company Page (see `organizationId`); recommended ratio 1.91:1 (e.g. 1200×627).
|
|
14797
15425
|
*/
|
|
@@ -14916,6 +15544,63 @@ type CreateStandaloneAdData = {
|
|
|
14916
15544
|
id: string;
|
|
14917
15545
|
name: string;
|
|
14918
15546
|
}>;
|
|
15547
|
+
/**
|
|
15548
|
+
* Postal/ZIP geo targeting. `key` is the platform's postal location ID from /v1/ads/targeting/search?dimension=geo&geoType=zip. Supported on Meta, Google, TikTok, Pinterest, X.
|
|
15549
|
+
*/
|
|
15550
|
+
zips?: Array<{
|
|
15551
|
+
key: string;
|
|
15552
|
+
name?: string;
|
|
15553
|
+
}>;
|
|
15554
|
+
/**
|
|
15555
|
+
* DMA / metro-area geo targeting. `key` is the platform's metro ID from /v1/ads/targeting/search?dimension=geo&geoType=metro.
|
|
15556
|
+
*/
|
|
15557
|
+
metros?: Array<{
|
|
15558
|
+
key: string;
|
|
15559
|
+
name?: string;
|
|
15560
|
+
}>;
|
|
15561
|
+
/**
|
|
15562
|
+
* Point-radius (lat/lng) geo targeting. Meta only (custom_locations). Rejected on platforms without radius support.
|
|
15563
|
+
*/
|
|
15564
|
+
customLocations?: Array<{
|
|
15565
|
+
latitude: number;
|
|
15566
|
+
longitude: number;
|
|
15567
|
+
radius: number;
|
|
15568
|
+
distanceUnit: 'mile' | 'kilometer';
|
|
15569
|
+
name?: string;
|
|
15570
|
+
address?: string;
|
|
15571
|
+
}>;
|
|
15572
|
+
/**
|
|
15573
|
+
* Behaviour entities from /v1/ads/targeting/search?dimension=behavior. Supported on Meta and TikTok. Each must include id.
|
|
15574
|
+
*/
|
|
15575
|
+
behaviors?: Array<{
|
|
15576
|
+
id: string;
|
|
15577
|
+
name?: string;
|
|
15578
|
+
}>;
|
|
15579
|
+
/**
|
|
15580
|
+
* Normalized household-income tier. Meta and TikTok express all four; Google maps only
|
|
15581
|
+
* `top_10`; rejected on LinkedIn, X, and Pinterest. On Meta, income targeting is incompatible
|
|
15582
|
+
* with housing/employment/credit `specialAdCategories`.
|
|
15583
|
+
*
|
|
15584
|
+
*/
|
|
15585
|
+
incomeTier?: 'top_5' | 'top_10' | 'top_10_25' | 'top_25_50';
|
|
15586
|
+
/**
|
|
15587
|
+
* Language codes (e.g. ['en']). Restricts the audience by language.
|
|
15588
|
+
*/
|
|
15589
|
+
languages?: Array<(string)>;
|
|
15590
|
+
/**
|
|
15591
|
+
* ID of a `saved_targeting` audience (created via POST /v1/ads/audiences). When set, its stored
|
|
15592
|
+
* TargetingSpec is expanded as the base targeting; inline fields on this body merge on top. Lets you
|
|
15593
|
+
* reuse a named targeting preset without re-sending every field.
|
|
15594
|
+
*
|
|
15595
|
+
*/
|
|
15596
|
+
savedTargetingId?: string;
|
|
15597
|
+
/**
|
|
15598
|
+
* Meta only. Declares the ad's special category, required for housing, employment, credit, or
|
|
15599
|
+
* political/social-issue ads (Meta enforces restricted targeting for these). Note: setting a special
|
|
15600
|
+
* category disables income/zip targeting on Meta.
|
|
15601
|
+
*
|
|
15602
|
+
*/
|
|
15603
|
+
specialAdCategories?: Array<('HOUSING' | 'EMPLOYMENT' | 'CREDIT' | 'ISSUES_ELECTIONS_POLITICS')>;
|
|
14919
15604
|
/**
|
|
14920
15605
|
* Required for lifetime budgets
|
|
14921
15606
|
*/
|
|
@@ -15125,6 +15810,228 @@ type CreateStandaloneAdResponse = (({
|
|
|
15125
15810
|
type CreateStandaloneAdError = (unknown | {
|
|
15126
15811
|
error?: string;
|
|
15127
15812
|
});
|
|
15813
|
+
type ListLeadsData = {
|
|
15814
|
+
query?: {
|
|
15815
|
+
/**
|
|
15816
|
+
* Filter to a single connected account.
|
|
15817
|
+
*/
|
|
15818
|
+
accountId?: string;
|
|
15819
|
+
/**
|
|
15820
|
+
* Keyset cursor from a previous response's pagination.cursor.
|
|
15821
|
+
*/
|
|
15822
|
+
cursor?: string;
|
|
15823
|
+
/**
|
|
15824
|
+
* Filter to a single lead form.
|
|
15825
|
+
*/
|
|
15826
|
+
formId?: string;
|
|
15827
|
+
limit?: number;
|
|
15828
|
+
/**
|
|
15829
|
+
* Unix seconds; only leads created at/after this Meta timestamp.
|
|
15830
|
+
*/
|
|
15831
|
+
since?: number;
|
|
15832
|
+
};
|
|
15833
|
+
};
|
|
15834
|
+
type ListLeadsResponse = ({
|
|
15835
|
+
status?: string;
|
|
15836
|
+
leads?: Array<{
|
|
15837
|
+
/**
|
|
15838
|
+
* Zernio lead id.
|
|
15839
|
+
*/
|
|
15840
|
+
id?: string;
|
|
15841
|
+
/**
|
|
15842
|
+
* Meta lead id.
|
|
15843
|
+
*/
|
|
15844
|
+
leadgenId?: string;
|
|
15845
|
+
formId?: string;
|
|
15846
|
+
formName?: (string) | null;
|
|
15847
|
+
accountId?: string;
|
|
15848
|
+
adId?: (string) | null;
|
|
15849
|
+
adsetId?: (string) | null;
|
|
15850
|
+
campaignId?: (string) | null;
|
|
15851
|
+
isOrganic?: boolean;
|
|
15852
|
+
/**
|
|
15853
|
+
* ISO 8601.
|
|
15854
|
+
*/
|
|
15855
|
+
createdTime?: (string) | null;
|
|
15856
|
+
/**
|
|
15857
|
+
* Question key → answer.
|
|
15858
|
+
*/
|
|
15859
|
+
fields?: {
|
|
15860
|
+
[key: string]: (string);
|
|
15861
|
+
};
|
|
15862
|
+
/**
|
|
15863
|
+
* Raw Meta field_data.
|
|
15864
|
+
*/
|
|
15865
|
+
fieldData?: Array<{
|
|
15866
|
+
[key: string]: unknown;
|
|
15867
|
+
}>;
|
|
15868
|
+
}>;
|
|
15869
|
+
pagination?: {
|
|
15870
|
+
hasMore?: boolean;
|
|
15871
|
+
cursor?: (string) | null;
|
|
15872
|
+
};
|
|
15873
|
+
});
|
|
15874
|
+
type ListLeadsError = ({
|
|
15875
|
+
error?: string;
|
|
15876
|
+
} | unknown);
|
|
15877
|
+
type ListLeadFormsData = {
|
|
15878
|
+
query: {
|
|
15879
|
+
/**
|
|
15880
|
+
* Connected facebook account id.
|
|
15881
|
+
*/
|
|
15882
|
+
accountId: string;
|
|
15883
|
+
cursor?: string;
|
|
15884
|
+
limit?: number;
|
|
15885
|
+
};
|
|
15886
|
+
};
|
|
15887
|
+
type ListLeadFormsResponse = ({
|
|
15888
|
+
status?: string;
|
|
15889
|
+
forms?: Array<{
|
|
15890
|
+
[key: string]: unknown;
|
|
15891
|
+
}>;
|
|
15892
|
+
pagination?: {
|
|
15893
|
+
hasMore?: boolean;
|
|
15894
|
+
cursor?: (string) | null;
|
|
15895
|
+
};
|
|
15896
|
+
});
|
|
15897
|
+
type ListLeadFormsError = ({
|
|
15898
|
+
error?: string;
|
|
15899
|
+
} | unknown);
|
|
15900
|
+
type CreateLeadFormData = {
|
|
15901
|
+
body: {
|
|
15902
|
+
accountId: string;
|
|
15903
|
+
name: string;
|
|
15904
|
+
questions: Array<{
|
|
15905
|
+
/**
|
|
15906
|
+
* EMAIL, PHONE, FULL_NAME, FIRST_NAME, LAST_NAME, CUSTOM, …
|
|
15907
|
+
*/
|
|
15908
|
+
type: string;
|
|
15909
|
+
/**
|
|
15910
|
+
* CUSTOM questions only.
|
|
15911
|
+
*/
|
|
15912
|
+
key?: string;
|
|
15913
|
+
/**
|
|
15914
|
+
* CUSTOM questions only.
|
|
15915
|
+
*/
|
|
15916
|
+
label?: string;
|
|
15917
|
+
options?: Array<{
|
|
15918
|
+
key?: string;
|
|
15919
|
+
value?: string;
|
|
15920
|
+
}>;
|
|
15921
|
+
inline_context?: string;
|
|
15922
|
+
}>;
|
|
15923
|
+
privacyPolicyUrl: string;
|
|
15924
|
+
privacyPolicyLinkText?: string;
|
|
15925
|
+
followUpActionUrl?: string;
|
|
15926
|
+
locale?: string;
|
|
15927
|
+
thankYouTitle?: string;
|
|
15928
|
+
thankYouBody?: string;
|
|
15929
|
+
thankYouButtonText?: string;
|
|
15930
|
+
thankYouButtonType?: string;
|
|
15931
|
+
thankYouWebsiteUrl?: string;
|
|
15932
|
+
isOptimizedForQuality?: boolean;
|
|
15933
|
+
};
|
|
15934
|
+
};
|
|
15935
|
+
type CreateLeadFormResponse = ({
|
|
15936
|
+
status?: string;
|
|
15937
|
+
form?: {
|
|
15938
|
+
id?: string;
|
|
15939
|
+
name?: string;
|
|
15940
|
+
};
|
|
15941
|
+
});
|
|
15942
|
+
type CreateLeadFormError = ({
|
|
15943
|
+
error?: string;
|
|
15944
|
+
} | unknown);
|
|
15945
|
+
type GetLeadFormData = {
|
|
15946
|
+
path: {
|
|
15947
|
+
formId: string;
|
|
15948
|
+
};
|
|
15949
|
+
query: {
|
|
15950
|
+
accountId: string;
|
|
15951
|
+
};
|
|
15952
|
+
};
|
|
15953
|
+
type GetLeadFormResponse = ({
|
|
15954
|
+
status?: string;
|
|
15955
|
+
form?: {
|
|
15956
|
+
[key: string]: unknown;
|
|
15957
|
+
};
|
|
15958
|
+
});
|
|
15959
|
+
type GetLeadFormError = ({
|
|
15960
|
+
error?: string;
|
|
15961
|
+
});
|
|
15962
|
+
type ArchiveLeadFormData = {
|
|
15963
|
+
path: {
|
|
15964
|
+
formId: string;
|
|
15965
|
+
};
|
|
15966
|
+
query: {
|
|
15967
|
+
accountId: string;
|
|
15968
|
+
};
|
|
15969
|
+
};
|
|
15970
|
+
type ArchiveLeadFormResponse = ({
|
|
15971
|
+
status?: string;
|
|
15972
|
+
formId?: string;
|
|
15973
|
+
archived?: boolean;
|
|
15974
|
+
});
|
|
15975
|
+
type ArchiveLeadFormError = ({
|
|
15976
|
+
error?: string;
|
|
15977
|
+
});
|
|
15978
|
+
type ListFormLeadsData = {
|
|
15979
|
+
path: {
|
|
15980
|
+
formId: string;
|
|
15981
|
+
};
|
|
15982
|
+
query: {
|
|
15983
|
+
accountId: string;
|
|
15984
|
+
cursor?: string;
|
|
15985
|
+
limit?: number;
|
|
15986
|
+
/**
|
|
15987
|
+
* Unix seconds.
|
|
15988
|
+
*/
|
|
15989
|
+
since?: number;
|
|
15990
|
+
};
|
|
15991
|
+
};
|
|
15992
|
+
type ListFormLeadsResponse = ({
|
|
15993
|
+
status?: string;
|
|
15994
|
+
leads?: Array<{
|
|
15995
|
+
id?: string;
|
|
15996
|
+
createdTime?: (string) | null;
|
|
15997
|
+
adId?: (string) | null;
|
|
15998
|
+
formId?: string;
|
|
15999
|
+
fields?: {
|
|
16000
|
+
[key: string]: (string);
|
|
16001
|
+
};
|
|
16002
|
+
fieldData?: Array<{
|
|
16003
|
+
[key: string]: unknown;
|
|
16004
|
+
}>;
|
|
16005
|
+
}>;
|
|
16006
|
+
pagination?: {
|
|
16007
|
+
hasMore?: boolean;
|
|
16008
|
+
cursor?: (string) | null;
|
|
16009
|
+
};
|
|
16010
|
+
});
|
|
16011
|
+
type ListFormLeadsError = ({
|
|
16012
|
+
error?: string;
|
|
16013
|
+
});
|
|
16014
|
+
type CreateTestLeadData = {
|
|
16015
|
+
body: {
|
|
16016
|
+
accountId: string;
|
|
16017
|
+
fieldData: Array<{
|
|
16018
|
+
name: string;
|
|
16019
|
+
values: Array<(string)>;
|
|
16020
|
+
}>;
|
|
16021
|
+
};
|
|
16022
|
+
path: {
|
|
16023
|
+
formId: string;
|
|
16024
|
+
};
|
|
16025
|
+
};
|
|
16026
|
+
type CreateTestLeadResponse = ({
|
|
16027
|
+
status?: string;
|
|
16028
|
+
testLead?: {
|
|
16029
|
+
id?: string;
|
|
16030
|
+
};
|
|
16031
|
+
});
|
|
16032
|
+
type CreateTestLeadError = ({
|
|
16033
|
+
error?: string;
|
|
16034
|
+
});
|
|
15128
16035
|
type SearchAdInterestsData = {
|
|
15129
16036
|
query: {
|
|
15130
16037
|
/**
|
|
@@ -15147,56 +16054,107 @@ type SearchAdInterestsResponse = ({
|
|
|
15147
16054
|
type SearchAdInterestsError = ({
|
|
15148
16055
|
error?: string;
|
|
15149
16056
|
} | unknown);
|
|
15150
|
-
type
|
|
16057
|
+
type SearchAdTargetingData = {
|
|
15151
16058
|
query: {
|
|
15152
16059
|
/**
|
|
15153
|
-
* Social account ID (
|
|
16060
|
+
* Social account ID (a connected account on the target ad platform).
|
|
15154
16061
|
*/
|
|
15155
16062
|
accountId: string;
|
|
15156
16063
|
/**
|
|
15157
|
-
* ISO 3166-1 alpha-2 country code (e.g. NL) to scope
|
|
16064
|
+
* ISO 3166-1 alpha-2 country code (e.g. NL) to scope a geo search.
|
|
15158
16065
|
*/
|
|
15159
16066
|
countryCode?: string;
|
|
16067
|
+
/**
|
|
16068
|
+
* What to search. `geo` resolves locations (scope further with `geoType`), `interest`/`behavior` resolve audience entities, `income` resolves income-tier options. Defaults to `interest` for backward compatibility with the deprecated /v1/ads/interests alias.
|
|
16069
|
+
*/
|
|
16070
|
+
dimension?: 'geo' | 'interest' | 'behavior' | 'income';
|
|
16071
|
+
/**
|
|
16072
|
+
* Only used when `dimension=geo`. The kind of location to resolve. Defaults to `city`.
|
|
16073
|
+
*/
|
|
16074
|
+
geoType?: 'country' | 'region' | 'city' | 'zip' | 'metro';
|
|
15160
16075
|
/**
|
|
15161
16076
|
* Maximum results to return.
|
|
15162
16077
|
*/
|
|
15163
16078
|
limit?: number;
|
|
15164
16079
|
/**
|
|
15165
|
-
*
|
|
16080
|
+
* Search query. For geo, the locality name only (no region/country suffix).
|
|
15166
16081
|
*/
|
|
15167
16082
|
q: string;
|
|
15168
|
-
/**
|
|
15169
|
-
* Type of location to search. Defaults to city.
|
|
15170
|
-
*/
|
|
15171
|
-
type?: 'country' | 'region' | 'city' | 'subcity' | 'neighborhood' | 'zip' | 'metro_area' | 'geo_market';
|
|
15172
16083
|
};
|
|
15173
16084
|
};
|
|
15174
|
-
type
|
|
16085
|
+
type SearchAdTargetingResponse = ({
|
|
15175
16086
|
results?: Array<{
|
|
15176
16087
|
/**
|
|
15177
|
-
*
|
|
16088
|
+
* The platform's opaque id. Use as a geo `key` (regions/cities/zips/metros) or an entity `id` (interests/behaviors) in TargetingSpec.
|
|
16089
|
+
*/
|
|
16090
|
+
id: string;
|
|
16091
|
+
/**
|
|
16092
|
+
* Human-readable label.
|
|
15178
16093
|
*/
|
|
15179
|
-
key: string;
|
|
15180
16094
|
name: string;
|
|
15181
16095
|
/**
|
|
15182
|
-
*
|
|
16096
|
+
* What the result is (e.g. city, region, country, zip, metro, interest, behavior, income).
|
|
15183
16097
|
*/
|
|
15184
16098
|
type: string;
|
|
15185
|
-
countryCode?: string;
|
|
15186
|
-
countryName?: string;
|
|
15187
16099
|
/**
|
|
15188
|
-
*
|
|
16100
|
+
* Optional breadcrumb of parent labels (e.g. ['United States', 'California', 'Los Angeles']). Disambiguates same-named results.
|
|
15189
16101
|
*/
|
|
15190
|
-
|
|
16102
|
+
path?: Array<(string)>;
|
|
15191
16103
|
/**
|
|
15192
|
-
*
|
|
16104
|
+
* Optional estimated reachable users for this option, when the platform returns it.
|
|
15193
16105
|
*/
|
|
15194
|
-
|
|
15195
|
-
supportsRegion?: boolean;
|
|
15196
|
-
supportsCity?: boolean;
|
|
16106
|
+
audienceSize?: (number) | null;
|
|
15197
16107
|
}>;
|
|
15198
16108
|
});
|
|
15199
|
-
type
|
|
16109
|
+
type SearchAdTargetingError = (unknown | {
|
|
16110
|
+
error?: string;
|
|
16111
|
+
});
|
|
16112
|
+
type EstimateAdReachData = {
|
|
16113
|
+
body: {
|
|
16114
|
+
/**
|
|
16115
|
+
* Social account ID on the target ad platform.
|
|
16116
|
+
*/
|
|
16117
|
+
accountId: string;
|
|
16118
|
+
/**
|
|
16119
|
+
* The targeting spec to estimate. Same shape used by POST /v1/ads/create.
|
|
16120
|
+
*/
|
|
16121
|
+
spec: (TargetingSpec);
|
|
16122
|
+
/**
|
|
16123
|
+
* Optional. The optimization goal the estimate should assume (platform's
|
|
16124
|
+
* own vocabulary, e.g. Meta `REACH`, `LINK_CLICKS`, `OFFSITE_CONVERSIONS`).
|
|
16125
|
+
* Some platforms vary the estimate by goal; omit to use the platform default.
|
|
16126
|
+
*
|
|
16127
|
+
*/
|
|
16128
|
+
optimizationGoal?: string;
|
|
16129
|
+
};
|
|
16130
|
+
};
|
|
16131
|
+
type EstimateAdReachResponse = ({
|
|
16132
|
+
/**
|
|
16133
|
+
* Whether a pre-flight estimate is available on this platform. False for Google and TikTok.
|
|
16134
|
+
*/
|
|
16135
|
+
available: boolean;
|
|
16136
|
+
/**
|
|
16137
|
+
* Lower bound of the estimated reachable audience. Present only when available.
|
|
16138
|
+
*/
|
|
16139
|
+
lower?: (number) | null;
|
|
16140
|
+
/**
|
|
16141
|
+
* Upper bound of the estimated reachable audience. Present only when available.
|
|
16142
|
+
*/
|
|
16143
|
+
upper?: (number) | null;
|
|
16144
|
+
/**
|
|
16145
|
+
* Optional estimated daily reach/results at the given budget, when the platform returns it.
|
|
16146
|
+
*/
|
|
16147
|
+
daily?: (number) | null;
|
|
16148
|
+
/**
|
|
16149
|
+
* Currency of any monetary fields in the estimate, when applicable.
|
|
16150
|
+
*/
|
|
16151
|
+
currency?: (string) | null;
|
|
16152
|
+
/**
|
|
16153
|
+
* Meta only. False when Meta is still computing the estimate (the audience is too new); retry shortly.
|
|
16154
|
+
*/
|
|
16155
|
+
estimateReady?: (boolean) | null;
|
|
16156
|
+
});
|
|
16157
|
+
type EstimateAdReachError = (unknown | {
|
|
15200
16158
|
error?: string;
|
|
15201
16159
|
});
|
|
15202
16160
|
type ListAdAudiencesData = {
|
|
@@ -15209,7 +16167,11 @@ type ListAdAudiencesData = {
|
|
|
15209
16167
|
* Platform ad account ID
|
|
15210
16168
|
*/
|
|
15211
16169
|
adAccountId: string;
|
|
15212
|
-
platform?: 'facebook' | 'instagram' | 'googleads' | 'tiktok' | 'pinterest';
|
|
16170
|
+
platform?: 'facebook' | 'instagram' | 'googleads' | 'tiktok' | 'tiktokads' | 'pinterest' | 'linkedin' | 'linkedinads' | 'twitter' | 'xads';
|
|
16171
|
+
/**
|
|
16172
|
+
* Filter to one audience type. `saved_targeting` returns stored TargetingSpec audiences (each item carries a `spec`); the other types return uploaded/derived audiences.
|
|
16173
|
+
*/
|
|
16174
|
+
type?: 'customer_list' | 'website' | 'lookalike' | 'saved_targeting';
|
|
15213
16175
|
};
|
|
15214
16176
|
};
|
|
15215
16177
|
type ListAdAudiencesResponse = ({
|
|
@@ -15218,7 +16180,11 @@ type ListAdAudiencesResponse = ({
|
|
|
15218
16180
|
platformAudienceId?: string;
|
|
15219
16181
|
name?: string;
|
|
15220
16182
|
description?: string;
|
|
15221
|
-
type?: 'customer_list' | 'website' | 'lookalike';
|
|
16183
|
+
type?: 'customer_list' | 'website' | 'lookalike' | 'saved_targeting';
|
|
16184
|
+
/**
|
|
16185
|
+
* Present (and the only meaningful payload) when `type` is `saved_targeting`. Null for uploaded/derived audience types.
|
|
16186
|
+
*/
|
|
16187
|
+
spec?: ((TargetingSpec) | null);
|
|
15222
16188
|
platform?: string;
|
|
15223
16189
|
size?: number;
|
|
15224
16190
|
status?: string;
|
|
@@ -15228,10 +16194,10 @@ type ListAdAudiencesError = ({
|
|
|
15228
16194
|
error?: string;
|
|
15229
16195
|
} | unknown);
|
|
15230
16196
|
type CreateAdAudienceData = {
|
|
15231
|
-
body: {
|
|
16197
|
+
body: ({
|
|
15232
16198
|
accountId: string;
|
|
15233
16199
|
/**
|
|
15234
|
-
* Must start with act_
|
|
16200
|
+
* Platform ad account ID. Must start with act_ for Meta; bare platform id for others (Google customer id, X/TikTok/LinkedIn/Pinterest account id).
|
|
15235
16201
|
*/
|
|
15236
16202
|
adAccountId: string;
|
|
15237
16203
|
name: string;
|
|
@@ -15267,7 +16233,19 @@ type CreateAdAudienceData = {
|
|
|
15267
16233
|
* Data source declaration for GDPR compliance (customer_list only)
|
|
15268
16234
|
*/
|
|
15269
16235
|
customerFileSource?: string;
|
|
15270
|
-
}
|
|
16236
|
+
} | {
|
|
16237
|
+
type: 'saved_targeting';
|
|
16238
|
+
/**
|
|
16239
|
+
* Social account ID on the target ad platform.
|
|
16240
|
+
*/
|
|
16241
|
+
accountId: string;
|
|
16242
|
+
name: string;
|
|
16243
|
+
description?: string;
|
|
16244
|
+
/**
|
|
16245
|
+
* The targeting spec to store.
|
|
16246
|
+
*/
|
|
16247
|
+
spec: (TargetingSpec);
|
|
16248
|
+
});
|
|
15271
16249
|
};
|
|
15272
16250
|
type CreateAdAudienceResponse = ({
|
|
15273
16251
|
audience?: {
|
|
@@ -16190,4 +17168,4 @@ type GetTrackingTagStatsError = (unknown | {
|
|
|
16190
17168
|
error?: string;
|
|
16191
17169
|
});
|
|
16192
17170
|
|
|
16193
|
-
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type ActivateSequenceData, type ActivateSequenceError, type ActivateSequenceResponse, type Ad, type AdBudget, type AdCampaign, type AdMetrics, type AdStatus, type AdTreeAdSet, type AdTreeCampaign, type AddBroadcastRecipientsData, type AddBroadcastRecipientsError, type AddBroadcastRecipientsResponse, type AddConversionAssociationsData, type AddConversionAssociationsError, type AddConversionAssociationsResponse, type AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddTrackingTagSharedAccountData, type AddTrackingTagSharedAccountError, type AddTrackingTagSharedAccountResponse, 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 BatchGetGoogleBusinessReviewsData, type BatchGetGoogleBusinessReviewsError, type BatchGetGoogleBusinessReviewsResponse, type BidStrategy, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BoostPostData, type BoostPostError, type BoostPostResponse, type BulkCreateContactsData, type BulkCreateContactsError, type BulkCreateContactsResponse, type BulkUpdateAdCampaignStatusData, type BulkUpdateAdCampaignStatusError, type BulkUpdateAdCampaignStatusResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type BusinessCenter, type CancelBroadcastData, type CancelBroadcastError, type CancelBroadcastResponse, type ClearContactFieldValueData, type ClearContactFieldValueError, type ClearContactFieldValueResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type CompleteWhatsAppPhoneSelectionData, type CompleteWhatsAppPhoneSelectionError, type CompleteWhatsAppPhoneSelectionResponse, type ConfigureTikTokAdsBrandIdentityData, type ConfigureTikTokAdsBrandIdentityError, type ConfigureTikTokAdsBrandIdentityResponse, type ConnectAdsData, type ConnectAdsError, type ConnectAdsResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type ConversionDestination, 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 CreateConversionDestinationData, type CreateConversionDestinationError, type CreateConversionDestinationResponse, type CreateCtwaAdData, type CreateCtwaAdError, type CreateCtwaAdResponse, 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 CreateTrackingTagData, type CreateTrackingTagError, type CreateTrackingTagResponse, 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 CtwaMultiResponse, type CtwaSingleResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteAdAudienceData, type DeleteAdAudienceError, type DeleteAdAudienceResponse, type DeleteAdCampaignData, type DeleteAdCampaignError, type DeleteAdCampaignResponse, 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 DeleteConversionDestinationData, type DeleteConversionDestinationError, type DeleteConversionDestinationResponse, type DeleteCustomFieldData, type DeleteCustomFieldError, type DeleteCustomFieldResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteGoogleBusinessReviewReplyData, type DeleteGoogleBusinessReviewReplyError, type DeleteGoogleBusinessReviewReplyResponse, 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 DmButton, type DuplicateAdCampaignData, type DuplicateAdCampaignError, type DuplicateAdCampaignResponse, 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 GeoRestriction, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAdAnalyticsData, type GetAdAnalyticsError, type GetAdAnalyticsResponse, type GetAdAudienceData, type GetAdAudienceError, type GetAdAudienceResponse, type GetAdCommentsData, type GetAdCommentsError, type GetAdCommentsResponse, type GetAdData, type GetAdError, type GetAdResponse, type GetAdTreeData, type GetAdTreeError, type GetAdTreeResponse, type GetAdsTimelineData, type GetAdsTimelineError, type GetAdsTimelineResponse, 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 GetConversionDestinationData, type GetConversionDestinationError, type GetConversionDestinationResponse, type GetConversionMetricsData, type GetConversionMetricsError, type GetConversionMetricsResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetDiscordChannelsData, type GetDiscordChannelsError, type GetDiscordChannelsResponse, type GetDiscordSettingsData, type GetDiscordSettingsError, type GetDiscordSettingsResponse, type GetFacebookPageInsightsData, type GetFacebookPageInsightsError, type GetFacebookPageInsightsResponse, 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 GetGoogleBusinessServicesData, type GetGoogleBusinessServicesError, type GetGoogleBusinessServicesResponse, 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 GetInstagramFollowerHistoryData, type GetInstagramFollowerHistoryError, type GetInstagramFollowerHistoryResponse, type GetInstagramIceBreakersData, type GetInstagramIceBreakersError, type GetInstagramIceBreakersResponse, type GetInstagramStoryInsightsData, type GetInstagramStoryInsightsError, type GetInstagramStoryInsightsResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrgAggregateAnalyticsData, type GetLinkedInOrgAggregateAnalyticsError, type GetLinkedInOrgAggregateAnalyticsResponse, 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 GetTikTokAccountInsightsData, type GetTikTokAccountInsightsError, type GetTikTokAccountInsightsResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, type GetTrackingTagData, type GetTrackingTagError, type GetTrackingTagResponse, type GetTrackingTagStatsData, type GetTrackingTagStatsError, type GetTrackingTagStatsResponse, type GetUsageStatsData, 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 GetXApiPricingError, type GetXApiPricingResponse, type GetYouTubeChannelInsightsData, type GetYouTubeChannelInsightsError, type GetYouTubeChannelInsightsResponse, 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 ListAdsBusinessCentersData, type ListAdsBusinessCentersError, type ListAdsBusinessCentersResponse, 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 ListConversionAssociationsData, type ListConversionAssociationsError, type ListConversionAssociationsResponse, 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 ListInstagramStoriesData, type ListInstagramStoriesError, type ListInstagramStoriesResponse, 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 ListTrackingTagSharedAccountsData, type ListTrackingTagSharedAccountsError, type ListTrackingTagSharedAccountsResponse, type ListTrackingTagsData, type ListTrackingTagsError, type ListTrackingTagsResponse, type ListUsersError, type ListUsersResponse, type ListWhatsAppFlowsData, type ListWhatsAppFlowsError, type ListWhatsAppFlowsResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type ListWhatsAppPhoneNumbersData, type ListWhatsAppPhoneNumbersError, type ListWhatsAppPhoneNumbersResponse, type MediaItem, type MediaUploadResponse, type Money, type MoveAccountToProfileData, type MoveAccountToProfileError, type MoveAccountToProfileResponse, 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 RemoveConversionAssociationsData, type RemoveConversionAssociationsError, type RemoveConversionAssociationsResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveTrackingTagSharedAccountData, type RemoveTrackingTagSharedAccountError, type RemoveTrackingTagSharedAccountResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, type ReplyToGoogleBusinessReviewData, type ReplyToGoogleBusinessReviewError, type ReplyToGoogleBusinessReviewResponse, 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 ReviewWebhookReview, type ScheduleBroadcastData, type ScheduleBroadcastError, type ScheduleBroadcastResponse, type SearchAdInterestsData, type SearchAdInterestsError, type SearchAdInterestsResponse, type SearchAdTargetingLocationsData, type SearchAdTargetingLocationsError, type SearchAdTargetingLocationsResponse, 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 SendWhatsAppConversionData, type SendWhatsAppConversionError, type SendWhatsAppConversionResponse, 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 SharedAdAccount, type SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TrackingTag, 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 UpdateAdCampaignData, type UpdateAdCampaignError, type UpdateAdCampaignResponse, type UpdateAdCampaignStatusData, type UpdateAdCampaignStatusError, type UpdateAdCampaignStatusResponse, type UpdateAdData, type UpdateAdError, type UpdateAdResponse, type UpdateAdSetData, type UpdateAdSetError, type UpdateAdSetResponse, type UpdateAdSetStatusData, type UpdateAdSetStatusError, type UpdateAdSetStatusResponse, type UpdateBroadcastData, type UpdateBroadcastError, type UpdateBroadcastResponse, type UpdateCommentAutomationData, type UpdateCommentAutomationError, type UpdateCommentAutomationResponse, type UpdateContactData, type UpdateContactError, type UpdateContactResponse, type UpdateConversionDestinationData, type UpdateConversionDestinationError, type UpdateConversionDestinationResponse, 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 UpdateGoogleBusinessPlaceActionData, type UpdateGoogleBusinessPlaceActionError, type UpdateGoogleBusinessPlaceActionResponse, type UpdateGoogleBusinessServicesData, type UpdateGoogleBusinessServicesError, type UpdateGoogleBusinessServicesResponse, 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 UpdateTrackingTagData, type UpdateTrackingTagError, type UpdateTrackingTagResponse, 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 WebhookPayloadAccountAdsInitialSyncCompleted, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadAdStatusChanged, type WebhookPayloadComment, type WebhookPayloadMessage, type WebhookPayloadMessageDeleted, type WebhookPayloadMessageDeliveryStatus, type WebhookPayloadMessageEdited, type WebhookPayloadMessageSent, type WebhookPayloadPost, type WebhookPayloadPostPlatform, type WebhookPayloadReviewNew, type WebhookPayloadReviewUpdated, type WebhookPayloadTest, type WebhookPayloadWhatsAppTemplateStatusUpdated, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type XApiOperation, type XApiPricing, type YouTubeDailyViewsResponse, type YouTubeDemographicsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, Zernio, ZernioApiError, type actionSource, type adType, type adType2, type adType3, type aggregation, type aggregation2, type aggregation3, type autoArchiveDuration, type billingPeriod, type billingSystem, type budgetLevel, type commercialContentType, type contentType, type contentType2, type contentType3, Zernio as default, type direction, type disconnectionType, type errorCategory, type errorCategory2, type errorSource, type event, type event10, type event11, type event12, type event13, type event14, type event15, type event16, 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 interactiveType, type kind, type level, type mediaType, type mediaType2, type metric, type metricType, type offerType, type otp_type, parseApiError, type parseMode, type permission, type platform, type platform2, type platform3, type platform4, type platform5, type platform6, type platform7, type platform8, type replySettings, type reviewStatus, type scope, type status, type status2, type status3, type status4, type status5, type status6, type status7, type status8, type syncStatus, type syncStatus2, type timeframe, type topicType, type type, type type2, type type3, type type4, type type5, type type6, type visibility };
|
|
17171
|
+
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type ActivateSequenceData, type ActivateSequenceError, type ActivateSequenceResponse, type Ad, type AdBudget, type AdCampaign, type AdMetrics, type AdStatus, type AdTreeAdSet, type AdTreeCampaign, type AddBroadcastRecipientsData, type AddBroadcastRecipientsError, type AddBroadcastRecipientsResponse, type AddConversionAssociationsData, type AddConversionAssociationsError, type AddConversionAssociationsResponse, type AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddTrackingTagSharedAccountData, type AddTrackingTagSharedAccountError, type AddTrackingTagSharedAccountResponse, 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 ArchiveLeadFormData, type ArchiveLeadFormError, type ArchiveLeadFormResponse, type BatchGetGoogleBusinessReviewsData, type BatchGetGoogleBusinessReviewsError, type BatchGetGoogleBusinessReviewsResponse, type BidStrategy, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BoostPostData, type BoostPostError, type BoostPostResponse, type BulkCreateContactsData, type BulkCreateContactsError, type BulkCreateContactsResponse, type BulkUpdateAdCampaignStatusData, type BulkUpdateAdCampaignStatusError, type BulkUpdateAdCampaignStatusResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type BulkUploadResult, type BusinessCenter, type CancelBroadcastData, type CancelBroadcastError, type CancelBroadcastResponse, type ClearContactFieldValueData, type ClearContactFieldValueError, type ClearContactFieldValueResponse, type ClientOptions, type CompleteGoogleBusinessVerificationData, type CompleteGoogleBusinessVerificationError, type CompleteGoogleBusinessVerificationResponse, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type CompleteWhatsAppPhoneSelectionData, type CompleteWhatsAppPhoneSelectionError, type CompleteWhatsAppPhoneSelectionResponse, type ConfigureTikTokAdsBrandIdentityData, type ConfigureTikTokAdsBrandIdentityError, type ConfigureTikTokAdsBrandIdentityResponse, type ConnectAdsData, type ConnectAdsError, type ConnectAdsResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type ConversionDestination, 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 CreateConversionDestinationData, type CreateConversionDestinationError, type CreateConversionDestinationResponse, type CreateCtwaAdData, type CreateCtwaAdError, type CreateCtwaAdResponse, 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 CreateLeadFormData, type CreateLeadFormError, type CreateLeadFormResponse, 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 CreateTestLeadData, type CreateTestLeadError, type CreateTestLeadResponse, type CreateTrackingTagData, type CreateTrackingTagError, type CreateTrackingTagResponse, 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 CtwaMultiResponse, type CtwaSingleResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteAdAudienceData, type DeleteAdAudienceError, type DeleteAdAudienceResponse, type DeleteAdCampaignData, type DeleteAdCampaignError, type DeleteAdCampaignResponse, 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 DeleteConversionDestinationData, type DeleteConversionDestinationError, type DeleteConversionDestinationResponse, type DeleteCustomFieldData, type DeleteCustomFieldError, type DeleteCustomFieldResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteGoogleBusinessReviewReplyData, type DeleteGoogleBusinessReviewReplyError, type DeleteGoogleBusinessReviewReplyResponse, 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 DmButton, type DuplicateAdCampaignData, type DuplicateAdCampaignError, type DuplicateAdCampaignResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type EditPostData, type EditPostError, type EditPostResponse, type EnrollContactsData, type EnrollContactsError, type EnrollContactsResponse, type ErrorResponse, type EstimateAdReachData, type EstimateAdReachError, type EstimateAdReachResponse, type FacebookPlatformData, type FetchGoogleBusinessVerificationOptionsData, type FetchGoogleBusinessVerificationOptionsError, type FetchGoogleBusinessVerificationOptionsResponse, type FollowUserData, type FollowUserError, type FollowUserResponse, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GeoRestriction, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAdAnalyticsData, type GetAdAnalyticsError, type GetAdAnalyticsResponse, type GetAdAudienceData, type GetAdAudienceError, type GetAdAudienceResponse, type GetAdCommentsData, type GetAdCommentsError, type GetAdCommentsResponse, type GetAdData, type GetAdError, type GetAdResponse, type GetAdTreeData, type GetAdTreeError, type GetAdTreeResponse, type GetAdsTimelineData, type GetAdsTimelineError, type GetAdsTimelineResponse, 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 GetConversionDestinationData, type GetConversionDestinationError, type GetConversionDestinationResponse, type GetConversionMetricsData, type GetConversionMetricsError, type GetConversionMetricsResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetDiscordChannelsData, type GetDiscordChannelsError, type GetDiscordChannelsResponse, type GetDiscordSettingsData, type GetDiscordSettingsError, type GetDiscordSettingsResponse, type GetFacebookPageInsightsData, type GetFacebookPageInsightsError, type GetFacebookPageInsightsResponse, 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 GetGoogleBusinessServicesData, type GetGoogleBusinessServicesError, type GetGoogleBusinessServicesResponse, type GetGoogleBusinessVerificationsData, type GetGoogleBusinessVerificationsError, type GetGoogleBusinessVerificationsResponse, 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 GetInstagramFollowerHistoryData, type GetInstagramFollowerHistoryError, type GetInstagramFollowerHistoryResponse, type GetInstagramIceBreakersData, type GetInstagramIceBreakersError, type GetInstagramIceBreakersResponse, type GetInstagramStoryInsightsData, type GetInstagramStoryInsightsError, type GetInstagramStoryInsightsResponse, type GetLeadFormData, type GetLeadFormError, type GetLeadFormResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrgAggregateAnalyticsData, type GetLinkedInOrgAggregateAnalyticsError, type GetLinkedInOrgAggregateAnalyticsResponse, 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 GetTikTokAccountInsightsData, type GetTikTokAccountInsightsError, type GetTikTokAccountInsightsResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, type GetTrackingTagData, type GetTrackingTagError, type GetTrackingTagResponse, type GetTrackingTagStatsData, type GetTrackingTagStatsError, type GetTrackingTagStatsResponse, type GetUsageStatsData, 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 GetXApiPricingError, type GetXApiPricingResponse, type GetYouTubeChannelInsightsData, type GetYouTubeChannelInsightsError, type GetYouTubeChannelInsightsResponse, 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 ListAdsBusinessCentersData, type ListAdsBusinessCentersError, type ListAdsBusinessCentersResponse, 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 ListConversionAssociationsData, type ListConversionAssociationsError, type ListConversionAssociationsResponse, type ListConversionDestinationsData, type ListConversionDestinationsError, type ListConversionDestinationsResponse, type ListCustomFieldsData, type ListCustomFieldsError, type ListCustomFieldsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListFormLeadsData, type ListFormLeadsError, type ListFormLeadsResponse, 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 ListInstagramStoriesData, type ListInstagramStoriesError, type ListInstagramStoriesResponse, type ListLeadFormsData, type ListLeadFormsError, type ListLeadFormsResponse, type ListLeadsData, type ListLeadsError, type ListLeadsResponse, 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 ListTrackingTagSharedAccountsData, type ListTrackingTagSharedAccountsError, type ListTrackingTagSharedAccountsResponse, type ListTrackingTagsData, type ListTrackingTagsError, type ListTrackingTagsResponse, type ListUsersError, type ListUsersResponse, type ListWhatsAppFlowsData, type ListWhatsAppFlowsError, type ListWhatsAppFlowsResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type ListWhatsAppPhoneNumbersData, type ListWhatsAppPhoneNumbersError, type ListWhatsAppPhoneNumbersResponse, type MarkConversationReadData, type MarkConversationReadError, type MarkConversationReadResponse, type MediaItem, type MediaUploadResponse, type Money, type MoveAccountToProfileData, type MoveAccountToProfileError, type MoveAccountToProfileResponse, 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 RemoveConversionAssociationsData, type RemoveConversionAssociationsError, type RemoveConversionAssociationsResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveTrackingTagSharedAccountData, type RemoveTrackingTagSharedAccountError, type RemoveTrackingTagSharedAccountResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, type ReplyToGoogleBusinessReviewData, type ReplyToGoogleBusinessReviewError, type ReplyToGoogleBusinessReviewResponse, 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 ReviewWebhookReview, type ScheduleBroadcastData, type ScheduleBroadcastError, type ScheduleBroadcastResponse, type SearchAdInterestsData, type SearchAdInterestsError, type SearchAdInterestsResponse, type SearchAdTargetingData, type SearchAdTargetingError, type SearchAdTargetingResponse, 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 SendWhatsAppConversionData, type SendWhatsAppConversionError, type SendWhatsAppConversionResponse, 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 SharedAdAccount, type SnapchatPlatformData, type SocialAccount, type StartGoogleBusinessVerificationData, type StartGoogleBusinessVerificationError, type StartGoogleBusinessVerificationResponse, type TargetingSpec, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TrackingTag, 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 UpdateAdCampaignData, type UpdateAdCampaignError, type UpdateAdCampaignResponse, type UpdateAdCampaignStatusData, type UpdateAdCampaignStatusError, type UpdateAdCampaignStatusResponse, type UpdateAdData, type UpdateAdError, type UpdateAdResponse, type UpdateAdSetData, type UpdateAdSetError, type UpdateAdSetResponse, type UpdateAdSetStatusData, type UpdateAdSetStatusError, type UpdateAdSetStatusResponse, type UpdateBroadcastData, type UpdateBroadcastError, type UpdateBroadcastResponse, type UpdateCommentAutomationData, type UpdateCommentAutomationError, type UpdateCommentAutomationResponse, type UpdateContactData, type UpdateContactError, type UpdateContactResponse, type UpdateConversionDestinationData, type UpdateConversionDestinationError, type UpdateConversionDestinationResponse, 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 UpdateGoogleBusinessPlaceActionData, type UpdateGoogleBusinessPlaceActionError, type UpdateGoogleBusinessPlaceActionResponse, type UpdateGoogleBusinessServicesData, type UpdateGoogleBusinessServicesError, type UpdateGoogleBusinessServicesResponse, 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 UpdateTrackingTagData, type UpdateTrackingTagError, type UpdateTrackingTagResponse, 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 WebhookPayloadAccountAdsInitialSyncCompleted, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadAdStatusChanged, type WebhookPayloadComment, type WebhookPayloadLead, type WebhookPayloadMessage, type WebhookPayloadMessageDeleted, type WebhookPayloadMessageDeliveryStatus, type WebhookPayloadMessageEdited, type WebhookPayloadMessageSent, type WebhookPayloadPost, type WebhookPayloadPostPlatform, type WebhookPayloadReaction, type WebhookPayloadReviewNew, type WebhookPayloadReviewUpdated, type WebhookPayloadTest, type WebhookPayloadWhatsAppTemplateStatusUpdated, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type XApiOperation, type XApiPricing, type YouTubeDailyViewsResponse, type YouTubeDemographicsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, Zernio, ZernioApiError, type action, type actionSource, type adType, type adType2, type adType3, type aggregation, type aggregation2, type aggregation3, type autoArchiveDuration, type billingPeriod, type billingSystem, type budgetLevel, type commercialContentType, type contentType, type contentType2, type contentType3, Zernio as default, type direction, type disconnectionType, type errorCategory, type errorCategory2, type errorSource, type event, type event10, type event11, type event12, type event13, type event14, type event15, type event16, type event17, type event18, type event2, type event3, type event4, type event5, type event6, type event7, type event8, type event9, type format, type gapFreq, type gender, type goal, type graduationStrategy, type incomeTier, type interactiveType, type kind, type level, type mediaType, type mediaType2, type metric, type metricType, type offerType, type otp_type, parseApiError, type parseMode, type permission, type platform, type platform2, type platform3, type platform4, type platform5, type platform6, type platform7, type platform8, type platform9, type replySettings, type reviewStatus, type scope, type status, type status2, type status3, type status4, type status5, type status6, type status7, type status8, type syncStatus, type syncStatus2, type timeframe, type topicType, type type, type type2, type type3, type type4, type type5, type type6, type visibility };
|