@getlatedev/node 0.2.438 → 0.2.439
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 +34 -22
- package/dist/index.d.ts +34 -22
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/generated/types.gen.ts +34 -21
package/dist/index.d.mts
CHANGED
|
@@ -5944,7 +5944,7 @@ type Webhook = {
|
|
|
5944
5944
|
/**
|
|
5945
5945
|
* Events subscribed to
|
|
5946
5946
|
*/
|
|
5947
|
-
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
5947
|
+
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.platform.deleted' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
5948
5948
|
/**
|
|
5949
5949
|
* Whether webhook delivery is enabled
|
|
5950
5950
|
*/
|
|
@@ -7283,15 +7283,19 @@ type WebhookPayloadPost = {
|
|
|
7283
7283
|
type event18 = 'post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled';
|
|
7284
7284
|
/**
|
|
7285
7285
|
* Webhook payload for the per-platform terminal events
|
|
7286
|
-
* `post.platform.published` and `post.platform.failed`,
|
|
7287
|
-
* `post.
|
|
7288
|
-
*
|
|
7289
|
-
*
|
|
7290
|
-
*
|
|
7291
|
-
*
|
|
7292
|
-
*
|
|
7293
|
-
*
|
|
7294
|
-
*
|
|
7286
|
+
* `post.platform.published` and `post.platform.failed`, for
|
|
7287
|
+
* `post.platform.deleted` (same shape, fired when Zernio's background
|
|
7288
|
+
* sync detects that a platform target published through Zernio was
|
|
7289
|
+
* later deleted on the platform; poll-driven ~hourly, not real-time),
|
|
7290
|
+
* and for `post.tiktok.url_resolved` (same shape, fired when a
|
|
7291
|
+
* published TikTok post's public URL is backfilled). Terminal events
|
|
7292
|
+
* fire once per platform target inside a post as that platform
|
|
7293
|
+
* reaches a terminal state (published or permanent failure). The
|
|
7294
|
+
* `post` envelope mirrors the shape of `WebhookPayloadPost` so
|
|
7295
|
+
* consumers can reuse rendering logic; the `platform` block
|
|
7296
|
+
* identifies which specific platform transitioned; the `account`
|
|
7297
|
+
* block identifies the connected social account behind that
|
|
7298
|
+
* platform-write.
|
|
7295
7299
|
*
|
|
7296
7300
|
*/
|
|
7297
7301
|
type WebhookPayloadPostPlatform = {
|
|
@@ -7299,7 +7303,7 @@ type WebhookPayloadPostPlatform = {
|
|
|
7299
7303
|
* Stable webhook event ID.
|
|
7300
7304
|
*/
|
|
7301
7305
|
id: string;
|
|
7302
|
-
event: 'post.platform.published' | 'post.platform.failed' | 'post.tiktok.url_resolved';
|
|
7306
|
+
event: 'post.platform.published' | 'post.platform.failed' | 'post.platform.deleted' | 'post.tiktok.url_resolved';
|
|
7303
7307
|
post: {
|
|
7304
7308
|
id: string;
|
|
7305
7309
|
content: string;
|
|
@@ -7341,19 +7345,23 @@ type WebhookPayloadPostPlatform = {
|
|
|
7341
7345
|
/**
|
|
7342
7346
|
* Terminal status this event fires on. Matches the event suffix.
|
|
7343
7347
|
*/
|
|
7344
|
-
status: 'published' | 'failed';
|
|
7348
|
+
status: 'published' | 'failed' | 'deleted';
|
|
7345
7349
|
/**
|
|
7346
|
-
* Platform-native post id. Present on `published`, absent on `failed`.
|
|
7350
|
+
* Platform-native post id. Present on `published` and `deleted`, absent on `failed`.
|
|
7347
7351
|
*/
|
|
7348
7352
|
platformPostId?: string;
|
|
7349
7353
|
/**
|
|
7350
|
-
* Public URL to the platform-side post. Present on `published` (when the platform exposes one and it is not a draft).
|
|
7354
|
+
* Public URL to the platform-side post. Present on `published` (when the platform exposes one and it is not a draft) and on `deleted` (when one was recorded at publish time).
|
|
7351
7355
|
*/
|
|
7352
7356
|
publishedUrl?: string;
|
|
7353
7357
|
/**
|
|
7354
|
-
* Error message from the platform. Present on `failed
|
|
7358
|
+
* Error message from the platform. Present on `failed` only.
|
|
7355
7359
|
*/
|
|
7356
7360
|
error?: string;
|
|
7361
|
+
/**
|
|
7362
|
+
* When the platform-side deletion was detected by Zernio sync (ISO 8601). Present only on `post.platform.deleted`.
|
|
7363
|
+
*/
|
|
7364
|
+
deletedAt?: string;
|
|
7357
7365
|
};
|
|
7358
7366
|
/**
|
|
7359
7367
|
* The connected social account the platform-write went through.
|
|
@@ -7366,7 +7374,11 @@ type WebhookPayloadPostPlatform = {
|
|
|
7366
7374
|
};
|
|
7367
7375
|
timestamp: string;
|
|
7368
7376
|
};
|
|
7369
|
-
type event19 = 'post.platform.published' | 'post.platform.failed' | 'post.tiktok.url_resolved';
|
|
7377
|
+
type event19 = 'post.platform.published' | 'post.platform.failed' | 'post.platform.deleted' | 'post.tiktok.url_resolved';
|
|
7378
|
+
/**
|
|
7379
|
+
* Terminal status this event fires on. Matches the event suffix.
|
|
7380
|
+
*/
|
|
7381
|
+
type status12 = 'published' | 'failed' | 'deleted';
|
|
7370
7382
|
/**
|
|
7371
7383
|
* Webhook payload for reaction received events (WhatsApp, Telegram)
|
|
7372
7384
|
*/
|
|
@@ -7541,7 +7553,7 @@ type platform10 = 'whatsapp';
|
|
|
7541
7553
|
* request before the template is actually removed.
|
|
7542
7554
|
*
|
|
7543
7555
|
*/
|
|
7544
|
-
type
|
|
7556
|
+
type status13 = 'APPROVED' | 'REJECTED' | 'PENDING' | 'PAUSED' | 'DISABLED' | 'IN_APPEAL' | 'PENDING_DELETION';
|
|
7545
7557
|
type WhatsAppBodyComponent = {
|
|
7546
7558
|
type: 'body';
|
|
7547
7559
|
/**
|
|
@@ -7661,7 +7673,7 @@ type WhatsAppSandboxSession = {
|
|
|
7661
7673
|
* list responses.
|
|
7662
7674
|
*
|
|
7663
7675
|
*/
|
|
7664
|
-
type
|
|
7676
|
+
type status14 = 'pending' | 'active';
|
|
7665
7677
|
type WhatsAppTemplateButton = {
|
|
7666
7678
|
type: 'quick_reply' | 'url' | 'phone_number' | 'otp' | 'copy_code' | 'flow' | 'mpm' | 'catalog';
|
|
7667
7679
|
/**
|
|
@@ -7772,7 +7784,7 @@ type WorkflowExecutionEvent = {
|
|
|
7772
7784
|
at?: string;
|
|
7773
7785
|
};
|
|
7774
7786
|
type action2 = 'execution_started' | 'execution_completed' | 'execution_exited' | 'execution_paused' | 'execution_resumed' | 'node_started' | 'node_completed' | 'node_failed' | 'node_skipped';
|
|
7775
|
-
type
|
|
7787
|
+
type status15 = 'success' | 'failed' | 'pending';
|
|
7776
7788
|
/**
|
|
7777
7789
|
* A node in a workflow graph. `config` shape depends on `type`.
|
|
7778
7790
|
*/
|
|
@@ -14750,7 +14762,7 @@ type CreateWebhookSettingsData = {
|
|
|
14750
14762
|
/**
|
|
14751
14763
|
* Events to subscribe to (at least one required)
|
|
14752
14764
|
*/
|
|
14753
|
-
events: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
14765
|
+
events: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.platform.deleted' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
14754
14766
|
/**
|
|
14755
14767
|
* Enable or disable webhook delivery. Defaults to `true` when omitted.
|
|
14756
14768
|
*/
|
|
@@ -14791,7 +14803,7 @@ type UpdateWebhookSettingsData = {
|
|
|
14791
14803
|
/**
|
|
14792
14804
|
* Events to subscribe to. Must contain at least one event if provided.
|
|
14793
14805
|
*/
|
|
14794
|
-
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
14806
|
+
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.platform.deleted' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
14795
14807
|
/**
|
|
14796
14808
|
* Enable or disable webhook delivery
|
|
14797
14809
|
*/
|
|
@@ -29039,4 +29051,4 @@ type CheckVerificationError = (ErrorResponse | {
|
|
|
29039
29051
|
error?: string;
|
|
29040
29052
|
} | unknown);
|
|
29041
29053
|
|
|
29042
|
-
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 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 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 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 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 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 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 ParameterLimitParam, 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 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 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 SnapchatPlatformData, type SocialAccount, type StartGoogleBusinessVerificationData, type StartGoogleBusinessVerificationError, type StartGoogleBusinessVerificationResponse, type StartSmsRegistrationData, type StartSmsRegistrationError, type StartSmsRegistrationResponse, 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 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 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 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 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 };
|
|
29054
|
+
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 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 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 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 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 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 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 ParameterLimitParam, 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 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 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 SnapchatPlatformData, type SocialAccount, type StartGoogleBusinessVerificationData, type StartGoogleBusinessVerificationError, type StartGoogleBusinessVerificationResponse, type StartSmsRegistrationData, type StartSmsRegistrationError, type StartSmsRegistrationResponse, 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 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 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 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
|
@@ -5944,7 +5944,7 @@ type Webhook = {
|
|
|
5944
5944
|
/**
|
|
5945
5945
|
* Events subscribed to
|
|
5946
5946
|
*/
|
|
5947
|
-
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
5947
|
+
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.platform.deleted' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
5948
5948
|
/**
|
|
5949
5949
|
* Whether webhook delivery is enabled
|
|
5950
5950
|
*/
|
|
@@ -7283,15 +7283,19 @@ type WebhookPayloadPost = {
|
|
|
7283
7283
|
type event18 = 'post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled';
|
|
7284
7284
|
/**
|
|
7285
7285
|
* Webhook payload for the per-platform terminal events
|
|
7286
|
-
* `post.platform.published` and `post.platform.failed`,
|
|
7287
|
-
* `post.
|
|
7288
|
-
*
|
|
7289
|
-
*
|
|
7290
|
-
*
|
|
7291
|
-
*
|
|
7292
|
-
*
|
|
7293
|
-
*
|
|
7294
|
-
*
|
|
7286
|
+
* `post.platform.published` and `post.platform.failed`, for
|
|
7287
|
+
* `post.platform.deleted` (same shape, fired when Zernio's background
|
|
7288
|
+
* sync detects that a platform target published through Zernio was
|
|
7289
|
+
* later deleted on the platform; poll-driven ~hourly, not real-time),
|
|
7290
|
+
* and for `post.tiktok.url_resolved` (same shape, fired when a
|
|
7291
|
+
* published TikTok post's public URL is backfilled). Terminal events
|
|
7292
|
+
* fire once per platform target inside a post as that platform
|
|
7293
|
+
* reaches a terminal state (published or permanent failure). The
|
|
7294
|
+
* `post` envelope mirrors the shape of `WebhookPayloadPost` so
|
|
7295
|
+
* consumers can reuse rendering logic; the `platform` block
|
|
7296
|
+
* identifies which specific platform transitioned; the `account`
|
|
7297
|
+
* block identifies the connected social account behind that
|
|
7298
|
+
* platform-write.
|
|
7295
7299
|
*
|
|
7296
7300
|
*/
|
|
7297
7301
|
type WebhookPayloadPostPlatform = {
|
|
@@ -7299,7 +7303,7 @@ type WebhookPayloadPostPlatform = {
|
|
|
7299
7303
|
* Stable webhook event ID.
|
|
7300
7304
|
*/
|
|
7301
7305
|
id: string;
|
|
7302
|
-
event: 'post.platform.published' | 'post.platform.failed' | 'post.tiktok.url_resolved';
|
|
7306
|
+
event: 'post.platform.published' | 'post.platform.failed' | 'post.platform.deleted' | 'post.tiktok.url_resolved';
|
|
7303
7307
|
post: {
|
|
7304
7308
|
id: string;
|
|
7305
7309
|
content: string;
|
|
@@ -7341,19 +7345,23 @@ type WebhookPayloadPostPlatform = {
|
|
|
7341
7345
|
/**
|
|
7342
7346
|
* Terminal status this event fires on. Matches the event suffix.
|
|
7343
7347
|
*/
|
|
7344
|
-
status: 'published' | 'failed';
|
|
7348
|
+
status: 'published' | 'failed' | 'deleted';
|
|
7345
7349
|
/**
|
|
7346
|
-
* Platform-native post id. Present on `published`, absent on `failed`.
|
|
7350
|
+
* Platform-native post id. Present on `published` and `deleted`, absent on `failed`.
|
|
7347
7351
|
*/
|
|
7348
7352
|
platformPostId?: string;
|
|
7349
7353
|
/**
|
|
7350
|
-
* Public URL to the platform-side post. Present on `published` (when the platform exposes one and it is not a draft).
|
|
7354
|
+
* Public URL to the platform-side post. Present on `published` (when the platform exposes one and it is not a draft) and on `deleted` (when one was recorded at publish time).
|
|
7351
7355
|
*/
|
|
7352
7356
|
publishedUrl?: string;
|
|
7353
7357
|
/**
|
|
7354
|
-
* Error message from the platform. Present on `failed
|
|
7358
|
+
* Error message from the platform. Present on `failed` only.
|
|
7355
7359
|
*/
|
|
7356
7360
|
error?: string;
|
|
7361
|
+
/**
|
|
7362
|
+
* When the platform-side deletion was detected by Zernio sync (ISO 8601). Present only on `post.platform.deleted`.
|
|
7363
|
+
*/
|
|
7364
|
+
deletedAt?: string;
|
|
7357
7365
|
};
|
|
7358
7366
|
/**
|
|
7359
7367
|
* The connected social account the platform-write went through.
|
|
@@ -7366,7 +7374,11 @@ type WebhookPayloadPostPlatform = {
|
|
|
7366
7374
|
};
|
|
7367
7375
|
timestamp: string;
|
|
7368
7376
|
};
|
|
7369
|
-
type event19 = 'post.platform.published' | 'post.platform.failed' | 'post.tiktok.url_resolved';
|
|
7377
|
+
type event19 = 'post.platform.published' | 'post.platform.failed' | 'post.platform.deleted' | 'post.tiktok.url_resolved';
|
|
7378
|
+
/**
|
|
7379
|
+
* Terminal status this event fires on. Matches the event suffix.
|
|
7380
|
+
*/
|
|
7381
|
+
type status12 = 'published' | 'failed' | 'deleted';
|
|
7370
7382
|
/**
|
|
7371
7383
|
* Webhook payload for reaction received events (WhatsApp, Telegram)
|
|
7372
7384
|
*/
|
|
@@ -7541,7 +7553,7 @@ type platform10 = 'whatsapp';
|
|
|
7541
7553
|
* request before the template is actually removed.
|
|
7542
7554
|
*
|
|
7543
7555
|
*/
|
|
7544
|
-
type
|
|
7556
|
+
type status13 = 'APPROVED' | 'REJECTED' | 'PENDING' | 'PAUSED' | 'DISABLED' | 'IN_APPEAL' | 'PENDING_DELETION';
|
|
7545
7557
|
type WhatsAppBodyComponent = {
|
|
7546
7558
|
type: 'body';
|
|
7547
7559
|
/**
|
|
@@ -7661,7 +7673,7 @@ type WhatsAppSandboxSession = {
|
|
|
7661
7673
|
* list responses.
|
|
7662
7674
|
*
|
|
7663
7675
|
*/
|
|
7664
|
-
type
|
|
7676
|
+
type status14 = 'pending' | 'active';
|
|
7665
7677
|
type WhatsAppTemplateButton = {
|
|
7666
7678
|
type: 'quick_reply' | 'url' | 'phone_number' | 'otp' | 'copy_code' | 'flow' | 'mpm' | 'catalog';
|
|
7667
7679
|
/**
|
|
@@ -7772,7 +7784,7 @@ type WorkflowExecutionEvent = {
|
|
|
7772
7784
|
at?: string;
|
|
7773
7785
|
};
|
|
7774
7786
|
type action2 = 'execution_started' | 'execution_completed' | 'execution_exited' | 'execution_paused' | 'execution_resumed' | 'node_started' | 'node_completed' | 'node_failed' | 'node_skipped';
|
|
7775
|
-
type
|
|
7787
|
+
type status15 = 'success' | 'failed' | 'pending';
|
|
7776
7788
|
/**
|
|
7777
7789
|
* A node in a workflow graph. `config` shape depends on `type`.
|
|
7778
7790
|
*/
|
|
@@ -14750,7 +14762,7 @@ type CreateWebhookSettingsData = {
|
|
|
14750
14762
|
/**
|
|
14751
14763
|
* Events to subscribe to (at least one required)
|
|
14752
14764
|
*/
|
|
14753
|
-
events: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
14765
|
+
events: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.platform.deleted' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
14754
14766
|
/**
|
|
14755
14767
|
* Enable or disable webhook delivery. Defaults to `true` when omitted.
|
|
14756
14768
|
*/
|
|
@@ -14791,7 +14803,7 @@ type UpdateWebhookSettingsData = {
|
|
|
14791
14803
|
/**
|
|
14792
14804
|
* Events to subscribe to. Must contain at least one event if provided.
|
|
14793
14805
|
*/
|
|
14794
|
-
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
14806
|
+
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.platform.deleted' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
14795
14807
|
/**
|
|
14796
14808
|
* Enable or disable webhook delivery
|
|
14797
14809
|
*/
|
|
@@ -29039,4 +29051,4 @@ type CheckVerificationError = (ErrorResponse | {
|
|
|
29039
29051
|
error?: string;
|
|
29040
29052
|
} | unknown);
|
|
29041
29053
|
|
|
29042
|
-
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 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 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 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 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 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 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 ParameterLimitParam, 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 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 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 SnapchatPlatformData, type SocialAccount, type StartGoogleBusinessVerificationData, type StartGoogleBusinessVerificationError, type StartGoogleBusinessVerificationResponse, type StartSmsRegistrationData, type StartSmsRegistrationError, type StartSmsRegistrationResponse, 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 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 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 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 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 };
|
|
29054
|
+
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 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 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 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 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 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 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 ParameterLimitParam, 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 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 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 SnapchatPlatformData, type SocialAccount, type StartGoogleBusinessVerificationData, type StartGoogleBusinessVerificationError, type StartGoogleBusinessVerificationResponse, type StartSmsRegistrationData, type StartSmsRegistrationError, type StartSmsRegistrationResponse, 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 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 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 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.439",
|
|
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.439",
|
|
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
|
@@ -4966,7 +4966,7 @@ export type Webhook = {
|
|
|
4966
4966
|
/**
|
|
4967
4967
|
* Events subscribed to
|
|
4968
4968
|
*/
|
|
4969
|
-
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
4969
|
+
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.platform.deleted' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
4970
4970
|
/**
|
|
4971
4971
|
* Whether webhook delivery is enabled
|
|
4972
4972
|
*/
|
|
@@ -6354,15 +6354,19 @@ export type event18 = 'post.scheduled' | 'post.published' | 'post.failed' | 'pos
|
|
|
6354
6354
|
|
|
6355
6355
|
/**
|
|
6356
6356
|
* Webhook payload for the per-platform terminal events
|
|
6357
|
-
* `post.platform.published` and `post.platform.failed`,
|
|
6358
|
-
* `post.
|
|
6359
|
-
*
|
|
6360
|
-
*
|
|
6361
|
-
*
|
|
6362
|
-
*
|
|
6363
|
-
*
|
|
6364
|
-
*
|
|
6365
|
-
*
|
|
6357
|
+
* `post.platform.published` and `post.platform.failed`, for
|
|
6358
|
+
* `post.platform.deleted` (same shape, fired when Zernio's background
|
|
6359
|
+
* sync detects that a platform target published through Zernio was
|
|
6360
|
+
* later deleted on the platform; poll-driven ~hourly, not real-time),
|
|
6361
|
+
* and for `post.tiktok.url_resolved` (same shape, fired when a
|
|
6362
|
+
* published TikTok post's public URL is backfilled). Terminal events
|
|
6363
|
+
* fire once per platform target inside a post as that platform
|
|
6364
|
+
* reaches a terminal state (published or permanent failure). The
|
|
6365
|
+
* `post` envelope mirrors the shape of `WebhookPayloadPost` so
|
|
6366
|
+
* consumers can reuse rendering logic; the `platform` block
|
|
6367
|
+
* identifies which specific platform transitioned; the `account`
|
|
6368
|
+
* block identifies the connected social account behind that
|
|
6369
|
+
* platform-write.
|
|
6366
6370
|
*
|
|
6367
6371
|
*/
|
|
6368
6372
|
export type WebhookPayloadPostPlatform = {
|
|
@@ -6370,7 +6374,7 @@ export type WebhookPayloadPostPlatform = {
|
|
|
6370
6374
|
* Stable webhook event ID.
|
|
6371
6375
|
*/
|
|
6372
6376
|
id: string;
|
|
6373
|
-
event: 'post.platform.published' | 'post.platform.failed' | 'post.tiktok.url_resolved';
|
|
6377
|
+
event: 'post.platform.published' | 'post.platform.failed' | 'post.platform.deleted' | 'post.tiktok.url_resolved';
|
|
6374
6378
|
post: {
|
|
6375
6379
|
id: string;
|
|
6376
6380
|
content: string;
|
|
@@ -6412,19 +6416,23 @@ export type WebhookPayloadPostPlatform = {
|
|
|
6412
6416
|
/**
|
|
6413
6417
|
* Terminal status this event fires on. Matches the event suffix.
|
|
6414
6418
|
*/
|
|
6415
|
-
status: 'published' | 'failed';
|
|
6419
|
+
status: 'published' | 'failed' | 'deleted';
|
|
6416
6420
|
/**
|
|
6417
|
-
* Platform-native post id. Present on `published`, absent on `failed`.
|
|
6421
|
+
* Platform-native post id. Present on `published` and `deleted`, absent on `failed`.
|
|
6418
6422
|
*/
|
|
6419
6423
|
platformPostId?: string;
|
|
6420
6424
|
/**
|
|
6421
|
-
* Public URL to the platform-side post. Present on `published` (when the platform exposes one and it is not a draft).
|
|
6425
|
+
* Public URL to the platform-side post. Present on `published` (when the platform exposes one and it is not a draft) and on `deleted` (when one was recorded at publish time).
|
|
6422
6426
|
*/
|
|
6423
6427
|
publishedUrl?: string;
|
|
6424
6428
|
/**
|
|
6425
|
-
* Error message from the platform. Present on `failed
|
|
6429
|
+
* Error message from the platform. Present on `failed` only.
|
|
6426
6430
|
*/
|
|
6427
6431
|
error?: string;
|
|
6432
|
+
/**
|
|
6433
|
+
* When the platform-side deletion was detected by Zernio sync (ISO 8601). Present only on `post.platform.deleted`.
|
|
6434
|
+
*/
|
|
6435
|
+
deletedAt?: string;
|
|
6428
6436
|
};
|
|
6429
6437
|
/**
|
|
6430
6438
|
* The connected social account the platform-write went through.
|
|
@@ -6438,7 +6446,12 @@ export type WebhookPayloadPostPlatform = {
|
|
|
6438
6446
|
timestamp: string;
|
|
6439
6447
|
};
|
|
6440
6448
|
|
|
6441
|
-
export type event19 = 'post.platform.published' | 'post.platform.failed' | 'post.tiktok.url_resolved';
|
|
6449
|
+
export type event19 = 'post.platform.published' | 'post.platform.failed' | 'post.platform.deleted' | 'post.tiktok.url_resolved';
|
|
6450
|
+
|
|
6451
|
+
/**
|
|
6452
|
+
* Terminal status this event fires on. Matches the event suffix.
|
|
6453
|
+
*/
|
|
6454
|
+
export type status12 = 'published' | 'failed' | 'deleted';
|
|
6442
6455
|
|
|
6443
6456
|
/**
|
|
6444
6457
|
* Webhook payload for reaction received events (WhatsApp, Telegram)
|
|
@@ -6626,7 +6639,7 @@ export type platform10 = 'whatsapp';
|
|
|
6626
6639
|
* request before the template is actually removed.
|
|
6627
6640
|
*
|
|
6628
6641
|
*/
|
|
6629
|
-
export type
|
|
6642
|
+
export type status13 = 'APPROVED' | 'REJECTED' | 'PENDING' | 'PAUSED' | 'DISABLED' | 'IN_APPEAL' | 'PENDING_DELETION';
|
|
6630
6643
|
|
|
6631
6644
|
export type WhatsAppBodyComponent = {
|
|
6632
6645
|
type: 'body';
|
|
@@ -6756,7 +6769,7 @@ export type WhatsAppSandboxSession = {
|
|
|
6756
6769
|
* list responses.
|
|
6757
6770
|
*
|
|
6758
6771
|
*/
|
|
6759
|
-
export type
|
|
6772
|
+
export type status14 = 'pending' | 'active';
|
|
6760
6773
|
|
|
6761
6774
|
export type WhatsAppTemplateButton = {
|
|
6762
6775
|
type: 'quick_reply' | 'url' | 'phone_number' | 'otp' | 'copy_code' | 'flow' | 'mpm' | 'catalog';
|
|
@@ -6875,7 +6888,7 @@ export type WorkflowExecutionEvent = {
|
|
|
6875
6888
|
|
|
6876
6889
|
export type action2 = 'execution_started' | 'execution_completed' | 'execution_exited' | 'execution_paused' | 'execution_resumed' | 'node_started' | 'node_completed' | 'node_failed' | 'node_skipped';
|
|
6877
6890
|
|
|
6878
|
-
export type
|
|
6891
|
+
export type status15 = 'success' | 'failed' | 'pending';
|
|
6879
6892
|
|
|
6880
6893
|
/**
|
|
6881
6894
|
* A node in a workflow graph. `config` shape depends on `type`.
|
|
@@ -14385,7 +14398,7 @@ export type CreateWebhookSettingsData = {
|
|
|
14385
14398
|
/**
|
|
14386
14399
|
* Events to subscribe to (at least one required)
|
|
14387
14400
|
*/
|
|
14388
|
-
events: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
14401
|
+
events: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.platform.deleted' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
14389
14402
|
/**
|
|
14390
14403
|
* Enable or disable webhook delivery. Defaults to `true` when omitted.
|
|
14391
14404
|
*/
|
|
@@ -14429,7 +14442,7 @@ export type UpdateWebhookSettingsData = {
|
|
|
14429
14442
|
/**
|
|
14430
14443
|
* Events to subscribe to. Must contain at least one event if provided.
|
|
14431
14444
|
*/
|
|
14432
|
-
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
14445
|
+
events?: Array<('post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'post.platform.published' | 'post.platform.failed' | 'post.platform.deleted' | 'post.tiktok.url_resolved' | 'post.external.created' | 'post.external.updated' | 'post.external.deleted' | 'account.connected' | 'account.disconnected' | 'account.ads.initial_sync_completed' | 'message.received' | 'conversation.started' | 'call.received' | 'call.ended' | 'call.failed' | 'call.permission_request' | 'message.sent' | 'message.edited' | 'message.deleted' | 'message.delivered' | 'message.read' | 'message.failed' | 'reaction.received' | 'comment.received' | 'review.new' | 'review.updated' | 'lead.received' | 'ad.status_changed' | 'whatsapp.template.status_updated' | 'whatsapp.automatic_event' | 'whatsapp.number.activated' | 'whatsapp.number.declined' | 'whatsapp.number.action_required' | 'whatsapp.number.verification_required' | 'whatsapp.number.suspended' | 'whatsapp.number.reactivated' | 'whatsapp.number.released' | 'whatsapp.number.kyc_submitted' | 'verification.approved' | 'verification.failed')>;
|
|
14433
14446
|
/**
|
|
14434
14447
|
* Enable or disable webhook delivery
|
|
14435
14448
|
*/
|