@getlatedev/node 0.2.472 → 0.2.474
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/dist/index.d.mts +55 -42
- package/dist/index.d.ts +55 -42
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/generated/sdk.gen.ts +1 -1
- package/src/generated/types.gen.ts +55 -41
package/dist/index.d.mts
CHANGED
|
@@ -3375,14 +3375,10 @@ type ExternalPostWebhookPost = {
|
|
|
3375
3375
|
*/
|
|
3376
3376
|
type source = 'external';
|
|
3377
3377
|
/**
|
|
3378
|
-
* Feed posts support up to 10 images (no mixed video+image). Stories require single media (24h, no captions). Reels require single vertical video (9:16, 3-60s).
|
|
3378
|
+
* Feed posts support up to 10 images (no mixed video+image). Stories require single media (24h, no captions). Reels require single vertical video (9:16, 3-60s). Geo-restriction is a hard visibility restriction: users outside the specified countries cannot see the post. Not supported for stories. Draft, carousel, and colored-background text options live under facebookSettings, see FacebookSettings.
|
|
3379
3379
|
*
|
|
3380
3380
|
*/
|
|
3381
3381
|
type FacebookPlatformData = {
|
|
3382
|
-
/**
|
|
3383
|
-
* When true, creates the post as a draft in Facebook Publishing Tools instead of publishing immediately. Supported for feed posts (text, link, image, video) and reels. Not supported for stories. Drafts expire after ~30 days.
|
|
3384
|
-
*/
|
|
3385
|
-
draft?: boolean;
|
|
3386
3382
|
/**
|
|
3387
3383
|
* Set to 'story' for Page Stories (24h ephemeral) or 'reel' for Reels (short vertical video). Defaults to feed post if omitted.
|
|
3388
3384
|
*/
|
|
@@ -3392,7 +3388,7 @@ type FacebookPlatformData = {
|
|
|
3392
3388
|
*/
|
|
3393
3389
|
title?: string;
|
|
3394
3390
|
/**
|
|
3395
|
-
* Optional first comment to post immediately after publishing (feed posts and reels, not stories). Skipped when draft is true.
|
|
3391
|
+
* Optional first comment to post immediately after publishing (feed posts and reels, not stories). Skipped when facebookSettings.draft is true.
|
|
3396
3392
|
*/
|
|
3397
3393
|
firstComment?: string;
|
|
3398
3394
|
/**
|
|
@@ -3400,34 +3396,7 @@ type FacebookPlatformData = {
|
|
|
3400
3396
|
*/
|
|
3401
3397
|
pageId?: string;
|
|
3402
3398
|
geoRestriction?: GeoRestriction;
|
|
3403
|
-
|
|
3404
|
-
* Renders the post as a multi-link carousel (organic Page post). When set, mediaItems must be provided with the same length and all items must be images (no videos). Each cards[i] adds the click-through link and headline for the image at mediaItems[i]. Mutually exclusive with contentType=story|reel. Facebook display truncates name at ~35 chars and description at ~30 chars; longer strings are accepted but get truncated on render.
|
|
3405
|
-
*
|
|
3406
|
-
*/
|
|
3407
|
-
carouselCards?: Array<{
|
|
3408
|
-
/**
|
|
3409
|
-
* Per-card click destination (required).
|
|
3410
|
-
*/
|
|
3411
|
-
link: string;
|
|
3412
|
-
/**
|
|
3413
|
-
* Per-card headline (optional, ~35-char display).
|
|
3414
|
-
*/
|
|
3415
|
-
name?: string;
|
|
3416
|
-
/**
|
|
3417
|
-
* Per-card subhead (optional, ~30-char display).
|
|
3418
|
-
*/
|
|
3419
|
-
description?: string;
|
|
3420
|
-
}>;
|
|
3421
|
-
/**
|
|
3422
|
-
* Optional top-level "See more" destination shown on the carousel end card. Defaults to the first card's link when omitted. Only used together with carouselCards.
|
|
3423
|
-
*
|
|
3424
|
-
*/
|
|
3425
|
-
carouselLink?: string;
|
|
3426
|
-
/**
|
|
3427
|
-
* Facebook-defined preset ID that renders the post as large text on a colored background (Graph `text_format_preset_id`). Supply the raw numeric ID from Meta; we do not publish a catalog of presets and Facebook may change the available set. Pages only (ignored on personal profiles and groups) and text-only feed posts only: the request is rejected with 400 when mediaItems or carouselCards are present, when contentType is story or reel, or when content is empty. An attachment makes Facebook drop the background silently, so those are rejected up front. Length is NOT rejected: Facebook's composer stops offering a background at around 130 characters, but Meta documents no API limit, so longer content publishes and returns a warning instead. A URL detected in the content is NOT attached as a link preview while a preset is set, because a link attachment also makes Facebook drop the background.
|
|
3428
|
-
*
|
|
3429
|
-
*/
|
|
3430
|
-
textFormatPresetId?: string;
|
|
3399
|
+
facebookSettings?: FacebookSettings;
|
|
3431
3400
|
};
|
|
3432
3401
|
/**
|
|
3433
3402
|
* Set to 'story' for Page Stories (24h ephemeral) or 'reel' for Reels (short vertical video). Defaults to feed post if omitted.
|
|
@@ -3521,6 +3490,44 @@ type FacebookPostEarningsResponse = {
|
|
|
3521
3490
|
*
|
|
3522
3491
|
*/
|
|
3523
3492
|
type period = 'lifetime';
|
|
3493
|
+
/**
|
|
3494
|
+
* Facebook options that must be nested under platformSpecificData.facebookSettings, or sent at the request root as facebookSettings. The remaining Facebook options sit directly on platformSpecificData, see FacebookPlatformData.
|
|
3495
|
+
*
|
|
3496
|
+
*/
|
|
3497
|
+
type FacebookSettings = {
|
|
3498
|
+
/**
|
|
3499
|
+
* When true, creates the post as a draft in Facebook Publishing Tools instead of publishing immediately. Supported for feed posts (text, link, image, video) and reels. Not supported for stories. Drafts expire after ~30 days.
|
|
3500
|
+
*/
|
|
3501
|
+
draft?: boolean;
|
|
3502
|
+
/**
|
|
3503
|
+
* Renders the post as a multi-link carousel (organic Page post). When set, mediaItems must be provided with the same length and all items must be images (no videos). Each cards[i] adds the click-through link and headline for the image at mediaItems[i]. Mutually exclusive with contentType=story|reel. Facebook display truncates name at ~35 chars and description at ~30 chars; longer strings are accepted but get truncated on render.
|
|
3504
|
+
*
|
|
3505
|
+
*/
|
|
3506
|
+
carouselCards?: Array<{
|
|
3507
|
+
/**
|
|
3508
|
+
* Per-card click destination (required).
|
|
3509
|
+
*/
|
|
3510
|
+
link: string;
|
|
3511
|
+
/**
|
|
3512
|
+
* Per-card headline (optional, ~35-char display).
|
|
3513
|
+
*/
|
|
3514
|
+
name?: string;
|
|
3515
|
+
/**
|
|
3516
|
+
* Per-card subhead (optional, ~30-char display).
|
|
3517
|
+
*/
|
|
3518
|
+
description?: string;
|
|
3519
|
+
}>;
|
|
3520
|
+
/**
|
|
3521
|
+
* Optional top-level "See more" destination shown on the carousel end card. Defaults to the first card's link when omitted. Only used together with carouselCards.
|
|
3522
|
+
*
|
|
3523
|
+
*/
|
|
3524
|
+
carouselLink?: string;
|
|
3525
|
+
/**
|
|
3526
|
+
* Facebook-defined preset ID that renders the post as large text on a colored background (Graph `text_format_preset_id`). Supply the raw numeric ID from Meta; we do not publish a catalog of presets and Facebook may change the available set. Pages only (ignored on personal profiles and groups) and text-only feed posts only: the request is rejected with 400 when mediaItems or carouselCards are present, when contentType is story or reel, or when content is empty. An attachment makes Facebook drop the background silently, so those are rejected up front. Length is NOT rejected: Facebook's composer stops offering a background at around 130 characters, but Meta documents no API limit, so longer content publishes and returns a warning instead. A URL detected in the content is NOT attached as a link preview while a preset is set, because a link attachment also makes Facebook drop the background.
|
|
3527
|
+
*
|
|
3528
|
+
*/
|
|
3529
|
+
textFormatPresetId?: string;
|
|
3530
|
+
};
|
|
3524
3531
|
type FollowerStatsResponse = {
|
|
3525
3532
|
accounts?: Array<AccountWithFollowerStats>;
|
|
3526
3533
|
stats?: {
|
|
@@ -10173,9 +10180,9 @@ type CreatePostData = {
|
|
|
10173
10180
|
*/
|
|
10174
10181
|
tiktokSettings?: TikTokPlatformData;
|
|
10175
10182
|
/**
|
|
10176
|
-
* Root-level Facebook settings applied to all Facebook platforms. Merged into each platform's platformSpecificData, with platform-specific settings taking precedence.
|
|
10183
|
+
* Root-level Facebook settings applied to all Facebook platforms. Merged into each platform's platformSpecificData.facebookSettings, with platform-specific settings taking precedence.
|
|
10177
10184
|
*/
|
|
10178
|
-
facebookSettings?:
|
|
10185
|
+
facebookSettings?: FacebookSettings;
|
|
10179
10186
|
recycling?: RecyclingConfig;
|
|
10180
10187
|
/**
|
|
10181
10188
|
* Profile ID to schedule via queue. When provided without scheduledFor, the post is auto-assigned to the next available slot. Do not call /v1/queue/next-slot and use that time in scheduledFor, as that bypasses queue locking.
|
|
@@ -10328,11 +10335,11 @@ type UpdatePostData = {
|
|
|
10328
10335
|
*/
|
|
10329
10336
|
tiktokSettings?: TikTokPlatformData;
|
|
10330
10337
|
/**
|
|
10331
|
-
* Root-level Facebook settings applied to all Facebook platforms. Merged into each platform's platformSpecificData, with platform-specific settings taking precedence.
|
|
10338
|
+
* Root-level Facebook settings applied to all Facebook platforms. Merged into each platform's platformSpecificData.facebookSettings, with platform-specific settings taking precedence.
|
|
10332
10339
|
*/
|
|
10333
|
-
facebookSettings?:
|
|
10340
|
+
facebookSettings?: FacebookSettings;
|
|
10334
10341
|
recycling?: RecyclingConfig;
|
|
10335
|
-
[key: string]: unknown | string | MediaItem | boolean | TikTokPlatformData |
|
|
10342
|
+
[key: string]: unknown | string | MediaItem | boolean | TikTokPlatformData | FacebookSettings | RecyclingConfig;
|
|
10336
10343
|
};
|
|
10337
10344
|
path: {
|
|
10338
10345
|
postId: string;
|
|
@@ -22956,8 +22963,14 @@ type GetContactChannelsError = (unknown | {
|
|
|
22956
22963
|
type BulkCreateContactsData = {
|
|
22957
22964
|
body: {
|
|
22958
22965
|
profileId: string;
|
|
22959
|
-
|
|
22960
|
-
|
|
22966
|
+
/**
|
|
22967
|
+
* Required when contacts carry channel data (platformIdentifier or a row-level accountId). Omit for a plain CRM import with no channels.
|
|
22968
|
+
*/
|
|
22969
|
+
accountId?: string;
|
|
22970
|
+
/**
|
|
22971
|
+
* Ignored when accountId is set: the platform is derived from the resolved account. Only relevant to disambiguate accountId lookup; a mismatch 404s.
|
|
22972
|
+
*/
|
|
22973
|
+
platform?: string;
|
|
22961
22974
|
contacts: Array<{
|
|
22962
22975
|
name: string;
|
|
22963
22976
|
platformIdentifier: string;
|
|
@@ -29808,4 +29821,4 @@ type CheckVerificationError = (ErrorResponse | {
|
|
|
29808
29821
|
error?: string;
|
|
29809
29822
|
} | unknown);
|
|
29810
29823
|
|
|
29811
|
-
export { type AccountWithFollowerStats, type AccountsListResponse, type ActivateSequenceData, type ActivateSequenceError, type ActivateSequenceResponse, type ActivateWorkflowData, type ActivateWorkflowError, type ActivateWorkflowResponse, type Ad, type AdBudget, type AdCampaign, type AdDailyMetrics, type AdMetrics, type AdReviewStatus, type AdStatus, type AdTreeAdSet, type AdTreeCampaign, type AddBroadcastRecipientsData, type AddBroadcastRecipientsError, type AddBroadcastRecipientsResponse, type AddConversionAssociationsData, type AddConversionAssociationsError, type AddConversionAssociationsResponse, type AddDiscordMemberRoleData, type AddDiscordMemberRoleError, type AddDiscordMemberRoleResponse, type AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddTrackingTagSharedAccountData, type AddTrackingTagSharedAccountError, type AddTrackingTagSharedAccountResponse, type AddUsersToAdAudienceData, type AddUsersToAdAudienceError, type AddUsersToAdAudienceResponse, type AddWhatsAppGroupParticipantsData, type AddWhatsAppGroupParticipantsError, type AddWhatsAppGroupParticipantsResponse, type AdjustConversionsData, type AdjustConversionsError, type AdjustConversionsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type AppealSmsRegistrationData, type AppealSmsRegistrationError, type AppealSmsRegistrationResponse, type ApproveWhatsAppGroupJoinRequestsData, type ApproveWhatsAppGroupJoinRequestsError, type ApproveWhatsAppGroupJoinRequestsResponse, type ArchiveLeadFormData, type ArchiveLeadFormError, type ArchiveLeadFormResponse, type AssignGoogleBusinessLocationData, type AssignGoogleBusinessLocationError, type AssignGoogleBusinessLocationResponse, type BatchGetGoogleBusinessReviewsData, type BatchGetGoogleBusinessReviewsError, type BatchGetGoogleBusinessReviewsResponse, type BidStrategy, type BillingSnapshot, type BlockWhatsAppUsersData, type BlockWhatsAppUsersError, type BlockWhatsAppUsersResponse, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BoostPostData, type BoostPostError, type BoostPostResponse, type BulkCreateContactsData, type BulkCreateContactsError, type BulkCreateContactsResponse, type BulkUpdateAdCampaignStatusData, type BulkUpdateAdCampaignStatusError, type BulkUpdateAdCampaignStatusResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type BulkUploadResult, type BusinessCenter, type CallRecord, type CancelBroadcastData, type CancelBroadcastError, type CancelBroadcastResponse, type CancelPhoneNumberPortInData, type CancelPhoneNumberPortInError, type CancelPhoneNumberPortInResponse, type CancelRfReservationData, type CancelRfReservationError, type CancelRfReservationResponse, type CheckPhoneNumberAvailabilityData, type CheckPhoneNumberAvailabilityError, type CheckPhoneNumberAvailabilityResponse, type CheckPhoneNumberPortabilityData, type CheckPhoneNumberPortabilityError, type CheckPhoneNumberPortabilityResponse, type CheckVerificationData, type CheckVerificationError, type CheckVerificationResponse, type CheckWhatsAppNumberAvailabilityData, type CheckWhatsAppNumberAvailabilityError, type CheckWhatsAppNumberAvailabilityResponse, type ClearContactFieldValueData, type ClearContactFieldValueError, type ClearContactFieldValueResponse, type ClientOptions, type CompleteGoogleBusinessVerificationData, type CompleteGoogleBusinessVerificationError, type CompleteGoogleBusinessVerificationResponse, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type CompleteWhatsAppPhoneSelectionData, type CompleteWhatsAppPhoneSelectionError, type CompleteWhatsAppPhoneSelectionResponse, type ConfigureTikTokAdsBrandIdentityData, type ConfigureTikTokAdsBrandIdentityError, type ConfigureTikTokAdsBrandIdentityResponse, type ConnectAdsData, type ConnectAdsError, type ConnectAdsResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectOpenAiAdsCredentialsData, type ConnectOpenAiAdsCredentialsError, type ConnectOpenAiAdsCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type ConnectedApp, type ConversionDestination, type ConversionEvent, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateAdAudienceData, type CreateAdAudienceError, type CreateAdAudienceResponse, type CreateAdCampaignData, type CreateAdCampaignError, type CreateAdCampaignResponse, type CreateAdCreativeData, type CreateAdCreativeError, type CreateAdCreativeResponse, type CreateAdInsightsReportData, type CreateAdInsightsReportError, type CreateAdInsightsReportResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateBroadcastData, type CreateBroadcastError, type CreateBroadcastResponse, type CreateCallAdData, type CreateCallAdError, type CreateCallAdResponse, 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 CreateDiscordGuildRoleData, type CreateDiscordGuildRoleError, type CreateDiscordGuildRoleResponse, type CreateDiscordScheduledEventData, type CreateDiscordScheduledEventError, type CreateDiscordScheduledEventResponse, type CreateDiscordThreadData, type CreateDiscordThreadError, type CreateDiscordThreadResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInboxConversationData, type CreateInboxConversationError, type CreateInboxConversationResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreateLeadFormData, type CreateLeadFormError, type CreateLeadFormResponse, type CreateMessagingAdData, type CreateMessagingAdError, type CreateMessagingAdResponse, type CreatePhoneNumberKycLinkData, type CreatePhoneNumberKycLinkError, type CreatePhoneNumberKycLinkResponse, type CreatePhoneNumberPortInData, type CreatePhoneNumberPortInError, type CreatePhoneNumberPortInResponse, type CreatePinterestBoardData, type CreatePinterestBoardError, type CreatePinterestBoardResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateRfPredictionData, type CreateRfPredictionError, type CreateRfPredictionResponse, type CreateSequenceData, type CreateSequenceError, type CreateSequenceResponse, type CreateSmsSenderIdData, type CreateSmsSenderIdError, type CreateSmsSenderIdResponse, type CreateStandaloneAdData, type CreateStandaloneAdError, type CreateStandaloneAdResponse, type CreateTestLeadData, type CreateTestLeadError, type CreateTestLeadResponse, type CreateTrackingTagData, type CreateTrackingTagError, type CreateTrackingTagResponse, type CreateVerificationData, type CreateVerificationError, type CreateVerificationResponse, type CreateVoiceCallData, type CreateVoiceCallError, type CreateVoiceCallResponse, type CreateVoiceWebSessionError, type CreateVoiceWebSessionResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppDatasetData, type CreateWhatsAppDatasetError, type CreateWhatsAppDatasetResponse, type CreateWhatsAppFlowData, type CreateWhatsAppFlowError, type CreateWhatsAppFlowResponse, type CreateWhatsAppGroupChatData, type CreateWhatsAppGroupChatError, type CreateWhatsAppGroupChatResponse, type CreateWhatsAppGroupInviteLinkData, type CreateWhatsAppGroupInviteLinkError, type CreateWhatsAppGroupInviteLinkResponse, type CreateWhatsAppNumberKycLinkData, type CreateWhatsAppNumberKycLinkError, type CreateWhatsAppNumberKycLinkResponse, type CreateWhatsAppSandboxSessionData, type CreateWhatsAppSandboxSessionError, type CreateWhatsAppSandboxSessionResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type CreateWorkflowData, type CreateWorkflowError, type CreateWorkflowResponse, type CrosspostDiscordMessageData, type CrosspostDiscordMessageError, type CrosspostDiscordMessageResponse, type CtwaAdRequestBody, type CtwaMultiResponse, type CtwaSingleResponse, type DeactivateSmsRegistrationData, type DeactivateSmsRegistrationError, type DeactivateSmsRegistrationResponse, 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 DeleteAdCreativeData, type DeleteAdCreativeError, type DeleteAdCreativeResponse, 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 DeleteDiscordGuildRoleData, type DeleteDiscordGuildRoleError, type DeleteDiscordGuildRoleResponse, type DeleteDiscordMessageData, type DeleteDiscordMessageError, type DeleteDiscordMessageResponse, type DeleteDiscordScheduledEventData, type DeleteDiscordScheduledEventError, type DeleteDiscordScheduledEventResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteGoogleBusinessReviewReplyData, type DeleteGoogleBusinessReviewReplyError, type DeleteGoogleBusinessReviewReplyResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxMessageData, type DeleteInboxMessageError, type DeleteInboxMessageResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteMessengerMenuData, type DeleteMessengerMenuError, type DeleteMessengerMenuResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteSequenceData, type DeleteSequenceError, type DeleteSequenceResponse, type DeleteSmsSenderIdData, type DeleteSmsSenderIdError, type DeleteSmsSenderIdResponse, 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 DeleteWhatsAppSandboxSessionData, type DeleteWhatsAppSandboxSessionError, type DeleteWhatsAppSandboxSessionResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, type DeleteWhatsappBusinessUsernameData, type DeleteWhatsappBusinessUsernameError, type DeleteWhatsappBusinessUsernameResponse, type DeleteWorkflowData, type DeleteWorkflowError, type DeleteWorkflowResponse, type DeprecateWhatsAppFlowData, type DeprecateWhatsAppFlowError, type DeprecateWhatsAppFlowResponse, type DialVoiceWebCallData, type DialVoiceWebCallError, type DialVoiceWebCallResponse, type DisableSmsOnNumberData, type DisableSmsOnNumberError, type DisableSmsOnNumberResponse, type DisableVoiceOnNumberData, type DisableVoiceOnNumberError, type DisableVoiceOnNumberResponse, type DisableWhatsAppCallingData, type DisableWhatsAppCallingError, type DisableWhatsAppCallingLegacyData, type DisableWhatsAppCallingLegacyError, type DisableWhatsAppCallingLegacyResponse, type DisableWhatsAppCallingResponse, type DiscordGuildMember, type DiscordPlatformData, type DiscordRole, type DiscordScheduledEvent, type DmButton, type DuplicateAdCampaignData, type DuplicateAdCampaignError, type DuplicateAdCampaignResponse, type DuplicateAdData, type DuplicateAdError, type DuplicateAdResponse, type DuplicateAdSetData, type DuplicateAdSetError, type DuplicateAdSetResponse, type DuplicateWorkflowData, type DuplicateWorkflowError, type DuplicateWorkflowResponse, type EditDiscordGuildRoleData, type EditDiscordGuildRoleError, type EditDiscordGuildRoleResponse, type EditInboxCommentData, type EditInboxCommentError, type EditInboxCommentResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type EditPostData, type EditPostError, type EditPostResponse, type EnableSmsOnNumberData, type EnableSmsOnNumberError, type EnableSmsOnNumberResponse, type EnableVoiceOnNumberData, type EnableVoiceOnNumberError, type EnableVoiceOnNumberResponse, type EnableWhatsAppCallingData, type EnableWhatsAppCallingError, type EnableWhatsAppCallingLegacyData, type EnableWhatsAppCallingLegacyError, type EnableWhatsAppCallingLegacyResponse, type EnableWhatsAppCallingResponse, type EndVoiceCallData, type EndVoiceCallError, type EndVoiceCallResponse, type EnrollContactsData, type EnrollContactsError, type EnrollContactsResponse, type ErrorResponse, type EstimateAdReachData, type EstimateAdReachError, type EstimateAdReachResponse, type ExternalPostMediaItem, type ExternalPostSummary, type ExternalPostWebhookPost, type FacebookPlatformData, type FacebookPostEarningsResponse, type FetchGoogleBusinessVerificationOptionsData, type FetchGoogleBusinessVerificationOptionsError, type FetchGoogleBusinessVerificationOptionsResponse, type FollowUserData, type FollowUserError, type FollowUserResponse, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GenerateAdPreviewsData, type GenerateAdPreviewsError, type GenerateAdPreviewsResponse, type GenerateKeywordHistoricalMetricsData, type GenerateKeywordHistoricalMetricsError, type GenerateKeywordHistoricalMetricsResponse, type GenerateKeywordIdeasData, type GenerateKeywordIdeasError, type GenerateKeywordIdeasResponse, type GeoRestriction, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAdAccountFinanceData, type GetAdAccountFinanceError, type GetAdAccountFinanceResponse, type GetAdAnalyticsData, type GetAdAnalyticsError, type GetAdAnalyticsResponse, type GetAdAudienceData, type GetAdAudienceError, type GetAdAudienceResponse, type GetAdCommentsData, type GetAdCommentsError, type GetAdCommentsResponse, type GetAdCreativeData, type GetAdCreativeError, type GetAdCreativeResponse, type GetAdData, type GetAdError, type GetAdInsightsReportData, type GetAdInsightsReportError, type GetAdInsightsReportResponse, type GetAdPreviewsData, type GetAdPreviewsError, type GetAdPreviewsResponse, type GetAdResponse, type GetAdSetDetailsData, type GetAdSetDetailsError, type GetAdSetDetailsResponse, type GetAdTrackingTagsData, type GetAdTrackingTagsError, type GetAdTrackingTagsResponse, type GetAdTreeData, type GetAdTreeError, type GetAdTreeResponse, type GetAdsActivityLogData, type GetAdsActivityLogError, type GetAdsActivityLogResponse, type GetAdsTimelineData, type GetAdsTimelineError, type GetAdsTimelineResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetBillingError, type GetBillingResponse, type GetBroadcastData, type GetBroadcastError, type GetBroadcastResponse, type GetCallData, type GetCallError, type GetCallRecordingData, type GetCallRecordingError, type GetCallRecordingResponse, type GetCallResponse, type GetCallsUsageData, type GetCallsUsageError, type GetCallsUsageResponse, type GetCampaignAnalyticsData, type GetCampaignAnalyticsError, type GetCampaignAnalyticsResponse, 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 GetConversionsQualityData, type GetConversionsQualityError, type GetConversionsQualityResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetDiscordChannelsData, type GetDiscordChannelsError, type GetDiscordChannelsResponse, type GetDiscordGuildMemberData, type GetDiscordGuildMemberError, type GetDiscordGuildMemberResponse, type GetDiscordScheduledEventData, type GetDiscordScheduledEventError, type GetDiscordScheduledEventResponse, type GetDiscordSettingsData, type GetDiscordSettingsError, type GetDiscordSettingsResponse, type GetDsaDefaultsData, type GetDsaDefaultsError, type GetDsaDefaultsResponse, type GetDsaRecommendationsData, type GetDsaRecommendationsError, type GetDsaRecommendationsResponse, type GetFacebookPageInsightsData, type GetFacebookPageInsightsError, type GetFacebookPageInsightsResponse, type GetFacebookPagesData, type GetFacebookPagesError, type GetFacebookPagesResponse, type GetFacebookPostEarningsData, type GetFacebookPostEarningsError, type GetFacebookPostEarningsResponse, type GetFacebookPostReactionsData, type GetFacebookPostReactionsError, type GetFacebookPostReactionsResponse, type GetFollowerStatsData, type GetFollowerStatsError, type GetFollowerStatsResponse, type GetGmbAttributeMetadataData, type GetGmbAttributeMetadataError, type GetGmbAttributeMetadataResponse, type GetGmbLocationsData, type GetGmbLocationsError, type GetGmbLocationsResponse, type GetGoogleBusinessAttributesData, type GetGoogleBusinessAttributesError, type GetGoogleBusinessAttributesResponse, type GetGoogleBusinessFoodMenusData, type GetGoogleBusinessFoodMenusError, type GetGoogleBusinessFoodMenusResponse, type GetGoogleBusinessLocationDetailsData, type GetGoogleBusinessLocationDetailsError, type GetGoogleBusinessLocationDetailsResponse, type GetGoogleBusinessPerformanceData, type GetGoogleBusinessPerformanceError, type GetGoogleBusinessPerformanceResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetGoogleBusinessSearchKeywordsData, type GetGoogleBusinessSearchKeywordsError, type GetGoogleBusinessSearchKeywordsResponse, type GetGoogleBusinessServicesData, type GetGoogleBusinessServicesError, type GetGoogleBusinessServicesResponse, type GetGoogleBusinessVerificationsData, type GetGoogleBusinessVerificationsError, type GetGoogleBusinessVerificationsResponse, type GetInboxConversationAnalyticsData, type GetInboxConversationAnalyticsError, type GetInboxConversationAnalyticsResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxHeatmapData, type GetInboxHeatmapError, type GetInboxHeatmapResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetInboxResponseTimeData, type GetInboxResponseTimeError, type GetInboxResponseTimeResponse, type GetInboxSourceBreakdownData, type GetInboxSourceBreakdownError, type GetInboxSourceBreakdownResponse, type GetInboxTopAccountsData, type GetInboxTopAccountsError, type GetInboxTopAccountsResponse, type GetInboxVolumeData, type GetInboxVolumeError, type GetInboxVolumeResponse, 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 GetInstagramPublishingLimitData, type GetInstagramPublishingLimitError, type GetInstagramPublishingLimitResponse, type GetInstagramStoryInsightsData, type GetInstagramStoryInsightsError, type GetInstagramStoryInsightsResponse, type GetLeadFormData, type GetLeadFormError, type GetLeadFormResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInBidPricingData, type GetLinkedInBidPricingError, type GetLinkedInBidPricingResponse, 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 GetLinkedInSupplyForecastData, type GetLinkedInSupplyForecastError, type GetLinkedInSupplyForecastResponse, 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 GetPhoneNumberData, type GetPhoneNumberError, type GetPhoneNumberKycFormData, type GetPhoneNumberKycFormError, type GetPhoneNumberKycFormResponse, type GetPhoneNumberPortInOrderRequirementsData, type GetPhoneNumberPortInOrderRequirementsError, type GetPhoneNumberPortInOrderRequirementsResponse, type GetPhoneNumberPortInRequirementsData, type GetPhoneNumberPortInRequirementsError, type GetPhoneNumberPortInRequirementsResponse, type GetPhoneNumberRemediationData, type GetPhoneNumberRemediationError, type GetPhoneNumberRemediationResponse, type GetPhoneNumberResponse, 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 GetRfPredictionData, type GetRfPredictionError, type GetRfPredictionResponse, type GetSequenceData, type GetSequenceError, type GetSequenceResponse, type GetSlackSettingsData, type GetSlackSettingsError, type GetSlackSettingsResponse, type GetSmsRegistrationData, type GetSmsRegistrationError, type GetSmsRegistrationResponse, type GetSmsUsageData, type GetSmsUsageError, type GetSmsUsageResponse, type GetSubredditRulesData, type GetSubredditRulesError, type GetSubredditRulesResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetTikTokAccountInsightsData, type GetTikTokAccountInsightsError, type GetTikTokAccountInsightsResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, type GetTrackingTagData, type GetTrackingTagError, type GetTrackingTagResponse, type GetTrackingTagStatsData, type GetTrackingTagStatsError, type GetTrackingTagStatsResponse, type GetUsageData, type GetUsageError, type GetUsageResponse, type GetUsageStatsData, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetVerificationData, type GetVerificationError, type GetVerificationResponse, type GetVoiceCallData, type GetVoiceCallError, type GetVoiceCallEstimateData, type GetVoiceCallEstimateError, type GetVoiceCallEstimateResponse, type GetVoiceCallRecordingData, type GetVoiceCallRecordingError, type GetVoiceCallRecordingResponse, type GetVoiceCallResponse, type GetWebhookLogsData, type GetWebhookLogsError, type GetWebhookLogsResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetWhatsAppBlockStatusData, type GetWhatsAppBlockStatusError, type GetWhatsAppBlockStatusResponse, type GetWhatsAppBlockedUsersData, type GetWhatsAppBlockedUsersError, type GetWhatsAppBlockedUsersResponse, type GetWhatsAppBusinessProfileData, type GetWhatsAppBusinessProfileError, type GetWhatsAppBusinessProfileResponse, type GetWhatsAppCallData, type GetWhatsAppCallError, type GetWhatsAppCallEstimateData, type GetWhatsAppCallEstimateError, type GetWhatsAppCallEstimateResponse, type GetWhatsAppCallPermissionsData, type GetWhatsAppCallPermissionsError, type GetWhatsAppCallPermissionsResponse, type GetWhatsAppCallRecordingData, type GetWhatsAppCallRecordingError, type GetWhatsAppCallRecordingResponse, type GetWhatsAppCallResponse, type GetWhatsAppCallingConfigData, type GetWhatsAppCallingConfigError, type GetWhatsAppCallingConfigResponse, type GetWhatsAppCallingData, type GetWhatsAppCallingError, type GetWhatsAppCallingResponse, type GetWhatsAppDatasetData, type GetWhatsAppDatasetError, type GetWhatsAppDatasetResponse, type GetWhatsAppDisplayNameData, type GetWhatsAppDisplayNameError, type GetWhatsAppDisplayNameResponse, type GetWhatsAppFlowData, type GetWhatsAppFlowError, type GetWhatsAppFlowJsonData, type GetWhatsAppFlowJsonError, type GetWhatsAppFlowJsonResponse, type GetWhatsAppFlowPreviewData, type GetWhatsAppFlowPreviewError, type GetWhatsAppFlowPreviewResponse, type GetWhatsAppFlowResponse, type GetWhatsAppGroupChatData, type GetWhatsAppGroupChatError, type GetWhatsAppGroupChatResponse, type GetWhatsAppLibraryTemplateData, type GetWhatsAppLibraryTemplateError, type GetWhatsAppLibraryTemplateResponse, type GetWhatsAppMediaData, type GetWhatsAppMediaError, type GetWhatsAppMediaResponse, type GetWhatsAppNumberInfoData, type GetWhatsAppNumberInfoError, type GetWhatsAppNumberInfoResponse, type GetWhatsAppNumberKycFormData, type GetWhatsAppNumberKycFormError, type GetWhatsAppNumberKycFormResponse, type GetWhatsAppNumberRemediationData, type GetWhatsAppNumberRemediationError, type GetWhatsAppNumberRemediationResponse, 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 GetWhatsappBusinessUsernameData, type GetWhatsappBusinessUsernameError, type GetWhatsappBusinessUsernameResponse, type GetWhatsappBusinessUsernameSuggestionsData, type GetWhatsappBusinessUsernameSuggestionsError, type GetWhatsappBusinessUsernameSuggestionsResponse, type GetWorkflowData, type GetWorkflowError, type GetWorkflowResponse, type GetWorkflowVersionData, type GetWorkflowVersionError, type GetWorkflowVersionResponse, type GetXApiPricingError, type GetXApiPricingResponse, type GetYouTubeChannelInsightsData, type GetYouTubeChannelInsightsError, type GetYouTubeChannelInsightsResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeDemographicsData, type GetYouTubeDemographicsError, type GetYouTubeDemographicsResponse, type GetYouTubeVideoRetentionData, type GetYouTubeVideoRetentionError, type GetYouTubeVideoRetentionResponse, type GetYoutubePlaylistsData, type GetYoutubePlaylistsError, type GetYoutubePlaylistsResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type InboxMessageEditAttachment, type InboxMessageEditHistoryEntry, type InboxWebhookAccount, type InboxWebhookConversation, type InboxWebhookMessage, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InitiateWhatsAppCallData, type InitiateWhatsAppCallError, type InitiateWhatsAppCallResponse, type InstagramAccountInsightsResponse, type InstagramDemographicsResponse, type InstagramPlatformData, Late, LateApiError, type LikeInboxCommentData, type LikeInboxCommentError, type LikeInboxCommentResponse, type LinkedInAdsPlatformData, 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 ListAdCatalogProductSetsData, type ListAdCatalogProductSetsError, type ListAdCatalogProductSetsResponse, type ListAdCatalogsData, type ListAdCatalogsError, type ListAdCatalogsResponse, type ListAdCreativesData, type ListAdCreativesError, type ListAdCreativesResponse, type ListAdImagesData, type ListAdImagesError, type ListAdImagesResponse, type ListAdKeywordsData, type ListAdKeywordsError, type ListAdKeywordsResponse, type ListAdLabelsData, type ListAdLabelsError, type ListAdLabelsResponse, type ListAdStudiesData, type ListAdStudiesError, type ListAdStudiesResponse, 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 ListCallsData, type ListCallsError, type ListCallsResponse, type ListCommentAutomationLogsData, type ListCommentAutomationLogsError, type ListCommentAutomationLogsResponse, type ListCommentAutomationsData, type ListCommentAutomationsError, type ListCommentAutomationsResponse, type ListConnectedAppsError, type ListConnectedAppsResponse, 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 ListDiscordGuildMembersData, type ListDiscordGuildMembersError, type ListDiscordGuildMembersResponse, type ListDiscordGuildRolesData, type ListDiscordGuildRolesError, type ListDiscordGuildRolesResponse, type ListDiscordPinnedMessagesData, type ListDiscordPinnedMessagesError, type ListDiscordPinnedMessagesResponse, type ListDiscordScheduledEventsData, type ListDiscordScheduledEventsError, type ListDiscordScheduledEventsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListFormLeadsData, type ListFormLeadsError, type ListFormLeadsResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListGoogleBusinessMediaData, type ListGoogleBusinessMediaError, type ListGoogleBusinessMediaResponse, type ListGoogleBusinessPlaceActionsData, type ListGoogleBusinessPlaceActionsError, type ListGoogleBusinessPlaceActionsResponse, type ListHighDemandPeriodsData, type ListHighDemandPeriodsError, type ListHighDemandPeriodsResponse, type ListInboxCommentsData, type ListInboxCommentsError, type ListInboxCommentsResponse, type ListInboxConversationAnalyticsData, type ListInboxConversationAnalyticsError, type ListInboxConversationAnalyticsResponse, type ListInboxConversationsData, type ListInboxConversationsError, type ListInboxConversationsResponse, type ListInboxMentionsData, type ListInboxMentionsError, type ListInboxMentionsResponse, type ListInboxReviewsData, type ListInboxReviewsError, type ListInboxReviewsResponse, type ListInstagramStoriesData, type ListInstagramStoriesError, type ListInstagramStoriesResponse, type ListLeadFormsData, type ListLeadFormsError, type ListLeadFormsResponse, type ListLeadsData, type ListLeadsError, type ListLeadsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListLogsData, type ListLogsError, type ListLogsResponse, type ListMetaBusinessesData, type ListMetaBusinessesError, type ListMetaBusinessesResponse, type ListPhoneNumberCountriesError, type ListPhoneNumberCountriesResponse, type ListPhoneNumberPortInsError, type ListPhoneNumberPortInsResponse, type ListPhoneNumbersData, type ListPhoneNumbersError, type ListPhoneNumbersResponse, 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 ListSmsOptOutsData, type ListSmsOptOutsError, type ListSmsOptOutsResponse, type ListSmsRegistrationsData, type ListSmsRegistrationsError, type ListSmsRegistrationsResponse, type ListSmsSenderIdsError, type ListSmsSenderIdsResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListTrackingTagSharedAccountsData, type ListTrackingTagSharedAccountsError, type ListTrackingTagSharedAccountsResponse, type ListTrackingTagsData, type ListTrackingTagsError, type ListTrackingTagsResponse, type ListUsersError, type ListUsersResponse, type ListVoiceCallsData, type ListVoiceCallsError, type ListVoiceCallsResponse, type ListWhatsAppCallsData, type ListWhatsAppCallsError, type ListWhatsAppCallsResponse, type ListWhatsAppConversionsData, type ListWhatsAppConversionsError, type ListWhatsAppConversionsResponse, type ListWhatsAppFlowResponsesData, type ListWhatsAppFlowResponsesError, type ListWhatsAppFlowResponsesResponse, type ListWhatsAppFlowVersionsData, type ListWhatsAppFlowVersionsError, type ListWhatsAppFlowVersionsResponse, type ListWhatsAppFlowsData, type ListWhatsAppFlowsError, type ListWhatsAppFlowsResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type ListWhatsAppNumberCountriesError, type ListWhatsAppNumberCountriesResponse, type ListWhatsAppPhoneNumbersData, type ListWhatsAppPhoneNumbersError, type ListWhatsAppPhoneNumbersResponse, type ListWhatsAppSandboxSessionsError, type ListWhatsAppSandboxSessionsResponse, type ListWorkflowExecutionEventsData, type ListWorkflowExecutionEventsError, type ListWorkflowExecutionEventsResponse, type ListWorkflowExecutionsData, type ListWorkflowExecutionsError, type ListWorkflowExecutionsResponse, type ListWorkflowVersionsData, type ListWorkflowVersionsError, type ListWorkflowVersionsResponse, type ListWorkflowsData, type ListWorkflowsError, type ListWorkflowsResponse, type LookupSmsNumberData, type LookupSmsNumberError, type LookupSmsNumberResponse, type MarkConversationReadData, type MarkConversationReadError, type MarkConversationReadResponse, type MediaItem, type MediaUploadResponse, type Money, type MoneyAmount, type MoveAccountToProfileData, type MoveAccountToProfileError, type MoveAccountToProfileResponse, type Pagination, type ParameterPageParam, type PauseSequenceData, type PauseSequenceError, type PauseSequenceResponse, type PauseWorkflowData, type PauseWorkflowError, type PauseWorkflowResponse, type PinDiscordMessageData, type PinDiscordMessageError, type PinDiscordMessageResponse, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostRetryResponse, type PostUpdateResponse, type PostsListResponse, type PreflightSmsRegistrationData, type PreflightSmsRegistrationError, type PreflightSmsRegistrationResponse, 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 PurchasePhoneNumberData, type PurchasePhoneNumberError, type PurchasePhoneNumberResponse, type PurchaseWhatsAppPhoneNumberData, type PurchaseWhatsAppPhoneNumberError, type PurchaseWhatsAppPhoneNumberResponse, type QueryAdInsightsData, type QueryAdInsightsError, type QueryAdInsightsResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type RedditPost, type RegisterWhatsAppNumberData, type RegisterWhatsAppNumberError, type RegisterWhatsAppNumberResponse, type RejectWhatsAppGroupJoinRequestsData, type RejectWhatsAppGroupJoinRequestsError, type RejectWhatsAppGroupJoinRequestsResponse, type ReleasePhoneNumberData, type ReleasePhoneNumberError, type ReleasePhoneNumberResponse, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemediatePhoneNumberData, type RemediatePhoneNumberError, type RemediatePhoneNumberResponse, type RemediateWhatsAppNumberData, type RemediateWhatsAppNumberError, type RemediateWhatsAppNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveConversionAssociationsData, type RemoveConversionAssociationsError, type RemoveConversionAssociationsResponse, type RemoveDiscordMemberRoleData, type RemoveDiscordMemberRoleError, type RemoveDiscordMemberRoleResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveTrackingTagSharedAccountData, type RemoveTrackingTagSharedAccountError, type RemoveTrackingTagSharedAccountResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, type ReplyToGoogleBusinessReviewData, type ReplyToGoogleBusinessReviewError, type ReplyToGoogleBusinessReviewResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type ReplyToMentionData, type ReplyToMentionError, type ReplyToMentionResponse, type ReplyToPhoneNumberReviewerData, type ReplyToPhoneNumberReviewerError, type ReplyToPhoneNumberReviewerResponse, type RequestSmsSenderIdLimitIncreaseData, type RequestSmsSenderIdLimitIncreaseError, type RequestSmsSenderIdLimitIncreaseResponse, type ResendSmsRegistrationOtpData, type ResendSmsRegistrationOtpError, type ResendSmsRegistrationOtpResponse, type ReserveRfPredictionData, type ReserveRfPredictionError, type ReserveRfPredictionResponse, type RespondToPhoneNumberReviewerData, type RespondToPhoneNumberReviewerError, type RespondToPhoneNumberReviewerResponse, type RespondToSmsRegistrationReviewData, type RespondToSmsRegistrationReviewError, type RespondToSmsRegistrationReviewResponse, type RestoreWorkflowVersionData, type RestoreWorkflowVersionError, type RestoreWorkflowVersionResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type ReuseSmsRegistrationForNumberData, type ReuseSmsRegistrationForNumberError, type ReuseSmsRegistrationForNumberResponse, type ReviewPhoneNumberKycPacketData, type ReviewPhoneNumberKycPacketError, type ReviewPhoneNumberKycPacketResponse, type ReviewWebhookReview, type RevokeConnectedAppData, type RevokeConnectedAppError, type RevokeConnectedAppResponse, type RfPrediction, type ScheduleBroadcastData, type ScheduleBroadcastError, type ScheduleBroadcastResponse, type SearchAdInterestsData, type SearchAdInterestsError, type SearchAdInterestsResponse, type SearchAdTargetingData, type SearchAdTargetingError, type SearchAdTargetingResponse, type SearchAvailablePhoneNumbersData, type SearchAvailablePhoneNumbersError, type SearchAvailablePhoneNumbersResponse, type SearchAvailableWhatsAppNumbersData, type SearchAvailableWhatsAppNumbersError, type SearchAvailableWhatsAppNumbersResponse, type SearchDiscordGuildMembersData, type SearchDiscordGuildMembersError, type SearchDiscordGuildMembersResponse, type SearchInboxConversationsData, type SearchInboxConversationsError, type SearchInboxConversationsResponse, type SearchRedditData, type SearchRedditError, type SearchRedditResponse, type SearchTweetsData, type SearchTweetsError, type SearchTweetsResponse, 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 SendDiscordDirectMessageData, type SendDiscordDirectMessageError, type SendDiscordDirectMessageResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SendSmsData, type SendSmsError, type SendSmsResponse, type SendTypingIndicatorData, type SendTypingIndicatorError, type SendTypingIndicatorResponse, type SendWhatsAppConversionData, type SendWhatsAppConversionError, type SendWhatsAppConversionResponse, type SendWhatsAppFlowMessageData, type SendWhatsAppFlowMessageError, type SendWhatsAppFlowMessageResponse, type SetCommentModerationData, type SetCommentModerationError, type SetCommentModerationResponse, type SetContactFieldValueData, type SetContactFieldValueError, type SetContactFieldValueResponse, type SetInstagramIceBreakersData, type SetInstagramIceBreakersError, type SetInstagramIceBreakersResponse, type SetMessengerMenuData, type SetMessengerMenuError, type SetMessengerMenuResponse, type SetRedditPostFlairData, type SetRedditPostFlairError, type SetRedditPostFlairResponse, type SetTelegramCommandsData, type SetTelegramCommandsError, type SetTelegramCommandsResponse, type SetWhatsappBusinessUsernameData, type SetWhatsappBusinessUsernameError, type SetWhatsappBusinessUsernameResponse, type ShareSmsRegistrationData, type ShareSmsRegistrationError, type ShareSmsRegistrationResponse, type SharedAdAccount, type SlackPlatformData, type SnapchatPlatformData, type SocialAccount, type StartGoogleBusinessVerificationData, type StartGoogleBusinessVerificationError, type StartGoogleBusinessVerificationResponse, type StartSmsRegistrationData, type StartSmsRegistrationError, type StartSmsRegistrationResponse, type StartWhatsAppCallerIdVerificationData, type StartWhatsAppCallerIdVerificationError, type StartWhatsAppCallerIdVerificationResponse, type SubmitPhoneNumberKycData, type SubmitPhoneNumberKycError, type SubmitPhoneNumberKycResponse, type SubmitWhatsAppNumberKycData, type SubmitWhatsAppNumberKycError, type SubmitWhatsAppNumberKycResponse, type SyncExternalPostsData, type SyncExternalPostsError, type SyncExternalPostsResponse, type TargetingSpec, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TrackingTag, type TransferVoiceCallData, type TransferVoiceCallError, type TransferVoiceCallResponse, type TriggerWorkflowData, type TriggerWorkflowError, type TriggerWorkflowResponse, type TwitterPlatformData, type UnblockWhatsAppUsersData, type UnblockWhatsAppUsersError, type UnblockWhatsAppUsersResponse, 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 UnpinDiscordMessageData, type UnpinDiscordMessageError, type UnpinDiscordMessageResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateAdAccountData, type UpdateAdAccountError, type UpdateAdAccountResponse, type UpdateAdAudienceData, type UpdateAdAudienceError, type UpdateAdAudienceResponse, type UpdateAdCampaignData, type UpdateAdCampaignError, type UpdateAdCampaignResponse, type UpdateAdCampaignStatusData, type UpdateAdCampaignStatusError, type UpdateAdCampaignStatusResponse, type UpdateAdCreativeData, type UpdateAdCreativeError, type UpdateAdCreativeResponse, type UpdateAdData, type UpdateAdError, type UpdateAdResponse, type UpdateAdSetData, type UpdateAdSetError, type UpdateAdSetResponse, type UpdateAdSetStatusData, type UpdateAdSetStatusError, type UpdateAdSetStatusResponse, type UpdateAdStatusData, type UpdateAdStatusError, type UpdateAdStatusResponse, type UpdateAdTrackingTagsData, type UpdateAdTrackingTagsError, type UpdateAdTrackingTagsResponse, 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 UpdateDiscordScheduledEventData, type UpdateDiscordScheduledEventError, type UpdateDiscordScheduledEventResponse, 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 UpdateSlackSettingsData, type UpdateSlackSettingsError, type UpdateSlackSettingsResponse, type UpdateTrackingTagData, type UpdateTrackingTagError, type UpdateTrackingTagResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppCallingData, type UpdateWhatsAppCallingError, type UpdateWhatsAppCallingLegacyData, type UpdateWhatsAppCallingLegacyError, type UpdateWhatsAppCallingLegacyResponse, type UpdateWhatsAppCallingResponse, 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 UpdateWorkflowData, type UpdateWorkflowError, type UpdateWorkflowResponse, type UpdateYoutubeDefaultPlaylistData, type UpdateYoutubeDefaultPlaylistError, type UpdateYoutubeDefaultPlaylistResponse, type UploadAdImageData, type UploadAdImageError, type UploadAdImageResponse, type UploadMediaDirectData, type UploadMediaDirectError, type UploadMediaDirectResponse, type UploadPhoneNumberKycDocumentData, type UploadPhoneNumberKycDocumentError, type UploadPhoneNumberKycDocumentResponse, type UploadPhoneNumberPortInDocumentData, type UploadPhoneNumberPortInDocumentError, type UploadPhoneNumberPortInDocumentResponse, type UploadSmsOptInProofData, type UploadSmsOptInProofError, type UploadSmsOptInProofFileData, type UploadSmsOptInProofFileError, type UploadSmsOptInProofFileResponse, type UploadSmsOptInProofResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadWhatsAppFlowJsonData, type UploadWhatsAppFlowJsonError, type UploadWhatsAppFlowJsonResponse, type UploadWhatsAppNumberKycDocumentData, type UploadWhatsAppNumberKycDocumentError, type UploadWhatsAppNumberKycDocumentResponse, type UploadWhatsAppProfilePhotoData, type UploadWhatsAppProfilePhotoError, type UploadWhatsAppProfilePhotoResponse, type UploadedFile, type UsageMetering, type UsageStats, type User, type UserGetResponse, type UsersListResponse, type ValidateMediaData, type ValidateMediaError, type ValidateMediaResponse, type ValidatePhoneNumberKycAddressData, type ValidatePhoneNumberKycAddressError, type ValidatePhoneNumberKycAddressResponse, type ValidatePostData, type ValidatePostError, type ValidatePostLengthData, type ValidatePostLengthError, type ValidatePostLengthResponse, type ValidatePostResponse, type ValidateSubredditData, type ValidateSubredditError, type ValidateSubredditResponse, type ValidateWhatsAppNumberKycAddressData, type ValidateWhatsAppNumberKycAddressError, type ValidateWhatsAppNumberKycAddressResponse, ValidationError, type Verification, type VerifySmsRegistrationOtpData, type VerifySmsRegistrationOtpError, type VerifySmsRegistrationOtpResponse, type VerifyWhatsAppCallerIdData, type VerifyWhatsAppCallerIdError, type VerifyWhatsAppCallerIdResponse, type ViewPhoneNumberKycDocumentData, type ViewPhoneNumberKycDocumentError, type ViewPhoneNumberKycDocumentResponse, type VoteRedditThingData, type VoteRedditThingError, type VoteRedditThingResponse, type Webhook, type WebhookLog, type WebhookPayloadAccountAdsInitialSyncCompleted, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadAdStatusChanged, type WebhookPayloadCallEnded, type WebhookPayloadCallFailed, type WebhookPayloadCallPermissionRequest, type WebhookPayloadCallReceived, type WebhookPayloadComment, type WebhookPayloadConversationStarted, type WebhookPayloadExternalPost, type WebhookPayloadLead, type WebhookPayloadMessage, type WebhookPayloadMessageDeleted, type WebhookPayloadMessageDeliveryStatus, type WebhookPayloadMessageEdited, type WebhookPayloadMessageSent, type WebhookPayloadPost, type WebhookPayloadPostPlatform, type WebhookPayloadReaction, type WebhookPayloadReviewNew, type WebhookPayloadReviewUpdated, type WebhookPayloadTest, type WebhookPayloadWhatsAppTemplateStatusUpdated, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppCarouselCardComponent, type WhatsAppCarouselComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppLimitedTimeOfferComponent, type WhatsAppSandboxSession, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type WorkflowEdge, type WorkflowExecutionEvent, type WorkflowNode, type XApiOperation, type XApiPricing, type YouTubeDailyViewsResponse, type YouTubeDemographicsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, type YouTubeVideoRetentionResponse, Zernio, ZernioApiError, type action, type action2, type actionSource, type adType, type adType2, type adType3, type advantageAudience, type aggregation, type aggregation2, type autoArchiveDuration, type bidStrategy, type billingPeriod, type billingSystem, type budgetLevel, type budgetType, type callToAction, type channel, type channel2, type commercialContentType, type contentType, type contentType2, type contentType3, type costType, type creativeSelection, Zernio as default, type direction, type direction2, type disconnectionType, type endReason, type entity_type, type errorCategory, type errorCategory2, type errorSource, type event, type event10, type event11, type event12, type event13, type event14, type event15, type event16, type event17, type event18, type event19, type event2, type event20, type event21, type event22, type event23, type event24, type event3, type event4, type event5, type event6, type event7, type event8, type event9, type format, type forwardCallerId, type gapFreq, type gender, type goal, type graduationStrategy, type granularity, type incomeTier, type interactiveType, type kind, type level, type mediaType, type mediaType2, type metric, type metricType, type objective, type otp_type, parseApiError, type parseMode, type period, type permission, type platform, type platform10, type platform2, type platform3, type platform4, type platform5, type platform6, type platform7, type platform8, type platform9, type privacy_level, type replySettings, type response, type scope, type source, type source2, type source3, type spiciness, type status, type status10, type status11, type status12, type status13, type status14, type status15, type status2, type status3, type status4, type status5, type status6, type status7, type status8, type status9, type syncStatus, type syncStatus2, type timeframe, type topicType, type transcriptionLanguage, type trialGraduationStrategy, type type, type type2, type type3, type type4, type type5, type type6, type type7, type type8, type type9, type visibility };
|
|
29824
|
+
export { type AccountWithFollowerStats, type AccountsListResponse, type ActivateSequenceData, type ActivateSequenceError, type ActivateSequenceResponse, type ActivateWorkflowData, type ActivateWorkflowError, type ActivateWorkflowResponse, type Ad, type AdBudget, type AdCampaign, type AdDailyMetrics, type AdMetrics, type AdReviewStatus, type AdStatus, type AdTreeAdSet, type AdTreeCampaign, type AddBroadcastRecipientsData, type AddBroadcastRecipientsError, type AddBroadcastRecipientsResponse, type AddConversionAssociationsData, type AddConversionAssociationsError, type AddConversionAssociationsResponse, type AddDiscordMemberRoleData, type AddDiscordMemberRoleError, type AddDiscordMemberRoleResponse, type AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddTrackingTagSharedAccountData, type AddTrackingTagSharedAccountError, type AddTrackingTagSharedAccountResponse, type AddUsersToAdAudienceData, type AddUsersToAdAudienceError, type AddUsersToAdAudienceResponse, type AddWhatsAppGroupParticipantsData, type AddWhatsAppGroupParticipantsError, type AddWhatsAppGroupParticipantsResponse, type AdjustConversionsData, type AdjustConversionsError, type AdjustConversionsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type AppealSmsRegistrationData, type AppealSmsRegistrationError, type AppealSmsRegistrationResponse, type ApproveWhatsAppGroupJoinRequestsData, type ApproveWhatsAppGroupJoinRequestsError, type ApproveWhatsAppGroupJoinRequestsResponse, type ArchiveLeadFormData, type ArchiveLeadFormError, type ArchiveLeadFormResponse, type AssignGoogleBusinessLocationData, type AssignGoogleBusinessLocationError, type AssignGoogleBusinessLocationResponse, type BatchGetGoogleBusinessReviewsData, type BatchGetGoogleBusinessReviewsError, type BatchGetGoogleBusinessReviewsResponse, type BidStrategy, type BillingSnapshot, type BlockWhatsAppUsersData, type BlockWhatsAppUsersError, type BlockWhatsAppUsersResponse, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BoostPostData, type BoostPostError, type BoostPostResponse, type BulkCreateContactsData, type BulkCreateContactsError, type BulkCreateContactsResponse, type BulkUpdateAdCampaignStatusData, type BulkUpdateAdCampaignStatusError, type BulkUpdateAdCampaignStatusResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type BulkUploadResult, type BusinessCenter, type CallRecord, type CancelBroadcastData, type CancelBroadcastError, type CancelBroadcastResponse, type CancelPhoneNumberPortInData, type CancelPhoneNumberPortInError, type CancelPhoneNumberPortInResponse, type CancelRfReservationData, type CancelRfReservationError, type CancelRfReservationResponse, type CheckPhoneNumberAvailabilityData, type CheckPhoneNumberAvailabilityError, type CheckPhoneNumberAvailabilityResponse, type CheckPhoneNumberPortabilityData, type CheckPhoneNumberPortabilityError, type CheckPhoneNumberPortabilityResponse, type CheckVerificationData, type CheckVerificationError, type CheckVerificationResponse, type CheckWhatsAppNumberAvailabilityData, type CheckWhatsAppNumberAvailabilityError, type CheckWhatsAppNumberAvailabilityResponse, type ClearContactFieldValueData, type ClearContactFieldValueError, type ClearContactFieldValueResponse, type ClientOptions, type CompleteGoogleBusinessVerificationData, type CompleteGoogleBusinessVerificationError, type CompleteGoogleBusinessVerificationResponse, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type CompleteWhatsAppPhoneSelectionData, type CompleteWhatsAppPhoneSelectionError, type CompleteWhatsAppPhoneSelectionResponse, type ConfigureTikTokAdsBrandIdentityData, type ConfigureTikTokAdsBrandIdentityError, type ConfigureTikTokAdsBrandIdentityResponse, type ConnectAdsData, type ConnectAdsError, type ConnectAdsResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectOpenAiAdsCredentialsData, type ConnectOpenAiAdsCredentialsError, type ConnectOpenAiAdsCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type ConnectedApp, type ConversionDestination, type ConversionEvent, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateAdAudienceData, type CreateAdAudienceError, type CreateAdAudienceResponse, type CreateAdCampaignData, type CreateAdCampaignError, type CreateAdCampaignResponse, type CreateAdCreativeData, type CreateAdCreativeError, type CreateAdCreativeResponse, type CreateAdInsightsReportData, type CreateAdInsightsReportError, type CreateAdInsightsReportResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateBroadcastData, type CreateBroadcastError, type CreateBroadcastResponse, type CreateCallAdData, type CreateCallAdError, type CreateCallAdResponse, 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 CreateDiscordGuildRoleData, type CreateDiscordGuildRoleError, type CreateDiscordGuildRoleResponse, type CreateDiscordScheduledEventData, type CreateDiscordScheduledEventError, type CreateDiscordScheduledEventResponse, type CreateDiscordThreadData, type CreateDiscordThreadError, type CreateDiscordThreadResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInboxConversationData, type CreateInboxConversationError, type CreateInboxConversationResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreateLeadFormData, type CreateLeadFormError, type CreateLeadFormResponse, type CreateMessagingAdData, type CreateMessagingAdError, type CreateMessagingAdResponse, type CreatePhoneNumberKycLinkData, type CreatePhoneNumberKycLinkError, type CreatePhoneNumberKycLinkResponse, type CreatePhoneNumberPortInData, type CreatePhoneNumberPortInError, type CreatePhoneNumberPortInResponse, type CreatePinterestBoardData, type CreatePinterestBoardError, type CreatePinterestBoardResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateRfPredictionData, type CreateRfPredictionError, type CreateRfPredictionResponse, type CreateSequenceData, type CreateSequenceError, type CreateSequenceResponse, type CreateSmsSenderIdData, type CreateSmsSenderIdError, type CreateSmsSenderIdResponse, type CreateStandaloneAdData, type CreateStandaloneAdError, type CreateStandaloneAdResponse, type CreateTestLeadData, type CreateTestLeadError, type CreateTestLeadResponse, type CreateTrackingTagData, type CreateTrackingTagError, type CreateTrackingTagResponse, type CreateVerificationData, type CreateVerificationError, type CreateVerificationResponse, type CreateVoiceCallData, type CreateVoiceCallError, type CreateVoiceCallResponse, type CreateVoiceWebSessionError, type CreateVoiceWebSessionResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppDatasetData, type CreateWhatsAppDatasetError, type CreateWhatsAppDatasetResponse, type CreateWhatsAppFlowData, type CreateWhatsAppFlowError, type CreateWhatsAppFlowResponse, type CreateWhatsAppGroupChatData, type CreateWhatsAppGroupChatError, type CreateWhatsAppGroupChatResponse, type CreateWhatsAppGroupInviteLinkData, type CreateWhatsAppGroupInviteLinkError, type CreateWhatsAppGroupInviteLinkResponse, type CreateWhatsAppNumberKycLinkData, type CreateWhatsAppNumberKycLinkError, type CreateWhatsAppNumberKycLinkResponse, type CreateWhatsAppSandboxSessionData, type CreateWhatsAppSandboxSessionError, type CreateWhatsAppSandboxSessionResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type CreateWorkflowData, type CreateWorkflowError, type CreateWorkflowResponse, type CrosspostDiscordMessageData, type CrosspostDiscordMessageError, type CrosspostDiscordMessageResponse, type CtwaAdRequestBody, type CtwaMultiResponse, type CtwaSingleResponse, type DeactivateSmsRegistrationData, type DeactivateSmsRegistrationError, type DeactivateSmsRegistrationResponse, 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 DeleteAdCreativeData, type DeleteAdCreativeError, type DeleteAdCreativeResponse, 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 DeleteDiscordGuildRoleData, type DeleteDiscordGuildRoleError, type DeleteDiscordGuildRoleResponse, type DeleteDiscordMessageData, type DeleteDiscordMessageError, type DeleteDiscordMessageResponse, type DeleteDiscordScheduledEventData, type DeleteDiscordScheduledEventError, type DeleteDiscordScheduledEventResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteGoogleBusinessReviewReplyData, type DeleteGoogleBusinessReviewReplyError, type DeleteGoogleBusinessReviewReplyResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxMessageData, type DeleteInboxMessageError, type DeleteInboxMessageResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteMessengerMenuData, type DeleteMessengerMenuError, type DeleteMessengerMenuResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteSequenceData, type DeleteSequenceError, type DeleteSequenceResponse, type DeleteSmsSenderIdData, type DeleteSmsSenderIdError, type DeleteSmsSenderIdResponse, 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 DeleteWhatsAppSandboxSessionData, type DeleteWhatsAppSandboxSessionError, type DeleteWhatsAppSandboxSessionResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, type DeleteWhatsappBusinessUsernameData, type DeleteWhatsappBusinessUsernameError, type DeleteWhatsappBusinessUsernameResponse, type DeleteWorkflowData, type DeleteWorkflowError, type DeleteWorkflowResponse, type DeprecateWhatsAppFlowData, type DeprecateWhatsAppFlowError, type DeprecateWhatsAppFlowResponse, type DialVoiceWebCallData, type DialVoiceWebCallError, type DialVoiceWebCallResponse, type DisableSmsOnNumberData, type DisableSmsOnNumberError, type DisableSmsOnNumberResponse, type DisableVoiceOnNumberData, type DisableVoiceOnNumberError, type DisableVoiceOnNumberResponse, type DisableWhatsAppCallingData, type DisableWhatsAppCallingError, type DisableWhatsAppCallingLegacyData, type DisableWhatsAppCallingLegacyError, type DisableWhatsAppCallingLegacyResponse, type DisableWhatsAppCallingResponse, type DiscordGuildMember, type DiscordPlatformData, type DiscordRole, type DiscordScheduledEvent, type DmButton, type DuplicateAdCampaignData, type DuplicateAdCampaignError, type DuplicateAdCampaignResponse, type DuplicateAdData, type DuplicateAdError, type DuplicateAdResponse, type DuplicateAdSetData, type DuplicateAdSetError, type DuplicateAdSetResponse, type DuplicateWorkflowData, type DuplicateWorkflowError, type DuplicateWorkflowResponse, type EditDiscordGuildRoleData, type EditDiscordGuildRoleError, type EditDiscordGuildRoleResponse, type EditInboxCommentData, type EditInboxCommentError, type EditInboxCommentResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type EditPostData, type EditPostError, type EditPostResponse, type EnableSmsOnNumberData, type EnableSmsOnNumberError, type EnableSmsOnNumberResponse, type EnableVoiceOnNumberData, type EnableVoiceOnNumberError, type EnableVoiceOnNumberResponse, type EnableWhatsAppCallingData, type EnableWhatsAppCallingError, type EnableWhatsAppCallingLegacyData, type EnableWhatsAppCallingLegacyError, type EnableWhatsAppCallingLegacyResponse, type EnableWhatsAppCallingResponse, type EndVoiceCallData, type EndVoiceCallError, type EndVoiceCallResponse, type EnrollContactsData, type EnrollContactsError, type EnrollContactsResponse, type ErrorResponse, type EstimateAdReachData, type EstimateAdReachError, type EstimateAdReachResponse, type ExternalPostMediaItem, type ExternalPostSummary, type ExternalPostWebhookPost, type FacebookPlatformData, type FacebookPostEarningsResponse, type FacebookSettings, type FetchGoogleBusinessVerificationOptionsData, type FetchGoogleBusinessVerificationOptionsError, type FetchGoogleBusinessVerificationOptionsResponse, type FollowUserData, type FollowUserError, type FollowUserResponse, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GenerateAdPreviewsData, type GenerateAdPreviewsError, type GenerateAdPreviewsResponse, type GenerateKeywordHistoricalMetricsData, type GenerateKeywordHistoricalMetricsError, type GenerateKeywordHistoricalMetricsResponse, type GenerateKeywordIdeasData, type GenerateKeywordIdeasError, type GenerateKeywordIdeasResponse, type GeoRestriction, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAdAccountFinanceData, type GetAdAccountFinanceError, type GetAdAccountFinanceResponse, type GetAdAnalyticsData, type GetAdAnalyticsError, type GetAdAnalyticsResponse, type GetAdAudienceData, type GetAdAudienceError, type GetAdAudienceResponse, type GetAdCommentsData, type GetAdCommentsError, type GetAdCommentsResponse, type GetAdCreativeData, type GetAdCreativeError, type GetAdCreativeResponse, type GetAdData, type GetAdError, type GetAdInsightsReportData, type GetAdInsightsReportError, type GetAdInsightsReportResponse, type GetAdPreviewsData, type GetAdPreviewsError, type GetAdPreviewsResponse, type GetAdResponse, type GetAdSetDetailsData, type GetAdSetDetailsError, type GetAdSetDetailsResponse, type GetAdTrackingTagsData, type GetAdTrackingTagsError, type GetAdTrackingTagsResponse, type GetAdTreeData, type GetAdTreeError, type GetAdTreeResponse, type GetAdsActivityLogData, type GetAdsActivityLogError, type GetAdsActivityLogResponse, type GetAdsTimelineData, type GetAdsTimelineError, type GetAdsTimelineResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetBillingError, type GetBillingResponse, type GetBroadcastData, type GetBroadcastError, type GetBroadcastResponse, type GetCallData, type GetCallError, type GetCallRecordingData, type GetCallRecordingError, type GetCallRecordingResponse, type GetCallResponse, type GetCallsUsageData, type GetCallsUsageError, type GetCallsUsageResponse, type GetCampaignAnalyticsData, type GetCampaignAnalyticsError, type GetCampaignAnalyticsResponse, 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 GetConversionsQualityData, type GetConversionsQualityError, type GetConversionsQualityResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetDiscordChannelsData, type GetDiscordChannelsError, type GetDiscordChannelsResponse, type GetDiscordGuildMemberData, type GetDiscordGuildMemberError, type GetDiscordGuildMemberResponse, type GetDiscordScheduledEventData, type GetDiscordScheduledEventError, type GetDiscordScheduledEventResponse, type GetDiscordSettingsData, type GetDiscordSettingsError, type GetDiscordSettingsResponse, type GetDsaDefaultsData, type GetDsaDefaultsError, type GetDsaDefaultsResponse, type GetDsaRecommendationsData, type GetDsaRecommendationsError, type GetDsaRecommendationsResponse, type GetFacebookPageInsightsData, type GetFacebookPageInsightsError, type GetFacebookPageInsightsResponse, type GetFacebookPagesData, type GetFacebookPagesError, type GetFacebookPagesResponse, type GetFacebookPostEarningsData, type GetFacebookPostEarningsError, type GetFacebookPostEarningsResponse, type GetFacebookPostReactionsData, type GetFacebookPostReactionsError, type GetFacebookPostReactionsResponse, type GetFollowerStatsData, type GetFollowerStatsError, type GetFollowerStatsResponse, type GetGmbAttributeMetadataData, type GetGmbAttributeMetadataError, type GetGmbAttributeMetadataResponse, type GetGmbLocationsData, type GetGmbLocationsError, type GetGmbLocationsResponse, type GetGoogleBusinessAttributesData, type GetGoogleBusinessAttributesError, type GetGoogleBusinessAttributesResponse, type GetGoogleBusinessFoodMenusData, type GetGoogleBusinessFoodMenusError, type GetGoogleBusinessFoodMenusResponse, type GetGoogleBusinessLocationDetailsData, type GetGoogleBusinessLocationDetailsError, type GetGoogleBusinessLocationDetailsResponse, type GetGoogleBusinessPerformanceData, type GetGoogleBusinessPerformanceError, type GetGoogleBusinessPerformanceResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetGoogleBusinessSearchKeywordsData, type GetGoogleBusinessSearchKeywordsError, type GetGoogleBusinessSearchKeywordsResponse, type GetGoogleBusinessServicesData, type GetGoogleBusinessServicesError, type GetGoogleBusinessServicesResponse, type GetGoogleBusinessVerificationsData, type GetGoogleBusinessVerificationsError, type GetGoogleBusinessVerificationsResponse, type GetInboxConversationAnalyticsData, type GetInboxConversationAnalyticsError, type GetInboxConversationAnalyticsResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxHeatmapData, type GetInboxHeatmapError, type GetInboxHeatmapResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetInboxResponseTimeData, type GetInboxResponseTimeError, type GetInboxResponseTimeResponse, type GetInboxSourceBreakdownData, type GetInboxSourceBreakdownError, type GetInboxSourceBreakdownResponse, type GetInboxTopAccountsData, type GetInboxTopAccountsError, type GetInboxTopAccountsResponse, type GetInboxVolumeData, type GetInboxVolumeError, type GetInboxVolumeResponse, 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 GetInstagramPublishingLimitData, type GetInstagramPublishingLimitError, type GetInstagramPublishingLimitResponse, type GetInstagramStoryInsightsData, type GetInstagramStoryInsightsError, type GetInstagramStoryInsightsResponse, type GetLeadFormData, type GetLeadFormError, type GetLeadFormResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInBidPricingData, type GetLinkedInBidPricingError, type GetLinkedInBidPricingResponse, 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 GetLinkedInSupplyForecastData, type GetLinkedInSupplyForecastError, type GetLinkedInSupplyForecastResponse, 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 GetPhoneNumberData, type GetPhoneNumberError, type GetPhoneNumberKycFormData, type GetPhoneNumberKycFormError, type GetPhoneNumberKycFormResponse, type GetPhoneNumberPortInOrderRequirementsData, type GetPhoneNumberPortInOrderRequirementsError, type GetPhoneNumberPortInOrderRequirementsResponse, type GetPhoneNumberPortInRequirementsData, type GetPhoneNumberPortInRequirementsError, type GetPhoneNumberPortInRequirementsResponse, type GetPhoneNumberRemediationData, type GetPhoneNumberRemediationError, type GetPhoneNumberRemediationResponse, type GetPhoneNumberResponse, 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 GetRfPredictionData, type GetRfPredictionError, type GetRfPredictionResponse, type GetSequenceData, type GetSequenceError, type GetSequenceResponse, type GetSlackSettingsData, type GetSlackSettingsError, type GetSlackSettingsResponse, type GetSmsRegistrationData, type GetSmsRegistrationError, type GetSmsRegistrationResponse, type GetSmsUsageData, type GetSmsUsageError, type GetSmsUsageResponse, type GetSubredditRulesData, type GetSubredditRulesError, type GetSubredditRulesResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetTikTokAccountInsightsData, type GetTikTokAccountInsightsError, type GetTikTokAccountInsightsResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, type GetTrackingTagData, type GetTrackingTagError, type GetTrackingTagResponse, type GetTrackingTagStatsData, type GetTrackingTagStatsError, type GetTrackingTagStatsResponse, type GetUsageData, type GetUsageError, type GetUsageResponse, type GetUsageStatsData, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetVerificationData, type GetVerificationError, type GetVerificationResponse, type GetVoiceCallData, type GetVoiceCallError, type GetVoiceCallEstimateData, type GetVoiceCallEstimateError, type GetVoiceCallEstimateResponse, type GetVoiceCallRecordingData, type GetVoiceCallRecordingError, type GetVoiceCallRecordingResponse, type GetVoiceCallResponse, type GetWebhookLogsData, type GetWebhookLogsError, type GetWebhookLogsResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetWhatsAppBlockStatusData, type GetWhatsAppBlockStatusError, type GetWhatsAppBlockStatusResponse, type GetWhatsAppBlockedUsersData, type GetWhatsAppBlockedUsersError, type GetWhatsAppBlockedUsersResponse, type GetWhatsAppBusinessProfileData, type GetWhatsAppBusinessProfileError, type GetWhatsAppBusinessProfileResponse, type GetWhatsAppCallData, type GetWhatsAppCallError, type GetWhatsAppCallEstimateData, type GetWhatsAppCallEstimateError, type GetWhatsAppCallEstimateResponse, type GetWhatsAppCallPermissionsData, type GetWhatsAppCallPermissionsError, type GetWhatsAppCallPermissionsResponse, type GetWhatsAppCallRecordingData, type GetWhatsAppCallRecordingError, type GetWhatsAppCallRecordingResponse, type GetWhatsAppCallResponse, type GetWhatsAppCallingConfigData, type GetWhatsAppCallingConfigError, type GetWhatsAppCallingConfigResponse, type GetWhatsAppCallingData, type GetWhatsAppCallingError, type GetWhatsAppCallingResponse, type GetWhatsAppDatasetData, type GetWhatsAppDatasetError, type GetWhatsAppDatasetResponse, type GetWhatsAppDisplayNameData, type GetWhatsAppDisplayNameError, type GetWhatsAppDisplayNameResponse, type GetWhatsAppFlowData, type GetWhatsAppFlowError, type GetWhatsAppFlowJsonData, type GetWhatsAppFlowJsonError, type GetWhatsAppFlowJsonResponse, type GetWhatsAppFlowPreviewData, type GetWhatsAppFlowPreviewError, type GetWhatsAppFlowPreviewResponse, type GetWhatsAppFlowResponse, type GetWhatsAppGroupChatData, type GetWhatsAppGroupChatError, type GetWhatsAppGroupChatResponse, type GetWhatsAppLibraryTemplateData, type GetWhatsAppLibraryTemplateError, type GetWhatsAppLibraryTemplateResponse, type GetWhatsAppMediaData, type GetWhatsAppMediaError, type GetWhatsAppMediaResponse, type GetWhatsAppNumberInfoData, type GetWhatsAppNumberInfoError, type GetWhatsAppNumberInfoResponse, type GetWhatsAppNumberKycFormData, type GetWhatsAppNumberKycFormError, type GetWhatsAppNumberKycFormResponse, type GetWhatsAppNumberRemediationData, type GetWhatsAppNumberRemediationError, type GetWhatsAppNumberRemediationResponse, 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 GetWhatsappBusinessUsernameData, type GetWhatsappBusinessUsernameError, type GetWhatsappBusinessUsernameResponse, type GetWhatsappBusinessUsernameSuggestionsData, type GetWhatsappBusinessUsernameSuggestionsError, type GetWhatsappBusinessUsernameSuggestionsResponse, type GetWorkflowData, type GetWorkflowError, type GetWorkflowResponse, type GetWorkflowVersionData, type GetWorkflowVersionError, type GetWorkflowVersionResponse, type GetXApiPricingError, type GetXApiPricingResponse, type GetYouTubeChannelInsightsData, type GetYouTubeChannelInsightsError, type GetYouTubeChannelInsightsResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeDemographicsData, type GetYouTubeDemographicsError, type GetYouTubeDemographicsResponse, type GetYouTubeVideoRetentionData, type GetYouTubeVideoRetentionError, type GetYouTubeVideoRetentionResponse, type GetYoutubePlaylistsData, type GetYoutubePlaylistsError, type GetYoutubePlaylistsResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type InboxMessageEditAttachment, type InboxMessageEditHistoryEntry, type InboxWebhookAccount, type InboxWebhookConversation, type InboxWebhookMessage, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InitiateWhatsAppCallData, type InitiateWhatsAppCallError, type InitiateWhatsAppCallResponse, type InstagramAccountInsightsResponse, type InstagramDemographicsResponse, type InstagramPlatformData, Late, LateApiError, type LikeInboxCommentData, type LikeInboxCommentError, type LikeInboxCommentResponse, type LinkedInAdsPlatformData, 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 ListAdCatalogProductSetsData, type ListAdCatalogProductSetsError, type ListAdCatalogProductSetsResponse, type ListAdCatalogsData, type ListAdCatalogsError, type ListAdCatalogsResponse, type ListAdCreativesData, type ListAdCreativesError, type ListAdCreativesResponse, type ListAdImagesData, type ListAdImagesError, type ListAdImagesResponse, type ListAdKeywordsData, type ListAdKeywordsError, type ListAdKeywordsResponse, type ListAdLabelsData, type ListAdLabelsError, type ListAdLabelsResponse, type ListAdStudiesData, type ListAdStudiesError, type ListAdStudiesResponse, 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 ListCallsData, type ListCallsError, type ListCallsResponse, type ListCommentAutomationLogsData, type ListCommentAutomationLogsError, type ListCommentAutomationLogsResponse, type ListCommentAutomationsData, type ListCommentAutomationsError, type ListCommentAutomationsResponse, type ListConnectedAppsError, type ListConnectedAppsResponse, 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 ListDiscordGuildMembersData, type ListDiscordGuildMembersError, type ListDiscordGuildMembersResponse, type ListDiscordGuildRolesData, type ListDiscordGuildRolesError, type ListDiscordGuildRolesResponse, type ListDiscordPinnedMessagesData, type ListDiscordPinnedMessagesError, type ListDiscordPinnedMessagesResponse, type ListDiscordScheduledEventsData, type ListDiscordScheduledEventsError, type ListDiscordScheduledEventsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListFormLeadsData, type ListFormLeadsError, type ListFormLeadsResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListGoogleBusinessMediaData, type ListGoogleBusinessMediaError, type ListGoogleBusinessMediaResponse, type ListGoogleBusinessPlaceActionsData, type ListGoogleBusinessPlaceActionsError, type ListGoogleBusinessPlaceActionsResponse, type ListHighDemandPeriodsData, type ListHighDemandPeriodsError, type ListHighDemandPeriodsResponse, type ListInboxCommentsData, type ListInboxCommentsError, type ListInboxCommentsResponse, type ListInboxConversationAnalyticsData, type ListInboxConversationAnalyticsError, type ListInboxConversationAnalyticsResponse, type ListInboxConversationsData, type ListInboxConversationsError, type ListInboxConversationsResponse, type ListInboxMentionsData, type ListInboxMentionsError, type ListInboxMentionsResponse, type ListInboxReviewsData, type ListInboxReviewsError, type ListInboxReviewsResponse, type ListInstagramStoriesData, type ListInstagramStoriesError, type ListInstagramStoriesResponse, type ListLeadFormsData, type ListLeadFormsError, type ListLeadFormsResponse, type ListLeadsData, type ListLeadsError, type ListLeadsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListLogsData, type ListLogsError, type ListLogsResponse, type ListMetaBusinessesData, type ListMetaBusinessesError, type ListMetaBusinessesResponse, type ListPhoneNumberCountriesError, type ListPhoneNumberCountriesResponse, type ListPhoneNumberPortInsError, type ListPhoneNumberPortInsResponse, type ListPhoneNumbersData, type ListPhoneNumbersError, type ListPhoneNumbersResponse, 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 ListSmsOptOutsData, type ListSmsOptOutsError, type ListSmsOptOutsResponse, type ListSmsRegistrationsData, type ListSmsRegistrationsError, type ListSmsRegistrationsResponse, type ListSmsSenderIdsError, type ListSmsSenderIdsResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListTrackingTagSharedAccountsData, type ListTrackingTagSharedAccountsError, type ListTrackingTagSharedAccountsResponse, type ListTrackingTagsData, type ListTrackingTagsError, type ListTrackingTagsResponse, type ListUsersError, type ListUsersResponse, type ListVoiceCallsData, type ListVoiceCallsError, type ListVoiceCallsResponse, type ListWhatsAppCallsData, type ListWhatsAppCallsError, type ListWhatsAppCallsResponse, type ListWhatsAppConversionsData, type ListWhatsAppConversionsError, type ListWhatsAppConversionsResponse, type ListWhatsAppFlowResponsesData, type ListWhatsAppFlowResponsesError, type ListWhatsAppFlowResponsesResponse, type ListWhatsAppFlowVersionsData, type ListWhatsAppFlowVersionsError, type ListWhatsAppFlowVersionsResponse, type ListWhatsAppFlowsData, type ListWhatsAppFlowsError, type ListWhatsAppFlowsResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type ListWhatsAppNumberCountriesError, type ListWhatsAppNumberCountriesResponse, type ListWhatsAppPhoneNumbersData, type ListWhatsAppPhoneNumbersError, type ListWhatsAppPhoneNumbersResponse, type ListWhatsAppSandboxSessionsError, type ListWhatsAppSandboxSessionsResponse, type ListWorkflowExecutionEventsData, type ListWorkflowExecutionEventsError, type ListWorkflowExecutionEventsResponse, type ListWorkflowExecutionsData, type ListWorkflowExecutionsError, type ListWorkflowExecutionsResponse, type ListWorkflowVersionsData, type ListWorkflowVersionsError, type ListWorkflowVersionsResponse, type ListWorkflowsData, type ListWorkflowsError, type ListWorkflowsResponse, type LookupSmsNumberData, type LookupSmsNumberError, type LookupSmsNumberResponse, type MarkConversationReadData, type MarkConversationReadError, type MarkConversationReadResponse, type MediaItem, type MediaUploadResponse, type Money, type MoneyAmount, type MoveAccountToProfileData, type MoveAccountToProfileError, type MoveAccountToProfileResponse, type Pagination, type ParameterPageParam, type PauseSequenceData, type PauseSequenceError, type PauseSequenceResponse, type PauseWorkflowData, type PauseWorkflowError, type PauseWorkflowResponse, type PinDiscordMessageData, type PinDiscordMessageError, type PinDiscordMessageResponse, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostRetryResponse, type PostUpdateResponse, type PostsListResponse, type PreflightSmsRegistrationData, type PreflightSmsRegistrationError, type PreflightSmsRegistrationResponse, 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 PurchasePhoneNumberData, type PurchasePhoneNumberError, type PurchasePhoneNumberResponse, type PurchaseWhatsAppPhoneNumberData, type PurchaseWhatsAppPhoneNumberError, type PurchaseWhatsAppPhoneNumberResponse, type QueryAdInsightsData, type QueryAdInsightsError, type QueryAdInsightsResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type RedditPost, type RegisterWhatsAppNumberData, type RegisterWhatsAppNumberError, type RegisterWhatsAppNumberResponse, type RejectWhatsAppGroupJoinRequestsData, type RejectWhatsAppGroupJoinRequestsError, type RejectWhatsAppGroupJoinRequestsResponse, type ReleasePhoneNumberData, type ReleasePhoneNumberError, type ReleasePhoneNumberResponse, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemediatePhoneNumberData, type RemediatePhoneNumberError, type RemediatePhoneNumberResponse, type RemediateWhatsAppNumberData, type RemediateWhatsAppNumberError, type RemediateWhatsAppNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveConversionAssociationsData, type RemoveConversionAssociationsError, type RemoveConversionAssociationsResponse, type RemoveDiscordMemberRoleData, type RemoveDiscordMemberRoleError, type RemoveDiscordMemberRoleResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveTrackingTagSharedAccountData, type RemoveTrackingTagSharedAccountError, type RemoveTrackingTagSharedAccountResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, type ReplyToGoogleBusinessReviewData, type ReplyToGoogleBusinessReviewError, type ReplyToGoogleBusinessReviewResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type ReplyToMentionData, type ReplyToMentionError, type ReplyToMentionResponse, type ReplyToPhoneNumberReviewerData, type ReplyToPhoneNumberReviewerError, type ReplyToPhoneNumberReviewerResponse, type RequestSmsSenderIdLimitIncreaseData, type RequestSmsSenderIdLimitIncreaseError, type RequestSmsSenderIdLimitIncreaseResponse, type ResendSmsRegistrationOtpData, type ResendSmsRegistrationOtpError, type ResendSmsRegistrationOtpResponse, type ReserveRfPredictionData, type ReserveRfPredictionError, type ReserveRfPredictionResponse, type RespondToPhoneNumberReviewerData, type RespondToPhoneNumberReviewerError, type RespondToPhoneNumberReviewerResponse, type RespondToSmsRegistrationReviewData, type RespondToSmsRegistrationReviewError, type RespondToSmsRegistrationReviewResponse, type RestoreWorkflowVersionData, type RestoreWorkflowVersionError, type RestoreWorkflowVersionResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type ReuseSmsRegistrationForNumberData, type ReuseSmsRegistrationForNumberError, type ReuseSmsRegistrationForNumberResponse, type ReviewPhoneNumberKycPacketData, type ReviewPhoneNumberKycPacketError, type ReviewPhoneNumberKycPacketResponse, type ReviewWebhookReview, type RevokeConnectedAppData, type RevokeConnectedAppError, type RevokeConnectedAppResponse, type RfPrediction, type ScheduleBroadcastData, type ScheduleBroadcastError, type ScheduleBroadcastResponse, type SearchAdInterestsData, type SearchAdInterestsError, type SearchAdInterestsResponse, type SearchAdTargetingData, type SearchAdTargetingError, type SearchAdTargetingResponse, type SearchAvailablePhoneNumbersData, type SearchAvailablePhoneNumbersError, type SearchAvailablePhoneNumbersResponse, type SearchAvailableWhatsAppNumbersData, type SearchAvailableWhatsAppNumbersError, type SearchAvailableWhatsAppNumbersResponse, type SearchDiscordGuildMembersData, type SearchDiscordGuildMembersError, type SearchDiscordGuildMembersResponse, type SearchInboxConversationsData, type SearchInboxConversationsError, type SearchInboxConversationsResponse, type SearchRedditData, type SearchRedditError, type SearchRedditResponse, type SearchTweetsData, type SearchTweetsError, type SearchTweetsResponse, 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 SendDiscordDirectMessageData, type SendDiscordDirectMessageError, type SendDiscordDirectMessageResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SendSmsData, type SendSmsError, type SendSmsResponse, type SendTypingIndicatorData, type SendTypingIndicatorError, type SendTypingIndicatorResponse, type SendWhatsAppConversionData, type SendWhatsAppConversionError, type SendWhatsAppConversionResponse, type SendWhatsAppFlowMessageData, type SendWhatsAppFlowMessageError, type SendWhatsAppFlowMessageResponse, type SetCommentModerationData, type SetCommentModerationError, type SetCommentModerationResponse, type SetContactFieldValueData, type SetContactFieldValueError, type SetContactFieldValueResponse, type SetInstagramIceBreakersData, type SetInstagramIceBreakersError, type SetInstagramIceBreakersResponse, type SetMessengerMenuData, type SetMessengerMenuError, type SetMessengerMenuResponse, type SetRedditPostFlairData, type SetRedditPostFlairError, type SetRedditPostFlairResponse, type SetTelegramCommandsData, type SetTelegramCommandsError, type SetTelegramCommandsResponse, type SetWhatsappBusinessUsernameData, type SetWhatsappBusinessUsernameError, type SetWhatsappBusinessUsernameResponse, type ShareSmsRegistrationData, type ShareSmsRegistrationError, type ShareSmsRegistrationResponse, type SharedAdAccount, type SlackPlatformData, type SnapchatPlatformData, type SocialAccount, type StartGoogleBusinessVerificationData, type StartGoogleBusinessVerificationError, type StartGoogleBusinessVerificationResponse, type StartSmsRegistrationData, type StartSmsRegistrationError, type StartSmsRegistrationResponse, type StartWhatsAppCallerIdVerificationData, type StartWhatsAppCallerIdVerificationError, type StartWhatsAppCallerIdVerificationResponse, type SubmitPhoneNumberKycData, type SubmitPhoneNumberKycError, type SubmitPhoneNumberKycResponse, type SubmitWhatsAppNumberKycData, type SubmitWhatsAppNumberKycError, type SubmitWhatsAppNumberKycResponse, type SyncExternalPostsData, type SyncExternalPostsError, type SyncExternalPostsResponse, type TargetingSpec, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TrackingTag, type TransferVoiceCallData, type TransferVoiceCallError, type TransferVoiceCallResponse, type TriggerWorkflowData, type TriggerWorkflowError, type TriggerWorkflowResponse, type TwitterPlatformData, type UnblockWhatsAppUsersData, type UnblockWhatsAppUsersError, type UnblockWhatsAppUsersResponse, 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 UnpinDiscordMessageData, type UnpinDiscordMessageError, type UnpinDiscordMessageResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateAdAccountData, type UpdateAdAccountError, type UpdateAdAccountResponse, type UpdateAdAudienceData, type UpdateAdAudienceError, type UpdateAdAudienceResponse, type UpdateAdCampaignData, type UpdateAdCampaignError, type UpdateAdCampaignResponse, type UpdateAdCampaignStatusData, type UpdateAdCampaignStatusError, type UpdateAdCampaignStatusResponse, type UpdateAdCreativeData, type UpdateAdCreativeError, type UpdateAdCreativeResponse, type UpdateAdData, type UpdateAdError, type UpdateAdResponse, type UpdateAdSetData, type UpdateAdSetError, type UpdateAdSetResponse, type UpdateAdSetStatusData, type UpdateAdSetStatusError, type UpdateAdSetStatusResponse, type UpdateAdStatusData, type UpdateAdStatusError, type UpdateAdStatusResponse, type UpdateAdTrackingTagsData, type UpdateAdTrackingTagsError, type UpdateAdTrackingTagsResponse, 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 UpdateDiscordScheduledEventData, type UpdateDiscordScheduledEventError, type UpdateDiscordScheduledEventResponse, 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 UpdateSlackSettingsData, type UpdateSlackSettingsError, type UpdateSlackSettingsResponse, type UpdateTrackingTagData, type UpdateTrackingTagError, type UpdateTrackingTagResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppCallingData, type UpdateWhatsAppCallingError, type UpdateWhatsAppCallingLegacyData, type UpdateWhatsAppCallingLegacyError, type UpdateWhatsAppCallingLegacyResponse, type UpdateWhatsAppCallingResponse, 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 UpdateWorkflowData, type UpdateWorkflowError, type UpdateWorkflowResponse, type UpdateYoutubeDefaultPlaylistData, type UpdateYoutubeDefaultPlaylistError, type UpdateYoutubeDefaultPlaylistResponse, type UploadAdImageData, type UploadAdImageError, type UploadAdImageResponse, type UploadMediaDirectData, type UploadMediaDirectError, type UploadMediaDirectResponse, type UploadPhoneNumberKycDocumentData, type UploadPhoneNumberKycDocumentError, type UploadPhoneNumberKycDocumentResponse, type UploadPhoneNumberPortInDocumentData, type UploadPhoneNumberPortInDocumentError, type UploadPhoneNumberPortInDocumentResponse, type UploadSmsOptInProofData, type UploadSmsOptInProofError, type UploadSmsOptInProofFileData, type UploadSmsOptInProofFileError, type UploadSmsOptInProofFileResponse, type UploadSmsOptInProofResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadWhatsAppFlowJsonData, type UploadWhatsAppFlowJsonError, type UploadWhatsAppFlowJsonResponse, type UploadWhatsAppNumberKycDocumentData, type UploadWhatsAppNumberKycDocumentError, type UploadWhatsAppNumberKycDocumentResponse, type UploadWhatsAppProfilePhotoData, type UploadWhatsAppProfilePhotoError, type UploadWhatsAppProfilePhotoResponse, type UploadedFile, type UsageMetering, type UsageStats, type User, type UserGetResponse, type UsersListResponse, type ValidateMediaData, type ValidateMediaError, type ValidateMediaResponse, type ValidatePhoneNumberKycAddressData, type ValidatePhoneNumberKycAddressError, type ValidatePhoneNumberKycAddressResponse, type ValidatePostData, type ValidatePostError, type ValidatePostLengthData, type ValidatePostLengthError, type ValidatePostLengthResponse, type ValidatePostResponse, type ValidateSubredditData, type ValidateSubredditError, type ValidateSubredditResponse, type ValidateWhatsAppNumberKycAddressData, type ValidateWhatsAppNumberKycAddressError, type ValidateWhatsAppNumberKycAddressResponse, ValidationError, type Verification, type VerifySmsRegistrationOtpData, type VerifySmsRegistrationOtpError, type VerifySmsRegistrationOtpResponse, type VerifyWhatsAppCallerIdData, type VerifyWhatsAppCallerIdError, type VerifyWhatsAppCallerIdResponse, type ViewPhoneNumberKycDocumentData, type ViewPhoneNumberKycDocumentError, type ViewPhoneNumberKycDocumentResponse, type VoteRedditThingData, type VoteRedditThingError, type VoteRedditThingResponse, type Webhook, type WebhookLog, type WebhookPayloadAccountAdsInitialSyncCompleted, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadAdStatusChanged, type WebhookPayloadCallEnded, type WebhookPayloadCallFailed, type WebhookPayloadCallPermissionRequest, type WebhookPayloadCallReceived, type WebhookPayloadComment, type WebhookPayloadConversationStarted, type WebhookPayloadExternalPost, type WebhookPayloadLead, type WebhookPayloadMessage, type WebhookPayloadMessageDeleted, type WebhookPayloadMessageDeliveryStatus, type WebhookPayloadMessageEdited, type WebhookPayloadMessageSent, type WebhookPayloadPost, type WebhookPayloadPostPlatform, type WebhookPayloadReaction, type WebhookPayloadReviewNew, type WebhookPayloadReviewUpdated, type WebhookPayloadTest, type WebhookPayloadWhatsAppTemplateStatusUpdated, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppCarouselCardComponent, type WhatsAppCarouselComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppLimitedTimeOfferComponent, type WhatsAppSandboxSession, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type WorkflowEdge, type WorkflowExecutionEvent, type WorkflowNode, type XApiOperation, type XApiPricing, type YouTubeDailyViewsResponse, type YouTubeDemographicsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, type YouTubeVideoRetentionResponse, Zernio, ZernioApiError, type action, type action2, type actionSource, type adType, type adType2, type adType3, type advantageAudience, type aggregation, type aggregation2, type autoArchiveDuration, type bidStrategy, type billingPeriod, type billingSystem, type budgetLevel, type budgetType, type callToAction, type channel, type channel2, type commercialContentType, type contentType, type contentType2, type contentType3, type costType, type creativeSelection, Zernio as default, type direction, type direction2, type disconnectionType, type endReason, type entity_type, type errorCategory, type errorCategory2, type errorSource, type event, type event10, type event11, type event12, type event13, type event14, type event15, type event16, type event17, type event18, type event19, type event2, type event20, type event21, type event22, type event23, type event24, type event3, type event4, type event5, type event6, type event7, type event8, type event9, type format, type forwardCallerId, type gapFreq, type gender, type goal, type graduationStrategy, type granularity, type incomeTier, type interactiveType, type kind, type level, type mediaType, type mediaType2, type metric, type metricType, type objective, type otp_type, parseApiError, type parseMode, type period, type permission, type platform, type platform10, type platform2, type platform3, type platform4, type platform5, type platform6, type platform7, type platform8, type platform9, type privacy_level, type replySettings, type response, type scope, type source, type source2, type source3, type spiciness, type status, type status10, type status11, type status12, type status13, type status14, type status15, type status2, type status3, type status4, type status5, type status6, type status7, type status8, type status9, type syncStatus, type syncStatus2, type timeframe, type topicType, type transcriptionLanguage, type trialGraduationStrategy, type type, type type2, type type3, type type4, type type5, type type6, type type7, type type8, type type9, type visibility };
|
package/dist/index.d.ts
CHANGED
|
@@ -3375,14 +3375,10 @@ type ExternalPostWebhookPost = {
|
|
|
3375
3375
|
*/
|
|
3376
3376
|
type source = 'external';
|
|
3377
3377
|
/**
|
|
3378
|
-
* Feed posts support up to 10 images (no mixed video+image). Stories require single media (24h, no captions). Reels require single vertical video (9:16, 3-60s).
|
|
3378
|
+
* Feed posts support up to 10 images (no mixed video+image). Stories require single media (24h, no captions). Reels require single vertical video (9:16, 3-60s). Geo-restriction is a hard visibility restriction: users outside the specified countries cannot see the post. Not supported for stories. Draft, carousel, and colored-background text options live under facebookSettings, see FacebookSettings.
|
|
3379
3379
|
*
|
|
3380
3380
|
*/
|
|
3381
3381
|
type FacebookPlatformData = {
|
|
3382
|
-
/**
|
|
3383
|
-
* When true, creates the post as a draft in Facebook Publishing Tools instead of publishing immediately. Supported for feed posts (text, link, image, video) and reels. Not supported for stories. Drafts expire after ~30 days.
|
|
3384
|
-
*/
|
|
3385
|
-
draft?: boolean;
|
|
3386
3382
|
/**
|
|
3387
3383
|
* Set to 'story' for Page Stories (24h ephemeral) or 'reel' for Reels (short vertical video). Defaults to feed post if omitted.
|
|
3388
3384
|
*/
|
|
@@ -3392,7 +3388,7 @@ type FacebookPlatformData = {
|
|
|
3392
3388
|
*/
|
|
3393
3389
|
title?: string;
|
|
3394
3390
|
/**
|
|
3395
|
-
* Optional first comment to post immediately after publishing (feed posts and reels, not stories). Skipped when draft is true.
|
|
3391
|
+
* Optional first comment to post immediately after publishing (feed posts and reels, not stories). Skipped when facebookSettings.draft is true.
|
|
3396
3392
|
*/
|
|
3397
3393
|
firstComment?: string;
|
|
3398
3394
|
/**
|
|
@@ -3400,34 +3396,7 @@ type FacebookPlatformData = {
|
|
|
3400
3396
|
*/
|
|
3401
3397
|
pageId?: string;
|
|
3402
3398
|
geoRestriction?: GeoRestriction;
|
|
3403
|
-
|
|
3404
|
-
* Renders the post as a multi-link carousel (organic Page post). When set, mediaItems must be provided with the same length and all items must be images (no videos). Each cards[i] adds the click-through link and headline for the image at mediaItems[i]. Mutually exclusive with contentType=story|reel. Facebook display truncates name at ~35 chars and description at ~30 chars; longer strings are accepted but get truncated on render.
|
|
3405
|
-
*
|
|
3406
|
-
*/
|
|
3407
|
-
carouselCards?: Array<{
|
|
3408
|
-
/**
|
|
3409
|
-
* Per-card click destination (required).
|
|
3410
|
-
*/
|
|
3411
|
-
link: string;
|
|
3412
|
-
/**
|
|
3413
|
-
* Per-card headline (optional, ~35-char display).
|
|
3414
|
-
*/
|
|
3415
|
-
name?: string;
|
|
3416
|
-
/**
|
|
3417
|
-
* Per-card subhead (optional, ~30-char display).
|
|
3418
|
-
*/
|
|
3419
|
-
description?: string;
|
|
3420
|
-
}>;
|
|
3421
|
-
/**
|
|
3422
|
-
* Optional top-level "See more" destination shown on the carousel end card. Defaults to the first card's link when omitted. Only used together with carouselCards.
|
|
3423
|
-
*
|
|
3424
|
-
*/
|
|
3425
|
-
carouselLink?: string;
|
|
3426
|
-
/**
|
|
3427
|
-
* Facebook-defined preset ID that renders the post as large text on a colored background (Graph `text_format_preset_id`). Supply the raw numeric ID from Meta; we do not publish a catalog of presets and Facebook may change the available set. Pages only (ignored on personal profiles and groups) and text-only feed posts only: the request is rejected with 400 when mediaItems or carouselCards are present, when contentType is story or reel, or when content is empty. An attachment makes Facebook drop the background silently, so those are rejected up front. Length is NOT rejected: Facebook's composer stops offering a background at around 130 characters, but Meta documents no API limit, so longer content publishes and returns a warning instead. A URL detected in the content is NOT attached as a link preview while a preset is set, because a link attachment also makes Facebook drop the background.
|
|
3428
|
-
*
|
|
3429
|
-
*/
|
|
3430
|
-
textFormatPresetId?: string;
|
|
3399
|
+
facebookSettings?: FacebookSettings;
|
|
3431
3400
|
};
|
|
3432
3401
|
/**
|
|
3433
3402
|
* Set to 'story' for Page Stories (24h ephemeral) or 'reel' for Reels (short vertical video). Defaults to feed post if omitted.
|
|
@@ -3521,6 +3490,44 @@ type FacebookPostEarningsResponse = {
|
|
|
3521
3490
|
*
|
|
3522
3491
|
*/
|
|
3523
3492
|
type period = 'lifetime';
|
|
3493
|
+
/**
|
|
3494
|
+
* Facebook options that must be nested under platformSpecificData.facebookSettings, or sent at the request root as facebookSettings. The remaining Facebook options sit directly on platformSpecificData, see FacebookPlatformData.
|
|
3495
|
+
*
|
|
3496
|
+
*/
|
|
3497
|
+
type FacebookSettings = {
|
|
3498
|
+
/**
|
|
3499
|
+
* When true, creates the post as a draft in Facebook Publishing Tools instead of publishing immediately. Supported for feed posts (text, link, image, video) and reels. Not supported for stories. Drafts expire after ~30 days.
|
|
3500
|
+
*/
|
|
3501
|
+
draft?: boolean;
|
|
3502
|
+
/**
|
|
3503
|
+
* Renders the post as a multi-link carousel (organic Page post). When set, mediaItems must be provided with the same length and all items must be images (no videos). Each cards[i] adds the click-through link and headline for the image at mediaItems[i]. Mutually exclusive with contentType=story|reel. Facebook display truncates name at ~35 chars and description at ~30 chars; longer strings are accepted but get truncated on render.
|
|
3504
|
+
*
|
|
3505
|
+
*/
|
|
3506
|
+
carouselCards?: Array<{
|
|
3507
|
+
/**
|
|
3508
|
+
* Per-card click destination (required).
|
|
3509
|
+
*/
|
|
3510
|
+
link: string;
|
|
3511
|
+
/**
|
|
3512
|
+
* Per-card headline (optional, ~35-char display).
|
|
3513
|
+
*/
|
|
3514
|
+
name?: string;
|
|
3515
|
+
/**
|
|
3516
|
+
* Per-card subhead (optional, ~30-char display).
|
|
3517
|
+
*/
|
|
3518
|
+
description?: string;
|
|
3519
|
+
}>;
|
|
3520
|
+
/**
|
|
3521
|
+
* Optional top-level "See more" destination shown on the carousel end card. Defaults to the first card's link when omitted. Only used together with carouselCards.
|
|
3522
|
+
*
|
|
3523
|
+
*/
|
|
3524
|
+
carouselLink?: string;
|
|
3525
|
+
/**
|
|
3526
|
+
* Facebook-defined preset ID that renders the post as large text on a colored background (Graph `text_format_preset_id`). Supply the raw numeric ID from Meta; we do not publish a catalog of presets and Facebook may change the available set. Pages only (ignored on personal profiles and groups) and text-only feed posts only: the request is rejected with 400 when mediaItems or carouselCards are present, when contentType is story or reel, or when content is empty. An attachment makes Facebook drop the background silently, so those are rejected up front. Length is NOT rejected: Facebook's composer stops offering a background at around 130 characters, but Meta documents no API limit, so longer content publishes and returns a warning instead. A URL detected in the content is NOT attached as a link preview while a preset is set, because a link attachment also makes Facebook drop the background.
|
|
3527
|
+
*
|
|
3528
|
+
*/
|
|
3529
|
+
textFormatPresetId?: string;
|
|
3530
|
+
};
|
|
3524
3531
|
type FollowerStatsResponse = {
|
|
3525
3532
|
accounts?: Array<AccountWithFollowerStats>;
|
|
3526
3533
|
stats?: {
|
|
@@ -10173,9 +10180,9 @@ type CreatePostData = {
|
|
|
10173
10180
|
*/
|
|
10174
10181
|
tiktokSettings?: TikTokPlatformData;
|
|
10175
10182
|
/**
|
|
10176
|
-
* Root-level Facebook settings applied to all Facebook platforms. Merged into each platform's platformSpecificData, with platform-specific settings taking precedence.
|
|
10183
|
+
* Root-level Facebook settings applied to all Facebook platforms. Merged into each platform's platformSpecificData.facebookSettings, with platform-specific settings taking precedence.
|
|
10177
10184
|
*/
|
|
10178
|
-
facebookSettings?:
|
|
10185
|
+
facebookSettings?: FacebookSettings;
|
|
10179
10186
|
recycling?: RecyclingConfig;
|
|
10180
10187
|
/**
|
|
10181
10188
|
* Profile ID to schedule via queue. When provided without scheduledFor, the post is auto-assigned to the next available slot. Do not call /v1/queue/next-slot and use that time in scheduledFor, as that bypasses queue locking.
|
|
@@ -10328,11 +10335,11 @@ type UpdatePostData = {
|
|
|
10328
10335
|
*/
|
|
10329
10336
|
tiktokSettings?: TikTokPlatformData;
|
|
10330
10337
|
/**
|
|
10331
|
-
* Root-level Facebook settings applied to all Facebook platforms. Merged into each platform's platformSpecificData, with platform-specific settings taking precedence.
|
|
10338
|
+
* Root-level Facebook settings applied to all Facebook platforms. Merged into each platform's platformSpecificData.facebookSettings, with platform-specific settings taking precedence.
|
|
10332
10339
|
*/
|
|
10333
|
-
facebookSettings?:
|
|
10340
|
+
facebookSettings?: FacebookSettings;
|
|
10334
10341
|
recycling?: RecyclingConfig;
|
|
10335
|
-
[key: string]: unknown | string | MediaItem | boolean | TikTokPlatformData |
|
|
10342
|
+
[key: string]: unknown | string | MediaItem | boolean | TikTokPlatformData | FacebookSettings | RecyclingConfig;
|
|
10336
10343
|
};
|
|
10337
10344
|
path: {
|
|
10338
10345
|
postId: string;
|
|
@@ -22956,8 +22963,14 @@ type GetContactChannelsError = (unknown | {
|
|
|
22956
22963
|
type BulkCreateContactsData = {
|
|
22957
22964
|
body: {
|
|
22958
22965
|
profileId: string;
|
|
22959
|
-
|
|
22960
|
-
|
|
22966
|
+
/**
|
|
22967
|
+
* Required when contacts carry channel data (platformIdentifier or a row-level accountId). Omit for a plain CRM import with no channels.
|
|
22968
|
+
*/
|
|
22969
|
+
accountId?: string;
|
|
22970
|
+
/**
|
|
22971
|
+
* Ignored when accountId is set: the platform is derived from the resolved account. Only relevant to disambiguate accountId lookup; a mismatch 404s.
|
|
22972
|
+
*/
|
|
22973
|
+
platform?: string;
|
|
22961
22974
|
contacts: Array<{
|
|
22962
22975
|
name: string;
|
|
22963
22976
|
platformIdentifier: string;
|
|
@@ -29808,4 +29821,4 @@ type CheckVerificationError = (ErrorResponse | {
|
|
|
29808
29821
|
error?: string;
|
|
29809
29822
|
} | unknown);
|
|
29810
29823
|
|
|
29811
|
-
export { type AccountWithFollowerStats, type AccountsListResponse, type ActivateSequenceData, type ActivateSequenceError, type ActivateSequenceResponse, type ActivateWorkflowData, type ActivateWorkflowError, type ActivateWorkflowResponse, type Ad, type AdBudget, type AdCampaign, type AdDailyMetrics, type AdMetrics, type AdReviewStatus, type AdStatus, type AdTreeAdSet, type AdTreeCampaign, type AddBroadcastRecipientsData, type AddBroadcastRecipientsError, type AddBroadcastRecipientsResponse, type AddConversionAssociationsData, type AddConversionAssociationsError, type AddConversionAssociationsResponse, type AddDiscordMemberRoleData, type AddDiscordMemberRoleError, type AddDiscordMemberRoleResponse, type AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddTrackingTagSharedAccountData, type AddTrackingTagSharedAccountError, type AddTrackingTagSharedAccountResponse, type AddUsersToAdAudienceData, type AddUsersToAdAudienceError, type AddUsersToAdAudienceResponse, type AddWhatsAppGroupParticipantsData, type AddWhatsAppGroupParticipantsError, type AddWhatsAppGroupParticipantsResponse, type AdjustConversionsData, type AdjustConversionsError, type AdjustConversionsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type AppealSmsRegistrationData, type AppealSmsRegistrationError, type AppealSmsRegistrationResponse, type ApproveWhatsAppGroupJoinRequestsData, type ApproveWhatsAppGroupJoinRequestsError, type ApproveWhatsAppGroupJoinRequestsResponse, type ArchiveLeadFormData, type ArchiveLeadFormError, type ArchiveLeadFormResponse, type AssignGoogleBusinessLocationData, type AssignGoogleBusinessLocationError, type AssignGoogleBusinessLocationResponse, type BatchGetGoogleBusinessReviewsData, type BatchGetGoogleBusinessReviewsError, type BatchGetGoogleBusinessReviewsResponse, type BidStrategy, type BillingSnapshot, type BlockWhatsAppUsersData, type BlockWhatsAppUsersError, type BlockWhatsAppUsersResponse, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BoostPostData, type BoostPostError, type BoostPostResponse, type BulkCreateContactsData, type BulkCreateContactsError, type BulkCreateContactsResponse, type BulkUpdateAdCampaignStatusData, type BulkUpdateAdCampaignStatusError, type BulkUpdateAdCampaignStatusResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type BulkUploadResult, type BusinessCenter, type CallRecord, type CancelBroadcastData, type CancelBroadcastError, type CancelBroadcastResponse, type CancelPhoneNumberPortInData, type CancelPhoneNumberPortInError, type CancelPhoneNumberPortInResponse, type CancelRfReservationData, type CancelRfReservationError, type CancelRfReservationResponse, type CheckPhoneNumberAvailabilityData, type CheckPhoneNumberAvailabilityError, type CheckPhoneNumberAvailabilityResponse, type CheckPhoneNumberPortabilityData, type CheckPhoneNumberPortabilityError, type CheckPhoneNumberPortabilityResponse, type CheckVerificationData, type CheckVerificationError, type CheckVerificationResponse, type CheckWhatsAppNumberAvailabilityData, type CheckWhatsAppNumberAvailabilityError, type CheckWhatsAppNumberAvailabilityResponse, type ClearContactFieldValueData, type ClearContactFieldValueError, type ClearContactFieldValueResponse, type ClientOptions, type CompleteGoogleBusinessVerificationData, type CompleteGoogleBusinessVerificationError, type CompleteGoogleBusinessVerificationResponse, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type CompleteWhatsAppPhoneSelectionData, type CompleteWhatsAppPhoneSelectionError, type CompleteWhatsAppPhoneSelectionResponse, type ConfigureTikTokAdsBrandIdentityData, type ConfigureTikTokAdsBrandIdentityError, type ConfigureTikTokAdsBrandIdentityResponse, type ConnectAdsData, type ConnectAdsError, type ConnectAdsResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectOpenAiAdsCredentialsData, type ConnectOpenAiAdsCredentialsError, type ConnectOpenAiAdsCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type ConnectedApp, type ConversionDestination, type ConversionEvent, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateAdAudienceData, type CreateAdAudienceError, type CreateAdAudienceResponse, type CreateAdCampaignData, type CreateAdCampaignError, type CreateAdCampaignResponse, type CreateAdCreativeData, type CreateAdCreativeError, type CreateAdCreativeResponse, type CreateAdInsightsReportData, type CreateAdInsightsReportError, type CreateAdInsightsReportResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateBroadcastData, type CreateBroadcastError, type CreateBroadcastResponse, type CreateCallAdData, type CreateCallAdError, type CreateCallAdResponse, 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 CreateDiscordGuildRoleData, type CreateDiscordGuildRoleError, type CreateDiscordGuildRoleResponse, type CreateDiscordScheduledEventData, type CreateDiscordScheduledEventError, type CreateDiscordScheduledEventResponse, type CreateDiscordThreadData, type CreateDiscordThreadError, type CreateDiscordThreadResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInboxConversationData, type CreateInboxConversationError, type CreateInboxConversationResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreateLeadFormData, type CreateLeadFormError, type CreateLeadFormResponse, type CreateMessagingAdData, type CreateMessagingAdError, type CreateMessagingAdResponse, type CreatePhoneNumberKycLinkData, type CreatePhoneNumberKycLinkError, type CreatePhoneNumberKycLinkResponse, type CreatePhoneNumberPortInData, type CreatePhoneNumberPortInError, type CreatePhoneNumberPortInResponse, type CreatePinterestBoardData, type CreatePinterestBoardError, type CreatePinterestBoardResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateRfPredictionData, type CreateRfPredictionError, type CreateRfPredictionResponse, type CreateSequenceData, type CreateSequenceError, type CreateSequenceResponse, type CreateSmsSenderIdData, type CreateSmsSenderIdError, type CreateSmsSenderIdResponse, type CreateStandaloneAdData, type CreateStandaloneAdError, type CreateStandaloneAdResponse, type CreateTestLeadData, type CreateTestLeadError, type CreateTestLeadResponse, type CreateTrackingTagData, type CreateTrackingTagError, type CreateTrackingTagResponse, type CreateVerificationData, type CreateVerificationError, type CreateVerificationResponse, type CreateVoiceCallData, type CreateVoiceCallError, type CreateVoiceCallResponse, type CreateVoiceWebSessionError, type CreateVoiceWebSessionResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppDatasetData, type CreateWhatsAppDatasetError, type CreateWhatsAppDatasetResponse, type CreateWhatsAppFlowData, type CreateWhatsAppFlowError, type CreateWhatsAppFlowResponse, type CreateWhatsAppGroupChatData, type CreateWhatsAppGroupChatError, type CreateWhatsAppGroupChatResponse, type CreateWhatsAppGroupInviteLinkData, type CreateWhatsAppGroupInviteLinkError, type CreateWhatsAppGroupInviteLinkResponse, type CreateWhatsAppNumberKycLinkData, type CreateWhatsAppNumberKycLinkError, type CreateWhatsAppNumberKycLinkResponse, type CreateWhatsAppSandboxSessionData, type CreateWhatsAppSandboxSessionError, type CreateWhatsAppSandboxSessionResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type CreateWorkflowData, type CreateWorkflowError, type CreateWorkflowResponse, type CrosspostDiscordMessageData, type CrosspostDiscordMessageError, type CrosspostDiscordMessageResponse, type CtwaAdRequestBody, type CtwaMultiResponse, type CtwaSingleResponse, type DeactivateSmsRegistrationData, type DeactivateSmsRegistrationError, type DeactivateSmsRegistrationResponse, 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 DeleteAdCreativeData, type DeleteAdCreativeError, type DeleteAdCreativeResponse, 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 DeleteDiscordGuildRoleData, type DeleteDiscordGuildRoleError, type DeleteDiscordGuildRoleResponse, type DeleteDiscordMessageData, type DeleteDiscordMessageError, type DeleteDiscordMessageResponse, type DeleteDiscordScheduledEventData, type DeleteDiscordScheduledEventError, type DeleteDiscordScheduledEventResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteGoogleBusinessReviewReplyData, type DeleteGoogleBusinessReviewReplyError, type DeleteGoogleBusinessReviewReplyResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxMessageData, type DeleteInboxMessageError, type DeleteInboxMessageResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteMessengerMenuData, type DeleteMessengerMenuError, type DeleteMessengerMenuResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteSequenceData, type DeleteSequenceError, type DeleteSequenceResponse, type DeleteSmsSenderIdData, type DeleteSmsSenderIdError, type DeleteSmsSenderIdResponse, 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 DeleteWhatsAppSandboxSessionData, type DeleteWhatsAppSandboxSessionError, type DeleteWhatsAppSandboxSessionResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, type DeleteWhatsappBusinessUsernameData, type DeleteWhatsappBusinessUsernameError, type DeleteWhatsappBusinessUsernameResponse, type DeleteWorkflowData, type DeleteWorkflowError, type DeleteWorkflowResponse, type DeprecateWhatsAppFlowData, type DeprecateWhatsAppFlowError, type DeprecateWhatsAppFlowResponse, type DialVoiceWebCallData, type DialVoiceWebCallError, type DialVoiceWebCallResponse, type DisableSmsOnNumberData, type DisableSmsOnNumberError, type DisableSmsOnNumberResponse, type DisableVoiceOnNumberData, type DisableVoiceOnNumberError, type DisableVoiceOnNumberResponse, type DisableWhatsAppCallingData, type DisableWhatsAppCallingError, type DisableWhatsAppCallingLegacyData, type DisableWhatsAppCallingLegacyError, type DisableWhatsAppCallingLegacyResponse, type DisableWhatsAppCallingResponse, type DiscordGuildMember, type DiscordPlatformData, type DiscordRole, type DiscordScheduledEvent, type DmButton, type DuplicateAdCampaignData, type DuplicateAdCampaignError, type DuplicateAdCampaignResponse, type DuplicateAdData, type DuplicateAdError, type DuplicateAdResponse, type DuplicateAdSetData, type DuplicateAdSetError, type DuplicateAdSetResponse, type DuplicateWorkflowData, type DuplicateWorkflowError, type DuplicateWorkflowResponse, type EditDiscordGuildRoleData, type EditDiscordGuildRoleError, type EditDiscordGuildRoleResponse, type EditInboxCommentData, type EditInboxCommentError, type EditInboxCommentResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type EditPostData, type EditPostError, type EditPostResponse, type EnableSmsOnNumberData, type EnableSmsOnNumberError, type EnableSmsOnNumberResponse, type EnableVoiceOnNumberData, type EnableVoiceOnNumberError, type EnableVoiceOnNumberResponse, type EnableWhatsAppCallingData, type EnableWhatsAppCallingError, type EnableWhatsAppCallingLegacyData, type EnableWhatsAppCallingLegacyError, type EnableWhatsAppCallingLegacyResponse, type EnableWhatsAppCallingResponse, type EndVoiceCallData, type EndVoiceCallError, type EndVoiceCallResponse, type EnrollContactsData, type EnrollContactsError, type EnrollContactsResponse, type ErrorResponse, type EstimateAdReachData, type EstimateAdReachError, type EstimateAdReachResponse, type ExternalPostMediaItem, type ExternalPostSummary, type ExternalPostWebhookPost, type FacebookPlatformData, type FacebookPostEarningsResponse, type FetchGoogleBusinessVerificationOptionsData, type FetchGoogleBusinessVerificationOptionsError, type FetchGoogleBusinessVerificationOptionsResponse, type FollowUserData, type FollowUserError, type FollowUserResponse, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GenerateAdPreviewsData, type GenerateAdPreviewsError, type GenerateAdPreviewsResponse, type GenerateKeywordHistoricalMetricsData, type GenerateKeywordHistoricalMetricsError, type GenerateKeywordHistoricalMetricsResponse, type GenerateKeywordIdeasData, type GenerateKeywordIdeasError, type GenerateKeywordIdeasResponse, type GeoRestriction, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAdAccountFinanceData, type GetAdAccountFinanceError, type GetAdAccountFinanceResponse, type GetAdAnalyticsData, type GetAdAnalyticsError, type GetAdAnalyticsResponse, type GetAdAudienceData, type GetAdAudienceError, type GetAdAudienceResponse, type GetAdCommentsData, type GetAdCommentsError, type GetAdCommentsResponse, type GetAdCreativeData, type GetAdCreativeError, type GetAdCreativeResponse, type GetAdData, type GetAdError, type GetAdInsightsReportData, type GetAdInsightsReportError, type GetAdInsightsReportResponse, type GetAdPreviewsData, type GetAdPreviewsError, type GetAdPreviewsResponse, type GetAdResponse, type GetAdSetDetailsData, type GetAdSetDetailsError, type GetAdSetDetailsResponse, type GetAdTrackingTagsData, type GetAdTrackingTagsError, type GetAdTrackingTagsResponse, type GetAdTreeData, type GetAdTreeError, type GetAdTreeResponse, type GetAdsActivityLogData, type GetAdsActivityLogError, type GetAdsActivityLogResponse, type GetAdsTimelineData, type GetAdsTimelineError, type GetAdsTimelineResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetBillingError, type GetBillingResponse, type GetBroadcastData, type GetBroadcastError, type GetBroadcastResponse, type GetCallData, type GetCallError, type GetCallRecordingData, type GetCallRecordingError, type GetCallRecordingResponse, type GetCallResponse, type GetCallsUsageData, type GetCallsUsageError, type GetCallsUsageResponse, type GetCampaignAnalyticsData, type GetCampaignAnalyticsError, type GetCampaignAnalyticsResponse, 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 GetConversionsQualityData, type GetConversionsQualityError, type GetConversionsQualityResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetDiscordChannelsData, type GetDiscordChannelsError, type GetDiscordChannelsResponse, type GetDiscordGuildMemberData, type GetDiscordGuildMemberError, type GetDiscordGuildMemberResponse, type GetDiscordScheduledEventData, type GetDiscordScheduledEventError, type GetDiscordScheduledEventResponse, type GetDiscordSettingsData, type GetDiscordSettingsError, type GetDiscordSettingsResponse, type GetDsaDefaultsData, type GetDsaDefaultsError, type GetDsaDefaultsResponse, type GetDsaRecommendationsData, type GetDsaRecommendationsError, type GetDsaRecommendationsResponse, type GetFacebookPageInsightsData, type GetFacebookPageInsightsError, type GetFacebookPageInsightsResponse, type GetFacebookPagesData, type GetFacebookPagesError, type GetFacebookPagesResponse, type GetFacebookPostEarningsData, type GetFacebookPostEarningsError, type GetFacebookPostEarningsResponse, type GetFacebookPostReactionsData, type GetFacebookPostReactionsError, type GetFacebookPostReactionsResponse, type GetFollowerStatsData, type GetFollowerStatsError, type GetFollowerStatsResponse, type GetGmbAttributeMetadataData, type GetGmbAttributeMetadataError, type GetGmbAttributeMetadataResponse, type GetGmbLocationsData, type GetGmbLocationsError, type GetGmbLocationsResponse, type GetGoogleBusinessAttributesData, type GetGoogleBusinessAttributesError, type GetGoogleBusinessAttributesResponse, type GetGoogleBusinessFoodMenusData, type GetGoogleBusinessFoodMenusError, type GetGoogleBusinessFoodMenusResponse, type GetGoogleBusinessLocationDetailsData, type GetGoogleBusinessLocationDetailsError, type GetGoogleBusinessLocationDetailsResponse, type GetGoogleBusinessPerformanceData, type GetGoogleBusinessPerformanceError, type GetGoogleBusinessPerformanceResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetGoogleBusinessSearchKeywordsData, type GetGoogleBusinessSearchKeywordsError, type GetGoogleBusinessSearchKeywordsResponse, type GetGoogleBusinessServicesData, type GetGoogleBusinessServicesError, type GetGoogleBusinessServicesResponse, type GetGoogleBusinessVerificationsData, type GetGoogleBusinessVerificationsError, type GetGoogleBusinessVerificationsResponse, type GetInboxConversationAnalyticsData, type GetInboxConversationAnalyticsError, type GetInboxConversationAnalyticsResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxHeatmapData, type GetInboxHeatmapError, type GetInboxHeatmapResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetInboxResponseTimeData, type GetInboxResponseTimeError, type GetInboxResponseTimeResponse, type GetInboxSourceBreakdownData, type GetInboxSourceBreakdownError, type GetInboxSourceBreakdownResponse, type GetInboxTopAccountsData, type GetInboxTopAccountsError, type GetInboxTopAccountsResponse, type GetInboxVolumeData, type GetInboxVolumeError, type GetInboxVolumeResponse, 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 GetInstagramPublishingLimitData, type GetInstagramPublishingLimitError, type GetInstagramPublishingLimitResponse, type GetInstagramStoryInsightsData, type GetInstagramStoryInsightsError, type GetInstagramStoryInsightsResponse, type GetLeadFormData, type GetLeadFormError, type GetLeadFormResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInBidPricingData, type GetLinkedInBidPricingError, type GetLinkedInBidPricingResponse, 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 GetLinkedInSupplyForecastData, type GetLinkedInSupplyForecastError, type GetLinkedInSupplyForecastResponse, 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 GetPhoneNumberData, type GetPhoneNumberError, type GetPhoneNumberKycFormData, type GetPhoneNumberKycFormError, type GetPhoneNumberKycFormResponse, type GetPhoneNumberPortInOrderRequirementsData, type GetPhoneNumberPortInOrderRequirementsError, type GetPhoneNumberPortInOrderRequirementsResponse, type GetPhoneNumberPortInRequirementsData, type GetPhoneNumberPortInRequirementsError, type GetPhoneNumberPortInRequirementsResponse, type GetPhoneNumberRemediationData, type GetPhoneNumberRemediationError, type GetPhoneNumberRemediationResponse, type GetPhoneNumberResponse, 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 GetRfPredictionData, type GetRfPredictionError, type GetRfPredictionResponse, type GetSequenceData, type GetSequenceError, type GetSequenceResponse, type GetSlackSettingsData, type GetSlackSettingsError, type GetSlackSettingsResponse, type GetSmsRegistrationData, type GetSmsRegistrationError, type GetSmsRegistrationResponse, type GetSmsUsageData, type GetSmsUsageError, type GetSmsUsageResponse, type GetSubredditRulesData, type GetSubredditRulesError, type GetSubredditRulesResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetTikTokAccountInsightsData, type GetTikTokAccountInsightsError, type GetTikTokAccountInsightsResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, type GetTrackingTagData, type GetTrackingTagError, type GetTrackingTagResponse, type GetTrackingTagStatsData, type GetTrackingTagStatsError, type GetTrackingTagStatsResponse, type GetUsageData, type GetUsageError, type GetUsageResponse, type GetUsageStatsData, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetVerificationData, type GetVerificationError, type GetVerificationResponse, type GetVoiceCallData, type GetVoiceCallError, type GetVoiceCallEstimateData, type GetVoiceCallEstimateError, type GetVoiceCallEstimateResponse, type GetVoiceCallRecordingData, type GetVoiceCallRecordingError, type GetVoiceCallRecordingResponse, type GetVoiceCallResponse, type GetWebhookLogsData, type GetWebhookLogsError, type GetWebhookLogsResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetWhatsAppBlockStatusData, type GetWhatsAppBlockStatusError, type GetWhatsAppBlockStatusResponse, type GetWhatsAppBlockedUsersData, type GetWhatsAppBlockedUsersError, type GetWhatsAppBlockedUsersResponse, type GetWhatsAppBusinessProfileData, type GetWhatsAppBusinessProfileError, type GetWhatsAppBusinessProfileResponse, type GetWhatsAppCallData, type GetWhatsAppCallError, type GetWhatsAppCallEstimateData, type GetWhatsAppCallEstimateError, type GetWhatsAppCallEstimateResponse, type GetWhatsAppCallPermissionsData, type GetWhatsAppCallPermissionsError, type GetWhatsAppCallPermissionsResponse, type GetWhatsAppCallRecordingData, type GetWhatsAppCallRecordingError, type GetWhatsAppCallRecordingResponse, type GetWhatsAppCallResponse, type GetWhatsAppCallingConfigData, type GetWhatsAppCallingConfigError, type GetWhatsAppCallingConfigResponse, type GetWhatsAppCallingData, type GetWhatsAppCallingError, type GetWhatsAppCallingResponse, type GetWhatsAppDatasetData, type GetWhatsAppDatasetError, type GetWhatsAppDatasetResponse, type GetWhatsAppDisplayNameData, type GetWhatsAppDisplayNameError, type GetWhatsAppDisplayNameResponse, type GetWhatsAppFlowData, type GetWhatsAppFlowError, type GetWhatsAppFlowJsonData, type GetWhatsAppFlowJsonError, type GetWhatsAppFlowJsonResponse, type GetWhatsAppFlowPreviewData, type GetWhatsAppFlowPreviewError, type GetWhatsAppFlowPreviewResponse, type GetWhatsAppFlowResponse, type GetWhatsAppGroupChatData, type GetWhatsAppGroupChatError, type GetWhatsAppGroupChatResponse, type GetWhatsAppLibraryTemplateData, type GetWhatsAppLibraryTemplateError, type GetWhatsAppLibraryTemplateResponse, type GetWhatsAppMediaData, type GetWhatsAppMediaError, type GetWhatsAppMediaResponse, type GetWhatsAppNumberInfoData, type GetWhatsAppNumberInfoError, type GetWhatsAppNumberInfoResponse, type GetWhatsAppNumberKycFormData, type GetWhatsAppNumberKycFormError, type GetWhatsAppNumberKycFormResponse, type GetWhatsAppNumberRemediationData, type GetWhatsAppNumberRemediationError, type GetWhatsAppNumberRemediationResponse, 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 GetWhatsappBusinessUsernameData, type GetWhatsappBusinessUsernameError, type GetWhatsappBusinessUsernameResponse, type GetWhatsappBusinessUsernameSuggestionsData, type GetWhatsappBusinessUsernameSuggestionsError, type GetWhatsappBusinessUsernameSuggestionsResponse, type GetWorkflowData, type GetWorkflowError, type GetWorkflowResponse, type GetWorkflowVersionData, type GetWorkflowVersionError, type GetWorkflowVersionResponse, type GetXApiPricingError, type GetXApiPricingResponse, type GetYouTubeChannelInsightsData, type GetYouTubeChannelInsightsError, type GetYouTubeChannelInsightsResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeDemographicsData, type GetYouTubeDemographicsError, type GetYouTubeDemographicsResponse, type GetYouTubeVideoRetentionData, type GetYouTubeVideoRetentionError, type GetYouTubeVideoRetentionResponse, type GetYoutubePlaylistsData, type GetYoutubePlaylistsError, type GetYoutubePlaylistsResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type InboxMessageEditAttachment, type InboxMessageEditHistoryEntry, type InboxWebhookAccount, type InboxWebhookConversation, type InboxWebhookMessage, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InitiateWhatsAppCallData, type InitiateWhatsAppCallError, type InitiateWhatsAppCallResponse, type InstagramAccountInsightsResponse, type InstagramDemographicsResponse, type InstagramPlatformData, Late, LateApiError, type LikeInboxCommentData, type LikeInboxCommentError, type LikeInboxCommentResponse, type LinkedInAdsPlatformData, 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 ListAdCatalogProductSetsData, type ListAdCatalogProductSetsError, type ListAdCatalogProductSetsResponse, type ListAdCatalogsData, type ListAdCatalogsError, type ListAdCatalogsResponse, type ListAdCreativesData, type ListAdCreativesError, type ListAdCreativesResponse, type ListAdImagesData, type ListAdImagesError, type ListAdImagesResponse, type ListAdKeywordsData, type ListAdKeywordsError, type ListAdKeywordsResponse, type ListAdLabelsData, type ListAdLabelsError, type ListAdLabelsResponse, type ListAdStudiesData, type ListAdStudiesError, type ListAdStudiesResponse, 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 ListCallsData, type ListCallsError, type ListCallsResponse, type ListCommentAutomationLogsData, type ListCommentAutomationLogsError, type ListCommentAutomationLogsResponse, type ListCommentAutomationsData, type ListCommentAutomationsError, type ListCommentAutomationsResponse, type ListConnectedAppsError, type ListConnectedAppsResponse, 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 ListDiscordGuildMembersData, type ListDiscordGuildMembersError, type ListDiscordGuildMembersResponse, type ListDiscordGuildRolesData, type ListDiscordGuildRolesError, type ListDiscordGuildRolesResponse, type ListDiscordPinnedMessagesData, type ListDiscordPinnedMessagesError, type ListDiscordPinnedMessagesResponse, type ListDiscordScheduledEventsData, type ListDiscordScheduledEventsError, type ListDiscordScheduledEventsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListFormLeadsData, type ListFormLeadsError, type ListFormLeadsResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListGoogleBusinessMediaData, type ListGoogleBusinessMediaError, type ListGoogleBusinessMediaResponse, type ListGoogleBusinessPlaceActionsData, type ListGoogleBusinessPlaceActionsError, type ListGoogleBusinessPlaceActionsResponse, type ListHighDemandPeriodsData, type ListHighDemandPeriodsError, type ListHighDemandPeriodsResponse, type ListInboxCommentsData, type ListInboxCommentsError, type ListInboxCommentsResponse, type ListInboxConversationAnalyticsData, type ListInboxConversationAnalyticsError, type ListInboxConversationAnalyticsResponse, type ListInboxConversationsData, type ListInboxConversationsError, type ListInboxConversationsResponse, type ListInboxMentionsData, type ListInboxMentionsError, type ListInboxMentionsResponse, type ListInboxReviewsData, type ListInboxReviewsError, type ListInboxReviewsResponse, type ListInstagramStoriesData, type ListInstagramStoriesError, type ListInstagramStoriesResponse, type ListLeadFormsData, type ListLeadFormsError, type ListLeadFormsResponse, type ListLeadsData, type ListLeadsError, type ListLeadsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListLogsData, type ListLogsError, type ListLogsResponse, type ListMetaBusinessesData, type ListMetaBusinessesError, type ListMetaBusinessesResponse, type ListPhoneNumberCountriesError, type ListPhoneNumberCountriesResponse, type ListPhoneNumberPortInsError, type ListPhoneNumberPortInsResponse, type ListPhoneNumbersData, type ListPhoneNumbersError, type ListPhoneNumbersResponse, 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 ListSmsOptOutsData, type ListSmsOptOutsError, type ListSmsOptOutsResponse, type ListSmsRegistrationsData, type ListSmsRegistrationsError, type ListSmsRegistrationsResponse, type ListSmsSenderIdsError, type ListSmsSenderIdsResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListTrackingTagSharedAccountsData, type ListTrackingTagSharedAccountsError, type ListTrackingTagSharedAccountsResponse, type ListTrackingTagsData, type ListTrackingTagsError, type ListTrackingTagsResponse, type ListUsersError, type ListUsersResponse, type ListVoiceCallsData, type ListVoiceCallsError, type ListVoiceCallsResponse, type ListWhatsAppCallsData, type ListWhatsAppCallsError, type ListWhatsAppCallsResponse, type ListWhatsAppConversionsData, type ListWhatsAppConversionsError, type ListWhatsAppConversionsResponse, type ListWhatsAppFlowResponsesData, type ListWhatsAppFlowResponsesError, type ListWhatsAppFlowResponsesResponse, type ListWhatsAppFlowVersionsData, type ListWhatsAppFlowVersionsError, type ListWhatsAppFlowVersionsResponse, type ListWhatsAppFlowsData, type ListWhatsAppFlowsError, type ListWhatsAppFlowsResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type ListWhatsAppNumberCountriesError, type ListWhatsAppNumberCountriesResponse, type ListWhatsAppPhoneNumbersData, type ListWhatsAppPhoneNumbersError, type ListWhatsAppPhoneNumbersResponse, type ListWhatsAppSandboxSessionsError, type ListWhatsAppSandboxSessionsResponse, type ListWorkflowExecutionEventsData, type ListWorkflowExecutionEventsError, type ListWorkflowExecutionEventsResponse, type ListWorkflowExecutionsData, type ListWorkflowExecutionsError, type ListWorkflowExecutionsResponse, type ListWorkflowVersionsData, type ListWorkflowVersionsError, type ListWorkflowVersionsResponse, type ListWorkflowsData, type ListWorkflowsError, type ListWorkflowsResponse, type LookupSmsNumberData, type LookupSmsNumberError, type LookupSmsNumberResponse, type MarkConversationReadData, type MarkConversationReadError, type MarkConversationReadResponse, type MediaItem, type MediaUploadResponse, type Money, type MoneyAmount, type MoveAccountToProfileData, type MoveAccountToProfileError, type MoveAccountToProfileResponse, type Pagination, type ParameterPageParam, type PauseSequenceData, type PauseSequenceError, type PauseSequenceResponse, type PauseWorkflowData, type PauseWorkflowError, type PauseWorkflowResponse, type PinDiscordMessageData, type PinDiscordMessageError, type PinDiscordMessageResponse, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostRetryResponse, type PostUpdateResponse, type PostsListResponse, type PreflightSmsRegistrationData, type PreflightSmsRegistrationError, type PreflightSmsRegistrationResponse, 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 PurchasePhoneNumberData, type PurchasePhoneNumberError, type PurchasePhoneNumberResponse, type PurchaseWhatsAppPhoneNumberData, type PurchaseWhatsAppPhoneNumberError, type PurchaseWhatsAppPhoneNumberResponse, type QueryAdInsightsData, type QueryAdInsightsError, type QueryAdInsightsResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type RedditPost, type RegisterWhatsAppNumberData, type RegisterWhatsAppNumberError, type RegisterWhatsAppNumberResponse, type RejectWhatsAppGroupJoinRequestsData, type RejectWhatsAppGroupJoinRequestsError, type RejectWhatsAppGroupJoinRequestsResponse, type ReleasePhoneNumberData, type ReleasePhoneNumberError, type ReleasePhoneNumberResponse, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemediatePhoneNumberData, type RemediatePhoneNumberError, type RemediatePhoneNumberResponse, type RemediateWhatsAppNumberData, type RemediateWhatsAppNumberError, type RemediateWhatsAppNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveConversionAssociationsData, type RemoveConversionAssociationsError, type RemoveConversionAssociationsResponse, type RemoveDiscordMemberRoleData, type RemoveDiscordMemberRoleError, type RemoveDiscordMemberRoleResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveTrackingTagSharedAccountData, type RemoveTrackingTagSharedAccountError, type RemoveTrackingTagSharedAccountResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, type ReplyToGoogleBusinessReviewData, type ReplyToGoogleBusinessReviewError, type ReplyToGoogleBusinessReviewResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type ReplyToMentionData, type ReplyToMentionError, type ReplyToMentionResponse, type ReplyToPhoneNumberReviewerData, type ReplyToPhoneNumberReviewerError, type ReplyToPhoneNumberReviewerResponse, type RequestSmsSenderIdLimitIncreaseData, type RequestSmsSenderIdLimitIncreaseError, type RequestSmsSenderIdLimitIncreaseResponse, type ResendSmsRegistrationOtpData, type ResendSmsRegistrationOtpError, type ResendSmsRegistrationOtpResponse, type ReserveRfPredictionData, type ReserveRfPredictionError, type ReserveRfPredictionResponse, type RespondToPhoneNumberReviewerData, type RespondToPhoneNumberReviewerError, type RespondToPhoneNumberReviewerResponse, type RespondToSmsRegistrationReviewData, type RespondToSmsRegistrationReviewError, type RespondToSmsRegistrationReviewResponse, type RestoreWorkflowVersionData, type RestoreWorkflowVersionError, type RestoreWorkflowVersionResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type ReuseSmsRegistrationForNumberData, type ReuseSmsRegistrationForNumberError, type ReuseSmsRegistrationForNumberResponse, type ReviewPhoneNumberKycPacketData, type ReviewPhoneNumberKycPacketError, type ReviewPhoneNumberKycPacketResponse, type ReviewWebhookReview, type RevokeConnectedAppData, type RevokeConnectedAppError, type RevokeConnectedAppResponse, type RfPrediction, type ScheduleBroadcastData, type ScheduleBroadcastError, type ScheduleBroadcastResponse, type SearchAdInterestsData, type SearchAdInterestsError, type SearchAdInterestsResponse, type SearchAdTargetingData, type SearchAdTargetingError, type SearchAdTargetingResponse, type SearchAvailablePhoneNumbersData, type SearchAvailablePhoneNumbersError, type SearchAvailablePhoneNumbersResponse, type SearchAvailableWhatsAppNumbersData, type SearchAvailableWhatsAppNumbersError, type SearchAvailableWhatsAppNumbersResponse, type SearchDiscordGuildMembersData, type SearchDiscordGuildMembersError, type SearchDiscordGuildMembersResponse, type SearchInboxConversationsData, type SearchInboxConversationsError, type SearchInboxConversationsResponse, type SearchRedditData, type SearchRedditError, type SearchRedditResponse, type SearchTweetsData, type SearchTweetsError, type SearchTweetsResponse, 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 SendDiscordDirectMessageData, type SendDiscordDirectMessageError, type SendDiscordDirectMessageResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SendSmsData, type SendSmsError, type SendSmsResponse, type SendTypingIndicatorData, type SendTypingIndicatorError, type SendTypingIndicatorResponse, type SendWhatsAppConversionData, type SendWhatsAppConversionError, type SendWhatsAppConversionResponse, type SendWhatsAppFlowMessageData, type SendWhatsAppFlowMessageError, type SendWhatsAppFlowMessageResponse, type SetCommentModerationData, type SetCommentModerationError, type SetCommentModerationResponse, type SetContactFieldValueData, type SetContactFieldValueError, type SetContactFieldValueResponse, type SetInstagramIceBreakersData, type SetInstagramIceBreakersError, type SetInstagramIceBreakersResponse, type SetMessengerMenuData, type SetMessengerMenuError, type SetMessengerMenuResponse, type SetRedditPostFlairData, type SetRedditPostFlairError, type SetRedditPostFlairResponse, type SetTelegramCommandsData, type SetTelegramCommandsError, type SetTelegramCommandsResponse, type SetWhatsappBusinessUsernameData, type SetWhatsappBusinessUsernameError, type SetWhatsappBusinessUsernameResponse, type ShareSmsRegistrationData, type ShareSmsRegistrationError, type ShareSmsRegistrationResponse, type SharedAdAccount, type SlackPlatformData, type SnapchatPlatformData, type SocialAccount, type StartGoogleBusinessVerificationData, type StartGoogleBusinessVerificationError, type StartGoogleBusinessVerificationResponse, type StartSmsRegistrationData, type StartSmsRegistrationError, type StartSmsRegistrationResponse, type StartWhatsAppCallerIdVerificationData, type StartWhatsAppCallerIdVerificationError, type StartWhatsAppCallerIdVerificationResponse, type SubmitPhoneNumberKycData, type SubmitPhoneNumberKycError, type SubmitPhoneNumberKycResponse, type SubmitWhatsAppNumberKycData, type SubmitWhatsAppNumberKycError, type SubmitWhatsAppNumberKycResponse, type SyncExternalPostsData, type SyncExternalPostsError, type SyncExternalPostsResponse, type TargetingSpec, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TrackingTag, type TransferVoiceCallData, type TransferVoiceCallError, type TransferVoiceCallResponse, type TriggerWorkflowData, type TriggerWorkflowError, type TriggerWorkflowResponse, type TwitterPlatformData, type UnblockWhatsAppUsersData, type UnblockWhatsAppUsersError, type UnblockWhatsAppUsersResponse, 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 UnpinDiscordMessageData, type UnpinDiscordMessageError, type UnpinDiscordMessageResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateAdAccountData, type UpdateAdAccountError, type UpdateAdAccountResponse, type UpdateAdAudienceData, type UpdateAdAudienceError, type UpdateAdAudienceResponse, type UpdateAdCampaignData, type UpdateAdCampaignError, type UpdateAdCampaignResponse, type UpdateAdCampaignStatusData, type UpdateAdCampaignStatusError, type UpdateAdCampaignStatusResponse, type UpdateAdCreativeData, type UpdateAdCreativeError, type UpdateAdCreativeResponse, type UpdateAdData, type UpdateAdError, type UpdateAdResponse, type UpdateAdSetData, type UpdateAdSetError, type UpdateAdSetResponse, type UpdateAdSetStatusData, type UpdateAdSetStatusError, type UpdateAdSetStatusResponse, type UpdateAdStatusData, type UpdateAdStatusError, type UpdateAdStatusResponse, type UpdateAdTrackingTagsData, type UpdateAdTrackingTagsError, type UpdateAdTrackingTagsResponse, 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 UpdateDiscordScheduledEventData, type UpdateDiscordScheduledEventError, type UpdateDiscordScheduledEventResponse, 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 UpdateSlackSettingsData, type UpdateSlackSettingsError, type UpdateSlackSettingsResponse, type UpdateTrackingTagData, type UpdateTrackingTagError, type UpdateTrackingTagResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppCallingData, type UpdateWhatsAppCallingError, type UpdateWhatsAppCallingLegacyData, type UpdateWhatsAppCallingLegacyError, type UpdateWhatsAppCallingLegacyResponse, type UpdateWhatsAppCallingResponse, 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 UpdateWorkflowData, type UpdateWorkflowError, type UpdateWorkflowResponse, type UpdateYoutubeDefaultPlaylistData, type UpdateYoutubeDefaultPlaylistError, type UpdateYoutubeDefaultPlaylistResponse, type UploadAdImageData, type UploadAdImageError, type UploadAdImageResponse, type UploadMediaDirectData, type UploadMediaDirectError, type UploadMediaDirectResponse, type UploadPhoneNumberKycDocumentData, type UploadPhoneNumberKycDocumentError, type UploadPhoneNumberKycDocumentResponse, type UploadPhoneNumberPortInDocumentData, type UploadPhoneNumberPortInDocumentError, type UploadPhoneNumberPortInDocumentResponse, type UploadSmsOptInProofData, type UploadSmsOptInProofError, type UploadSmsOptInProofFileData, type UploadSmsOptInProofFileError, type UploadSmsOptInProofFileResponse, type UploadSmsOptInProofResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadWhatsAppFlowJsonData, type UploadWhatsAppFlowJsonError, type UploadWhatsAppFlowJsonResponse, type UploadWhatsAppNumberKycDocumentData, type UploadWhatsAppNumberKycDocumentError, type UploadWhatsAppNumberKycDocumentResponse, type UploadWhatsAppProfilePhotoData, type UploadWhatsAppProfilePhotoError, type UploadWhatsAppProfilePhotoResponse, type UploadedFile, type UsageMetering, type UsageStats, type User, type UserGetResponse, type UsersListResponse, type ValidateMediaData, type ValidateMediaError, type ValidateMediaResponse, type ValidatePhoneNumberKycAddressData, type ValidatePhoneNumberKycAddressError, type ValidatePhoneNumberKycAddressResponse, type ValidatePostData, type ValidatePostError, type ValidatePostLengthData, type ValidatePostLengthError, type ValidatePostLengthResponse, type ValidatePostResponse, type ValidateSubredditData, type ValidateSubredditError, type ValidateSubredditResponse, type ValidateWhatsAppNumberKycAddressData, type ValidateWhatsAppNumberKycAddressError, type ValidateWhatsAppNumberKycAddressResponse, ValidationError, type Verification, type VerifySmsRegistrationOtpData, type VerifySmsRegistrationOtpError, type VerifySmsRegistrationOtpResponse, type VerifyWhatsAppCallerIdData, type VerifyWhatsAppCallerIdError, type VerifyWhatsAppCallerIdResponse, type ViewPhoneNumberKycDocumentData, type ViewPhoneNumberKycDocumentError, type ViewPhoneNumberKycDocumentResponse, type VoteRedditThingData, type VoteRedditThingError, type VoteRedditThingResponse, type Webhook, type WebhookLog, type WebhookPayloadAccountAdsInitialSyncCompleted, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadAdStatusChanged, type WebhookPayloadCallEnded, type WebhookPayloadCallFailed, type WebhookPayloadCallPermissionRequest, type WebhookPayloadCallReceived, type WebhookPayloadComment, type WebhookPayloadConversationStarted, type WebhookPayloadExternalPost, type WebhookPayloadLead, type WebhookPayloadMessage, type WebhookPayloadMessageDeleted, type WebhookPayloadMessageDeliveryStatus, type WebhookPayloadMessageEdited, type WebhookPayloadMessageSent, type WebhookPayloadPost, type WebhookPayloadPostPlatform, type WebhookPayloadReaction, type WebhookPayloadReviewNew, type WebhookPayloadReviewUpdated, type WebhookPayloadTest, type WebhookPayloadWhatsAppTemplateStatusUpdated, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppCarouselCardComponent, type WhatsAppCarouselComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppLimitedTimeOfferComponent, type WhatsAppSandboxSession, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type WorkflowEdge, type WorkflowExecutionEvent, type WorkflowNode, type XApiOperation, type XApiPricing, type YouTubeDailyViewsResponse, type YouTubeDemographicsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, type YouTubeVideoRetentionResponse, Zernio, ZernioApiError, type action, type action2, type actionSource, type adType, type adType2, type adType3, type advantageAudience, type aggregation, type aggregation2, type autoArchiveDuration, type bidStrategy, type billingPeriod, type billingSystem, type budgetLevel, type budgetType, type callToAction, type channel, type channel2, type commercialContentType, type contentType, type contentType2, type contentType3, type costType, type creativeSelection, Zernio as default, type direction, type direction2, type disconnectionType, type endReason, type entity_type, type errorCategory, type errorCategory2, type errorSource, type event, type event10, type event11, type event12, type event13, type event14, type event15, type event16, type event17, type event18, type event19, type event2, type event20, type event21, type event22, type event23, type event24, type event3, type event4, type event5, type event6, type event7, type event8, type event9, type format, type forwardCallerId, type gapFreq, type gender, type goal, type graduationStrategy, type granularity, type incomeTier, type interactiveType, type kind, type level, type mediaType, type mediaType2, type metric, type metricType, type objective, type otp_type, parseApiError, type parseMode, type period, type permission, type platform, type platform10, type platform2, type platform3, type platform4, type platform5, type platform6, type platform7, type platform8, type platform9, type privacy_level, type replySettings, type response, type scope, type source, type source2, type source3, type spiciness, type status, type status10, type status11, type status12, type status13, type status14, type status15, type status2, type status3, type status4, type status5, type status6, type status7, type status8, type status9, type syncStatus, type syncStatus2, type timeframe, type topicType, type transcriptionLanguage, type trialGraduationStrategy, type type, type type2, type type3, type type4, type type5, type type6, type type7, type type8, type type9, type visibility };
|
|
29824
|
+
export { type AccountWithFollowerStats, type AccountsListResponse, type ActivateSequenceData, type ActivateSequenceError, type ActivateSequenceResponse, type ActivateWorkflowData, type ActivateWorkflowError, type ActivateWorkflowResponse, type Ad, type AdBudget, type AdCampaign, type AdDailyMetrics, type AdMetrics, type AdReviewStatus, type AdStatus, type AdTreeAdSet, type AdTreeCampaign, type AddBroadcastRecipientsData, type AddBroadcastRecipientsError, type AddBroadcastRecipientsResponse, type AddConversionAssociationsData, type AddConversionAssociationsError, type AddConversionAssociationsResponse, type AddDiscordMemberRoleData, type AddDiscordMemberRoleError, type AddDiscordMemberRoleResponse, type AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddTrackingTagSharedAccountData, type AddTrackingTagSharedAccountError, type AddTrackingTagSharedAccountResponse, type AddUsersToAdAudienceData, type AddUsersToAdAudienceError, type AddUsersToAdAudienceResponse, type AddWhatsAppGroupParticipantsData, type AddWhatsAppGroupParticipantsError, type AddWhatsAppGroupParticipantsResponse, type AdjustConversionsData, type AdjustConversionsError, type AdjustConversionsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type AppealSmsRegistrationData, type AppealSmsRegistrationError, type AppealSmsRegistrationResponse, type ApproveWhatsAppGroupJoinRequestsData, type ApproveWhatsAppGroupJoinRequestsError, type ApproveWhatsAppGroupJoinRequestsResponse, type ArchiveLeadFormData, type ArchiveLeadFormError, type ArchiveLeadFormResponse, type AssignGoogleBusinessLocationData, type AssignGoogleBusinessLocationError, type AssignGoogleBusinessLocationResponse, type BatchGetGoogleBusinessReviewsData, type BatchGetGoogleBusinessReviewsError, type BatchGetGoogleBusinessReviewsResponse, type BidStrategy, type BillingSnapshot, type BlockWhatsAppUsersData, type BlockWhatsAppUsersError, type BlockWhatsAppUsersResponse, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BoostPostData, type BoostPostError, type BoostPostResponse, type BulkCreateContactsData, type BulkCreateContactsError, type BulkCreateContactsResponse, type BulkUpdateAdCampaignStatusData, type BulkUpdateAdCampaignStatusError, type BulkUpdateAdCampaignStatusResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type BulkUploadResult, type BusinessCenter, type CallRecord, type CancelBroadcastData, type CancelBroadcastError, type CancelBroadcastResponse, type CancelPhoneNumberPortInData, type CancelPhoneNumberPortInError, type CancelPhoneNumberPortInResponse, type CancelRfReservationData, type CancelRfReservationError, type CancelRfReservationResponse, type CheckPhoneNumberAvailabilityData, type CheckPhoneNumberAvailabilityError, type CheckPhoneNumberAvailabilityResponse, type CheckPhoneNumberPortabilityData, type CheckPhoneNumberPortabilityError, type CheckPhoneNumberPortabilityResponse, type CheckVerificationData, type CheckVerificationError, type CheckVerificationResponse, type CheckWhatsAppNumberAvailabilityData, type CheckWhatsAppNumberAvailabilityError, type CheckWhatsAppNumberAvailabilityResponse, type ClearContactFieldValueData, type ClearContactFieldValueError, type ClearContactFieldValueResponse, type ClientOptions, type CompleteGoogleBusinessVerificationData, type CompleteGoogleBusinessVerificationError, type CompleteGoogleBusinessVerificationResponse, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type CompleteWhatsAppPhoneSelectionData, type CompleteWhatsAppPhoneSelectionError, type CompleteWhatsAppPhoneSelectionResponse, type ConfigureTikTokAdsBrandIdentityData, type ConfigureTikTokAdsBrandIdentityError, type ConfigureTikTokAdsBrandIdentityResponse, type ConnectAdsData, type ConnectAdsError, type ConnectAdsResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectOpenAiAdsCredentialsData, type ConnectOpenAiAdsCredentialsError, type ConnectOpenAiAdsCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type ConnectedApp, type ConversionDestination, type ConversionEvent, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateAdAudienceData, type CreateAdAudienceError, type CreateAdAudienceResponse, type CreateAdCampaignData, type CreateAdCampaignError, type CreateAdCampaignResponse, type CreateAdCreativeData, type CreateAdCreativeError, type CreateAdCreativeResponse, type CreateAdInsightsReportData, type CreateAdInsightsReportError, type CreateAdInsightsReportResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateBroadcastData, type CreateBroadcastError, type CreateBroadcastResponse, type CreateCallAdData, type CreateCallAdError, type CreateCallAdResponse, 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 CreateDiscordGuildRoleData, type CreateDiscordGuildRoleError, type CreateDiscordGuildRoleResponse, type CreateDiscordScheduledEventData, type CreateDiscordScheduledEventError, type CreateDiscordScheduledEventResponse, type CreateDiscordThreadData, type CreateDiscordThreadError, type CreateDiscordThreadResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInboxConversationData, type CreateInboxConversationError, type CreateInboxConversationResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreateLeadFormData, type CreateLeadFormError, type CreateLeadFormResponse, type CreateMessagingAdData, type CreateMessagingAdError, type CreateMessagingAdResponse, type CreatePhoneNumberKycLinkData, type CreatePhoneNumberKycLinkError, type CreatePhoneNumberKycLinkResponse, type CreatePhoneNumberPortInData, type CreatePhoneNumberPortInError, type CreatePhoneNumberPortInResponse, type CreatePinterestBoardData, type CreatePinterestBoardError, type CreatePinterestBoardResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateRfPredictionData, type CreateRfPredictionError, type CreateRfPredictionResponse, type CreateSequenceData, type CreateSequenceError, type CreateSequenceResponse, type CreateSmsSenderIdData, type CreateSmsSenderIdError, type CreateSmsSenderIdResponse, type CreateStandaloneAdData, type CreateStandaloneAdError, type CreateStandaloneAdResponse, type CreateTestLeadData, type CreateTestLeadError, type CreateTestLeadResponse, type CreateTrackingTagData, type CreateTrackingTagError, type CreateTrackingTagResponse, type CreateVerificationData, type CreateVerificationError, type CreateVerificationResponse, type CreateVoiceCallData, type CreateVoiceCallError, type CreateVoiceCallResponse, type CreateVoiceWebSessionError, type CreateVoiceWebSessionResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppDatasetData, type CreateWhatsAppDatasetError, type CreateWhatsAppDatasetResponse, type CreateWhatsAppFlowData, type CreateWhatsAppFlowError, type CreateWhatsAppFlowResponse, type CreateWhatsAppGroupChatData, type CreateWhatsAppGroupChatError, type CreateWhatsAppGroupChatResponse, type CreateWhatsAppGroupInviteLinkData, type CreateWhatsAppGroupInviteLinkError, type CreateWhatsAppGroupInviteLinkResponse, type CreateWhatsAppNumberKycLinkData, type CreateWhatsAppNumberKycLinkError, type CreateWhatsAppNumberKycLinkResponse, type CreateWhatsAppSandboxSessionData, type CreateWhatsAppSandboxSessionError, type CreateWhatsAppSandboxSessionResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type CreateWorkflowData, type CreateWorkflowError, type CreateWorkflowResponse, type CrosspostDiscordMessageData, type CrosspostDiscordMessageError, type CrosspostDiscordMessageResponse, type CtwaAdRequestBody, type CtwaMultiResponse, type CtwaSingleResponse, type DeactivateSmsRegistrationData, type DeactivateSmsRegistrationError, type DeactivateSmsRegistrationResponse, 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 DeleteAdCreativeData, type DeleteAdCreativeError, type DeleteAdCreativeResponse, 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 DeleteDiscordGuildRoleData, type DeleteDiscordGuildRoleError, type DeleteDiscordGuildRoleResponse, type DeleteDiscordMessageData, type DeleteDiscordMessageError, type DeleteDiscordMessageResponse, type DeleteDiscordScheduledEventData, type DeleteDiscordScheduledEventError, type DeleteDiscordScheduledEventResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteGoogleBusinessReviewReplyData, type DeleteGoogleBusinessReviewReplyError, type DeleteGoogleBusinessReviewReplyResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxMessageData, type DeleteInboxMessageError, type DeleteInboxMessageResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteMessengerMenuData, type DeleteMessengerMenuError, type DeleteMessengerMenuResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteSequenceData, type DeleteSequenceError, type DeleteSequenceResponse, type DeleteSmsSenderIdData, type DeleteSmsSenderIdError, type DeleteSmsSenderIdResponse, 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 DeleteWhatsAppSandboxSessionData, type DeleteWhatsAppSandboxSessionError, type DeleteWhatsAppSandboxSessionResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, type DeleteWhatsappBusinessUsernameData, type DeleteWhatsappBusinessUsernameError, type DeleteWhatsappBusinessUsernameResponse, type DeleteWorkflowData, type DeleteWorkflowError, type DeleteWorkflowResponse, type DeprecateWhatsAppFlowData, type DeprecateWhatsAppFlowError, type DeprecateWhatsAppFlowResponse, type DialVoiceWebCallData, type DialVoiceWebCallError, type DialVoiceWebCallResponse, type DisableSmsOnNumberData, type DisableSmsOnNumberError, type DisableSmsOnNumberResponse, type DisableVoiceOnNumberData, type DisableVoiceOnNumberError, type DisableVoiceOnNumberResponse, type DisableWhatsAppCallingData, type DisableWhatsAppCallingError, type DisableWhatsAppCallingLegacyData, type DisableWhatsAppCallingLegacyError, type DisableWhatsAppCallingLegacyResponse, type DisableWhatsAppCallingResponse, type DiscordGuildMember, type DiscordPlatformData, type DiscordRole, type DiscordScheduledEvent, type DmButton, type DuplicateAdCampaignData, type DuplicateAdCampaignError, type DuplicateAdCampaignResponse, type DuplicateAdData, type DuplicateAdError, type DuplicateAdResponse, type DuplicateAdSetData, type DuplicateAdSetError, type DuplicateAdSetResponse, type DuplicateWorkflowData, type DuplicateWorkflowError, type DuplicateWorkflowResponse, type EditDiscordGuildRoleData, type EditDiscordGuildRoleError, type EditDiscordGuildRoleResponse, type EditInboxCommentData, type EditInboxCommentError, type EditInboxCommentResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type EditPostData, type EditPostError, type EditPostResponse, type EnableSmsOnNumberData, type EnableSmsOnNumberError, type EnableSmsOnNumberResponse, type EnableVoiceOnNumberData, type EnableVoiceOnNumberError, type EnableVoiceOnNumberResponse, type EnableWhatsAppCallingData, type EnableWhatsAppCallingError, type EnableWhatsAppCallingLegacyData, type EnableWhatsAppCallingLegacyError, type EnableWhatsAppCallingLegacyResponse, type EnableWhatsAppCallingResponse, type EndVoiceCallData, type EndVoiceCallError, type EndVoiceCallResponse, type EnrollContactsData, type EnrollContactsError, type EnrollContactsResponse, type ErrorResponse, type EstimateAdReachData, type EstimateAdReachError, type EstimateAdReachResponse, type ExternalPostMediaItem, type ExternalPostSummary, type ExternalPostWebhookPost, type FacebookPlatformData, type FacebookPostEarningsResponse, type FacebookSettings, type FetchGoogleBusinessVerificationOptionsData, type FetchGoogleBusinessVerificationOptionsError, type FetchGoogleBusinessVerificationOptionsResponse, type FollowUserData, type FollowUserError, type FollowUserResponse, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GenerateAdPreviewsData, type GenerateAdPreviewsError, type GenerateAdPreviewsResponse, type GenerateKeywordHistoricalMetricsData, type GenerateKeywordHistoricalMetricsError, type GenerateKeywordHistoricalMetricsResponse, type GenerateKeywordIdeasData, type GenerateKeywordIdeasError, type GenerateKeywordIdeasResponse, type GeoRestriction, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAdAccountFinanceData, type GetAdAccountFinanceError, type GetAdAccountFinanceResponse, type GetAdAnalyticsData, type GetAdAnalyticsError, type GetAdAnalyticsResponse, type GetAdAudienceData, type GetAdAudienceError, type GetAdAudienceResponse, type GetAdCommentsData, type GetAdCommentsError, type GetAdCommentsResponse, type GetAdCreativeData, type GetAdCreativeError, type GetAdCreativeResponse, type GetAdData, type GetAdError, type GetAdInsightsReportData, type GetAdInsightsReportError, type GetAdInsightsReportResponse, type GetAdPreviewsData, type GetAdPreviewsError, type GetAdPreviewsResponse, type GetAdResponse, type GetAdSetDetailsData, type GetAdSetDetailsError, type GetAdSetDetailsResponse, type GetAdTrackingTagsData, type GetAdTrackingTagsError, type GetAdTrackingTagsResponse, type GetAdTreeData, type GetAdTreeError, type GetAdTreeResponse, type GetAdsActivityLogData, type GetAdsActivityLogError, type GetAdsActivityLogResponse, type GetAdsTimelineData, type GetAdsTimelineError, type GetAdsTimelineResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetBillingError, type GetBillingResponse, type GetBroadcastData, type GetBroadcastError, type GetBroadcastResponse, type GetCallData, type GetCallError, type GetCallRecordingData, type GetCallRecordingError, type GetCallRecordingResponse, type GetCallResponse, type GetCallsUsageData, type GetCallsUsageError, type GetCallsUsageResponse, type GetCampaignAnalyticsData, type GetCampaignAnalyticsError, type GetCampaignAnalyticsResponse, 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 GetConversionsQualityData, type GetConversionsQualityError, type GetConversionsQualityResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetDiscordChannelsData, type GetDiscordChannelsError, type GetDiscordChannelsResponse, type GetDiscordGuildMemberData, type GetDiscordGuildMemberError, type GetDiscordGuildMemberResponse, type GetDiscordScheduledEventData, type GetDiscordScheduledEventError, type GetDiscordScheduledEventResponse, type GetDiscordSettingsData, type GetDiscordSettingsError, type GetDiscordSettingsResponse, type GetDsaDefaultsData, type GetDsaDefaultsError, type GetDsaDefaultsResponse, type GetDsaRecommendationsData, type GetDsaRecommendationsError, type GetDsaRecommendationsResponse, type GetFacebookPageInsightsData, type GetFacebookPageInsightsError, type GetFacebookPageInsightsResponse, type GetFacebookPagesData, type GetFacebookPagesError, type GetFacebookPagesResponse, type GetFacebookPostEarningsData, type GetFacebookPostEarningsError, type GetFacebookPostEarningsResponse, type GetFacebookPostReactionsData, type GetFacebookPostReactionsError, type GetFacebookPostReactionsResponse, type GetFollowerStatsData, type GetFollowerStatsError, type GetFollowerStatsResponse, type GetGmbAttributeMetadataData, type GetGmbAttributeMetadataError, type GetGmbAttributeMetadataResponse, type GetGmbLocationsData, type GetGmbLocationsError, type GetGmbLocationsResponse, type GetGoogleBusinessAttributesData, type GetGoogleBusinessAttributesError, type GetGoogleBusinessAttributesResponse, type GetGoogleBusinessFoodMenusData, type GetGoogleBusinessFoodMenusError, type GetGoogleBusinessFoodMenusResponse, type GetGoogleBusinessLocationDetailsData, type GetGoogleBusinessLocationDetailsError, type GetGoogleBusinessLocationDetailsResponse, type GetGoogleBusinessPerformanceData, type GetGoogleBusinessPerformanceError, type GetGoogleBusinessPerformanceResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetGoogleBusinessSearchKeywordsData, type GetGoogleBusinessSearchKeywordsError, type GetGoogleBusinessSearchKeywordsResponse, type GetGoogleBusinessServicesData, type GetGoogleBusinessServicesError, type GetGoogleBusinessServicesResponse, type GetGoogleBusinessVerificationsData, type GetGoogleBusinessVerificationsError, type GetGoogleBusinessVerificationsResponse, type GetInboxConversationAnalyticsData, type GetInboxConversationAnalyticsError, type GetInboxConversationAnalyticsResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxHeatmapData, type GetInboxHeatmapError, type GetInboxHeatmapResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetInboxResponseTimeData, type GetInboxResponseTimeError, type GetInboxResponseTimeResponse, type GetInboxSourceBreakdownData, type GetInboxSourceBreakdownError, type GetInboxSourceBreakdownResponse, type GetInboxTopAccountsData, type GetInboxTopAccountsError, type GetInboxTopAccountsResponse, type GetInboxVolumeData, type GetInboxVolumeError, type GetInboxVolumeResponse, 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 GetInstagramPublishingLimitData, type GetInstagramPublishingLimitError, type GetInstagramPublishingLimitResponse, type GetInstagramStoryInsightsData, type GetInstagramStoryInsightsError, type GetInstagramStoryInsightsResponse, type GetLeadFormData, type GetLeadFormError, type GetLeadFormResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInBidPricingData, type GetLinkedInBidPricingError, type GetLinkedInBidPricingResponse, 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 GetLinkedInSupplyForecastData, type GetLinkedInSupplyForecastError, type GetLinkedInSupplyForecastResponse, 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 GetPhoneNumberData, type GetPhoneNumberError, type GetPhoneNumberKycFormData, type GetPhoneNumberKycFormError, type GetPhoneNumberKycFormResponse, type GetPhoneNumberPortInOrderRequirementsData, type GetPhoneNumberPortInOrderRequirementsError, type GetPhoneNumberPortInOrderRequirementsResponse, type GetPhoneNumberPortInRequirementsData, type GetPhoneNumberPortInRequirementsError, type GetPhoneNumberPortInRequirementsResponse, type GetPhoneNumberRemediationData, type GetPhoneNumberRemediationError, type GetPhoneNumberRemediationResponse, type GetPhoneNumberResponse, 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 GetRfPredictionData, type GetRfPredictionError, type GetRfPredictionResponse, type GetSequenceData, type GetSequenceError, type GetSequenceResponse, type GetSlackSettingsData, type GetSlackSettingsError, type GetSlackSettingsResponse, type GetSmsRegistrationData, type GetSmsRegistrationError, type GetSmsRegistrationResponse, type GetSmsUsageData, type GetSmsUsageError, type GetSmsUsageResponse, type GetSubredditRulesData, type GetSubredditRulesError, type GetSubredditRulesResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetTikTokAccountInsightsData, type GetTikTokAccountInsightsError, type GetTikTokAccountInsightsResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, type GetTrackingTagData, type GetTrackingTagError, type GetTrackingTagResponse, type GetTrackingTagStatsData, type GetTrackingTagStatsError, type GetTrackingTagStatsResponse, type GetUsageData, type GetUsageError, type GetUsageResponse, type GetUsageStatsData, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetVerificationData, type GetVerificationError, type GetVerificationResponse, type GetVoiceCallData, type GetVoiceCallError, type GetVoiceCallEstimateData, type GetVoiceCallEstimateError, type GetVoiceCallEstimateResponse, type GetVoiceCallRecordingData, type GetVoiceCallRecordingError, type GetVoiceCallRecordingResponse, type GetVoiceCallResponse, type GetWebhookLogsData, type GetWebhookLogsError, type GetWebhookLogsResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetWhatsAppBlockStatusData, type GetWhatsAppBlockStatusError, type GetWhatsAppBlockStatusResponse, type GetWhatsAppBlockedUsersData, type GetWhatsAppBlockedUsersError, type GetWhatsAppBlockedUsersResponse, type GetWhatsAppBusinessProfileData, type GetWhatsAppBusinessProfileError, type GetWhatsAppBusinessProfileResponse, type GetWhatsAppCallData, type GetWhatsAppCallError, type GetWhatsAppCallEstimateData, type GetWhatsAppCallEstimateError, type GetWhatsAppCallEstimateResponse, type GetWhatsAppCallPermissionsData, type GetWhatsAppCallPermissionsError, type GetWhatsAppCallPermissionsResponse, type GetWhatsAppCallRecordingData, type GetWhatsAppCallRecordingError, type GetWhatsAppCallRecordingResponse, type GetWhatsAppCallResponse, type GetWhatsAppCallingConfigData, type GetWhatsAppCallingConfigError, type GetWhatsAppCallingConfigResponse, type GetWhatsAppCallingData, type GetWhatsAppCallingError, type GetWhatsAppCallingResponse, type GetWhatsAppDatasetData, type GetWhatsAppDatasetError, type GetWhatsAppDatasetResponse, type GetWhatsAppDisplayNameData, type GetWhatsAppDisplayNameError, type GetWhatsAppDisplayNameResponse, type GetWhatsAppFlowData, type GetWhatsAppFlowError, type GetWhatsAppFlowJsonData, type GetWhatsAppFlowJsonError, type GetWhatsAppFlowJsonResponse, type GetWhatsAppFlowPreviewData, type GetWhatsAppFlowPreviewError, type GetWhatsAppFlowPreviewResponse, type GetWhatsAppFlowResponse, type GetWhatsAppGroupChatData, type GetWhatsAppGroupChatError, type GetWhatsAppGroupChatResponse, type GetWhatsAppLibraryTemplateData, type GetWhatsAppLibraryTemplateError, type GetWhatsAppLibraryTemplateResponse, type GetWhatsAppMediaData, type GetWhatsAppMediaError, type GetWhatsAppMediaResponse, type GetWhatsAppNumberInfoData, type GetWhatsAppNumberInfoError, type GetWhatsAppNumberInfoResponse, type GetWhatsAppNumberKycFormData, type GetWhatsAppNumberKycFormError, type GetWhatsAppNumberKycFormResponse, type GetWhatsAppNumberRemediationData, type GetWhatsAppNumberRemediationError, type GetWhatsAppNumberRemediationResponse, 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 GetWhatsappBusinessUsernameData, type GetWhatsappBusinessUsernameError, type GetWhatsappBusinessUsernameResponse, type GetWhatsappBusinessUsernameSuggestionsData, type GetWhatsappBusinessUsernameSuggestionsError, type GetWhatsappBusinessUsernameSuggestionsResponse, type GetWorkflowData, type GetWorkflowError, type GetWorkflowResponse, type GetWorkflowVersionData, type GetWorkflowVersionError, type GetWorkflowVersionResponse, type GetXApiPricingError, type GetXApiPricingResponse, type GetYouTubeChannelInsightsData, type GetYouTubeChannelInsightsError, type GetYouTubeChannelInsightsResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeDemographicsData, type GetYouTubeDemographicsError, type GetYouTubeDemographicsResponse, type GetYouTubeVideoRetentionData, type GetYouTubeVideoRetentionError, type GetYouTubeVideoRetentionResponse, type GetYoutubePlaylistsData, type GetYoutubePlaylistsError, type GetYoutubePlaylistsResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type InboxMessageEditAttachment, type InboxMessageEditHistoryEntry, type InboxWebhookAccount, type InboxWebhookConversation, type InboxWebhookMessage, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InitiateWhatsAppCallData, type InitiateWhatsAppCallError, type InitiateWhatsAppCallResponse, type InstagramAccountInsightsResponse, type InstagramDemographicsResponse, type InstagramPlatformData, Late, LateApiError, type LikeInboxCommentData, type LikeInboxCommentError, type LikeInboxCommentResponse, type LinkedInAdsPlatformData, 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 ListAdCatalogProductSetsData, type ListAdCatalogProductSetsError, type ListAdCatalogProductSetsResponse, type ListAdCatalogsData, type ListAdCatalogsError, type ListAdCatalogsResponse, type ListAdCreativesData, type ListAdCreativesError, type ListAdCreativesResponse, type ListAdImagesData, type ListAdImagesError, type ListAdImagesResponse, type ListAdKeywordsData, type ListAdKeywordsError, type ListAdKeywordsResponse, type ListAdLabelsData, type ListAdLabelsError, type ListAdLabelsResponse, type ListAdStudiesData, type ListAdStudiesError, type ListAdStudiesResponse, 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 ListCallsData, type ListCallsError, type ListCallsResponse, type ListCommentAutomationLogsData, type ListCommentAutomationLogsError, type ListCommentAutomationLogsResponse, type ListCommentAutomationsData, type ListCommentAutomationsError, type ListCommentAutomationsResponse, type ListConnectedAppsError, type ListConnectedAppsResponse, 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 ListDiscordGuildMembersData, type ListDiscordGuildMembersError, type ListDiscordGuildMembersResponse, type ListDiscordGuildRolesData, type ListDiscordGuildRolesError, type ListDiscordGuildRolesResponse, type ListDiscordPinnedMessagesData, type ListDiscordPinnedMessagesError, type ListDiscordPinnedMessagesResponse, type ListDiscordScheduledEventsData, type ListDiscordScheduledEventsError, type ListDiscordScheduledEventsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListFormLeadsData, type ListFormLeadsError, type ListFormLeadsResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListGoogleBusinessMediaData, type ListGoogleBusinessMediaError, type ListGoogleBusinessMediaResponse, type ListGoogleBusinessPlaceActionsData, type ListGoogleBusinessPlaceActionsError, type ListGoogleBusinessPlaceActionsResponse, type ListHighDemandPeriodsData, type ListHighDemandPeriodsError, type ListHighDemandPeriodsResponse, type ListInboxCommentsData, type ListInboxCommentsError, type ListInboxCommentsResponse, type ListInboxConversationAnalyticsData, type ListInboxConversationAnalyticsError, type ListInboxConversationAnalyticsResponse, type ListInboxConversationsData, type ListInboxConversationsError, type ListInboxConversationsResponse, type ListInboxMentionsData, type ListInboxMentionsError, type ListInboxMentionsResponse, type ListInboxReviewsData, type ListInboxReviewsError, type ListInboxReviewsResponse, type ListInstagramStoriesData, type ListInstagramStoriesError, type ListInstagramStoriesResponse, type ListLeadFormsData, type ListLeadFormsError, type ListLeadFormsResponse, type ListLeadsData, type ListLeadsError, type ListLeadsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListLogsData, type ListLogsError, type ListLogsResponse, type ListMetaBusinessesData, type ListMetaBusinessesError, type ListMetaBusinessesResponse, type ListPhoneNumberCountriesError, type ListPhoneNumberCountriesResponse, type ListPhoneNumberPortInsError, type ListPhoneNumberPortInsResponse, type ListPhoneNumbersData, type ListPhoneNumbersError, type ListPhoneNumbersResponse, 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 ListSmsOptOutsData, type ListSmsOptOutsError, type ListSmsOptOutsResponse, type ListSmsRegistrationsData, type ListSmsRegistrationsError, type ListSmsRegistrationsResponse, type ListSmsSenderIdsError, type ListSmsSenderIdsResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListTrackingTagSharedAccountsData, type ListTrackingTagSharedAccountsError, type ListTrackingTagSharedAccountsResponse, type ListTrackingTagsData, type ListTrackingTagsError, type ListTrackingTagsResponse, type ListUsersError, type ListUsersResponse, type ListVoiceCallsData, type ListVoiceCallsError, type ListVoiceCallsResponse, type ListWhatsAppCallsData, type ListWhatsAppCallsError, type ListWhatsAppCallsResponse, type ListWhatsAppConversionsData, type ListWhatsAppConversionsError, type ListWhatsAppConversionsResponse, type ListWhatsAppFlowResponsesData, type ListWhatsAppFlowResponsesError, type ListWhatsAppFlowResponsesResponse, type ListWhatsAppFlowVersionsData, type ListWhatsAppFlowVersionsError, type ListWhatsAppFlowVersionsResponse, type ListWhatsAppFlowsData, type ListWhatsAppFlowsError, type ListWhatsAppFlowsResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type ListWhatsAppNumberCountriesError, type ListWhatsAppNumberCountriesResponse, type ListWhatsAppPhoneNumbersData, type ListWhatsAppPhoneNumbersError, type ListWhatsAppPhoneNumbersResponse, type ListWhatsAppSandboxSessionsError, type ListWhatsAppSandboxSessionsResponse, type ListWorkflowExecutionEventsData, type ListWorkflowExecutionEventsError, type ListWorkflowExecutionEventsResponse, type ListWorkflowExecutionsData, type ListWorkflowExecutionsError, type ListWorkflowExecutionsResponse, type ListWorkflowVersionsData, type ListWorkflowVersionsError, type ListWorkflowVersionsResponse, type ListWorkflowsData, type ListWorkflowsError, type ListWorkflowsResponse, type LookupSmsNumberData, type LookupSmsNumberError, type LookupSmsNumberResponse, type MarkConversationReadData, type MarkConversationReadError, type MarkConversationReadResponse, type MediaItem, type MediaUploadResponse, type Money, type MoneyAmount, type MoveAccountToProfileData, type MoveAccountToProfileError, type MoveAccountToProfileResponse, type Pagination, type ParameterPageParam, type PauseSequenceData, type PauseSequenceError, type PauseSequenceResponse, type PauseWorkflowData, type PauseWorkflowError, type PauseWorkflowResponse, type PinDiscordMessageData, type PinDiscordMessageError, type PinDiscordMessageResponse, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostRetryResponse, type PostUpdateResponse, type PostsListResponse, type PreflightSmsRegistrationData, type PreflightSmsRegistrationError, type PreflightSmsRegistrationResponse, 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 PurchasePhoneNumberData, type PurchasePhoneNumberError, type PurchasePhoneNumberResponse, type PurchaseWhatsAppPhoneNumberData, type PurchaseWhatsAppPhoneNumberError, type PurchaseWhatsAppPhoneNumberResponse, type QueryAdInsightsData, type QueryAdInsightsError, type QueryAdInsightsResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type RedditPost, type RegisterWhatsAppNumberData, type RegisterWhatsAppNumberError, type RegisterWhatsAppNumberResponse, type RejectWhatsAppGroupJoinRequestsData, type RejectWhatsAppGroupJoinRequestsError, type RejectWhatsAppGroupJoinRequestsResponse, type ReleasePhoneNumberData, type ReleasePhoneNumberError, type ReleasePhoneNumberResponse, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemediatePhoneNumberData, type RemediatePhoneNumberError, type RemediatePhoneNumberResponse, type RemediateWhatsAppNumberData, type RemediateWhatsAppNumberError, type RemediateWhatsAppNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveConversionAssociationsData, type RemoveConversionAssociationsError, type RemoveConversionAssociationsResponse, type RemoveDiscordMemberRoleData, type RemoveDiscordMemberRoleError, type RemoveDiscordMemberRoleResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveTrackingTagSharedAccountData, type RemoveTrackingTagSharedAccountError, type RemoveTrackingTagSharedAccountResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, type ReplyToGoogleBusinessReviewData, type ReplyToGoogleBusinessReviewError, type ReplyToGoogleBusinessReviewResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type ReplyToMentionData, type ReplyToMentionError, type ReplyToMentionResponse, type ReplyToPhoneNumberReviewerData, type ReplyToPhoneNumberReviewerError, type ReplyToPhoneNumberReviewerResponse, type RequestSmsSenderIdLimitIncreaseData, type RequestSmsSenderIdLimitIncreaseError, type RequestSmsSenderIdLimitIncreaseResponse, type ResendSmsRegistrationOtpData, type ResendSmsRegistrationOtpError, type ResendSmsRegistrationOtpResponse, type ReserveRfPredictionData, type ReserveRfPredictionError, type ReserveRfPredictionResponse, type RespondToPhoneNumberReviewerData, type RespondToPhoneNumberReviewerError, type RespondToPhoneNumberReviewerResponse, type RespondToSmsRegistrationReviewData, type RespondToSmsRegistrationReviewError, type RespondToSmsRegistrationReviewResponse, type RestoreWorkflowVersionData, type RestoreWorkflowVersionError, type RestoreWorkflowVersionResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type ReuseSmsRegistrationForNumberData, type ReuseSmsRegistrationForNumberError, type ReuseSmsRegistrationForNumberResponse, type ReviewPhoneNumberKycPacketData, type ReviewPhoneNumberKycPacketError, type ReviewPhoneNumberKycPacketResponse, type ReviewWebhookReview, type RevokeConnectedAppData, type RevokeConnectedAppError, type RevokeConnectedAppResponse, type RfPrediction, type ScheduleBroadcastData, type ScheduleBroadcastError, type ScheduleBroadcastResponse, type SearchAdInterestsData, type SearchAdInterestsError, type SearchAdInterestsResponse, type SearchAdTargetingData, type SearchAdTargetingError, type SearchAdTargetingResponse, type SearchAvailablePhoneNumbersData, type SearchAvailablePhoneNumbersError, type SearchAvailablePhoneNumbersResponse, type SearchAvailableWhatsAppNumbersData, type SearchAvailableWhatsAppNumbersError, type SearchAvailableWhatsAppNumbersResponse, type SearchDiscordGuildMembersData, type SearchDiscordGuildMembersError, type SearchDiscordGuildMembersResponse, type SearchInboxConversationsData, type SearchInboxConversationsError, type SearchInboxConversationsResponse, type SearchRedditData, type SearchRedditError, type SearchRedditResponse, type SearchTweetsData, type SearchTweetsError, type SearchTweetsResponse, 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 SendDiscordDirectMessageData, type SendDiscordDirectMessageError, type SendDiscordDirectMessageResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SendSmsData, type SendSmsError, type SendSmsResponse, type SendTypingIndicatorData, type SendTypingIndicatorError, type SendTypingIndicatorResponse, type SendWhatsAppConversionData, type SendWhatsAppConversionError, type SendWhatsAppConversionResponse, type SendWhatsAppFlowMessageData, type SendWhatsAppFlowMessageError, type SendWhatsAppFlowMessageResponse, type SetCommentModerationData, type SetCommentModerationError, type SetCommentModerationResponse, type SetContactFieldValueData, type SetContactFieldValueError, type SetContactFieldValueResponse, type SetInstagramIceBreakersData, type SetInstagramIceBreakersError, type SetInstagramIceBreakersResponse, type SetMessengerMenuData, type SetMessengerMenuError, type SetMessengerMenuResponse, type SetRedditPostFlairData, type SetRedditPostFlairError, type SetRedditPostFlairResponse, type SetTelegramCommandsData, type SetTelegramCommandsError, type SetTelegramCommandsResponse, type SetWhatsappBusinessUsernameData, type SetWhatsappBusinessUsernameError, type SetWhatsappBusinessUsernameResponse, type ShareSmsRegistrationData, type ShareSmsRegistrationError, type ShareSmsRegistrationResponse, type SharedAdAccount, type SlackPlatformData, type SnapchatPlatformData, type SocialAccount, type StartGoogleBusinessVerificationData, type StartGoogleBusinessVerificationError, type StartGoogleBusinessVerificationResponse, type StartSmsRegistrationData, type StartSmsRegistrationError, type StartSmsRegistrationResponse, type StartWhatsAppCallerIdVerificationData, type StartWhatsAppCallerIdVerificationError, type StartWhatsAppCallerIdVerificationResponse, type SubmitPhoneNumberKycData, type SubmitPhoneNumberKycError, type SubmitPhoneNumberKycResponse, type SubmitWhatsAppNumberKycData, type SubmitWhatsAppNumberKycError, type SubmitWhatsAppNumberKycResponse, type SyncExternalPostsData, type SyncExternalPostsError, type SyncExternalPostsResponse, type TargetingSpec, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TrackingTag, type TransferVoiceCallData, type TransferVoiceCallError, type TransferVoiceCallResponse, type TriggerWorkflowData, type TriggerWorkflowError, type TriggerWorkflowResponse, type TwitterPlatformData, type UnblockWhatsAppUsersData, type UnblockWhatsAppUsersError, type UnblockWhatsAppUsersResponse, 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 UnpinDiscordMessageData, type UnpinDiscordMessageError, type UnpinDiscordMessageResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateAdAccountData, type UpdateAdAccountError, type UpdateAdAccountResponse, type UpdateAdAudienceData, type UpdateAdAudienceError, type UpdateAdAudienceResponse, type UpdateAdCampaignData, type UpdateAdCampaignError, type UpdateAdCampaignResponse, type UpdateAdCampaignStatusData, type UpdateAdCampaignStatusError, type UpdateAdCampaignStatusResponse, type UpdateAdCreativeData, type UpdateAdCreativeError, type UpdateAdCreativeResponse, type UpdateAdData, type UpdateAdError, type UpdateAdResponse, type UpdateAdSetData, type UpdateAdSetError, type UpdateAdSetResponse, type UpdateAdSetStatusData, type UpdateAdSetStatusError, type UpdateAdSetStatusResponse, type UpdateAdStatusData, type UpdateAdStatusError, type UpdateAdStatusResponse, type UpdateAdTrackingTagsData, type UpdateAdTrackingTagsError, type UpdateAdTrackingTagsResponse, 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 UpdateDiscordScheduledEventData, type UpdateDiscordScheduledEventError, type UpdateDiscordScheduledEventResponse, 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 UpdateSlackSettingsData, type UpdateSlackSettingsError, type UpdateSlackSettingsResponse, type UpdateTrackingTagData, type UpdateTrackingTagError, type UpdateTrackingTagResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppCallingData, type UpdateWhatsAppCallingError, type UpdateWhatsAppCallingLegacyData, type UpdateWhatsAppCallingLegacyError, type UpdateWhatsAppCallingLegacyResponse, type UpdateWhatsAppCallingResponse, 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 UpdateWorkflowData, type UpdateWorkflowError, type UpdateWorkflowResponse, type UpdateYoutubeDefaultPlaylistData, type UpdateYoutubeDefaultPlaylistError, type UpdateYoutubeDefaultPlaylistResponse, type UploadAdImageData, type UploadAdImageError, type UploadAdImageResponse, type UploadMediaDirectData, type UploadMediaDirectError, type UploadMediaDirectResponse, type UploadPhoneNumberKycDocumentData, type UploadPhoneNumberKycDocumentError, type UploadPhoneNumberKycDocumentResponse, type UploadPhoneNumberPortInDocumentData, type UploadPhoneNumberPortInDocumentError, type UploadPhoneNumberPortInDocumentResponse, type UploadSmsOptInProofData, type UploadSmsOptInProofError, type UploadSmsOptInProofFileData, type UploadSmsOptInProofFileError, type UploadSmsOptInProofFileResponse, type UploadSmsOptInProofResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadWhatsAppFlowJsonData, type UploadWhatsAppFlowJsonError, type UploadWhatsAppFlowJsonResponse, type UploadWhatsAppNumberKycDocumentData, type UploadWhatsAppNumberKycDocumentError, type UploadWhatsAppNumberKycDocumentResponse, type UploadWhatsAppProfilePhotoData, type UploadWhatsAppProfilePhotoError, type UploadWhatsAppProfilePhotoResponse, type UploadedFile, type UsageMetering, type UsageStats, type User, type UserGetResponse, type UsersListResponse, type ValidateMediaData, type ValidateMediaError, type ValidateMediaResponse, type ValidatePhoneNumberKycAddressData, type ValidatePhoneNumberKycAddressError, type ValidatePhoneNumberKycAddressResponse, type ValidatePostData, type ValidatePostError, type ValidatePostLengthData, type ValidatePostLengthError, type ValidatePostLengthResponse, type ValidatePostResponse, type ValidateSubredditData, type ValidateSubredditError, type ValidateSubredditResponse, type ValidateWhatsAppNumberKycAddressData, type ValidateWhatsAppNumberKycAddressError, type ValidateWhatsAppNumberKycAddressResponse, ValidationError, type Verification, type VerifySmsRegistrationOtpData, type VerifySmsRegistrationOtpError, type VerifySmsRegistrationOtpResponse, type VerifyWhatsAppCallerIdData, type VerifyWhatsAppCallerIdError, type VerifyWhatsAppCallerIdResponse, type ViewPhoneNumberKycDocumentData, type ViewPhoneNumberKycDocumentError, type ViewPhoneNumberKycDocumentResponse, type VoteRedditThingData, type VoteRedditThingError, type VoteRedditThingResponse, type Webhook, type WebhookLog, type WebhookPayloadAccountAdsInitialSyncCompleted, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadAdStatusChanged, type WebhookPayloadCallEnded, type WebhookPayloadCallFailed, type WebhookPayloadCallPermissionRequest, type WebhookPayloadCallReceived, type WebhookPayloadComment, type WebhookPayloadConversationStarted, type WebhookPayloadExternalPost, type WebhookPayloadLead, type WebhookPayloadMessage, type WebhookPayloadMessageDeleted, type WebhookPayloadMessageDeliveryStatus, type WebhookPayloadMessageEdited, type WebhookPayloadMessageSent, type WebhookPayloadPost, type WebhookPayloadPostPlatform, type WebhookPayloadReaction, type WebhookPayloadReviewNew, type WebhookPayloadReviewUpdated, type WebhookPayloadTest, type WebhookPayloadWhatsAppTemplateStatusUpdated, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppCarouselCardComponent, type WhatsAppCarouselComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppLimitedTimeOfferComponent, type WhatsAppSandboxSession, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type WorkflowEdge, type WorkflowExecutionEvent, type WorkflowNode, type XApiOperation, type XApiPricing, type YouTubeDailyViewsResponse, type YouTubeDemographicsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, type YouTubeVideoRetentionResponse, Zernio, ZernioApiError, type action, type action2, type actionSource, type adType, type adType2, type adType3, type advantageAudience, type aggregation, type aggregation2, type autoArchiveDuration, type bidStrategy, type billingPeriod, type billingSystem, type budgetLevel, type budgetType, type callToAction, type channel, type channel2, type commercialContentType, type contentType, type contentType2, type contentType3, type costType, type creativeSelection, Zernio as default, type direction, type direction2, type disconnectionType, type endReason, type entity_type, type errorCategory, type errorCategory2, type errorSource, type event, type event10, type event11, type event12, type event13, type event14, type event15, type event16, type event17, type event18, type event19, type event2, type event20, type event21, type event22, type event23, type event24, type event3, type event4, type event5, type event6, type event7, type event8, type event9, type format, type forwardCallerId, type gapFreq, type gender, type goal, type graduationStrategy, type granularity, type incomeTier, type interactiveType, type kind, type level, type mediaType, type mediaType2, type metric, type metricType, type objective, type otp_type, parseApiError, type parseMode, type period, type permission, type platform, type platform10, type platform2, type platform3, type platform4, type platform5, type platform6, type platform7, type platform8, type platform9, type privacy_level, type replySettings, type response, type scope, type source, type source2, type source3, type spiciness, type status, type status10, type status11, type status12, type status13, type status14, type status15, type status2, type status3, type status4, type status5, type status6, type status7, type status8, type status9, type syncStatus, type syncStatus2, type timeframe, type topicType, type transcriptionLanguage, type trialGraduationStrategy, type type, type type2, type type3, type type4, type type5, type type6, type type7, type type8, type type9, type visibility };
|
package/dist/index.js
CHANGED
|
@@ -36,7 +36,7 @@ module.exports = __toCommonJS(index_exports);
|
|
|
36
36
|
// package.json
|
|
37
37
|
var package_default = {
|
|
38
38
|
name: "@getlatedev/node",
|
|
39
|
-
version: "0.2.
|
|
39
|
+
version: "0.2.474",
|
|
40
40
|
description: "The official Node.js library for the Zernio API",
|
|
41
41
|
main: "dist/index.js",
|
|
42
42
|
module: "dist/index.mjs",
|
package/dist/index.mjs
CHANGED
|
@@ -5,7 +5,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5
5
|
// package.json
|
|
6
6
|
var package_default = {
|
|
7
7
|
name: "@getlatedev/node",
|
|
8
|
-
version: "0.2.
|
|
8
|
+
version: "0.2.474",
|
|
9
9
|
description: "The official Node.js library for the Zernio API",
|
|
10
10
|
main: "dist/index.js",
|
|
11
11
|
module: "dist/index.mjs",
|
package/package.json
CHANGED
package/src/generated/sdk.gen.ts
CHANGED
|
@@ -6062,7 +6062,7 @@ export const getContactChannels = <ThrowOnError extends boolean = false>(options
|
|
|
6062
6062
|
|
|
6063
6063
|
/**
|
|
6064
6064
|
* Bulk create contacts
|
|
6065
|
-
* Import up to 1000 contacts at a time. Skips duplicates. On phone platforms (whatsapp, sms) the platformIdentifier is normalized to digits and a value that is not phone-shaped is rejected per contact and reported in errors[], not imported.
|
|
6065
|
+
* Import up to 1000 contacts at a time. Skips duplicates, merging any new tags onto the existing contact. accountId is required whenever contacts carry a platformIdentifier (or a row-level accountId); platform is always derived from the resolved account, never used to decide whether channels are created, and a mismatched platform 404s as account not found. On phone platforms (whatsapp, sms) the platformIdentifier is normalized to digits and a value that is not phone-shaped is rejected per contact and reported in errors[], not imported.
|
|
6066
6066
|
*/
|
|
6067
6067
|
export const bulkCreateContacts = <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<BulkCreateContactsData, ThrowOnError>) => {
|
|
6068
6068
|
return (options?.client ?? client).post<BulkCreateContactsResponse, BulkCreateContactsError, ThrowOnError>({
|
|
@@ -2258,14 +2258,10 @@ export type ExternalPostWebhookPost = {
|
|
|
2258
2258
|
export type source = 'external';
|
|
2259
2259
|
|
|
2260
2260
|
/**
|
|
2261
|
-
* Feed posts support up to 10 images (no mixed video+image). Stories require single media (24h, no captions). Reels require single vertical video (9:16, 3-60s).
|
|
2261
|
+
* Feed posts support up to 10 images (no mixed video+image). Stories require single media (24h, no captions). Reels require single vertical video (9:16, 3-60s). Geo-restriction is a hard visibility restriction: users outside the specified countries cannot see the post. Not supported for stories. Draft, carousel, and colored-background text options live under facebookSettings, see FacebookSettings.
|
|
2262
2262
|
*
|
|
2263
2263
|
*/
|
|
2264
2264
|
export type FacebookPlatformData = {
|
|
2265
|
-
/**
|
|
2266
|
-
* When true, creates the post as a draft in Facebook Publishing Tools instead of publishing immediately. Supported for feed posts (text, link, image, video) and reels. Not supported for stories. Drafts expire after ~30 days.
|
|
2267
|
-
*/
|
|
2268
|
-
draft?: boolean;
|
|
2269
2265
|
/**
|
|
2270
2266
|
* Set to 'story' for Page Stories (24h ephemeral) or 'reel' for Reels (short vertical video). Defaults to feed post if omitted.
|
|
2271
2267
|
*/
|
|
@@ -2275,7 +2271,7 @@ export type FacebookPlatformData = {
|
|
|
2275
2271
|
*/
|
|
2276
2272
|
title?: string;
|
|
2277
2273
|
/**
|
|
2278
|
-
* Optional first comment to post immediately after publishing (feed posts and reels, not stories). Skipped when draft is true.
|
|
2274
|
+
* Optional first comment to post immediately after publishing (feed posts and reels, not stories). Skipped when facebookSettings.draft is true.
|
|
2279
2275
|
*/
|
|
2280
2276
|
firstComment?: string;
|
|
2281
2277
|
/**
|
|
@@ -2283,34 +2279,7 @@ export type FacebookPlatformData = {
|
|
|
2283
2279
|
*/
|
|
2284
2280
|
pageId?: string;
|
|
2285
2281
|
geoRestriction?: GeoRestriction;
|
|
2286
|
-
|
|
2287
|
-
* Renders the post as a multi-link carousel (organic Page post). When set, mediaItems must be provided with the same length and all items must be images (no videos). Each cards[i] adds the click-through link and headline for the image at mediaItems[i]. Mutually exclusive with contentType=story|reel. Facebook display truncates name at ~35 chars and description at ~30 chars; longer strings are accepted but get truncated on render.
|
|
2288
|
-
*
|
|
2289
|
-
*/
|
|
2290
|
-
carouselCards?: Array<{
|
|
2291
|
-
/**
|
|
2292
|
-
* Per-card click destination (required).
|
|
2293
|
-
*/
|
|
2294
|
-
link: string;
|
|
2295
|
-
/**
|
|
2296
|
-
* Per-card headline (optional, ~35-char display).
|
|
2297
|
-
*/
|
|
2298
|
-
name?: string;
|
|
2299
|
-
/**
|
|
2300
|
-
* Per-card subhead (optional, ~30-char display).
|
|
2301
|
-
*/
|
|
2302
|
-
description?: string;
|
|
2303
|
-
}>;
|
|
2304
|
-
/**
|
|
2305
|
-
* Optional top-level "See more" destination shown on the carousel end card. Defaults to the first card's link when omitted. Only used together with carouselCards.
|
|
2306
|
-
*
|
|
2307
|
-
*/
|
|
2308
|
-
carouselLink?: string;
|
|
2309
|
-
/**
|
|
2310
|
-
* Facebook-defined preset ID that renders the post as large text on a colored background (Graph `text_format_preset_id`). Supply the raw numeric ID from Meta; we do not publish a catalog of presets and Facebook may change the available set. Pages only (ignored on personal profiles and groups) and text-only feed posts only: the request is rejected with 400 when mediaItems or carouselCards are present, when contentType is story or reel, or when content is empty. An attachment makes Facebook drop the background silently, so those are rejected up front. Length is NOT rejected: Facebook's composer stops offering a background at around 130 characters, but Meta documents no API limit, so longer content publishes and returns a warning instead. A URL detected in the content is NOT attached as a link preview while a preset is set, because a link attachment also makes Facebook drop the background.
|
|
2311
|
-
*
|
|
2312
|
-
*/
|
|
2313
|
-
textFormatPresetId?: string;
|
|
2282
|
+
facebookSettings?: FacebookSettings;
|
|
2314
2283
|
};
|
|
2315
2284
|
|
|
2316
2285
|
/**
|
|
@@ -2408,6 +2377,45 @@ export type FacebookPostEarningsResponse = {
|
|
|
2408
2377
|
*/
|
|
2409
2378
|
export type period = 'lifetime';
|
|
2410
2379
|
|
|
2380
|
+
/**
|
|
2381
|
+
* Facebook options that must be nested under platformSpecificData.facebookSettings, or sent at the request root as facebookSettings. The remaining Facebook options sit directly on platformSpecificData, see FacebookPlatformData.
|
|
2382
|
+
*
|
|
2383
|
+
*/
|
|
2384
|
+
export type FacebookSettings = {
|
|
2385
|
+
/**
|
|
2386
|
+
* When true, creates the post as a draft in Facebook Publishing Tools instead of publishing immediately. Supported for feed posts (text, link, image, video) and reels. Not supported for stories. Drafts expire after ~30 days.
|
|
2387
|
+
*/
|
|
2388
|
+
draft?: boolean;
|
|
2389
|
+
/**
|
|
2390
|
+
* Renders the post as a multi-link carousel (organic Page post). When set, mediaItems must be provided with the same length and all items must be images (no videos). Each cards[i] adds the click-through link and headline for the image at mediaItems[i]. Mutually exclusive with contentType=story|reel. Facebook display truncates name at ~35 chars and description at ~30 chars; longer strings are accepted but get truncated on render.
|
|
2391
|
+
*
|
|
2392
|
+
*/
|
|
2393
|
+
carouselCards?: Array<{
|
|
2394
|
+
/**
|
|
2395
|
+
* Per-card click destination (required).
|
|
2396
|
+
*/
|
|
2397
|
+
link: string;
|
|
2398
|
+
/**
|
|
2399
|
+
* Per-card headline (optional, ~35-char display).
|
|
2400
|
+
*/
|
|
2401
|
+
name?: string;
|
|
2402
|
+
/**
|
|
2403
|
+
* Per-card subhead (optional, ~30-char display).
|
|
2404
|
+
*/
|
|
2405
|
+
description?: string;
|
|
2406
|
+
}>;
|
|
2407
|
+
/**
|
|
2408
|
+
* Optional top-level "See more" destination shown on the carousel end card. Defaults to the first card's link when omitted. Only used together with carouselCards.
|
|
2409
|
+
*
|
|
2410
|
+
*/
|
|
2411
|
+
carouselLink?: string;
|
|
2412
|
+
/**
|
|
2413
|
+
* Facebook-defined preset ID that renders the post as large text on a colored background (Graph `text_format_preset_id`). Supply the raw numeric ID from Meta; we do not publish a catalog of presets and Facebook may change the available set. Pages only (ignored on personal profiles and groups) and text-only feed posts only: the request is rejected with 400 when mediaItems or carouselCards are present, when contentType is story or reel, or when content is empty. An attachment makes Facebook drop the background silently, so those are rejected up front. Length is NOT rejected: Facebook's composer stops offering a background at around 130 characters, but Meta documents no API limit, so longer content publishes and returns a warning instead. A URL detected in the content is NOT attached as a link preview while a preset is set, because a link attachment also makes Facebook drop the background.
|
|
2414
|
+
*
|
|
2415
|
+
*/
|
|
2416
|
+
textFormatPresetId?: string;
|
|
2417
|
+
};
|
|
2418
|
+
|
|
2411
2419
|
export type FollowerStatsResponse = {
|
|
2412
2420
|
accounts?: Array<AccountWithFollowerStats>;
|
|
2413
2421
|
stats?: {
|
|
@@ -9400,9 +9408,9 @@ export type CreatePostData = {
|
|
|
9400
9408
|
*/
|
|
9401
9409
|
tiktokSettings?: TikTokPlatformData;
|
|
9402
9410
|
/**
|
|
9403
|
-
* Root-level Facebook settings applied to all Facebook platforms. Merged into each platform's platformSpecificData, with platform-specific settings taking precedence.
|
|
9411
|
+
* Root-level Facebook settings applied to all Facebook platforms. Merged into each platform's platformSpecificData.facebookSettings, with platform-specific settings taking precedence.
|
|
9404
9412
|
*/
|
|
9405
|
-
facebookSettings?:
|
|
9413
|
+
facebookSettings?: FacebookSettings;
|
|
9406
9414
|
recycling?: RecyclingConfig;
|
|
9407
9415
|
/**
|
|
9408
9416
|
* Profile ID to schedule via queue. When provided without scheduledFor, the post is auto-assigned to the next available slot. Do not call /v1/queue/next-slot and use that time in scheduledFor, as that bypasses queue locking.
|
|
@@ -9564,11 +9572,11 @@ export type UpdatePostData = {
|
|
|
9564
9572
|
*/
|
|
9565
9573
|
tiktokSettings?: TikTokPlatformData;
|
|
9566
9574
|
/**
|
|
9567
|
-
* Root-level Facebook settings applied to all Facebook platforms. Merged into each platform's platformSpecificData, with platform-specific settings taking precedence.
|
|
9575
|
+
* Root-level Facebook settings applied to all Facebook platforms. Merged into each platform's platformSpecificData.facebookSettings, with platform-specific settings taking precedence.
|
|
9568
9576
|
*/
|
|
9569
|
-
facebookSettings?:
|
|
9577
|
+
facebookSettings?: FacebookSettings;
|
|
9570
9578
|
recycling?: RecyclingConfig;
|
|
9571
|
-
[key: string]: unknown | string | MediaItem | boolean | TikTokPlatformData |
|
|
9579
|
+
[key: string]: unknown | string | MediaItem | boolean | TikTokPlatformData | FacebookSettings | RecyclingConfig;
|
|
9572
9580
|
};
|
|
9573
9581
|
path: {
|
|
9574
9582
|
postId: string;
|
|
@@ -23184,8 +23192,14 @@ export type GetContactChannelsError = (unknown | {
|
|
|
23184
23192
|
export type BulkCreateContactsData = {
|
|
23185
23193
|
body: {
|
|
23186
23194
|
profileId: string;
|
|
23187
|
-
|
|
23188
|
-
|
|
23195
|
+
/**
|
|
23196
|
+
* Required when contacts carry channel data (platformIdentifier or a row-level accountId). Omit for a plain CRM import with no channels.
|
|
23197
|
+
*/
|
|
23198
|
+
accountId?: string;
|
|
23199
|
+
/**
|
|
23200
|
+
* Ignored when accountId is set: the platform is derived from the resolved account. Only relevant to disambiguate accountId lookup; a mismatch 404s.
|
|
23201
|
+
*/
|
|
23202
|
+
platform?: string;
|
|
23189
23203
|
contacts: Array<{
|
|
23190
23204
|
name: string;
|
|
23191
23205
|
platformIdentifier: string;
|