@zernio/node 0.2.121 → 0.2.123
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 +8 -0
- package/dist/index.d.mts +409 -22
- package/dist/index.d.ts +409 -22
- package/dist/index.js +56 -0
- package/dist/index.mjs +56 -0
- package/package.json +1 -1
- package/src/client.ts +16 -0
- package/src/generated/sdk.gen.ts +181 -15
- package/src/generated/types.gen.ts +426 -21
package/dist/index.d.ts
CHANGED
|
@@ -510,6 +510,14 @@ declare class Zernio {
|
|
|
510
510
|
searchAdTargetingLocations: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SearchAdTargetingLocationsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SearchAdTargetingLocationsResponse, unknown, ThrowOnError>;
|
|
511
511
|
sendConversions: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SendConversionsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SendConversionsResponse, unknown, ThrowOnError>;
|
|
512
512
|
listConversionDestinations: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListConversionDestinationsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListConversionDestinationsResponse, unknown, ThrowOnError>;
|
|
513
|
+
createConversionDestination: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateConversionDestinationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateConversionDestinationResponse, unknown, ThrowOnError>;
|
|
514
|
+
getConversionDestination: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetConversionDestinationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetConversionDestinationResponse, unknown, ThrowOnError>;
|
|
515
|
+
updateConversionDestination: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateConversionDestinationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateConversionDestinationResponse, unknown, ThrowOnError>;
|
|
516
|
+
deleteConversionDestination: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteConversionDestinationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<void, unknown, ThrowOnError>;
|
|
517
|
+
listConversionAssociations: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListConversionAssociationsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListConversionAssociationsResponse, unknown, ThrowOnError>;
|
|
518
|
+
addConversionAssociations: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<AddConversionAssociationsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<AddConversionAssociationsResponse, unknown, ThrowOnError>;
|
|
519
|
+
removeConversionAssociations: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<RemoveConversionAssociationsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<RemoveConversionAssociationsResponse, unknown, ThrowOnError>;
|
|
520
|
+
getConversionMetrics: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetConversionMetricsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetConversionMetricsResponse, unknown, ThrowOnError>;
|
|
513
521
|
createCtwaAd: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateCtwaAdData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateCtwaAdResponse, unknown, ThrowOnError>;
|
|
514
522
|
};
|
|
515
523
|
/**
|
|
@@ -1373,6 +1381,46 @@ type BusinessCenter = {
|
|
|
1373
1381
|
*/
|
|
1374
1382
|
advertiserCount?: (number) | null;
|
|
1375
1383
|
};
|
|
1384
|
+
/**
|
|
1385
|
+
* A discoverable conversion destination on an ad platform — a Meta pixel,
|
|
1386
|
+
* Google conversion action, or LinkedIn conversion rule. Returned by
|
|
1387
|
+
* `listConversionDestinations`, `getConversionDestination`,
|
|
1388
|
+
* `createConversionDestination`, and `updateConversionDestination`.
|
|
1389
|
+
*
|
|
1390
|
+
*/
|
|
1391
|
+
type ConversionDestination = {
|
|
1392
|
+
/**
|
|
1393
|
+
* Platform-native identifier. Pass back as `destinationId` on event
|
|
1394
|
+
* send and as the path segment on CRUD endpoints.
|
|
1395
|
+
*
|
|
1396
|
+
*/
|
|
1397
|
+
id: string;
|
|
1398
|
+
name: string;
|
|
1399
|
+
/**
|
|
1400
|
+
* Present when the platform locks the event type/category to the
|
|
1401
|
+
* destination (Google conversion actions, LinkedIn conversion rules).
|
|
1402
|
+
* Absent for Meta pixels (which accept any event name per request).
|
|
1403
|
+
*
|
|
1404
|
+
*/
|
|
1405
|
+
type?: string;
|
|
1406
|
+
/**
|
|
1407
|
+
* For LinkedIn, `inactive` means the rule is soft-deleted (`enabled: false`).
|
|
1408
|
+
*
|
|
1409
|
+
*/
|
|
1410
|
+
status?: 'active' | 'inactive';
|
|
1411
|
+
/**
|
|
1412
|
+
* Set by adapters whose destinations are scoped to a specific ad
|
|
1413
|
+
* account (LinkedIn). Pass back on subsequent CRUD calls to
|
|
1414
|
+
* identify the parent ad account.
|
|
1415
|
+
*
|
|
1416
|
+
*/
|
|
1417
|
+
adAccountId?: string;
|
|
1418
|
+
};
|
|
1419
|
+
/**
|
|
1420
|
+
* For LinkedIn, `inactive` means the rule is soft-deleted (`enabled: false`).
|
|
1421
|
+
*
|
|
1422
|
+
*/
|
|
1423
|
+
type status2 = 'active' | 'inactive';
|
|
1376
1424
|
/**
|
|
1377
1425
|
* A single conversion event to relay to the ad platform. All PII fields
|
|
1378
1426
|
* (email, phone, names) are hashed with SHA-256 server-side using each
|
|
@@ -1385,7 +1433,12 @@ type ConversionEvent = {
|
|
|
1385
1433
|
* Standard event name (Purchase, Lead, CompleteRegistration, AddToCart,
|
|
1386
1434
|
* InitiateCheckout, AddPaymentInfo, Subscribe, StartTrial, ViewContent,
|
|
1387
1435
|
* Search, Contact, SubmitApplication, Schedule) or a custom string
|
|
1388
|
-
* (only supported on platforms that accept custom events).
|
|
1436
|
+
* (only supported on platforms that accept custom events — Meta).
|
|
1437
|
+
*
|
|
1438
|
+
* Per-platform behavior:
|
|
1439
|
+
* - Meta: free-form; standard names match Meta's built-ins.
|
|
1440
|
+
* - Google: ignored — the conversion action's category determines the type.
|
|
1441
|
+
* - LinkedIn: ignored — the conversion rule's `type` is locked to the destination.
|
|
1389
1442
|
*
|
|
1390
1443
|
*/
|
|
1391
1444
|
eventName: string;
|
|
@@ -1395,8 +1448,10 @@ type ConversionEvent = {
|
|
|
1395
1448
|
eventTime: number;
|
|
1396
1449
|
/**
|
|
1397
1450
|
* Unique dedup key. The same eventId must be used on pixel + CAPI
|
|
1398
|
-
* to prevent double-counting. Mapped to event_id on Meta
|
|
1399
|
-
* transactionId on Google
|
|
1451
|
+
* to prevent double-counting. Mapped to event_id on Meta,
|
|
1452
|
+
* transactionId on Google, eventId on LinkedIn (LinkedIn deduplicates
|
|
1453
|
+
* against Insight Tag events with the same eventId; the Insight Tag
|
|
1454
|
+
* event wins when both arrive).
|
|
1400
1455
|
*
|
|
1401
1456
|
*/
|
|
1402
1457
|
eventId: string;
|
|
@@ -1429,7 +1484,11 @@ type ConversionEvent = {
|
|
|
1429
1484
|
*/
|
|
1430
1485
|
lastName?: string;
|
|
1431
1486
|
/**
|
|
1432
|
-
* Stable customer identifier (e.g. CRM user ID). Hashed
|
|
1487
|
+
* Stable customer identifier (e.g. CRM user ID). Hashed
|
|
1488
|
+
* server-side for Meta and Google. Sent as plaintext to LinkedIn
|
|
1489
|
+
* (LinkedIn's Conversions API spec requires the raw value).
|
|
1490
|
+
* Maximum effective list size on LinkedIn is 1.
|
|
1491
|
+
*
|
|
1433
1492
|
*/
|
|
1434
1493
|
externalId?: string;
|
|
1435
1494
|
/**
|
|
@@ -1468,6 +1527,16 @@ type ConversionEvent = {
|
|
|
1468
1527
|
* Google iOS 14.5+ web-to-app attribution ID.
|
|
1469
1528
|
*/
|
|
1470
1529
|
wbraid?: string;
|
|
1530
|
+
/**
|
|
1531
|
+
* LinkedIn first-party ad tracking click ID. Captured by
|
|
1532
|
+
* parsing `li_fat_id` from landing-page URLs after the
|
|
1533
|
+
* advertiser enables enhanced conversion tracking on the
|
|
1534
|
+
* LinkedIn Insight Tag. Sent to LinkedIn as the
|
|
1535
|
+
* LINKEDIN_FIRST_PARTY_ADS_TRACKING_UUID userId. Opaque
|
|
1536
|
+
* token, not hashed.
|
|
1537
|
+
*
|
|
1538
|
+
*/
|
|
1539
|
+
li_fat_id?: string;
|
|
1471
1540
|
};
|
|
1472
1541
|
};
|
|
1473
1542
|
/**
|
|
@@ -1899,7 +1968,7 @@ type InboxWebhookConversation = {
|
|
|
1899
1968
|
participantPicture?: string;
|
|
1900
1969
|
status: 'active' | 'archived';
|
|
1901
1970
|
};
|
|
1902
|
-
type
|
|
1971
|
+
type status3 = 'active' | 'archived';
|
|
1903
1972
|
/**
|
|
1904
1973
|
* The message object included in inbox webhook payloads.
|
|
1905
1974
|
*/
|
|
@@ -2402,7 +2471,7 @@ type PlatformAnalytics = {
|
|
|
2402
2471
|
*/
|
|
2403
2472
|
errorMessage?: (string) | null;
|
|
2404
2473
|
};
|
|
2405
|
-
type
|
|
2474
|
+
type status4 = 'published' | 'failed';
|
|
2406
2475
|
/**
|
|
2407
2476
|
* Sync state of analytics for this platform
|
|
2408
2477
|
*/
|
|
@@ -2506,7 +2575,7 @@ type Post = {
|
|
|
2506
2575
|
createdAt?: string;
|
|
2507
2576
|
updatedAt?: string;
|
|
2508
2577
|
};
|
|
2509
|
-
type
|
|
2578
|
+
type status5 = 'draft' | 'scheduled' | 'publishing' | 'published' | 'failed' | 'partial';
|
|
2510
2579
|
type visibility = 'public' | 'private' | 'unlisted';
|
|
2511
2580
|
type PostAnalytics = {
|
|
2512
2581
|
impressions?: number;
|
|
@@ -3129,7 +3198,7 @@ type UploadTokenResponse = {
|
|
|
3129
3198
|
expiresAt?: string;
|
|
3130
3199
|
status?: 'pending' | 'completed' | 'expired';
|
|
3131
3200
|
};
|
|
3132
|
-
type
|
|
3201
|
+
type status6 = 'pending' | 'completed' | 'expired';
|
|
3133
3202
|
type UploadTokenStatusResponse = {
|
|
3134
3203
|
token?: string;
|
|
3135
3204
|
status?: 'pending' | 'completed' | 'expired';
|
|
@@ -3428,7 +3497,7 @@ type event = 'account.ads.initial_sync_completed';
|
|
|
3428
3497
|
/**
|
|
3429
3498
|
* Overall outcome of the initial sync.
|
|
3430
3499
|
*/
|
|
3431
|
-
type
|
|
3500
|
+
type status7 = 'success' | 'failure';
|
|
3432
3501
|
/**
|
|
3433
3502
|
* Stable category for UX branching. New values may be added; existing ones are
|
|
3434
3503
|
* stable. Mapping:
|
|
@@ -3786,6 +3855,32 @@ type WebhookPayloadMessage = {
|
|
|
3786
3855
|
flowResponseData?: {
|
|
3787
3856
|
[key: string]: unknown;
|
|
3788
3857
|
};
|
|
3858
|
+
/**
|
|
3859
|
+
* Instagram only. Populated when an IG user replies to one of the
|
|
3860
|
+
* account's stories (Meta `messaging_story_replies`). Mutually
|
|
3861
|
+
* exclusive in practice with `isStoryMention`.
|
|
3862
|
+
*
|
|
3863
|
+
*/
|
|
3864
|
+
storyReply?: {
|
|
3865
|
+
/**
|
|
3866
|
+
* The Instagram story ID the user replied to.
|
|
3867
|
+
*/
|
|
3868
|
+
storyId: string;
|
|
3869
|
+
/**
|
|
3870
|
+
* Meta CDN URL for the story media. Expires approximately
|
|
3871
|
+
* 24 hours after the story posted; consumers must fetch
|
|
3872
|
+
* promptly or treat 404s as expected.
|
|
3873
|
+
*
|
|
3874
|
+
*/
|
|
3875
|
+
storyUrl?: string;
|
|
3876
|
+
};
|
|
3877
|
+
/**
|
|
3878
|
+
* Instagram only. True when the message was generated by an IG
|
|
3879
|
+
* user mentioning the account in their own story (`story_mention`
|
|
3880
|
+
* attachment type). Mutually exclusive in practice with `storyReply`.
|
|
3881
|
+
*
|
|
3882
|
+
*/
|
|
3883
|
+
isStoryMention?: boolean;
|
|
3789
3884
|
/**
|
|
3790
3885
|
* WhatsApp only. Click-to-WhatsApp (CTWA) ad attribution. Present
|
|
3791
3886
|
* only on the FIRST inbound message after a user reaches the
|
|
@@ -8941,7 +9036,7 @@ type CreateWebhookSettingsData = {
|
|
|
8941
9036
|
/**
|
|
8942
9037
|
* Events to subscribe to (at least one required)
|
|
8943
9038
|
*/
|
|
8944
|
-
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' | 'comment.received' | 'review.new' | 'review.updated')>;
|
|
9039
|
+
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')>;
|
|
8945
9040
|
/**
|
|
8946
9041
|
* Enable or disable webhook delivery. Defaults to `true` when omitted.
|
|
8947
9042
|
*/
|
|
@@ -8982,7 +9077,7 @@ type UpdateWebhookSettingsData = {
|
|
|
8982
9077
|
/**
|
|
8983
9078
|
* Events to subscribe to. Must contain at least one event if provided.
|
|
8984
9079
|
*/
|
|
8985
|
-
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' | 'comment.received' | 'review.new' | 'review.updated')>;
|
|
9080
|
+
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')>;
|
|
8986
9081
|
/**
|
|
8987
9082
|
* Enable or disable webhook delivery
|
|
8988
9083
|
*/
|
|
@@ -14231,23 +14326,26 @@ type AddUsersToAdAudienceError = (unknown | {
|
|
|
14231
14326
|
type SendConversionsData = {
|
|
14232
14327
|
body: {
|
|
14233
14328
|
/**
|
|
14234
|
-
* SocialAccount ID (metaads or
|
|
14329
|
+
* SocialAccount ID (metaads, googleads, or linkedinads).
|
|
14235
14330
|
*/
|
|
14236
14331
|
accountId: string;
|
|
14237
14332
|
/**
|
|
14238
14333
|
* Platform destination identifier. For Meta, the pixel/dataset
|
|
14239
|
-
* ID. For Google, the conversion action resource name.
|
|
14334
|
+
* ID. For Google, the conversion action resource name. For
|
|
14335
|
+
* LinkedIn, the conversion rule ID or full
|
|
14336
|
+
* `urn:lla:llaPartnerConversion:{id}` URN.
|
|
14240
14337
|
*
|
|
14241
14338
|
*/
|
|
14242
14339
|
destinationId: string;
|
|
14243
14340
|
events: Array<ConversionEvent>;
|
|
14244
14341
|
/**
|
|
14245
|
-
* Meta `test_event_code` passthrough. Ignored by Google.
|
|
14342
|
+
* Meta `test_event_code` passthrough. Ignored by Google and LinkedIn.
|
|
14246
14343
|
*/
|
|
14247
14344
|
testCode?: string;
|
|
14248
14345
|
/**
|
|
14249
14346
|
* Batch-level user consent. Required by Google for EEA/UK
|
|
14250
|
-
* events under the Feb 2026 restrictions. Ignored by Meta
|
|
14347
|
+
* events under the Feb 2026 restrictions. Ignored by Meta
|
|
14348
|
+
* and LinkedIn.
|
|
14251
14349
|
*
|
|
14252
14350
|
*/
|
|
14253
14351
|
consent?: {
|
|
@@ -14257,7 +14355,7 @@ type SendConversionsData = {
|
|
|
14257
14355
|
};
|
|
14258
14356
|
};
|
|
14259
14357
|
type SendConversionsResponse = ({
|
|
14260
|
-
platform?: 'metaads' | 'googleads';
|
|
14358
|
+
platform?: 'metaads' | 'googleads' | 'linkedinads';
|
|
14261
14359
|
/**
|
|
14262
14360
|
* Events accepted by the platform.
|
|
14263
14361
|
*/
|
|
@@ -14279,7 +14377,10 @@ type SendConversionsResponse = ({
|
|
|
14279
14377
|
code?: (string | number);
|
|
14280
14378
|
}>;
|
|
14281
14379
|
/**
|
|
14282
|
-
* Platform trace ID
|
|
14380
|
+
* Platform trace ID for debugging. fbtrace_id for Meta,
|
|
14381
|
+
* requestId for Google. Absent for LinkedIn (LinkedIn's
|
|
14382
|
+
* conversionEvents endpoint does not surface a trace ID).
|
|
14383
|
+
*
|
|
14283
14384
|
*/
|
|
14284
14385
|
traceId?: string;
|
|
14285
14386
|
});
|
|
@@ -14289,33 +14390,319 @@ type SendConversionsError = (unknown | {
|
|
|
14289
14390
|
type ListConversionDestinationsData = {
|
|
14290
14391
|
path: {
|
|
14291
14392
|
/**
|
|
14292
|
-
* SocialAccount ID (metaads or
|
|
14393
|
+
* SocialAccount ID (metaads, googleads, or linkedinads).
|
|
14293
14394
|
*/
|
|
14294
14395
|
accountId: string;
|
|
14295
14396
|
};
|
|
14296
14397
|
};
|
|
14297
14398
|
type ListConversionDestinationsResponse = ({
|
|
14298
|
-
platform?: 'metaads' | 'googleads';
|
|
14399
|
+
platform?: 'metaads' | 'googleads' | 'linkedinads';
|
|
14299
14400
|
destinations?: Array<{
|
|
14300
14401
|
/**
|
|
14301
14402
|
* Destination identifier. Meta: pixel ID. Google:
|
|
14302
|
-
* conversion action resource name.
|
|
14403
|
+
* conversion action resource name. LinkedIn:
|
|
14404
|
+
* numeric conversion rule ID.
|
|
14303
14405
|
*
|
|
14304
14406
|
*/
|
|
14305
14407
|
id?: string;
|
|
14306
14408
|
name?: string;
|
|
14307
14409
|
/**
|
|
14308
14410
|
* Present when the platform locks event type to the
|
|
14309
|
-
* destination (Google conversion actions
|
|
14411
|
+
* destination (Google conversion actions, LinkedIn
|
|
14412
|
+
* conversion rules).
|
|
14310
14413
|
*
|
|
14311
14414
|
*/
|
|
14312
14415
|
type?: string;
|
|
14313
14416
|
status?: 'active' | 'inactive';
|
|
14417
|
+
/**
|
|
14418
|
+
* Set by adapters whose destinations are scoped to a
|
|
14419
|
+
* specific ad account (LinkedIn). Pass back on
|
|
14420
|
+
* subsequent CRUD calls.
|
|
14421
|
+
*
|
|
14422
|
+
*/
|
|
14423
|
+
adAccountId?: string;
|
|
14314
14424
|
}>;
|
|
14315
14425
|
});
|
|
14316
14426
|
type ListConversionDestinationsError = (unknown | {
|
|
14317
14427
|
error?: string;
|
|
14318
14428
|
});
|
|
14429
|
+
type CreateConversionDestinationData = {
|
|
14430
|
+
body: {
|
|
14431
|
+
/**
|
|
14432
|
+
* Sponsored ad account ID. Numeric (e.g. "5123456") or
|
|
14433
|
+
* full `urn:li:sponsoredAccount:{id}` URN.
|
|
14434
|
+
*
|
|
14435
|
+
*/
|
|
14436
|
+
adAccountId: string;
|
|
14437
|
+
name: string;
|
|
14438
|
+
/**
|
|
14439
|
+
* Either a unified standard event name (e.g. "Purchase",
|
|
14440
|
+
* "Lead", "AddToCart") or a LinkedIn rule type enum value
|
|
14441
|
+
* (e.g. "PURCHASE", "QUALIFIED_LEAD"). The API maps
|
|
14442
|
+
* standard names to LinkedIn enum values automatically.
|
|
14443
|
+
*
|
|
14444
|
+
*/
|
|
14445
|
+
type: string;
|
|
14446
|
+
attributionType?: 'LAST_TOUCH_BY_CAMPAIGN' | 'LAST_TOUCH_BY_CONVERSION';
|
|
14447
|
+
/**
|
|
14448
|
+
* Default 30. 365 only allowed for LEAD, PURCHASE,
|
|
14449
|
+
* ADD_TO_CART, QUALIFIED_LEAD, SUBMIT_APPLICATION rule
|
|
14450
|
+
* types — the API rejects other combinations locally.
|
|
14451
|
+
*
|
|
14452
|
+
*/
|
|
14453
|
+
postClickAttributionWindowSize?: 1 | 7 | 30 | 90 | 365;
|
|
14454
|
+
/**
|
|
14455
|
+
* Default 7. Same 365-day-window type restriction applies
|
|
14456
|
+
* as `postClickAttributionWindowSize`.
|
|
14457
|
+
*
|
|
14458
|
+
*/
|
|
14459
|
+
viewThroughAttributionWindowSize?: 1 | 7 | 30 | 90 | 365;
|
|
14460
|
+
/**
|
|
14461
|
+
* DYNAMIC (default) uses the per-event `value` from
|
|
14462
|
+
* `sendConversions`. FIXED uses the rule's `value` field.
|
|
14463
|
+
* NO_VALUE drops monetary value entirely.
|
|
14464
|
+
*
|
|
14465
|
+
*/
|
|
14466
|
+
valueType?: 'DYNAMIC' | 'FIXED' | 'NO_VALUE';
|
|
14467
|
+
/**
|
|
14468
|
+
* Static conversion value. Used when `valueType=FIXED`.
|
|
14469
|
+
* The currency should match the ad account's currency.
|
|
14470
|
+
*
|
|
14471
|
+
*/
|
|
14472
|
+
value?: {
|
|
14473
|
+
/**
|
|
14474
|
+
* ISO 4217 (e.g. "USD").
|
|
14475
|
+
*/
|
|
14476
|
+
currencyCode: string;
|
|
14477
|
+
/**
|
|
14478
|
+
* Decimal string (e.g. "49.99").
|
|
14479
|
+
*/
|
|
14480
|
+
amount: string;
|
|
14481
|
+
};
|
|
14482
|
+
/**
|
|
14483
|
+
* Controls campaign association at rule-creation time:
|
|
14484
|
+
* - ALL_CAMPAIGNS: associate the rule with every active,
|
|
14485
|
+
* paused, and draft campaign in the ad account
|
|
14486
|
+
* - OBJECTIVE_BASED: associate only campaigns whose
|
|
14487
|
+
* objective matches the rule's type
|
|
14488
|
+
* - NONE: don't auto-associate. Manage associations via
|
|
14489
|
+
* the `/associations` endpoints below.
|
|
14490
|
+
* Note: auto-association runs once at create time; new
|
|
14491
|
+
* campaigns added after the rule still need explicit
|
|
14492
|
+
* association.
|
|
14493
|
+
*
|
|
14494
|
+
*/
|
|
14495
|
+
autoAssociationType?: 'ALL_CAMPAIGNS' | 'OBJECTIVE_BASED' | 'NONE';
|
|
14496
|
+
};
|
|
14497
|
+
path: {
|
|
14498
|
+
/**
|
|
14499
|
+
* SocialAccount ID (linkedinads).
|
|
14500
|
+
*/
|
|
14501
|
+
accountId: string;
|
|
14502
|
+
};
|
|
14503
|
+
};
|
|
14504
|
+
type CreateConversionDestinationResponse = ({
|
|
14505
|
+
platform?: 'linkedinads';
|
|
14506
|
+
destination?: ConversionDestination;
|
|
14507
|
+
});
|
|
14508
|
+
type CreateConversionDestinationError = (unknown | {
|
|
14509
|
+
error?: string;
|
|
14510
|
+
});
|
|
14511
|
+
type GetConversionDestinationData = {
|
|
14512
|
+
path: {
|
|
14513
|
+
accountId: string;
|
|
14514
|
+
destinationId: string;
|
|
14515
|
+
};
|
|
14516
|
+
query: {
|
|
14517
|
+
/**
|
|
14518
|
+
* Numeric ID or full `urn:li:sponsoredAccount:{id}` URN.
|
|
14519
|
+
*/
|
|
14520
|
+
adAccountId: string;
|
|
14521
|
+
};
|
|
14522
|
+
};
|
|
14523
|
+
type GetConversionDestinationResponse = ({
|
|
14524
|
+
platform?: 'linkedinads';
|
|
14525
|
+
destination?: ConversionDestination;
|
|
14526
|
+
});
|
|
14527
|
+
type GetConversionDestinationError = (unknown | {
|
|
14528
|
+
error?: string;
|
|
14529
|
+
});
|
|
14530
|
+
type UpdateConversionDestinationData = {
|
|
14531
|
+
body: {
|
|
14532
|
+
adAccountId: string;
|
|
14533
|
+
name?: string;
|
|
14534
|
+
/**
|
|
14535
|
+
* Setting `false` is equivalent to calling DELETE — the
|
|
14536
|
+
* rule will appear as `inactive` afterwards.
|
|
14537
|
+
*
|
|
14538
|
+
*/
|
|
14539
|
+
enabled?: boolean;
|
|
14540
|
+
attributionType?: 'LAST_TOUCH_BY_CAMPAIGN' | 'LAST_TOUCH_BY_CONVERSION';
|
|
14541
|
+
/**
|
|
14542
|
+
* 365 only allowed for LEAD, PURCHASE, ADD_TO_CART,
|
|
14543
|
+
* QUALIFIED_LEAD, SUBMIT_APPLICATION rule types.
|
|
14544
|
+
*
|
|
14545
|
+
*/
|
|
14546
|
+
postClickAttributionWindowSize?: 1 | 7 | 30 | 90 | 365;
|
|
14547
|
+
/**
|
|
14548
|
+
* 365 only allowed for LEAD, PURCHASE, ADD_TO_CART,
|
|
14549
|
+
* QUALIFIED_LEAD, SUBMIT_APPLICATION rule types.
|
|
14550
|
+
*
|
|
14551
|
+
*/
|
|
14552
|
+
viewThroughAttributionWindowSize?: 1 | 7 | 30 | 90 | 365;
|
|
14553
|
+
valueType?: 'DYNAMIC' | 'FIXED' | 'NO_VALUE';
|
|
14554
|
+
/**
|
|
14555
|
+
* Used when `valueType=FIXED`.
|
|
14556
|
+
*/
|
|
14557
|
+
value?: {
|
|
14558
|
+
/**
|
|
14559
|
+
* ISO 4217.
|
|
14560
|
+
*/
|
|
14561
|
+
currencyCode?: string;
|
|
14562
|
+
/**
|
|
14563
|
+
* Decimal string (e.g. "49.99").
|
|
14564
|
+
*/
|
|
14565
|
+
amount?: string;
|
|
14566
|
+
};
|
|
14567
|
+
};
|
|
14568
|
+
path: {
|
|
14569
|
+
accountId: string;
|
|
14570
|
+
destinationId: string;
|
|
14571
|
+
};
|
|
14572
|
+
};
|
|
14573
|
+
type UpdateConversionDestinationResponse = ({
|
|
14574
|
+
platform?: 'linkedinads';
|
|
14575
|
+
destination?: ConversionDestination;
|
|
14576
|
+
});
|
|
14577
|
+
type UpdateConversionDestinationError = (unknown | {
|
|
14578
|
+
error?: string;
|
|
14579
|
+
});
|
|
14580
|
+
type DeleteConversionDestinationData = {
|
|
14581
|
+
path: {
|
|
14582
|
+
accountId: string;
|
|
14583
|
+
destinationId: string;
|
|
14584
|
+
};
|
|
14585
|
+
query?: {
|
|
14586
|
+
/**
|
|
14587
|
+
* Required as query OR in JSON body.
|
|
14588
|
+
*/
|
|
14589
|
+
adAccountId?: string;
|
|
14590
|
+
};
|
|
14591
|
+
};
|
|
14592
|
+
type DeleteConversionDestinationResponse = (void);
|
|
14593
|
+
type DeleteConversionDestinationError = (unknown | {
|
|
14594
|
+
error?: string;
|
|
14595
|
+
});
|
|
14596
|
+
type ListConversionAssociationsData = {
|
|
14597
|
+
path: {
|
|
14598
|
+
accountId: string;
|
|
14599
|
+
destinationId: string;
|
|
14600
|
+
};
|
|
14601
|
+
query: {
|
|
14602
|
+
adAccountId: string;
|
|
14603
|
+
};
|
|
14604
|
+
};
|
|
14605
|
+
type ListConversionAssociationsResponse = ({
|
|
14606
|
+
platform?: 'linkedinads';
|
|
14607
|
+
associations?: Array<{
|
|
14608
|
+
campaignId?: string;
|
|
14609
|
+
conversionId?: string;
|
|
14610
|
+
/**
|
|
14611
|
+
* Epoch ms.
|
|
14612
|
+
*/
|
|
14613
|
+
associatedAt?: number;
|
|
14614
|
+
}>;
|
|
14615
|
+
});
|
|
14616
|
+
type ListConversionAssociationsError = (unknown | {
|
|
14617
|
+
error?: string;
|
|
14618
|
+
});
|
|
14619
|
+
type AddConversionAssociationsData = {
|
|
14620
|
+
body: {
|
|
14621
|
+
adAccountId: string;
|
|
14622
|
+
campaignIds: Array<(string)>;
|
|
14623
|
+
};
|
|
14624
|
+
path: {
|
|
14625
|
+
accountId: string;
|
|
14626
|
+
destinationId: string;
|
|
14627
|
+
};
|
|
14628
|
+
};
|
|
14629
|
+
type AddConversionAssociationsResponse = ({
|
|
14630
|
+
platform?: 'linkedinads';
|
|
14631
|
+
/**
|
|
14632
|
+
* Numeric campaign IDs that were successfully associated.
|
|
14633
|
+
*/
|
|
14634
|
+
succeeded?: Array<(string)>;
|
|
14635
|
+
failed?: Array<{
|
|
14636
|
+
campaignId?: string;
|
|
14637
|
+
reason?: string;
|
|
14638
|
+
}>;
|
|
14639
|
+
});
|
|
14640
|
+
type AddConversionAssociationsError = (unknown | {
|
|
14641
|
+
error?: string;
|
|
14642
|
+
});
|
|
14643
|
+
type RemoveConversionAssociationsData = {
|
|
14644
|
+
body?: {
|
|
14645
|
+
adAccountId?: string;
|
|
14646
|
+
campaignIds?: Array<(string)>;
|
|
14647
|
+
};
|
|
14648
|
+
path: {
|
|
14649
|
+
accountId: string;
|
|
14650
|
+
destinationId: string;
|
|
14651
|
+
};
|
|
14652
|
+
query?: {
|
|
14653
|
+
adAccountId?: string;
|
|
14654
|
+
/**
|
|
14655
|
+
* Comma-separated list.
|
|
14656
|
+
*/
|
|
14657
|
+
campaignIds?: string;
|
|
14658
|
+
};
|
|
14659
|
+
};
|
|
14660
|
+
type RemoveConversionAssociationsResponse = ({
|
|
14661
|
+
platform?: 'linkedinads';
|
|
14662
|
+
/**
|
|
14663
|
+
* Numeric campaign IDs that were successfully removed.
|
|
14664
|
+
*/
|
|
14665
|
+
succeeded?: Array<(string)>;
|
|
14666
|
+
failed?: Array<{
|
|
14667
|
+
campaignId?: string;
|
|
14668
|
+
reason?: string;
|
|
14669
|
+
}>;
|
|
14670
|
+
});
|
|
14671
|
+
type RemoveConversionAssociationsError = (unknown | {
|
|
14672
|
+
error?: string;
|
|
14673
|
+
});
|
|
14674
|
+
type GetConversionMetricsData = {
|
|
14675
|
+
path: {
|
|
14676
|
+
accountId: string;
|
|
14677
|
+
destinationId: string;
|
|
14678
|
+
};
|
|
14679
|
+
query: {
|
|
14680
|
+
adAccountId: string;
|
|
14681
|
+
endDate?: string;
|
|
14682
|
+
granularity?: 'ALL' | 'DAILY' | 'MONTHLY' | 'YEARLY';
|
|
14683
|
+
startDate: string;
|
|
14684
|
+
};
|
|
14685
|
+
};
|
|
14686
|
+
type GetConversionMetricsResponse = ({
|
|
14687
|
+
platform?: 'linkedinads';
|
|
14688
|
+
granularity?: 'ALL' | 'DAILY' | 'MONTHLY' | 'YEARLY';
|
|
14689
|
+
rows?: Array<{
|
|
14690
|
+
/**
|
|
14691
|
+
* YYYY-MM-DD
|
|
14692
|
+
*/
|
|
14693
|
+
start?: string;
|
|
14694
|
+
/**
|
|
14695
|
+
* YYYY-MM-DD (inclusive)
|
|
14696
|
+
*/
|
|
14697
|
+
end?: string;
|
|
14698
|
+
metrics?: {
|
|
14699
|
+
[key: string]: (number | string);
|
|
14700
|
+
};
|
|
14701
|
+
}>;
|
|
14702
|
+
});
|
|
14703
|
+
type GetConversionMetricsError = (unknown | {
|
|
14704
|
+
error?: string;
|
|
14705
|
+
});
|
|
14319
14706
|
type SendWhatsAppConversionData = {
|
|
14320
14707
|
body: {
|
|
14321
14708
|
/**
|
|
@@ -14551,4 +14938,4 @@ type CreateCtwaAdError = (unknown | {
|
|
|
14551
14938
|
error?: string;
|
|
14552
14939
|
});
|
|
14553
14940
|
|
|
14554
|
-
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 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 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 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 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 ListWhatsAppPhoneNumbersData, type ListWhatsAppPhoneNumbersError, type ListWhatsAppPhoneNumbersResponse, 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 XApiOperation, type XApiPricing, 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 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 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 tier, type timeframe, type topicType, type type, type type2, type type3, type type4, type type5, type visibility };
|
|
14941
|
+
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 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 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 DeleteConversionDestinationData, type DeleteConversionDestinationError, type DeleteConversionDestinationResponse, 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 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 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 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 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 ListWhatsAppPhoneNumbersData, type ListWhatsAppPhoneNumbersError, type ListWhatsAppPhoneNumbersResponse, 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 RemoveConversionAssociationsData, type RemoveConversionAssociationsError, type RemoveConversionAssociationsResponse, 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 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 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 XApiOperation, type XApiPricing, 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 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 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 syncStatus, type syncStatus2, type tier, type timeframe, type topicType, type type, type type2, type type3, type type4, type type5, type visibility };
|