@zernio/node 0.2.112 → 0.2.113
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 +12 -0
- package/dist/index.d.mts +368 -16
- package/dist/index.d.ts +368 -16
- package/dist/index.js +61 -0
- package/dist/index.mjs +61 -0
- package/package.json +1 -1
- package/src/client.ts +22 -0
- package/src/generated/sdk.gen.ts +122 -1
- package/src/generated/types.gen.ts +387 -15
package/dist/index.d.mts
CHANGED
|
@@ -533,6 +533,19 @@ declare class Zernio {
|
|
|
533
533
|
deleteAdAudience: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteAdAudienceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteAdAudienceResponse, unknown, ThrowOnError>;
|
|
534
534
|
addUsersToAdAudience: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<AddUsersToAdAudienceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<AddUsersToAdAudienceResponse, unknown, ThrowOnError>;
|
|
535
535
|
};
|
|
536
|
+
/**
|
|
537
|
+
* leadforms API
|
|
538
|
+
*/
|
|
539
|
+
leadforms: {
|
|
540
|
+
listLeadForms: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListLeadFormsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListLeadFormsResponse, unknown, ThrowOnError>;
|
|
541
|
+
createLeadForm: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateLeadFormData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateLeadFormResponse, unknown, ThrowOnError>;
|
|
542
|
+
getLeadForm: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetLeadFormData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetLeadFormResponse, unknown, ThrowOnError>;
|
|
543
|
+
updateLeadForm: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateLeadFormData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateLeadFormResponse, unknown, ThrowOnError>;
|
|
544
|
+
deleteLeadForm: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteLeadFormData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteLeadFormResponse, unknown, ThrowOnError>;
|
|
545
|
+
listLeadFormLeads: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListLeadFormLeadsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListLeadFormLeadsResponse, unknown, ThrowOnError>;
|
|
546
|
+
createLeadFormTestLead: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateLeadFormTestLeadData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateLeadFormTestLeadResponse, unknown, ThrowOnError>;
|
|
547
|
+
deleteLeadFormTestLead: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteLeadFormTestLeadData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteLeadFormTestLeadResponse, unknown, ThrowOnError>;
|
|
548
|
+
};
|
|
536
549
|
/**
|
|
537
550
|
* Create a new Zernio API client.
|
|
538
551
|
*
|
|
@@ -1496,6 +1509,52 @@ type ConversionEvent = {
|
|
|
1496
1509
|
* Where the conversion happened. Used by Meta; Google ignores.
|
|
1497
1510
|
*/
|
|
1498
1511
|
type actionSource = 'web' | 'app' | 'offline' | 'crm' | 'phone_call' | 'system_generated';
|
|
1512
|
+
type CreateLeadFormBody = {
|
|
1513
|
+
/**
|
|
1514
|
+
* Facebook social account ID (Late SocialAccount _id).
|
|
1515
|
+
*/
|
|
1516
|
+
accountId: string;
|
|
1517
|
+
name: string;
|
|
1518
|
+
questions: Array<LeadGenFormQuestion>;
|
|
1519
|
+
/**
|
|
1520
|
+
* Required by Meta. Must be reachable from Meta's crawler.
|
|
1521
|
+
*/
|
|
1522
|
+
privacyPolicyUrl: string;
|
|
1523
|
+
privacyPolicyLinkText?: string;
|
|
1524
|
+
followUpActionUrl?: string;
|
|
1525
|
+
locale?: string;
|
|
1526
|
+
thankYouTitle?: string;
|
|
1527
|
+
thankYouBody?: string;
|
|
1528
|
+
thankYouButtonText?: string;
|
|
1529
|
+
/**
|
|
1530
|
+
* Meta enum (e.g. VIEW_WEBSITE, CALL_BUSINESS, DOWNLOAD)
|
|
1531
|
+
*/
|
|
1532
|
+
thankYouButtonType?: string;
|
|
1533
|
+
thankYouWebsiteUrl?: string;
|
|
1534
|
+
isOptimizedForQuality?: boolean;
|
|
1535
|
+
contextCard?: {
|
|
1536
|
+
title?: string;
|
|
1537
|
+
style?: 'LIST_STYLE' | 'PARAGRAPH_STYLE';
|
|
1538
|
+
content?: Array<(string)>;
|
|
1539
|
+
buttonText?: string;
|
|
1540
|
+
};
|
|
1541
|
+
legalContent?: {
|
|
1542
|
+
customDisclaimer?: {
|
|
1543
|
+
title?: string;
|
|
1544
|
+
body?: string;
|
|
1545
|
+
};
|
|
1546
|
+
};
|
|
1547
|
+
/**
|
|
1548
|
+
* Up to 20 key/value pairs surfaced on every lead for attribution.
|
|
1549
|
+
*/
|
|
1550
|
+
trackingParameters?: {
|
|
1551
|
+
[key: string]: (string);
|
|
1552
|
+
};
|
|
1553
|
+
questionPageCustomHeadline?: string;
|
|
1554
|
+
allowOrganicLead?: boolean;
|
|
1555
|
+
blockDisplayForNonTargetedViewer?: boolean;
|
|
1556
|
+
};
|
|
1557
|
+
type style = 'LIST_STYLE' | 'PARAGRAPH_STYLE';
|
|
1499
1558
|
/**
|
|
1500
1559
|
* Discord message settings. Supports plain text (2,000 chars), rich embeds (up to 10), native polls, forum posts, threads, and announcement crossposts. Media attachments support images (JPEG, PNG, GIF, WebP), videos (MP4), and documents (up to 10 files, 25 MB each). Webhook identity (username + avatar) can be customized per-account via PATCH /v1/connect/discord or per-post via webhookUsername/webhookAvatarUrl.
|
|
1501
1560
|
*
|
|
@@ -2163,6 +2222,106 @@ type contentType2 = 'story';
|
|
|
2163
2222
|
* MANUAL (graduate from Instagram app) or SS_PERFORMANCE (auto-graduate if performs well with non-followers)
|
|
2164
2223
|
*/
|
|
2165
2224
|
type graduationStrategy = 'MANUAL' | 'SS_PERFORMANCE';
|
|
2225
|
+
/**
|
|
2226
|
+
* A single lead submission returned by the leads endpoint and the lead.received webhook.
|
|
2227
|
+
*/
|
|
2228
|
+
type Lead = {
|
|
2229
|
+
/**
|
|
2230
|
+
* Meta `leadgen_id`.
|
|
2231
|
+
*/
|
|
2232
|
+
id?: string;
|
|
2233
|
+
createdTime?: string;
|
|
2234
|
+
/**
|
|
2235
|
+
* Meta ad ID that surfaced the form. Organic leads omit this.
|
|
2236
|
+
*/
|
|
2237
|
+
adId?: (string) | null;
|
|
2238
|
+
formId?: string;
|
|
2239
|
+
/**
|
|
2240
|
+
* Flattened key→value map of answers (multi-value fields joined with ", ").
|
|
2241
|
+
*/
|
|
2242
|
+
fields?: {
|
|
2243
|
+
[key: string]: (string);
|
|
2244
|
+
};
|
|
2245
|
+
/**
|
|
2246
|
+
* Raw `field_data` from Meta (one entry per question).
|
|
2247
|
+
*/
|
|
2248
|
+
fieldData?: Array<{
|
|
2249
|
+
name?: string;
|
|
2250
|
+
values?: Array<(string)>;
|
|
2251
|
+
}>;
|
|
2252
|
+
};
|
|
2253
|
+
/**
|
|
2254
|
+
* Common meta-block returned alongside lead-form responses for traceability.
|
|
2255
|
+
*/
|
|
2256
|
+
type LeadFormResponseMeta = {
|
|
2257
|
+
platform?: string;
|
|
2258
|
+
accountId?: string;
|
|
2259
|
+
formId?: (string) | null;
|
|
2260
|
+
leadId?: (string) | null;
|
|
2261
|
+
pageId?: (string) | null;
|
|
2262
|
+
lastUpdated?: string;
|
|
2263
|
+
};
|
|
2264
|
+
/**
|
|
2265
|
+
* A Meta Lead Gen (Instant) Form definition.
|
|
2266
|
+
*/
|
|
2267
|
+
type LeadGenForm = {
|
|
2268
|
+
id?: string;
|
|
2269
|
+
name?: string;
|
|
2270
|
+
status?: 'ACTIVE' | 'ARCHIVED' | 'DELETED' | 'DRAFT';
|
|
2271
|
+
locale?: string;
|
|
2272
|
+
created_time?: string;
|
|
2273
|
+
/**
|
|
2274
|
+
* Total leads (real + organic).
|
|
2275
|
+
*/
|
|
2276
|
+
leads_count?: number;
|
|
2277
|
+
organic_leads_count?: (number) | null;
|
|
2278
|
+
expired_leads_count?: (number) | null;
|
|
2279
|
+
questions?: Array<LeadGenFormQuestion>;
|
|
2280
|
+
privacy_policy_url?: (string) | null;
|
|
2281
|
+
follow_up_action_url?: (string) | null;
|
|
2282
|
+
thank_you_page?: {
|
|
2283
|
+
[key: string]: unknown;
|
|
2284
|
+
} | null;
|
|
2285
|
+
context_card?: {
|
|
2286
|
+
[key: string]: unknown;
|
|
2287
|
+
} | null;
|
|
2288
|
+
question_page_custom_headline?: (string) | null;
|
|
2289
|
+
is_optimized_for_quality?: (boolean) | null;
|
|
2290
|
+
page_id?: (string) | null;
|
|
2291
|
+
};
|
|
2292
|
+
type status3 = 'ACTIVE' | 'ARCHIVED' | 'DELETED' | 'DRAFT';
|
|
2293
|
+
/**
|
|
2294
|
+
* A single question on a Meta Instant Form. The `type` enum spans Meta's
|
|
2295
|
+
* prefill set (FULL_NAME, EMAIL, PHONE, STREET_ADDRESS, CITY, STATE,
|
|
2296
|
+
* COUNTRY, POST_CODE, DOB, GENDER, JOB_TITLE, COMPANY_NAME, etc.) plus
|
|
2297
|
+
* custom types (CUSTOM, MULTIPLE_CHOICE, CONDITIONAL, STORE_LOOKUP,
|
|
2298
|
+
* APPOINTMENT_REQUEST). See Meta's Lead Ads docs for the full list —
|
|
2299
|
+
* we forward whatever string the caller sends so new types work without
|
|
2300
|
+
* a Zernio release.
|
|
2301
|
+
*
|
|
2302
|
+
*/
|
|
2303
|
+
type LeadGenFormQuestion = {
|
|
2304
|
+
/**
|
|
2305
|
+
* Stable key returned in `field_data` on each lead. If omitted, Meta auto-derives one from `label`.
|
|
2306
|
+
*/
|
|
2307
|
+
key?: string;
|
|
2308
|
+
/**
|
|
2309
|
+
* Display text shown above the input.
|
|
2310
|
+
*/
|
|
2311
|
+
label?: string;
|
|
2312
|
+
type: string;
|
|
2313
|
+
/**
|
|
2314
|
+
* Required for MULTIPLE_CHOICE / CONDITIONAL questions.
|
|
2315
|
+
*/
|
|
2316
|
+
options?: Array<{
|
|
2317
|
+
key?: string;
|
|
2318
|
+
value?: string;
|
|
2319
|
+
}>;
|
|
2320
|
+
/**
|
|
2321
|
+
* Help text rendered below the field.
|
|
2322
|
+
*/
|
|
2323
|
+
inline_context?: string;
|
|
2324
|
+
};
|
|
2166
2325
|
/**
|
|
2167
2326
|
* Response for DAILY aggregation (time series breakdown)
|
|
2168
2327
|
*/
|
|
@@ -2399,7 +2558,7 @@ type PlatformAnalytics = {
|
|
|
2399
2558
|
*/
|
|
2400
2559
|
errorMessage?: (string) | null;
|
|
2401
2560
|
};
|
|
2402
|
-
type
|
|
2561
|
+
type status4 = 'published' | 'failed';
|
|
2403
2562
|
/**
|
|
2404
2563
|
* Sync state of analytics for this platform
|
|
2405
2564
|
*/
|
|
@@ -2503,7 +2662,7 @@ type Post = {
|
|
|
2503
2662
|
createdAt?: string;
|
|
2504
2663
|
updatedAt?: string;
|
|
2505
2664
|
};
|
|
2506
|
-
type
|
|
2665
|
+
type status5 = 'draft' | 'scheduled' | 'publishing' | 'published' | 'failed' | 'partial';
|
|
2507
2666
|
type visibility = 'public' | 'private' | 'unlisted';
|
|
2508
2667
|
type PostAnalytics = {
|
|
2509
2668
|
impressions?: number;
|
|
@@ -3126,7 +3285,7 @@ type UploadTokenResponse = {
|
|
|
3126
3285
|
expiresAt?: string;
|
|
3127
3286
|
status?: 'pending' | 'completed' | 'expired';
|
|
3128
3287
|
};
|
|
3129
|
-
type
|
|
3288
|
+
type status6 = 'pending' | 'completed' | 'expired';
|
|
3130
3289
|
type UploadTokenStatusResponse = {
|
|
3131
3290
|
token?: string;
|
|
3132
3291
|
status?: 'pending' | 'completed' | 'expired';
|
|
@@ -3190,7 +3349,7 @@ type Webhook = {
|
|
|
3190
3349
|
/**
|
|
3191
3350
|
* Events subscribed to
|
|
3192
3351
|
*/
|
|
3193
|
-
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | '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')>;
|
|
3352
|
+
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | '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' | 'lead.received')>;
|
|
3194
3353
|
/**
|
|
3195
3354
|
* Whether webhook delivery is enabled
|
|
3196
3355
|
*/
|
|
@@ -3315,7 +3474,7 @@ type event = 'account.ads.initial_sync_completed';
|
|
|
3315
3474
|
/**
|
|
3316
3475
|
* Overall outcome of the initial sync.
|
|
3317
3476
|
*/
|
|
3318
|
-
type
|
|
3477
|
+
type status7 = 'success' | 'failure';
|
|
3319
3478
|
/**
|
|
3320
3479
|
* Stable category for UX branching. New values may be added; existing ones are
|
|
3321
3480
|
* stable. Mapping:
|
|
@@ -3485,6 +3644,32 @@ type WebhookPayloadComment = {
|
|
|
3485
3644
|
};
|
|
3486
3645
|
type event4 = 'comment.received';
|
|
3487
3646
|
type platform6 = 'instagram' | 'facebook' | 'twitter' | 'youtube' | 'linkedin' | 'bluesky' | 'reddit';
|
|
3647
|
+
/**
|
|
3648
|
+
* Webhook payload for the lead.received event. Fired when a Meta Lead Gen
|
|
3649
|
+
* Form receives a new submission. Real-time delivery requires the page to
|
|
3650
|
+
* be subscribed to the `leadgen` webhook field — Zernio subscribes
|
|
3651
|
+
* on connect; existing accounts get backfilled by
|
|
3652
|
+
* `scripts/backfill-fb-webhook-subscriptions.ts`.
|
|
3653
|
+
*
|
|
3654
|
+
* Requires the Ads add-on. Subscribers without the add-on are filtered at
|
|
3655
|
+
* delivery time.
|
|
3656
|
+
*
|
|
3657
|
+
*/
|
|
3658
|
+
type WebhookPayloadLeadReceived = {
|
|
3659
|
+
/**
|
|
3660
|
+
* Stable webhook event ID
|
|
3661
|
+
*/
|
|
3662
|
+
id: string;
|
|
3663
|
+
event: 'lead.received';
|
|
3664
|
+
lead: Lead;
|
|
3665
|
+
account: {
|
|
3666
|
+
id: string;
|
|
3667
|
+
platform: string;
|
|
3668
|
+
username: string;
|
|
3669
|
+
};
|
|
3670
|
+
timestamp: string;
|
|
3671
|
+
};
|
|
3672
|
+
type event5 = 'lead.received';
|
|
3488
3673
|
/**
|
|
3489
3674
|
* Webhook payload for message received events
|
|
3490
3675
|
*/
|
|
@@ -3699,7 +3884,7 @@ type WebhookPayloadMessage = {
|
|
|
3699
3884
|
} | null;
|
|
3700
3885
|
timestamp: string;
|
|
3701
3886
|
};
|
|
3702
|
-
type
|
|
3887
|
+
type event6 = 'message.received';
|
|
3703
3888
|
/**
|
|
3704
3889
|
* WhatsApp only. Which kind of interactive reply the user sent:
|
|
3705
3890
|
* `button_reply` (tap on an interactive button), `list_reply` (tap on a
|
|
@@ -3728,7 +3913,7 @@ type WebhookPayloadMessageDeleted = {
|
|
|
3728
3913
|
account: InboxWebhookAccount;
|
|
3729
3914
|
timestamp: string;
|
|
3730
3915
|
};
|
|
3731
|
-
type
|
|
3916
|
+
type event7 = 'message.deleted';
|
|
3732
3917
|
/**
|
|
3733
3918
|
* Shared payload for message.delivered, message.read, and
|
|
3734
3919
|
* message.failed events. Fires when the platform reports a new
|
|
@@ -3761,7 +3946,7 @@ type WebhookPayloadMessageDeliveryStatus = {
|
|
|
3761
3946
|
account: InboxWebhookAccount;
|
|
3762
3947
|
timestamp: string;
|
|
3763
3948
|
};
|
|
3764
|
-
type
|
|
3949
|
+
type event8 = 'message.delivered' | 'message.read' | 'message.failed';
|
|
3765
3950
|
/**
|
|
3766
3951
|
* Webhook payload for message.edited events. Fires when the sender
|
|
3767
3952
|
* edits a previously-sent message. Supported platforms: Instagram,
|
|
@@ -3801,7 +3986,7 @@ type WebhookPayloadMessageEdited = {
|
|
|
3801
3986
|
account: InboxWebhookAccount;
|
|
3802
3987
|
timestamp: string;
|
|
3803
3988
|
};
|
|
3804
|
-
type
|
|
3989
|
+
type event9 = 'message.edited';
|
|
3805
3990
|
/**
|
|
3806
3991
|
* Webhook payload for message sent events (fired when a message is sent via the API)
|
|
3807
3992
|
*/
|
|
@@ -3875,7 +4060,7 @@ type WebhookPayloadMessageSent = {
|
|
|
3875
4060
|
};
|
|
3876
4061
|
timestamp: string;
|
|
3877
4062
|
};
|
|
3878
|
-
type
|
|
4063
|
+
type event10 = 'message.sent';
|
|
3879
4064
|
/**
|
|
3880
4065
|
* Webhook payload for post events
|
|
3881
4066
|
*/
|
|
@@ -3901,7 +4086,7 @@ type WebhookPayloadPost = {
|
|
|
3901
4086
|
};
|
|
3902
4087
|
timestamp: string;
|
|
3903
4088
|
};
|
|
3904
|
-
type
|
|
4089
|
+
type event11 = 'post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled';
|
|
3905
4090
|
/**
|
|
3906
4091
|
* Webhook payload for the review.new event (new review posted on a connected account).
|
|
3907
4092
|
*/
|
|
@@ -3919,7 +4104,7 @@ type WebhookPayloadReviewNew = {
|
|
|
3919
4104
|
};
|
|
3920
4105
|
timestamp: string;
|
|
3921
4106
|
};
|
|
3922
|
-
type
|
|
4107
|
+
type event12 = 'review.new';
|
|
3923
4108
|
/**
|
|
3924
4109
|
* Webhook payload for the review.updated event. Fired when the reviewer edits
|
|
3925
4110
|
* their text or rating, or when a reply is added (via the API or directly on the
|
|
@@ -3941,7 +4126,7 @@ type WebhookPayloadReviewUpdated = {
|
|
|
3941
4126
|
};
|
|
3942
4127
|
timestamp: string;
|
|
3943
4128
|
};
|
|
3944
|
-
type
|
|
4129
|
+
type event13 = 'review.updated';
|
|
3945
4130
|
/**
|
|
3946
4131
|
* Webhook payload for test deliveries
|
|
3947
4132
|
*/
|
|
@@ -3957,7 +4142,7 @@ type WebhookPayloadTest = {
|
|
|
3957
4142
|
message: string;
|
|
3958
4143
|
timestamp: string;
|
|
3959
4144
|
};
|
|
3960
|
-
type
|
|
4145
|
+
type event14 = 'webhook.test';
|
|
3961
4146
|
type WhatsAppBodyComponent = {
|
|
3962
4147
|
type: 'body';
|
|
3963
4148
|
/**
|
|
@@ -13207,9 +13392,13 @@ type CreateStandaloneAdData = {
|
|
|
13207
13392
|
*/
|
|
13208
13393
|
body?: string;
|
|
13209
13394
|
/**
|
|
13210
|
-
* Required on legacy + attach shapes for Meta. Honoured on TikTok too — passes through to the Spark Ad creative's `call_to_action`. Ignored by other platforms.
|
|
13395
|
+
* Required on legacy + attach shapes for Meta. Honoured on TikTok too — passes through to the Spark Ad creative's `call_to_action`. Ignored by other platforms. Ignored on Meta when `leadGenFormId` is set — lead ads force CTA type to SIGN_UP.
|
|
13211
13396
|
*/
|
|
13212
13397
|
callToAction?: 'LEARN_MORE' | 'SHOP_NOW' | 'SIGN_UP' | 'BOOK_TRAVEL' | 'CONTACT_US' | 'DOWNLOAD' | 'GET_OFFER' | 'GET_QUOTE' | 'SUBSCRIBE' | 'WATCH_MORE';
|
|
13398
|
+
/**
|
|
13399
|
+
* Meta-only. Attaches a Lead Gen (Instant) Form to the creative. Required when `goal="lead_generation"`. Force-overrides the CTA to SIGN_UP. Create a form first via POST /v1/ads/lead-forms. On the multi-creative shape this can also be set per `creatives[i]` to A/B different forms inside one ad set.
|
|
13400
|
+
*/
|
|
13401
|
+
leadGenFormId?: string;
|
|
13213
13402
|
/**
|
|
13214
13403
|
* Required on legacy + attach shapes. Skip for multi-creative.
|
|
13215
13404
|
*/
|
|
@@ -13267,6 +13456,10 @@ type CreateStandaloneAdData = {
|
|
|
13267
13456
|
};
|
|
13268
13457
|
linkUrl: string;
|
|
13269
13458
|
callToAction: 'LEARN_MORE' | 'SHOP_NOW' | 'SIGN_UP' | 'BOOK_TRAVEL' | 'CONTACT_US' | 'DOWNLOAD' | 'GET_OFFER' | 'GET_QUOTE' | 'SUBSCRIBE' | 'WATCH_MORE';
|
|
13459
|
+
/**
|
|
13460
|
+
* Per-creative Lead Gen Form ID. Wins over the top-level `leadGenFormId` so each ad in a campaign can A/B a different form. Forces CTA to SIGN_UP.
|
|
13461
|
+
*/
|
|
13462
|
+
leadGenFormId?: string;
|
|
13270
13463
|
}>;
|
|
13271
13464
|
/**
|
|
13272
13465
|
* Meta-only. When present, switches to the attach shape: adds
|
|
@@ -13707,6 +13900,165 @@ type AddUsersToAdAudienceResponse = ({
|
|
|
13707
13900
|
type AddUsersToAdAudienceError = (unknown | {
|
|
13708
13901
|
error?: string;
|
|
13709
13902
|
});
|
|
13903
|
+
type ListLeadFormsData = {
|
|
13904
|
+
query: {
|
|
13905
|
+
/**
|
|
13906
|
+
* Facebook social account ID (Late SocialAccount _id)
|
|
13907
|
+
*/
|
|
13908
|
+
accountId: string;
|
|
13909
|
+
/**
|
|
13910
|
+
* Meta `paging.cursors.after` from a prior page
|
|
13911
|
+
*/
|
|
13912
|
+
cursor?: string;
|
|
13913
|
+
limit?: number;
|
|
13914
|
+
};
|
|
13915
|
+
};
|
|
13916
|
+
type ListLeadFormsResponse = ({
|
|
13917
|
+
status?: string;
|
|
13918
|
+
forms?: Array<LeadGenForm>;
|
|
13919
|
+
pagination?: {
|
|
13920
|
+
hasMore?: boolean;
|
|
13921
|
+
cursor?: (string) | null;
|
|
13922
|
+
};
|
|
13923
|
+
meta?: LeadFormResponseMeta;
|
|
13924
|
+
});
|
|
13925
|
+
type ListLeadFormsError = ({
|
|
13926
|
+
error?: string;
|
|
13927
|
+
} | unknown);
|
|
13928
|
+
type CreateLeadFormData = {
|
|
13929
|
+
body: CreateLeadFormBody;
|
|
13930
|
+
};
|
|
13931
|
+
type CreateLeadFormResponse = ({
|
|
13932
|
+
status?: string;
|
|
13933
|
+
form?: {
|
|
13934
|
+
id?: string;
|
|
13935
|
+
name?: string;
|
|
13936
|
+
};
|
|
13937
|
+
meta?: LeadFormResponseMeta;
|
|
13938
|
+
});
|
|
13939
|
+
type CreateLeadFormError = (unknown | {
|
|
13940
|
+
error?: string;
|
|
13941
|
+
});
|
|
13942
|
+
type GetLeadFormData = {
|
|
13943
|
+
path: {
|
|
13944
|
+
/**
|
|
13945
|
+
* Meta lead form ID (numeric string)
|
|
13946
|
+
*/
|
|
13947
|
+
formId: string;
|
|
13948
|
+
};
|
|
13949
|
+
query: {
|
|
13950
|
+
accountId: string;
|
|
13951
|
+
};
|
|
13952
|
+
};
|
|
13953
|
+
type GetLeadFormResponse = ({
|
|
13954
|
+
status?: string;
|
|
13955
|
+
form?: LeadGenForm;
|
|
13956
|
+
meta?: LeadFormResponseMeta;
|
|
13957
|
+
});
|
|
13958
|
+
type GetLeadFormError = ({
|
|
13959
|
+
error?: string;
|
|
13960
|
+
} | unknown);
|
|
13961
|
+
type UpdateLeadFormData = {
|
|
13962
|
+
body: {
|
|
13963
|
+
accountId: string;
|
|
13964
|
+
status: 'ACTIVE' | 'ARCHIVED' | 'DRAFT';
|
|
13965
|
+
};
|
|
13966
|
+
path: {
|
|
13967
|
+
formId: string;
|
|
13968
|
+
};
|
|
13969
|
+
};
|
|
13970
|
+
type UpdateLeadFormResponse = ({
|
|
13971
|
+
status?: string;
|
|
13972
|
+
success?: boolean;
|
|
13973
|
+
meta?: LeadFormResponseMeta;
|
|
13974
|
+
});
|
|
13975
|
+
type UpdateLeadFormError = (unknown | {
|
|
13976
|
+
error?: string;
|
|
13977
|
+
});
|
|
13978
|
+
type DeleteLeadFormData = {
|
|
13979
|
+
path: {
|
|
13980
|
+
formId: string;
|
|
13981
|
+
};
|
|
13982
|
+
query: {
|
|
13983
|
+
accountId: string;
|
|
13984
|
+
};
|
|
13985
|
+
};
|
|
13986
|
+
type DeleteLeadFormResponse = ({
|
|
13987
|
+
status?: string;
|
|
13988
|
+
success?: boolean;
|
|
13989
|
+
meta?: LeadFormResponseMeta;
|
|
13990
|
+
});
|
|
13991
|
+
type DeleteLeadFormError = ({
|
|
13992
|
+
error?: string;
|
|
13993
|
+
} | unknown);
|
|
13994
|
+
type ListLeadFormLeadsData = {
|
|
13995
|
+
path: {
|
|
13996
|
+
formId: string;
|
|
13997
|
+
};
|
|
13998
|
+
query: {
|
|
13999
|
+
accountId: string;
|
|
14000
|
+
cursor?: string;
|
|
14001
|
+
limit?: number;
|
|
14002
|
+
/**
|
|
14003
|
+
* Unix timestamp; only return leads created strictly after this.
|
|
14004
|
+
*/
|
|
14005
|
+
since?: number;
|
|
14006
|
+
};
|
|
14007
|
+
};
|
|
14008
|
+
type ListLeadFormLeadsResponse = ({
|
|
14009
|
+
status?: string;
|
|
14010
|
+
leads?: Array<Lead>;
|
|
14011
|
+
pagination?: {
|
|
14012
|
+
hasMore?: boolean;
|
|
14013
|
+
cursor?: (string) | null;
|
|
14014
|
+
};
|
|
14015
|
+
meta?: LeadFormResponseMeta;
|
|
14016
|
+
});
|
|
14017
|
+
type ListLeadFormLeadsError = ({
|
|
14018
|
+
error?: string;
|
|
14019
|
+
} | unknown);
|
|
14020
|
+
type CreateLeadFormTestLeadData = {
|
|
14021
|
+
body: {
|
|
14022
|
+
accountId: string;
|
|
14023
|
+
fieldData: Array<{
|
|
14024
|
+
/**
|
|
14025
|
+
* Question key (matches `key` from form definition)
|
|
14026
|
+
*/
|
|
14027
|
+
name: string;
|
|
14028
|
+
values: Array<(string)>;
|
|
14029
|
+
}>;
|
|
14030
|
+
};
|
|
14031
|
+
path: {
|
|
14032
|
+
formId: string;
|
|
14033
|
+
};
|
|
14034
|
+
};
|
|
14035
|
+
type CreateLeadFormTestLeadResponse = ({
|
|
14036
|
+
status?: string;
|
|
14037
|
+
testLead?: {
|
|
14038
|
+
id?: string;
|
|
14039
|
+
};
|
|
14040
|
+
meta?: LeadFormResponseMeta;
|
|
14041
|
+
});
|
|
14042
|
+
type CreateLeadFormTestLeadError = ({
|
|
14043
|
+
error?: string;
|
|
14044
|
+
} | unknown);
|
|
14045
|
+
type DeleteLeadFormTestLeadData = {
|
|
14046
|
+
path: {
|
|
14047
|
+
formId: string;
|
|
14048
|
+
leadId: string;
|
|
14049
|
+
};
|
|
14050
|
+
query: {
|
|
14051
|
+
accountId: string;
|
|
14052
|
+
};
|
|
14053
|
+
};
|
|
14054
|
+
type DeleteLeadFormTestLeadResponse = ({
|
|
14055
|
+
status?: string;
|
|
14056
|
+
success?: boolean;
|
|
14057
|
+
meta?: LeadFormResponseMeta;
|
|
14058
|
+
});
|
|
14059
|
+
type DeleteLeadFormTestLeadError = ({
|
|
14060
|
+
error?: string;
|
|
14061
|
+
} | unknown);
|
|
13710
14062
|
type SendConversionsData = {
|
|
13711
14063
|
body: {
|
|
13712
14064
|
/**
|
|
@@ -14030,4 +14382,4 @@ type CreateCtwaAdError = (unknown | {
|
|
|
14030
14382
|
error?: string;
|
|
14031
14383
|
});
|
|
14032
14384
|
|
|
14033
|
-
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 AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddUsersToAdAudienceData, type AddUsersToAdAudienceError, type AddUsersToAdAudienceResponse, type AddWhatsAppGroupParticipantsData, type AddWhatsAppGroupParticipantsError, type AddWhatsAppGroupParticipantsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type ApproveWhatsAppGroupJoinRequestsData, type ApproveWhatsAppGroupJoinRequestsError, type ApproveWhatsAppGroupJoinRequestsResponse, type 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 ConfigureTikTokAdsBrandIdentityData, type ConfigureTikTokAdsBrandIdentityError, type ConfigureTikTokAdsBrandIdentityResponse, type ConnectAdsData, type ConnectAdsError, type ConnectAdsResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type ConversionEvent, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateAdAudienceData, type CreateAdAudienceError, type CreateAdAudienceResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateBroadcastData, type CreateBroadcastError, type CreateBroadcastResponse, type CreateCommentAutomationData, type CreateCommentAutomationError, type CreateCommentAutomationResponse, type CreateContactData, type CreateContactError, type CreateContactResponse, type 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 CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppFlowData, type CreateWhatsAppFlowError, type CreateWhatsAppFlowResponse, type CreateWhatsAppGroupChatData, type CreateWhatsAppGroupChatError, type CreateWhatsAppGroupChatResponse, type CreateWhatsAppGroupInviteLinkData, type CreateWhatsAppGroupInviteLinkError, type CreateWhatsAppGroupInviteLinkResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteAdAudienceData, type DeleteAdAudienceError, type DeleteAdAudienceResponse, type 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 DeleteCustomFieldData, type DeleteCustomFieldError, type DeleteCustomFieldResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxMessageData, type DeleteInboxMessageError, type DeleteInboxMessageResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteMessengerMenuData, type DeleteMessengerMenuError, type DeleteMessengerMenuResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteSequenceData, type DeleteSequenceError, type DeleteSequenceResponse, type DeleteTelegramCommandsData, type DeleteTelegramCommandsError, type DeleteTelegramCommandsResponse, type DeleteWebhookSettingsData, type DeleteWebhookSettingsError, type DeleteWebhookSettingsResponse, type DeleteWhatsAppFlowData, type DeleteWhatsAppFlowError, type DeleteWhatsAppFlowResponse, type DeleteWhatsAppGroupChatData, type DeleteWhatsAppGroupChatError, type DeleteWhatsAppGroupChatResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, type DeprecateWhatsAppFlowData, type DeprecateWhatsAppFlowError, type DeprecateWhatsAppFlowResponse, type DiscordPlatformData, type 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 GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetBroadcastData, type GetBroadcastError, type GetBroadcastResponse, type GetCommentAutomationData, type GetCommentAutomationError, type GetCommentAutomationResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetContactChannelsData, type GetContactChannelsError, type GetContactChannelsResponse, type GetContactData, type GetContactError, type GetContactResponse, type GetContentDecayData, type GetContentDecayError, type GetContentDecayResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetDiscordChannelsData, type GetDiscordChannelsError, type GetDiscordChannelsResponse, type GetDiscordSettingsData, type GetDiscordSettingsError, type GetDiscordSettingsResponse, type 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 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 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 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 ListConversionDestinationsData, type ListConversionDestinationsError, type ListConversionDestinationsResponse, type ListCustomFieldsData, type ListCustomFieldsError, type ListCustomFieldsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListGoogleBusinessMediaData, type ListGoogleBusinessMediaError, type ListGoogleBusinessMediaResponse, type ListGoogleBusinessPlaceActionsData, type ListGoogleBusinessPlaceActionsError, type ListGoogleBusinessPlaceActionsResponse, type ListInboxCommentsData, type ListInboxCommentsError, type ListInboxCommentsResponse, type ListInboxConversationsData, type ListInboxConversationsError, type ListInboxConversationsResponse, type ListInboxReviewsData, type ListInboxReviewsError, type ListInboxReviewsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListLogsData, type ListLogsError, type ListLogsResponse, type ListPinterestBoardsForSelectionData, type ListPinterestBoardsForSelectionError, type ListPinterestBoardsForSelectionResponse, type ListPostsData, type ListPostsError, type ListPostsResponse, type ListProfilesData, type ListProfilesError, type ListProfilesResponse, type ListQueueSlotsData, type ListQueueSlotsError, type ListQueueSlotsResponse, type ListSequenceEnrollmentsData, type ListSequenceEnrollmentsError, type ListSequenceEnrollmentsResponse, type ListSequencesData, type ListSequencesError, type ListSequencesResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type ListWhatsAppFlowsData, type ListWhatsAppFlowsError, type ListWhatsAppFlowsResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type MediaItem, type MediaUploadResponse, type Money, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PauseSequenceData, type PauseSequenceError, type PauseSequenceResponse, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostRetryResponse, type PostUpdateResponse, type PostsListResponse, type PreviewQueueData, type PreviewQueueError, type PreviewQueueResponse, type Profile, type ProfileCreateResponse, type ProfileDeleteResponse, type ProfileGetResponse, type ProfileUpdateResponse, type ProfilesListResponse, type PublishWhatsAppFlowData, type PublishWhatsAppFlowError, type PublishWhatsAppFlowResponse, type PurchaseWhatsAppPhoneNumberData, type PurchaseWhatsAppPhoneNumberError, type PurchaseWhatsAppPhoneNumberResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type RedditPost, type RejectWhatsAppGroupJoinRequestsData, type RejectWhatsAppGroupJoinRequestsError, type RejectWhatsAppGroupJoinRequestsResponse, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type 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 SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TwitterPlatformData, type UndoRetweetData, type UndoRetweetError, type UndoRetweetResponse, type UnenrollContactData, type UnenrollContactError, type UnenrollContactResponse, type UnfollowUserData, type UnfollowUserError, type UnfollowUserResponse, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type 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 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 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 WebhookPayloadComment, type WebhookPayloadMessage, type WebhookPayloadMessageDeleted, type WebhookPayloadMessageDeliveryStatus, type WebhookPayloadMessageEdited, type WebhookPayloadMessageSent, type WebhookPayloadPost, type WebhookPayloadReviewNew, type WebhookPayloadReviewUpdated, type WebhookPayloadTest, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type YouTubeDailyViewsResponse, type YouTubeDemographicsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, Zernio, ZernioApiError, type actionSource, type adType, type aggregation, type aggregation2, type aggregation3, type autoArchiveDuration, type billingPeriod, type 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 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 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 replySettings, type reviewStatus, type scope, type status, type status2, type status3, type status4, type status5, type status6, type syncStatus, type syncStatus2, type timeframe, type topicType, type type, type type2, type type3, type type4, type type5, type visibility };
|
|
14385
|
+
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 AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddUsersToAdAudienceData, type AddUsersToAdAudienceError, type AddUsersToAdAudienceResponse, type AddWhatsAppGroupParticipantsData, type AddWhatsAppGroupParticipantsError, type AddWhatsAppGroupParticipantsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type ApproveWhatsAppGroupJoinRequestsData, type ApproveWhatsAppGroupJoinRequestsError, type ApproveWhatsAppGroupJoinRequestsResponse, type 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 ConfigureTikTokAdsBrandIdentityData, type ConfigureTikTokAdsBrandIdentityError, type ConfigureTikTokAdsBrandIdentityResponse, type ConnectAdsData, type ConnectAdsError, type ConnectAdsResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type ConversionEvent, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateAdAudienceData, type CreateAdAudienceError, type CreateAdAudienceResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateBroadcastData, type CreateBroadcastError, type CreateBroadcastResponse, type CreateCommentAutomationData, type CreateCommentAutomationError, type CreateCommentAutomationResponse, type CreateContactData, type CreateContactError, type CreateContactResponse, type 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 CreateLeadFormBody, type CreateLeadFormData, type CreateLeadFormError, type CreateLeadFormResponse, type CreateLeadFormTestLeadData, type CreateLeadFormTestLeadError, type CreateLeadFormTestLeadResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateSequenceData, type CreateSequenceError, type CreateSequenceResponse, type CreateStandaloneAdData, type CreateStandaloneAdError, type CreateStandaloneAdResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppFlowData, type CreateWhatsAppFlowError, type CreateWhatsAppFlowResponse, type CreateWhatsAppGroupChatData, type CreateWhatsAppGroupChatError, type CreateWhatsAppGroupChatResponse, type CreateWhatsAppGroupInviteLinkData, type CreateWhatsAppGroupInviteLinkError, type CreateWhatsAppGroupInviteLinkResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteAdAudienceData, type DeleteAdAudienceError, type DeleteAdAudienceResponse, type 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 DeleteCustomFieldData, type DeleteCustomFieldError, type DeleteCustomFieldResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxMessageData, type DeleteInboxMessageError, type DeleteInboxMessageResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteLeadFormData, type DeleteLeadFormError, type DeleteLeadFormResponse, type DeleteLeadFormTestLeadData, type DeleteLeadFormTestLeadError, type DeleteLeadFormTestLeadResponse, 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 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 GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetBroadcastData, type GetBroadcastError, type GetBroadcastResponse, type GetCommentAutomationData, type GetCommentAutomationError, type GetCommentAutomationResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetContactChannelsData, type GetContactChannelsError, type GetContactChannelsResponse, type GetContactData, type GetContactError, type GetContactResponse, type GetContentDecayData, type GetContentDecayError, type GetContentDecayResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetDiscordChannelsData, type GetDiscordChannelsError, type GetDiscordChannelsResponse, type GetDiscordSettingsData, type GetDiscordSettingsError, type GetDiscordSettingsResponse, type 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 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 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 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 Lead, type LeadFormResponseMeta, type LeadGenForm, type LeadGenFormQuestion, 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 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 ListLeadFormLeadsData, type ListLeadFormLeadsError, type ListLeadFormLeadsResponse, type ListLeadFormsData, type ListLeadFormsError, type ListLeadFormsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListLogsData, type ListLogsError, type ListLogsResponse, type ListPinterestBoardsForSelectionData, type ListPinterestBoardsForSelectionError, type ListPinterestBoardsForSelectionResponse, type ListPostsData, type ListPostsError, type ListPostsResponse, type ListProfilesData, type ListProfilesError, type ListProfilesResponse, type ListQueueSlotsData, type ListQueueSlotsError, type ListQueueSlotsResponse, type ListSequenceEnrollmentsData, type ListSequenceEnrollmentsError, type ListSequenceEnrollmentsResponse, type ListSequencesData, type ListSequencesError, type ListSequencesResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type ListWhatsAppFlowsData, type ListWhatsAppFlowsError, type ListWhatsAppFlowsResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type MediaItem, type MediaUploadResponse, type Money, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PauseSequenceData, type PauseSequenceError, type PauseSequenceResponse, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostRetryResponse, type PostUpdateResponse, type PostsListResponse, type PreviewQueueData, type PreviewQueueError, type PreviewQueueResponse, type Profile, type ProfileCreateResponse, type ProfileDeleteResponse, type ProfileGetResponse, type ProfileUpdateResponse, type ProfilesListResponse, type PublishWhatsAppFlowData, type PublishWhatsAppFlowError, type PublishWhatsAppFlowResponse, type PurchaseWhatsAppPhoneNumberData, type PurchaseWhatsAppPhoneNumberError, type PurchaseWhatsAppPhoneNumberResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type RedditPost, type RejectWhatsAppGroupJoinRequestsData, type RejectWhatsAppGroupJoinRequestsError, type RejectWhatsAppGroupJoinRequestsResponse, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type 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 SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TwitterPlatformData, type UndoRetweetData, type UndoRetweetError, type UndoRetweetResponse, type UnenrollContactData, type UnenrollContactError, type UnenrollContactResponse, type UnfollowUserData, type UnfollowUserError, type UnfollowUserResponse, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type 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 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 UpdateLeadFormData, type UpdateLeadFormError, type UpdateLeadFormResponse, type UpdateLinkedInOrganizationData, type UpdateLinkedInOrganizationError, type UpdateLinkedInOrganizationResponse, type UpdatePinterestBoardsData, type UpdatePinterestBoardsError, type UpdatePinterestBoardsResponse, type UpdatePostData, type UpdatePostError, type UpdatePostMetadataData, type UpdatePostMetadataError, type UpdatePostMetadataResponse, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateSequenceData, type UpdateSequenceError, type UpdateSequenceResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppDisplayNameData, type UpdateWhatsAppDisplayNameError, type UpdateWhatsAppDisplayNameResponse, type UpdateWhatsAppFlowData, type UpdateWhatsAppFlowError, type UpdateWhatsAppFlowResponse, type UpdateWhatsAppGroupChatData, type UpdateWhatsAppGroupChatError, type UpdateWhatsAppGroupChatResponse, type UpdateWhatsAppTemplateData, type UpdateWhatsAppTemplateError, type UpdateWhatsAppTemplateResponse, type UpdateYoutubeDefaultPlaylistData, type UpdateYoutubeDefaultPlaylistError, type UpdateYoutubeDefaultPlaylistResponse, type UploadMediaDirectData, type UploadMediaDirectError, type UploadMediaDirectResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadWhatsAppFlowJsonData, type UploadWhatsAppFlowJsonError, type UploadWhatsAppFlowJsonResponse, type UploadWhatsAppProfilePhotoData, type UploadWhatsAppProfilePhotoError, type UploadWhatsAppProfilePhotoResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, type ValidateMediaData, type ValidateMediaError, type ValidateMediaResponse, type ValidatePostData, type ValidatePostError, type ValidatePostLengthData, type ValidatePostLengthError, type ValidatePostLengthResponse, type ValidatePostResponse, type ValidateSubredditData, type ValidateSubredditError, type ValidateSubredditResponse, ValidationError, type Webhook, type WebhookPayloadAccountAdsInitialSyncCompleted, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadComment, type WebhookPayloadLeadReceived, type WebhookPayloadMessage, type WebhookPayloadMessageDeleted, type WebhookPayloadMessageDeliveryStatus, type WebhookPayloadMessageEdited, type WebhookPayloadMessageSent, type WebhookPayloadPost, type WebhookPayloadReviewNew, type WebhookPayloadReviewUpdated, type WebhookPayloadTest, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type YouTubeDailyViewsResponse, type YouTubeDemographicsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, Zernio, ZernioApiError, type actionSource, type adType, type aggregation, type aggregation2, type aggregation3, type autoArchiveDuration, type billingPeriod, type 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 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 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 replySettings, type reviewStatus, type scope, type status, type status2, type status3, type status4, type status5, type status6, type status7, type style, type syncStatus, type syncStatus2, type timeframe, type topicType, type type, type type2, type type3, type type4, type type5, type visibility };
|