@getbrevo/brevo 2.2.0 → 2.3.0
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/.openapi-generator/FILES +113 -24
- package/.openapi-generator/VERSION +1 -1
- package/README.md +5 -5
- package/api/accountApi.ts +6 -1
- package/api/apis.ts +9 -3
- package/api/balanceApi.ts +1725 -0
- package/api/companiesApi.ts +247 -69
- package/api/contactsApi.ts +119 -25
- package/api/dealsApi.ts +181 -1
- package/api/ecommerceApi.ts +29 -14
- package/api/emailCampaignsApi.ts +2 -2
- package/api/masterAccountApi.ts +233 -4
- package/api/programApi.ts +992 -0
- package/api/rewardApi.ts +975 -0
- package/api/tierApi.ts +952 -0
- package/api/transactionalEmailsApi.ts +78 -1
- package/api/transactionalSMSApi.ts +60 -0
- package/api/userApi.ts +2 -2
- package/dist/api/accountApi.d.ts +1 -2
- package/dist/api/accountApi.js +9 -5
- package/dist/api/accountApi.js.map +1 -1
- package/dist/api/apis.d.ts +9 -4
- package/dist/api/apis.js +9 -3
- package/dist/api/apis.js.map +1 -1
- package/dist/api/balanceApi.d.ts +187 -0
- package/dist/api/balanceApi.js +1434 -0
- package/dist/api/balanceApi.js.map +1 -0
- package/dist/api/companiesApi.d.ts +29 -10
- package/dist/api/companiesApi.js +204 -55
- package/dist/api/companiesApi.js.map +1 -1
- package/dist/api/contactsApi.d.ts +13 -6
- package/dist/api/contactsApi.js +142 -65
- package/dist/api/contactsApi.js.map +1 -1
- package/dist/api/conversationsApi.d.ts +0 -1
- package/dist/api/conversationsApi.js +19 -19
- package/dist/api/conversationsApi.js.map +1 -1
- package/dist/api/couponsApi.d.ts +0 -1
- package/dist/api/couponsApi.js +11 -11
- package/dist/api/couponsApi.js.map +1 -1
- package/dist/api/dealsApi.d.ts +21 -2
- package/dist/api/dealsApi.js +170 -21
- package/dist/api/dealsApi.js.map +1 -1
- package/dist/api/domainsApi.d.ts +0 -1
- package/dist/api/domainsApi.js +11 -11
- package/dist/api/domainsApi.js.map +1 -1
- package/dist/api/ecommerceApi.d.ts +3 -4
- package/dist/api/ecommerceApi.js +45 -36
- package/dist/api/ecommerceApi.js.map +1 -1
- package/dist/api/emailCampaignsApi.d.ts +1 -2
- package/dist/api/emailCampaignsApi.js +28 -28
- package/dist/api/emailCampaignsApi.js.map +1 -1
- package/dist/api/eventsApi.d.ts +0 -1
- package/dist/api/eventsApi.js +3 -3
- package/dist/api/eventsApi.js.map +1 -1
- package/dist/api/externalFeedsApi.d.ts +0 -1
- package/dist/api/externalFeedsApi.js +11 -11
- package/dist/api/externalFeedsApi.js.map +1 -1
- package/dist/api/filesApi.d.ts +0 -1
- package/dist/api/filesApi.js +11 -11
- package/dist/api/filesApi.js.map +1 -1
- package/dist/api/inboundParsingApi.d.ts +0 -2
- package/dist/api/inboundParsingApi.js +7 -7
- package/dist/api/inboundParsingApi.js.map +1 -1
- package/dist/api/masterAccountApi.d.ts +27 -2
- package/dist/api/masterAccountApi.js +250 -49
- package/dist/api/masterAccountApi.js.map +1 -1
- package/dist/api/notesApi.d.ts +0 -1
- package/dist/api/notesApi.js +11 -11
- package/dist/api/notesApi.js.map +1 -1
- package/dist/api/paymentsApi.d.ts +0 -1
- package/dist/api/paymentsApi.js +7 -7
- package/dist/api/paymentsApi.js.map +1 -1
- package/dist/api/processApi.d.ts +0 -1
- package/dist/api/processApi.js +5 -5
- package/dist/api/processApi.js.map +1 -1
- package/dist/api/programApi.d.ts +125 -0
- package/dist/api/programApi.js +847 -0
- package/dist/api/programApi.js.map +1 -0
- package/dist/api/resellerApi.d.ts +0 -1
- package/dist/api/resellerApi.js +33 -33
- package/dist/api/resellerApi.js.map +1 -1
- package/dist/api/rewardApi.d.ts +119 -0
- package/dist/api/rewardApi.js +814 -0
- package/dist/api/rewardApi.js.map +1 -0
- package/dist/api/sMSCampaignsApi.d.ts +0 -1
- package/dist/api/sMSCampaignsApi.js +21 -21
- package/dist/api/sMSCampaignsApi.js.map +1 -1
- package/dist/api/sendersApi.d.ts +0 -1
- package/dist/api/sendersApi.js +15 -15
- package/dist/api/sendersApi.js.map +1 -1
- package/dist/api/tasksApi.d.ts +0 -1
- package/dist/api/tasksApi.js +13 -13
- package/dist/api/tasksApi.js.map +1 -1
- package/dist/api/tierApi.d.ts +116 -0
- package/dist/api/tierApi.js +801 -0
- package/dist/api/tierApi.js.map +1 -0
- package/dist/api/transactionalEmailsApi.d.ts +10 -1
- package/dist/api/transactionalEmailsApi.js +112 -45
- package/dist/api/transactionalEmailsApi.js.map +1 -1
- package/dist/api/transactionalSMSApi.d.ts +8 -1
- package/dist/api/transactionalSMSApi.js +64 -9
- package/dist/api/transactionalSMSApi.js.map +1 -1
- package/dist/api/transactionalWhatsAppApi.d.ts +0 -1
- package/dist/api/transactionalWhatsAppApi.js +5 -5
- package/dist/api/transactionalWhatsAppApi.js.map +1 -1
- package/dist/api/userApi.d.ts +0 -1
- package/dist/api/userApi.js +13 -13
- package/dist/api/userApi.js.map +1 -1
- package/dist/api/webhooksApi.d.ts +0 -1
- package/dist/api/webhooksApi.js +13 -13
- package/dist/api/webhooksApi.js.map +1 -1
- package/dist/api/whatsAppCampaignsApi.d.ts +0 -1
- package/dist/api/whatsAppCampaignsApi.js +19 -19
- package/dist/api/whatsAppCampaignsApi.js.map +1 -1
- package/dist/base.d.ts +66 -0
- package/dist/base.js +65 -0
- package/dist/base.js.map +1 -0
- package/dist/common.d.ts +65 -0
- package/dist/common.js +161 -0
- package/dist/common.js.map +1 -0
- package/dist/configuration.d.ts +91 -0
- package/dist/configuration.js +44 -0
- package/dist/configuration.js.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +31 -0
- package/dist/index.js.map +1 -0
- package/dist/model/abTestCampaignResult.js +1 -1
- package/dist/model/abTestCampaignResult.js.map +1 -1
- package/dist/model/addContactToList.d.ts +1 -0
- package/dist/model/addContactToList.js +5 -0
- package/dist/model/addContactToList.js.map +1 -1
- package/dist/model/addSubscriptionMemberPayload.d.ts +16 -0
- package/dist/model/addSubscriptionMemberPayload.js +28 -0
- package/dist/model/addSubscriptionMemberPayload.js.map +1 -0
- package/dist/model/aggregateBalance.d.ts +15 -0
- package/dist/model/aggregateBalance.js +23 -0
- package/dist/model/aggregateBalance.js.map +1 -0
- package/dist/model/balance.d.ts +22 -0
- package/dist/model/balance.js +58 -0
- package/dist/model/balance.js.map +1 -0
- package/dist/model/balanceDataPerContact.d.ts +17 -0
- package/dist/model/balanceDataPerContact.js +33 -0
- package/dist/model/balanceDataPerContact.js.map +1 -0
- package/dist/model/balanceDefinition.d.ts +42 -0
- package/dist/model/balanceDefinition.js +121 -0
- package/dist/model/balanceDefinition.js.map +1 -0
- package/dist/model/balanceDefinitionPage.d.ts +15 -0
- package/dist/model/balanceDefinitionPage.js +18 -0
- package/dist/model/balanceDefinitionPage.js.map +1 -0
- package/dist/model/balanceLimit.d.ts +23 -0
- package/dist/model/balanceLimit.js +63 -0
- package/dist/model/balanceLimit.js.map +1 -0
- package/dist/model/balanceOrder.d.ts +27 -0
- package/dist/model/balanceOrder.js +73 -0
- package/dist/model/balanceOrder.js.map +1 -0
- package/dist/model/cart.js +1 -1
- package/dist/model/cart.js.map +1 -1
- package/dist/model/companiesIdPatchRequest.d.ts +2 -0
- package/dist/model/companiesIdPatchRequest.js +10 -0
- package/dist/model/companiesIdPatchRequest.js.map +1 -1
- package/dist/model/companiesImportPost200Response.d.ts +14 -0
- package/dist/model/companiesImportPost200Response.js +18 -0
- package/dist/model/companiesImportPost200Response.js.map +1 -0
- package/dist/model/companiesImportPost400Response.d.ts +14 -0
- package/dist/model/companiesImportPost400Response.js +18 -0
- package/dist/model/companiesImportPost400Response.js.map +1 -0
- package/dist/model/contactBalancesResp.d.ts +18 -0
- package/dist/model/contactBalancesResp.js +33 -0
- package/dist/model/contactBalancesResp.js.map +1 -0
- package/dist/model/contactErrorModel.d.ts +27 -0
- package/dist/model/contactErrorModel.js +40 -0
- package/dist/model/contactErrorModel.js.map +1 -0
- package/dist/model/conversationsMessage.d.ts +20 -0
- package/dist/model/conversationsMessage.js +76 -1
- package/dist/model/conversationsMessage.js.map +1 -1
- package/dist/model/conversationsMessageAttachmentsInner.d.ts +19 -0
- package/dist/model/conversationsMessageAttachmentsInner.js +43 -0
- package/dist/model/conversationsMessageAttachmentsInner.js.map +1 -0
- package/dist/model/conversationsMessageForwardedToSourceStatus.d.ts +15 -0
- package/dist/model/conversationsMessageForwardedToSourceStatus.js +23 -0
- package/dist/model/conversationsMessageForwardedToSourceStatus.js.map +1 -0
- package/dist/model/conversationsMessageFrom.d.ts +15 -0
- package/dist/model/conversationsMessageFrom.js +23 -0
- package/dist/model/conversationsMessageFrom.js.map +1 -0
- package/dist/model/conversationsMessageReplyTo.d.ts +15 -0
- package/dist/model/conversationsMessageReplyTo.js +23 -0
- package/dist/model/conversationsMessageReplyTo.js.map +1 -0
- package/dist/model/conversationsMessageToInner.d.ts +15 -0
- package/dist/model/conversationsMessageToInner.js +23 -0
- package/dist/model/conversationsMessageToInner.js.map +1 -0
- package/dist/model/conversionSourceMetrics.d.ts +5 -2
- package/dist/model/conversionSourceMetrics.js +5 -2
- package/dist/model/conversionSourceMetrics.js.map +1 -1
- package/dist/model/corporateUserEmailPermissionsPutRequest.d.ts +16 -0
- package/dist/model/corporateUserEmailPermissionsPutRequest.js +23 -0
- package/dist/model/corporateUserEmailPermissionsPutRequest.js.map +1 -0
- package/dist/model/corporateUserEmailPermissionsPutRequestPrivilegesInner.d.ts +38 -0
- package/dist/model/corporateUserEmailPermissionsPutRequestPrivilegesInner.js +48 -0
- package/dist/model/corporateUserEmailPermissionsPutRequestPrivilegesInner.js.map +1 -0
- package/dist/model/createAttribute.d.ts +3 -1
- package/dist/model/createAttribute.js +7 -1
- package/dist/model/createAttribute.js.map +1 -1
- package/dist/model/createBalanceDefinitionPayload.d.ts +75 -0
- package/dist/model/createBalanceDefinitionPayload.js +145 -0
- package/dist/model/createBalanceDefinitionPayload.js.map +1 -0
- package/dist/model/createBalanceLimitPayload.d.ts +35 -0
- package/dist/model/createBalanceLimitPayload.js +62 -0
- package/dist/model/createBalanceLimitPayload.js.map +1 -0
- package/dist/model/createBalancePayload.d.ts +14 -0
- package/dist/model/createBalancePayload.js +18 -0
- package/dist/model/createBalancePayload.js.map +1 -0
- package/dist/model/createChild.js +1 -1
- package/dist/model/createChild.js.map +1 -1
- package/dist/model/createContact.d.ts +3 -1
- package/dist/model/createContact.js +1 -1
- package/dist/model/createContact.js.map +1 -1
- package/dist/model/createDoiContact.d.ts +3 -1
- package/dist/model/createDoiContact.js +1 -1
- package/dist/model/createDoiContact.js.map +1 -1
- package/dist/model/createEmailCampaign.d.ts +2 -0
- package/dist/model/createEmailCampaign.js +6 -1
- package/dist/model/createEmailCampaign.js.map +1 -1
- package/dist/model/createEmailCampaignEmailExpirationDate.d.ts +22 -0
- package/dist/model/createEmailCampaignEmailExpirationDate.js +31 -0
- package/dist/model/createEmailCampaignEmailExpirationDate.js.map +1 -0
- package/dist/model/createEmailCampaignRecipients.d.ts +1 -0
- package/dist/model/createEmailCampaignRecipients.js +5 -0
- package/dist/model/createEmailCampaignRecipients.js.map +1 -1
- package/dist/model/createExternalFeed.js +1 -1
- package/dist/model/createExternalFeed.js.map +1 -1
- package/dist/model/createLoyaltyProgramPayload.d.ts +19 -0
- package/dist/model/createLoyaltyProgramPayload.js +33 -0
- package/dist/model/createLoyaltyProgramPayload.js.map +1 -0
- package/dist/model/createOrderPayload.d.ts +22 -0
- package/dist/model/createOrderPayload.js +48 -0
- package/dist/model/createOrderPayload.js.map +1 -0
- package/dist/model/createSmsCampaign.js.map +1 -1
- package/dist/model/createSubAccount.js +1 -1
- package/dist/model/createSubAccount.js.map +1 -1
- package/dist/model/createSubscriptionPayload.d.ts +16 -0
- package/dist/model/createSubscriptionPayload.js +28 -0
- package/dist/model/createSubscriptionPayload.js.map +1 -0
- package/dist/model/createSubscriptionResponse.d.ts +20 -0
- package/dist/model/createSubscriptionResponse.js +48 -0
- package/dist/model/createSubscriptionResponse.js.map +1 -0
- package/dist/model/createTierGroupRequest.d.ts +29 -0
- package/dist/model/createTierGroupRequest.js +51 -0
- package/dist/model/createTierGroupRequest.js.map +1 -0
- package/dist/model/createTransactionPayload.d.ts +24 -0
- package/dist/model/createTransactionPayload.js +58 -0
- package/dist/model/createTransactionPayload.js.map +1 -0
- package/dist/model/createUpdateCategory.js.map +1 -1
- package/dist/model/createUpdateProduct.js.map +1 -1
- package/dist/model/createWebhook.d.ts +5 -0
- package/dist/model/createWebhook.js +12 -1
- package/dist/model/createWebhook.js.map +1 -1
- package/dist/model/createWhatsAppTemplate.js +1 -1
- package/dist/model/createWhatsAppTemplate.js.map +1 -1
- package/dist/model/crmAttributesPost200Response.d.ts +14 -0
- package/dist/model/crmAttributesPost200Response.js +18 -0
- package/dist/model/crmAttributesPost200Response.js.map +1 -0
- package/dist/model/crmAttributesPostRequest.d.ts +33 -0
- package/dist/model/crmAttributesPostRequest.js +55 -0
- package/dist/model/crmAttributesPostRequest.js.map +1 -0
- package/dist/model/crmDealsIdPatchRequest.d.ts +2 -0
- package/dist/model/crmDealsIdPatchRequest.js +10 -0
- package/dist/model/crmDealsIdPatchRequest.js.map +1 -1
- package/dist/model/ecommerceAttributionMetricsConversionSourceConversionSourceIdGet200Response.d.ts +5 -2
- package/dist/model/ecommerceAttributionMetricsConversionSourceConversionSourceIdGet200Response.js +5 -2
- package/dist/model/ecommerceAttributionMetricsConversionSourceConversionSourceIdGet200Response.js.map +1 -1
- package/dist/model/emailExportRecipients.js +1 -1
- package/dist/model/emailExportRecipients.js.map +1 -1
- package/dist/model/errorModel.d.ts +0 -1
- package/dist/model/errorModel.js +1 -2
- package/dist/model/errorModel.js.map +1 -1
- package/dist/model/errorResponse.d.ts +14 -0
- package/dist/model/errorResponse.js +18 -0
- package/dist/model/errorResponse.js.map +1 -0
- package/dist/model/exportWebhooksHistory.js +1 -1
- package/dist/model/exportWebhooksHistory.js.map +1 -1
- package/dist/model/fetchTemplatePreview.d.ts +16 -0
- package/dist/model/fetchTemplatePreview.js +28 -0
- package/dist/model/fetchTemplatePreview.js.map +1 -0
- package/dist/model/getAccountAllOfPlan.d.ts +1 -3
- package/dist/model/getAccountAllOfPlan.js +1 -7
- package/dist/model/getAccountAllOfPlan.js.map +1 -1
- package/dist/model/getAllExternalFeedsFeedsInner.js +1 -1
- package/dist/model/getAllExternalFeedsFeedsInner.js.map +1 -1
- package/dist/model/getAttributesAttributesInner.d.ts +4 -1
- package/dist/model/getAttributesAttributesInner.js +8 -1
- package/dist/model/getAttributesAttributesInner.js.map +1 -1
- package/dist/model/getCampaignOverview.js +1 -1
- package/dist/model/getCampaignOverview.js.map +1 -1
- package/dist/model/getCampaignStats.d.ts +2 -0
- package/dist/model/getCampaignStats.js +10 -0
- package/dist/model/getCampaignStats.js.map +1 -1
- package/dist/model/getContactCampaignStats.d.ts +6 -6
- package/dist/model/getContactCampaignStats.js +5 -5
- package/dist/model/getContactCampaignStats.js.map +1 -1
- package/dist/model/getContactCampaignStatsClickedInner.d.ts +2 -2
- package/dist/model/getContactCampaignStatsClickedInner.js +1 -1
- package/dist/model/getContactCampaignStatsUnsubscriptions.d.ts +4 -4
- package/dist/model/getContactCampaignStatsUnsubscriptions.js +2 -2
- package/dist/model/getContactCampaignStatsUnsubscriptions.js.map +1 -1
- package/dist/model/getCorporateInvitedUsersListUsersInnerFeatureAccess.d.ts +5 -0
- package/dist/model/getCorporateInvitedUsersListUsersInnerFeatureAccess.js +25 -0
- package/dist/model/getCorporateInvitedUsersListUsersInnerFeatureAccess.js.map +1 -1
- package/dist/model/getCorporateUserPermissionFeatureAccess.d.ts +5 -0
- package/dist/model/getCorporateUserPermissionFeatureAccess.js +25 -0
- package/dist/model/getCorporateUserPermissionFeatureAccess.js.map +1 -1
- package/dist/model/getEmailCampaign.d.ts +2 -4
- package/dist/model/getEmailCampaign.js +3 -3
- package/dist/model/getEmailCampaign.js.map +1 -1
- package/dist/model/getEmailCampaignsCampaignsInner.js +1 -1
- package/dist/model/getEmailCampaignsCampaignsInner.js.map +1 -1
- package/dist/model/getEmailEventReportEventsInner.js +1 -1
- package/dist/model/getEmailEventReportEventsInner.js.map +1 -1
- package/dist/model/getExtendedCampaignOverview.js +1 -1
- package/dist/model/getExtendedCampaignOverview.js.map +1 -1
- package/dist/model/getExtendedCampaignStats.js.map +1 -1
- package/dist/model/getExternalFeedByUUID.js +1 -1
- package/dist/model/getExternalFeedByUUID.js.map +1 -1
- package/dist/model/getInboundEmailEventsByUuidLogsInner.js +1 -1
- package/dist/model/getInboundEmailEventsByUuidLogsInner.js.map +1 -1
- package/dist/model/getOrdersOrdersInner.d.ts +6 -1
- package/dist/model/getOrdersOrdersInner.js +15 -5
- package/dist/model/getOrdersOrdersInner.js.map +1 -1
- package/dist/model/getPaymentRequest.js +1 -1
- package/dist/model/getPaymentRequest.js.map +1 -1
- package/dist/model/getProcess.js +1 -1
- package/dist/model/getProcess.js.map +1 -1
- package/dist/model/getScheduledEmailByBatchIdBatchesInner.js +1 -1
- package/dist/model/getScheduledEmailByBatchIdBatchesInner.js.map +1 -1
- package/dist/model/getScheduledEmailByMessageId.js +1 -1
- package/dist/model/getScheduledEmailByMessageId.js.map +1 -1
- package/dist/model/getSegment.d.ts +17 -0
- package/dist/model/getSegment.js +33 -0
- package/dist/model/getSegment.js.map +1 -0
- package/dist/model/getSegments.d.ts +2 -2
- package/dist/model/getSegments.js +1 -1
- package/dist/model/getSegments.js.map +1 -1
- package/dist/model/getSmsCampaign.d.ts +2 -4
- package/dist/model/getSmsCampaign.js +3 -3
- package/dist/model/getSmsCampaign.js.map +1 -1
- package/dist/model/getSmsCampaignOverview.js +1 -1
- package/dist/model/getSmsCampaignOverview.js.map +1 -1
- package/dist/model/getSmsCampaignsCampaignsInner.js +1 -1
- package/dist/model/getSmsCampaignsCampaignsInner.js.map +1 -1
- package/dist/model/getSmsEventReportEventsInner.js +1 -1
- package/dist/model/getSmsEventReportEventsInner.js.map +1 -1
- package/dist/model/getTransacBlockedContactsContactsInnerReason.js +1 -1
- package/dist/model/getTransacBlockedContactsContactsInnerReason.js.map +1 -1
- package/dist/model/getWebhook.js +1 -1
- package/dist/model/getWebhook.js.map +1 -1
- package/dist/model/getWhatsAppConfig.js +1 -1
- package/dist/model/getWhatsAppConfig.js.map +1 -1
- package/dist/model/getWhatsappCampaignOverview.js +1 -1
- package/dist/model/getWhatsappCampaignOverview.js.map +1 -1
- package/dist/model/getWhatsappCampaignsCampaignsInner.js +1 -1
- package/dist/model/getWhatsappCampaignsCampaignsInner.js.map +1 -1
- package/dist/model/getWhatsappEventReportEventsInner.js +1 -1
- package/dist/model/getWhatsappEventReportEventsInner.js.map +1 -1
- package/dist/model/inviteAdminUserPrivilegesInner.d.ts +11 -2
- package/dist/model/inviteAdminUserPrivilegesInner.js +10 -1
- package/dist/model/inviteAdminUserPrivilegesInner.js.map +1 -1
- package/dist/model/inviteuserPrivilegesInner.d.ts +5 -3
- package/dist/model/inviteuserPrivilegesInner.js +6 -4
- package/dist/model/inviteuserPrivilegesInner.js.map +1 -1
- package/dist/model/loyaltyProgram.d.ts +33 -0
- package/dist/model/loyaltyProgram.js +80 -0
- package/dist/model/loyaltyProgram.js.map +1 -0
- package/dist/model/loyaltyProgramPage.d.ts +15 -0
- package/dist/model/loyaltyProgramPage.js +18 -0
- package/dist/model/loyaltyProgramPage.js.map +1 -0
- package/dist/model/loyaltyProgramValidationError.d.ts +16 -0
- package/dist/model/loyaltyProgramValidationError.js +28 -0
- package/dist/model/loyaltyProgramValidationError.js.map +1 -0
- package/dist/model/loyaltyTierPage.d.ts +15 -0
- package/dist/model/loyaltyTierPage.js +18 -0
- package/dist/model/loyaltyTierPage.js.map +1 -0
- package/dist/model/mainAttributeRewardPayload.d.ts +22 -0
- package/dist/model/mainAttributeRewardPayload.js +48 -0
- package/dist/model/mainAttributeRewardPayload.js.map +1 -0
- package/dist/model/mainBillingPayload.d.ts +20 -0
- package/dist/model/mainBillingPayload.js +48 -0
- package/dist/model/mainBillingPayload.js.map +1 -0
- package/dist/model/mainCodeCountHttpResponse.d.ts +14 -0
- package/dist/model/mainCodeCountHttpResponse.js +18 -0
- package/dist/model/mainCodeCountHttpResponse.js.map +1 -0
- package/dist/model/mainCreateRedeemPayload.d.ts +24 -0
- package/dist/model/mainCreateRedeemPayload.js +53 -0
- package/dist/model/mainCreateRedeemPayload.js.map +1 -0
- package/dist/model/mainCreateRewardPayload.d.ts +17 -0
- package/dist/model/mainCreateRewardPayload.js +33 -0
- package/dist/model/mainCreateRewardPayload.js.map +1 -0
- package/dist/model/mainCreateRewardResponse.d.ts +21 -0
- package/dist/model/mainCreateRewardResponse.js +53 -0
- package/dist/model/mainCreateRewardResponse.js.map +1 -0
- package/dist/model/mainErrorResponse.d.ts +14 -0
- package/dist/model/mainErrorResponse.js +18 -0
- package/dist/model/mainErrorResponse.js.map +1 -0
- package/dist/model/mainFilter.d.ts +15 -0
- package/dist/model/mainFilter.js +23 -0
- package/dist/model/mainFilter.js.map +1 -0
- package/dist/model/mainGenerator.d.ts +19 -0
- package/dist/model/mainGenerator.js +43 -0
- package/dist/model/mainGenerator.js.map +1 -0
- package/dist/model/mainGetContactRewardsPayload.d.ts +31 -0
- package/dist/model/mainGetContactRewardsPayload.js +60 -0
- package/dist/model/mainGetContactRewardsPayload.js.map +1 -0
- package/dist/model/mainIdentifiersPayload.d.ts +15 -0
- package/dist/model/mainIdentifiersPayload.js +23 -0
- package/dist/model/mainIdentifiersPayload.js.map +1 -0
- package/dist/model/mainLimit.d.ts +21 -0
- package/dist/model/mainLimit.js +53 -0
- package/dist/model/mainLimit.js.map +1 -0
- package/dist/model/mainModelContactReward.d.ts +25 -0
- package/dist/model/mainModelContactReward.js +63 -0
- package/dist/model/mainModelContactReward.js.map +1 -0
- package/dist/model/mainModelContactRewardsResp.d.ts +19 -0
- package/dist/model/mainModelContactRewardsResp.js +38 -0
- package/dist/model/mainModelContactRewardsResp.js.map +1 -0
- package/dist/model/mainNodeResponse.d.ts +21 -0
- package/dist/model/mainNodeResponse.js +53 -0
- package/dist/model/mainNodeResponse.js.map +1 -0
- package/dist/model/mainOrderPayload.d.ts +28 -0
- package/dist/model/mainOrderPayload.js +73 -0
- package/dist/model/mainOrderPayload.js.map +1 -0
- package/dist/model/mainProduct.d.ts +17 -0
- package/dist/model/mainProduct.js +33 -0
- package/dist/model/mainProduct.js.map +1 -0
- package/dist/model/mainProductPayload.d.ts +18 -0
- package/dist/model/mainProductPayload.js +38 -0
- package/dist/model/mainProductPayload.js.map +1 -0
- package/dist/model/mainRedeem.d.ts +29 -0
- package/dist/model/mainRedeem.js +83 -0
- package/dist/model/mainRedeem.js.map +1 -0
- package/dist/model/mainResultParameterResponse.d.ts +16 -0
- package/dist/model/mainResultParameterResponse.js +23 -0
- package/dist/model/mainResultParameterResponse.js.map +1 -0
- package/dist/model/mainReward.d.ts +67 -0
- package/dist/model/mainReward.js +224 -0
- package/dist/model/mainReward.js.map +1 -0
- package/dist/model/mainRewardAttribution.d.ts +26 -0
- package/dist/model/mainRewardAttribution.js +68 -0
- package/dist/model/mainRewardAttribution.js.map +1 -0
- package/dist/model/mainRewardConfigurations.d.ts +16 -0
- package/dist/model/mainRewardConfigurations.js +28 -0
- package/dist/model/mainRewardConfigurations.js.map +1 -0
- package/dist/model/mainRewardPage.d.ts +16 -0
- package/dist/model/mainRewardPage.js +23 -0
- package/dist/model/mainRewardPage.js.map +1 -0
- package/dist/model/mainRewardPageObj.d.ts +22 -0
- package/dist/model/mainRewardPageObj.js +58 -0
- package/dist/model/mainRewardPageObj.js.map +1 -0
- package/dist/model/mainRewardValidate.d.ts +14 -0
- package/dist/model/mainRewardValidate.js +18 -0
- package/dist/model/mainRewardValidate.js.map +1 -0
- package/dist/model/mainRule.d.ts +31 -0
- package/dist/model/mainRule.js +78 -0
- package/dist/model/mainRule.js.map +1 -0
- package/dist/model/mainRuleConditionResponse.d.ts +19 -0
- package/dist/model/mainRuleConditionResponse.js +38 -0
- package/dist/model/mainRuleConditionResponse.js.map +1 -0
- package/dist/model/mainRuleEventResponse.d.ts +15 -0
- package/dist/model/mainRuleEventResponse.js +23 -0
- package/dist/model/mainRuleEventResponse.js.map +1 -0
- package/dist/model/mainRuleResultResponse.d.ts +17 -0
- package/dist/model/mainRuleResultResponse.js +28 -0
- package/dist/model/mainRuleResultResponse.js.map +1 -0
- package/dist/model/mainValidateRewardPayload.d.ts +19 -0
- package/dist/model/mainValidateRewardPayload.js +43 -0
- package/dist/model/mainValidateRewardPayload.js.map +1 -0
- package/dist/model/mainValueResponse.d.ts +22 -0
- package/dist/model/mainValueResponse.js +53 -0
- package/dist/model/mainValueResponse.js.map +1 -0
- package/dist/model/mainVoucherRevokePayload.d.ts +14 -0
- package/dist/model/mainVoucherRevokePayload.js +18 -0
- package/dist/model/mainVoucherRevokePayload.js.map +1 -0
- package/dist/model/masterDetailsResponsePlanInfo.js +1 -1
- package/dist/model/masterDetailsResponsePlanInfo.js.map +1 -1
- package/dist/model/memberContact.d.ts +16 -0
- package/dist/model/memberContact.js +28 -0
- package/dist/model/memberContact.js.map +1 -0
- package/dist/model/modelSubscriptionBalanceResp.d.ts +15 -0
- package/dist/model/modelSubscriptionBalanceResp.js +18 -0
- package/dist/model/modelSubscriptionBalanceResp.js.map +1 -0
- package/dist/model/models.d.ts +109 -25
- package/dist/model/models.js +412 -75
- package/dist/model/models.js.map +1 -1
- package/dist/model/notification.js +1 -1
- package/dist/model/notification.js.map +1 -1
- package/dist/model/order.d.ts +6 -1
- package/dist/model/order.js +15 -5
- package/dist/model/order.js.map +1 -1
- package/dist/model/orderBatch.js.map +1 -1
- package/dist/model/orderIdentifiers.d.ts +17 -0
- package/dist/model/orderIdentifiers.js +33 -0
- package/dist/model/orderIdentifiers.js.map +1 -0
- package/dist/model/patchLoyaltyProgramPayload.d.ts +16 -0
- package/dist/model/patchLoyaltyProgramPayload.js +28 -0
- package/dist/model/patchLoyaltyProgramPayload.js.map +1 -0
- package/dist/model/removeContactFromList.d.ts +1 -0
- package/dist/model/removeContactFromList.js +5 -0
- package/dist/model/removeContactFromList.js.map +1 -1
- package/dist/model/requestContactExport.d.ts +4 -0
- package/dist/model/requestContactExport.js +24 -0
- package/dist/model/requestContactExport.js.map +1 -1
- package/dist/model/requestContactExportCustomContactFilter.d.ts +1 -0
- package/dist/model/requestContactExportCustomContactFilter.js +6 -1
- package/dist/model/requestContactExportCustomContactFilter.js.map +1 -1
- package/dist/model/requestContactImport.js.map +1 -1
- package/dist/model/requestSmsRecipientExport.js +1 -1
- package/dist/model/requestSmsRecipientExport.js.map +1 -1
- package/dist/model/sendReport.js +1 -1
- package/dist/model/sendReport.js.map +1 -1
- package/dist/model/sendTransacSms.d.ts +2 -1
- package/dist/model/sendTransacSms.js +2 -2
- package/dist/model/sendTransacSms.js.map +1 -1
- package/dist/model/sendTransacSmsTag.d.ts +14 -0
- package/dist/model/sendTransacSmsTag.js +18 -0
- package/dist/model/sendTransacSmsTag.js.map +1 -0
- package/dist/model/ssoTokenRequest.js +1 -1
- package/dist/model/ssoTokenRequest.js.map +1 -1
- package/dist/model/subAccountDetailsResponsePlanInfoCredits.d.ts +4 -0
- package/dist/model/subAccountDetailsResponsePlanInfoCredits.js +10 -0
- package/dist/model/subAccountDetailsResponsePlanInfoCredits.js.map +1 -1
- package/dist/model/subAccountDetailsResponsePlanInfoCreditsExternalFeeds.d.ts +15 -0
- package/dist/model/subAccountDetailsResponsePlanInfoCreditsExternalFeeds.js +23 -0
- package/dist/model/subAccountDetailsResponsePlanInfoCreditsExternalFeeds.js.map +1 -0
- package/dist/model/subAccountDetailsResponsePlanInfoCreditsWhatsapp.d.ts +15 -0
- package/dist/model/subAccountDetailsResponsePlanInfoCreditsWhatsapp.js +23 -0
- package/dist/model/subAccountDetailsResponsePlanInfoCreditsWhatsapp.js.map +1 -0
- package/dist/model/subAccountDetailsResponsePlanInfoFeatures.d.ts +2 -0
- package/dist/model/subAccountDetailsResponsePlanInfoFeatures.js +5 -0
- package/dist/model/subAccountDetailsResponsePlanInfoFeatures.js.map +1 -1
- package/dist/model/subAccountDetailsResponsePlanInfoFeaturesSalesUsers.d.ts +15 -0
- package/dist/model/subAccountDetailsResponsePlanInfoFeaturesSalesUsers.js +23 -0
- package/dist/model/subAccountDetailsResponsePlanInfoFeaturesSalesUsers.js.map +1 -0
- package/dist/model/subAccountUpdatePlanRequestCredits.d.ts +2 -0
- package/dist/model/subAccountUpdatePlanRequestCredits.js +10 -0
- package/dist/model/subAccountUpdatePlanRequestCredits.js.map +1 -1
- package/dist/model/subAccountUpdatePlanRequestFeatures.d.ts +1 -0
- package/dist/model/subAccountUpdatePlanRequestFeatures.js +5 -0
- package/dist/model/subAccountUpdatePlanRequestFeatures.js.map +1 -1
- package/dist/model/subAccountsUpdatePlanRequest.d.ts +18 -0
- package/dist/model/subAccountsUpdatePlanRequest.js +28 -0
- package/dist/model/subAccountsUpdatePlanRequest.js.map +1 -0
- package/dist/model/subAccountsUpdatePlanRequestCredits.d.ts +18 -0
- package/dist/model/subAccountsUpdatePlanRequestCredits.js +38 -0
- package/dist/model/subAccountsUpdatePlanRequestCredits.js.map +1 -0
- package/dist/model/subAccountsUpdatePlanRequestFeatures.d.ts +16 -0
- package/dist/model/subAccountsUpdatePlanRequestFeatures.js +28 -0
- package/dist/model/subAccountsUpdatePlanRequestFeatures.js.map +1 -0
- package/dist/model/subscription.d.ts +20 -0
- package/dist/model/subscription.js +48 -0
- package/dist/model/subscription.js.map +1 -0
- package/dist/model/subscriptionAggregateBalance.d.ts +15 -0
- package/dist/model/subscriptionAggregateBalance.js +23 -0
- package/dist/model/subscriptionAggregateBalance.js.map +1 -0
- package/dist/model/subscriptionAttributedReward.d.ts +24 -0
- package/dist/model/subscriptionAttributedReward.js +58 -0
- package/dist/model/subscriptionAttributedReward.js.map +1 -0
- package/dist/model/subscriptionBalances.d.ts +17 -0
- package/dist/model/subscriptionBalances.js +28 -0
- package/dist/model/subscriptionBalances.js.map +1 -0
- package/dist/model/subscriptionHandlerInfo.d.ts +21 -0
- package/dist/model/subscriptionHandlerInfo.js +33 -0
- package/dist/model/subscriptionHandlerInfo.js.map +1 -0
- package/dist/model/subscriptionMember.d.ts +18 -0
- package/dist/model/subscriptionMember.js +38 -0
- package/dist/model/subscriptionMember.js.map +1 -0
- package/dist/model/subscriptionTier.d.ts +22 -0
- package/dist/model/subscriptionTier.js +48 -0
- package/dist/model/subscriptionTier.js.map +1 -0
- package/dist/model/taskReminder.js +1 -1
- package/dist/model/taskReminder.js.map +1 -1
- package/dist/model/templatePreview.d.ts +19 -0
- package/dist/model/templatePreview.js +43 -0
- package/dist/model/templatePreview.js.map +1 -0
- package/dist/model/tier.d.ts +24 -0
- package/dist/model/tier.js +58 -0
- package/dist/model/tier.js.map +1 -0
- package/dist/model/tierAccessConditionsInner.d.ts +17 -0
- package/dist/model/tierAccessConditionsInner.js +33 -0
- package/dist/model/tierAccessConditionsInner.js.map +1 -0
- package/dist/model/tierForContact.d.ts +22 -0
- package/dist/model/tierForContact.js +48 -0
- package/dist/model/tierForContact.js.map +1 -0
- package/dist/model/tierGroup.d.ts +33 -0
- package/dist/model/tierGroup.js +71 -0
- package/dist/model/tierGroup.js.map +1 -0
- package/dist/model/tierGroupPage.d.ts +15 -0
- package/dist/model/tierGroupPage.js +18 -0
- package/dist/model/tierGroupPage.js.map +1 -0
- package/dist/model/tierRequest.d.ts +19 -0
- package/dist/model/tierRequest.js +33 -0
- package/dist/model/tierRequest.js.map +1 -0
- package/dist/model/tierRequestAccessConditionsInner.d.ts +15 -0
- package/dist/model/tierRequestAccessConditionsInner.js +23 -0
- package/dist/model/tierRequestAccessConditionsInner.js.map +1 -0
- package/dist/model/tierRequestPutPayload.d.ts +19 -0
- package/dist/model/tierRequestPutPayload.js +33 -0
- package/dist/model/tierRequestPutPayload.js.map +1 -0
- package/dist/model/tierRequestTierRewardsInner.d.ts +14 -0
- package/dist/model/tierRequestTierRewardsInner.js +18 -0
- package/dist/model/tierRequestTierRewardsInner.js.map +1 -0
- package/dist/model/tierTierRewardsInner.d.ts +16 -0
- package/dist/model/tierTierRewardsInner.js +28 -0
- package/dist/model/tierTierRewardsInner.js.map +1 -0
- package/dist/model/transaction.d.ts +30 -0
- package/dist/model/transaction.js +88 -0
- package/dist/model/transaction.js.map +1 -0
- package/dist/model/transactionHistory.d.ts +25 -0
- package/dist/model/transactionHistory.js +63 -0
- package/dist/model/transactionHistory.js.map +1 -0
- package/dist/model/transactionHistoryResp.d.ts +19 -0
- package/dist/model/transactionHistoryResp.js +38 -0
- package/dist/model/transactionHistoryResp.js.map +1 -0
- package/dist/model/unauthorizedResponse.d.ts +14 -0
- package/dist/model/unauthorizedResponse.js +18 -0
- package/dist/model/unauthorizedResponse.js.map +1 -0
- package/dist/model/updateAttribute.d.ts +1 -0
- package/dist/model/updateAttribute.js +5 -0
- package/dist/model/updateAttribute.js.map +1 -1
- package/dist/model/updateBalanceDefinitionPayload.d.ts +77 -0
- package/dist/model/updateBalanceDefinitionPayload.js +145 -0
- package/dist/model/updateBalanceDefinitionPayload.js.map +1 -0
- package/dist/model/updateBalanceLimitPayload.d.ts +35 -0
- package/dist/model/updateBalanceLimitPayload.js +62 -0
- package/dist/model/updateBalanceLimitPayload.js.map +1 -0
- package/dist/model/updateCampaignStatus.js +1 -1
- package/dist/model/updateCampaignStatus.js.map +1 -1
- package/dist/model/updateContact.d.ts +3 -1
- package/dist/model/updateContact.js +1 -1
- package/dist/model/updateContact.js.map +1 -1
- package/dist/model/updateEmailCampaign.d.ts +2 -0
- package/dist/model/updateEmailCampaign.js +6 -1
- package/dist/model/updateEmailCampaign.js.map +1 -1
- package/dist/model/updateEmailCampaignEmailExpirationDate.d.ts +22 -0
- package/dist/model/updateEmailCampaignEmailExpirationDate.js +31 -0
- package/dist/model/updateEmailCampaignEmailExpirationDate.js.map +1 -0
- package/dist/model/updateEmailCampaignRecipients.d.ts +1 -0
- package/dist/model/updateEmailCampaignRecipients.js +5 -0
- package/dist/model/updateEmailCampaignRecipients.js.map +1 -1
- package/dist/model/updateExternalFeed.js +1 -1
- package/dist/model/updateExternalFeed.js.map +1 -1
- package/dist/model/updateLoyaltyProgramPayload.d.ts +16 -0
- package/dist/model/updateLoyaltyProgramPayload.js +28 -0
- package/dist/model/updateLoyaltyProgramPayload.js.map +1 -0
- package/dist/model/updateSmsCampaign.js.map +1 -1
- package/dist/model/updateTierGroupRequest.d.ts +29 -0
- package/dist/model/updateTierGroupRequest.js +51 -0
- package/dist/model/updateTierGroupRequest.js.map +1 -0
- package/dist/model/updateWebhook.js +1 -1
- package/dist/model/updateWebhook.js.map +1 -1
- package/dist/model/updateWhatsAppCampaign.js +1 -1
- package/dist/model/updateWhatsAppCampaign.js.map +1 -1
- package/model/addContactToList.ts +11 -2
- package/model/addSubscriptionMemberPayload.ts +52 -0
- package/model/aggregateBalance.ts +43 -0
- package/model/balance.ts +106 -0
- package/model/balanceDataPerContact.ts +49 -0
- package/model/balanceDefinition.ts +212 -0
- package/model/balanceDefinitionPage.ts +35 -0
- package/model/balanceLimit.ts +115 -0
- package/model/balanceOrder.ts +136 -0
- package/model/companiesIdPatchRequest.ts +18 -0
- package/model/companiesImportPost200Response.ts +34 -0
- package/model/companiesImportPost400Response.ts +31 -0
- package/model/contactBalancesResp.ts +50 -0
- package/model/contactErrorModel.ts +63 -0
- package/model/conversationsMessage.ts +131 -0
- package/model/conversationsMessageAttachmentsInner.ts +79 -0
- package/model/conversationsMessageForwardedToSourceStatus.ts +40 -0
- package/model/conversationsMessageFrom.ts +40 -0
- package/model/conversationsMessageReplyTo.ts +40 -0
- package/model/conversationsMessageToInner.ts +37 -0
- package/model/conversionSourceMetrics.ts +6 -3
- package/model/corporateUserEmailPermissionsPutRequest.ts +41 -0
- package/model/corporateUserEmailPermissionsPutRequestPrivilegesInner.ts +69 -0
- package/model/createAttribute.ts +13 -3
- package/model/createBalanceDefinitionPayload.ts +218 -0
- package/model/createBalanceLimitPayload.ts +98 -0
- package/model/createBalancePayload.ts +37 -0
- package/model/createContact.ts +4 -4
- package/model/createDoiContact.ts +3 -3
- package/model/createEmailCampaign.ts +7 -0
- package/model/createEmailCampaignEmailExpirationDate.ts +53 -0
- package/model/createEmailCampaignRecipients.ts +9 -0
- package/model/createLoyaltyProgramPayload.ts +61 -0
- package/model/createOrderPayload.ts +91 -0
- package/model/createSubscriptionPayload.ts +52 -0
- package/model/createSubscriptionResponse.ts +88 -0
- package/model/createTierGroupRequest.ts +73 -0
- package/model/createTransactionPayload.ts +109 -0
- package/model/createUpdateProduct.ts +1 -1
- package/model/createUpdateProducts.ts +1 -1
- package/model/createWebhook.ts +14 -1
- package/model/crmAttributesPost200Response.ts +34 -0
- package/model/crmAttributesPostRequest.ts +85 -0
- package/model/crmDealsIdPatchRequest.ts +18 -0
- package/model/ecommerceAttributionMetricsConversionSourceConversionSourceIdGet200Response.ts +6 -3
- package/model/errorModel.ts +0 -1
- package/model/errorResponse.ts +31 -0
- package/model/fetchTemplatePreview.ts +52 -0
- package/model/getAccountAllOfPlan.ts +3 -13
- package/model/getAttributesAttributesInner.ts +12 -1
- package/model/getCampaignStats.ts +18 -0
- package/model/getContactCampaignStats.ts +11 -11
- package/model/getContactCampaignStatsClickedInner.ts +3 -3
- package/model/getContactCampaignStatsUnsubscriptions.ts +6 -6
- package/model/getCorporateInvitedUsersListUsersInnerFeatureAccess.ts +45 -0
- package/model/getCorporateUserPermissionFeatureAccess.ts +45 -0
- package/model/getEmailCampaign.ts +4 -6
- package/model/getExtendedCampaignStats.ts +3 -0
- package/model/getOrdersOrdersInner.ts +24 -8
- package/model/getSegment.ts +61 -0
- package/model/getSegments.ts +3 -3
- package/model/getSmsCampaign.ts +4 -6
- package/model/inviteAdminUserPrivilegesInner.ts +11 -2
- package/model/inviteuserPrivilegesInner.ts +5 -3
- package/model/loyaltyProgram.ts +139 -0
- package/model/loyaltyProgramPage.ts +35 -0
- package/model/loyaltyProgramValidationError.ts +52 -0
- package/model/loyaltyTierPage.ts +32 -0
- package/model/mainAttributeRewardPayload.ts +88 -0
- package/model/mainBillingPayload.ts +88 -0
- package/model/mainCodeCountHttpResponse.ts +34 -0
- package/model/mainCreateRedeemPayload.ts +98 -0
- package/model/mainCreateRewardPayload.ts +61 -0
- package/model/mainCreateRewardResponse.ts +97 -0
- package/model/mainErrorResponse.ts +34 -0
- package/model/mainFilter.ts +43 -0
- package/model/mainGenerator.ts +79 -0
- package/model/mainGetContactRewardsPayload.ts +99 -0
- package/model/mainIdentifiersPayload.ts +43 -0
- package/model/mainLimit.ts +97 -0
- package/model/mainModelContactReward.ts +115 -0
- package/model/mainModelContactRewardsResp.ts +71 -0
- package/model/mainNodeResponse.ts +97 -0
- package/model/mainOrderPayload.ts +136 -0
- package/model/mainProduct.ts +61 -0
- package/model/mainProductPayload.ts +70 -0
- package/model/mainRedeem.ts +151 -0
- package/model/mainResultParameterResponse.ts +44 -0
- package/model/mainReward.ts +397 -0
- package/model/mainRewardAttribution.ts +124 -0
- package/model/mainRewardConfigurations.ts +52 -0
- package/model/mainRewardPage.ts +44 -0
- package/model/mainRewardPageObj.ts +106 -0
- package/model/mainRewardValidate.ts +34 -0
- package/model/mainRule.ts +145 -0
- package/model/mainRuleConditionResponse.ts +71 -0
- package/model/mainRuleEventResponse.ts +43 -0
- package/model/mainRuleResultResponse.ts +53 -0
- package/model/mainValidateRewardPayload.ts +79 -0
- package/model/mainValueResponse.ts +98 -0
- package/model/mainVoucherRevokePayload.ts +34 -0
- package/model/memberContact.ts +52 -0
- package/model/modelSubscriptionBalanceResp.ts +32 -0
- package/model/models.ts +419 -77
- package/model/order.ts +24 -8
- package/model/orderBilling.ts +1 -1
- package/model/orderIdentifiers.ts +64 -0
- package/model/patchLoyaltyProgramPayload.ts +52 -0
- package/model/removeContactFromList.ts +12 -3
- package/model/requestContactExport.ts +37 -1
- package/model/requestContactExportCustomContactFilter.ts +10 -1
- package/model/sendSmtpEmail.ts +1 -1
- package/model/sendTransacSms.ts +3 -5
- package/model/sendTransacSmsTag.ts +37 -0
- package/model/subAccountDetailsResponsePlanInfoCredits.ts +14 -0
- package/model/subAccountDetailsResponsePlanInfoCreditsExternalFeeds.ts +46 -0
- package/model/subAccountDetailsResponsePlanInfoCreditsWhatsapp.ts +46 -0
- package/model/subAccountDetailsResponsePlanInfoFeatures.ts +7 -0
- package/model/subAccountDetailsResponsePlanInfoFeaturesSalesUsers.ts +46 -0
- package/model/subAccountDetailsResponsePlanInfoFeaturesUsers.ts +3 -3
- package/model/subAccountUpdatePlanRequestCredits.ts +20 -2
- package/model/subAccountUpdatePlanRequestFeatures.ts +10 -1
- package/model/subAccountsUpdatePlanRequest.ts +51 -0
- package/model/subAccountsUpdatePlanRequestCredits.ts +73 -0
- package/model/subAccountsUpdatePlanRequestFeatures.ts +55 -0
- package/model/subscription.ts +88 -0
- package/model/subscriptionAggregateBalance.ts +43 -0
- package/model/subscriptionAttributedReward.ts +106 -0
- package/model/subscriptionBalances.ts +53 -0
- package/model/subscriptionHandlerInfo.ts +65 -0
- package/model/subscriptionMember.ts +70 -0
- package/model/subscriptionTier.ts +88 -0
- package/model/templatePreview.ts +76 -0
- package/model/tier.ts +102 -0
- package/model/tierAccessConditionsInner.ts +55 -0
- package/model/tierForContact.ts +82 -0
- package/model/tierGroup.ts +109 -0
- package/model/tierGroupPage.ts +32 -0
- package/model/tierRequest.ts +57 -0
- package/model/tierRequestAccessConditionsInner.ts +43 -0
- package/model/tierRequestPutPayload.ts +57 -0
- package/model/tierRequestTierRewardsInner.ts +34 -0
- package/model/tierTierRewardsInner.ts +46 -0
- package/model/transaction.ts +163 -0
- package/model/transactionHistory.ts +118 -0
- package/model/transactionHistoryResp.ts +74 -0
- package/model/unauthorizedResponse.ts +34 -0
- package/model/updateAttribute.ts +10 -1
- package/model/updateBalanceDefinitionPayload.ts +218 -0
- package/model/updateBalanceLimitPayload.ts +98 -0
- package/model/updateContact.ts +3 -3
- package/model/updateEmailCampaign.ts +7 -0
- package/model/updateEmailCampaignEmailExpirationDate.ts +53 -0
- package/model/updateEmailCampaignRecipients.ts +9 -0
- package/model/updateLoyaltyProgramPayload.ts +52 -0
- package/model/updateTierGroupRequest.ts +73 -0
- package/package.json +5 -6
- package/tsconfig.json +0 -1
package/model/models.ts
CHANGED
|
@@ -7,11 +7,20 @@ export * from './abTestVersionClicksInner';
|
|
|
7
7
|
export * from './abTestVersionStats';
|
|
8
8
|
export * from './addChildDomain';
|
|
9
9
|
export * from './addContactToList';
|
|
10
|
-
export * from './
|
|
10
|
+
export * from './addSubscriptionMemberPayload';
|
|
11
|
+
export * from './aggregateBalance';
|
|
11
12
|
export * from './authenticateDomainModel';
|
|
13
|
+
export * from './balance';
|
|
14
|
+
export * from './balanceDataPerContact';
|
|
15
|
+
export * from './balanceDefinition';
|
|
16
|
+
export * from './balanceDefinitionPage';
|
|
17
|
+
export * from './balanceLimit';
|
|
18
|
+
export * from './balanceOrder';
|
|
12
19
|
export * from './blockDomain';
|
|
13
20
|
export * from './cart';
|
|
14
21
|
export * from './companiesIdPatchRequest';
|
|
22
|
+
export * from './companiesImportPost200Response';
|
|
23
|
+
export * from './companiesImportPost400Response';
|
|
15
24
|
export * from './companiesLinkUnlinkIdPatchRequest';
|
|
16
25
|
export * from './companiesList';
|
|
17
26
|
export * from './companiesPost200Response';
|
|
@@ -20,10 +29,17 @@ export * from './company';
|
|
|
20
29
|
export * from './companyAttributesInner';
|
|
21
30
|
export * from './componentItems';
|
|
22
31
|
export * from './configuration';
|
|
32
|
+
export * from './contactBalancesResp';
|
|
33
|
+
export * from './contactErrorModel';
|
|
23
34
|
export * from './conversationsAgentOnlinePingPostRequest';
|
|
24
35
|
export * from './conversationsMessage';
|
|
36
|
+
export * from './conversationsMessageAttachmentsInner';
|
|
25
37
|
export * from './conversationsMessageFile';
|
|
26
38
|
export * from './conversationsMessageFileImageInfo';
|
|
39
|
+
export * from './conversationsMessageForwardedToSourceStatus';
|
|
40
|
+
export * from './conversationsMessageFrom';
|
|
41
|
+
export * from './conversationsMessageReplyTo';
|
|
42
|
+
export * from './conversationsMessageToInner';
|
|
27
43
|
export * from './conversationsMessagesIdPutRequest';
|
|
28
44
|
export * from './conversationsMessagesPostRequest';
|
|
29
45
|
export * from './conversationsPushedMessagesIdPutRequest';
|
|
@@ -39,11 +55,16 @@ export * from './corporateGroupPostRequest';
|
|
|
39
55
|
export * from './corporateGroupUnlinkGroupIdSubAccountsPutRequest';
|
|
40
56
|
export * from './corporateSubAccountIpAssociatePostRequest';
|
|
41
57
|
export * from './corporateSubAccountIpDissociatePutRequest';
|
|
58
|
+
export * from './corporateUserEmailPermissionsPutRequest';
|
|
59
|
+
export * from './corporateUserEmailPermissionsPutRequestPrivilegesInner';
|
|
42
60
|
export * from './corporateUserInvitationActionEmailPut200Response';
|
|
43
61
|
export * from './createApiKeyRequest';
|
|
44
62
|
export * from './createApiKeyResponse';
|
|
45
63
|
export * from './createAttribute';
|
|
46
64
|
export * from './createAttributeEnumerationInner';
|
|
65
|
+
export * from './createBalanceDefinitionPayload';
|
|
66
|
+
export * from './createBalanceLimitPayload';
|
|
67
|
+
export * from './createBalancePayload';
|
|
47
68
|
export * from './createCategoryModel';
|
|
48
69
|
export * from './createChild';
|
|
49
70
|
export * from './createContact';
|
|
@@ -56,16 +77,18 @@ export * from './createDomainModel';
|
|
|
56
77
|
export * from './createDomainModelDnsRecords';
|
|
57
78
|
export * from './createDomainModelDnsRecordsDkimRecord';
|
|
58
79
|
export * from './createEmailCampaign';
|
|
80
|
+
export * from './createEmailCampaignEmailExpirationDate';
|
|
59
81
|
export * from './createEmailCampaignRecipients';
|
|
60
82
|
export * from './createEmailCampaignSender';
|
|
61
83
|
export * from './createExternalFeed';
|
|
62
84
|
export * from './createExternalFeed201Response';
|
|
63
85
|
export * from './createList';
|
|
86
|
+
export * from './createLoyaltyProgramPayload';
|
|
64
87
|
export * from './createModel';
|
|
88
|
+
export * from './createOrderPayload';
|
|
65
89
|
export * from './createPaymentRequest';
|
|
66
90
|
export * from './createPaymentResponse';
|
|
67
91
|
export * from './createProductModel';
|
|
68
|
-
export * from './createReseller';
|
|
69
92
|
export * from './createSender';
|
|
70
93
|
export * from './createSenderIpsInner';
|
|
71
94
|
export * from './createSenderModel';
|
|
@@ -76,6 +99,10 @@ export * from './createSmtpTemplate';
|
|
|
76
99
|
export * from './createSmtpTemplateSender';
|
|
77
100
|
export * from './createSubAccount';
|
|
78
101
|
export * from './createSubAccountResponse';
|
|
102
|
+
export * from './createSubscriptionPayload';
|
|
103
|
+
export * from './createSubscriptionResponse';
|
|
104
|
+
export * from './createTierGroupRequest';
|
|
105
|
+
export * from './createTransactionPayload';
|
|
79
106
|
export * from './createUpdateBatchCategory';
|
|
80
107
|
export * from './createUpdateBatchCategoryModel';
|
|
81
108
|
export * from './createUpdateBatchProducts';
|
|
@@ -92,6 +119,8 @@ export * from './createWhatsAppCampaignRecipients';
|
|
|
92
119
|
export * from './createWhatsAppTemplate';
|
|
93
120
|
export * from './createdBatchId';
|
|
94
121
|
export * from './createdProcessId';
|
|
122
|
+
export * from './crmAttributesPost200Response';
|
|
123
|
+
export * from './crmAttributesPostRequest';
|
|
95
124
|
export * from './crmDealsIdPatchRequest';
|
|
96
125
|
export * from './crmDealsLinkUnlinkIdPatchRequest';
|
|
97
126
|
export * from './crmDealsPost201Response';
|
|
@@ -110,9 +139,11 @@ export * from './ecommerceAttributionProductsConversionSourceConversionSourceIdG
|
|
|
110
139
|
export * from './ecommerceConfigDisplayCurrencyGet200Response';
|
|
111
140
|
export * from './emailExportRecipients';
|
|
112
141
|
export * from './errorModel';
|
|
142
|
+
export * from './errorResponse';
|
|
113
143
|
export * from './event';
|
|
114
144
|
export * from './eventIdentifiers';
|
|
115
145
|
export * from './exportWebhooksHistory';
|
|
146
|
+
export * from './fetchTemplatePreview';
|
|
116
147
|
export * from './fileData';
|
|
117
148
|
export * from './fileDownloadableLink';
|
|
118
149
|
export * from './getAccount';
|
|
@@ -134,26 +165,13 @@ export * from './getCampaignRecipients';
|
|
|
134
165
|
export * from './getCampaignStats';
|
|
135
166
|
export * from './getCategories';
|
|
136
167
|
export * from './getCategoryDetails';
|
|
137
|
-
export * from './getChildAccountCreationStatus';
|
|
138
168
|
export * from './getChildDomain';
|
|
139
|
-
export * from './getChildInfo';
|
|
140
|
-
export * from './getChildInfoAllOfApiKeys';
|
|
141
|
-
export * from './getChildInfoAllOfApiKeysV2';
|
|
142
|
-
export * from './getChildInfoAllOfApiKeysV3';
|
|
143
|
-
export * from './getChildInfoAllOfCredits';
|
|
144
|
-
export * from './getChildInfoAllOfStatistics';
|
|
145
|
-
export * from './getChildrenList';
|
|
146
|
-
export * from './getChildrenListChildrenInner';
|
|
147
169
|
export * from './getClient';
|
|
148
170
|
export * from './getContactCampaignStats';
|
|
149
171
|
export * from './getContactCampaignStatsClickedInner';
|
|
150
|
-
export * from './getContactCampaignStatsClickedInnerLinksInner';
|
|
151
|
-
export * from './getContactCampaignStatsMessagesSentInner';
|
|
152
172
|
export * from './getContactCampaignStatsOpenedInner';
|
|
153
173
|
export * from './getContactCampaignStatsTransacAttributesInner';
|
|
154
174
|
export * from './getContactCampaignStatsUnsubscriptions';
|
|
155
|
-
export * from './getContactCampaignStatsUnsubscriptionsAdminUnsubscriptionInner';
|
|
156
|
-
export * from './getContactCampaignStatsUnsubscriptionsUserUnsubscriptionInner';
|
|
157
175
|
export * from './getContactDetails';
|
|
158
176
|
export * from './getContacts';
|
|
159
177
|
export * from './getCorporateInvitedUsersList';
|
|
@@ -221,8 +239,8 @@ export * from './getReportsReportsInner';
|
|
|
221
239
|
export * from './getScheduledEmailByBatchId';
|
|
222
240
|
export * from './getScheduledEmailByBatchIdBatchesInner';
|
|
223
241
|
export * from './getScheduledEmailByMessageId';
|
|
242
|
+
export * from './getSegment';
|
|
224
243
|
export * from './getSegments';
|
|
225
|
-
export * from './getSegmentsSegments';
|
|
226
244
|
export * from './getSendersList';
|
|
227
245
|
export * from './getSendersListSendersInner';
|
|
228
246
|
export * from './getSendersListSendersInnerIpsInner';
|
|
@@ -268,13 +286,51 @@ export * from './inviteAdminUser';
|
|
|
268
286
|
export * from './inviteAdminUserPrivilegesInner';
|
|
269
287
|
export * from './inviteuser';
|
|
270
288
|
export * from './inviteuserPrivilegesInner';
|
|
271
|
-
export * from './
|
|
289
|
+
export * from './loyaltyProgram';
|
|
290
|
+
export * from './loyaltyProgramPage';
|
|
291
|
+
export * from './loyaltyProgramValidationError';
|
|
292
|
+
export * from './loyaltyTierPage';
|
|
293
|
+
export * from './mainAttributeRewardPayload';
|
|
294
|
+
export * from './mainBillingPayload';
|
|
295
|
+
export * from './mainCodeCountHttpResponse';
|
|
296
|
+
export * from './mainCreateRedeemPayload';
|
|
297
|
+
export * from './mainCreateRewardPayload';
|
|
298
|
+
export * from './mainCreateRewardResponse';
|
|
299
|
+
export * from './mainErrorResponse';
|
|
300
|
+
export * from './mainFilter';
|
|
301
|
+
export * from './mainGenerator';
|
|
302
|
+
export * from './mainGetContactRewardsPayload';
|
|
303
|
+
export * from './mainIdentifiersPayload';
|
|
304
|
+
export * from './mainLimit';
|
|
305
|
+
export * from './mainModelContactReward';
|
|
306
|
+
export * from './mainModelContactRewardsResp';
|
|
307
|
+
export * from './mainNodeResponse';
|
|
308
|
+
export * from './mainOrderPayload';
|
|
309
|
+
export * from './mainProduct';
|
|
310
|
+
export * from './mainProductPayload';
|
|
311
|
+
export * from './mainRedeem';
|
|
312
|
+
export * from './mainResultParameterResponse';
|
|
313
|
+
export * from './mainReward';
|
|
314
|
+
export * from './mainRewardAttribution';
|
|
315
|
+
export * from './mainRewardConfigurations';
|
|
316
|
+
export * from './mainRewardPage';
|
|
317
|
+
export * from './mainRewardPageObj';
|
|
318
|
+
export * from './mainRewardValidate';
|
|
319
|
+
export * from './mainRule';
|
|
320
|
+
export * from './mainRuleConditionResponse';
|
|
321
|
+
export * from './mainRuleEventResponse';
|
|
322
|
+
export * from './mainRuleResultResponse';
|
|
323
|
+
export * from './mainValidateRewardPayload';
|
|
324
|
+
export * from './mainValueResponse';
|
|
325
|
+
export * from './mainVoucherRevokePayload';
|
|
272
326
|
export * from './masterDetailsResponse';
|
|
273
327
|
export * from './masterDetailsResponseBillingInfo';
|
|
274
328
|
export * from './masterDetailsResponseBillingInfoAddress';
|
|
275
329
|
export * from './masterDetailsResponseBillingInfoName';
|
|
276
330
|
export * from './masterDetailsResponsePlanInfo';
|
|
277
331
|
export * from './masterDetailsResponsePlanInfoFeaturesInner';
|
|
332
|
+
export * from './memberContact';
|
|
333
|
+
export * from './modelSubscriptionBalanceResp';
|
|
278
334
|
export * from './note';
|
|
279
335
|
export * from './noteData';
|
|
280
336
|
export * from './noteId';
|
|
@@ -282,8 +338,10 @@ export * from './notification';
|
|
|
282
338
|
export * from './order';
|
|
283
339
|
export * from './orderBatch';
|
|
284
340
|
export * from './orderBilling';
|
|
341
|
+
export * from './orderIdentifiers';
|
|
285
342
|
export * from './orderProductsInner';
|
|
286
343
|
export * from './otp';
|
|
344
|
+
export * from './patchLoyaltyProgramPayload';
|
|
287
345
|
export * from './pipeline';
|
|
288
346
|
export * from './pipelineStage';
|
|
289
347
|
export * from './postContactInfo';
|
|
@@ -292,11 +350,7 @@ export * from './postSendFailed';
|
|
|
292
350
|
export * from './postSendSmsTestFailed';
|
|
293
351
|
export * from './putRevokeUserPermission';
|
|
294
352
|
export * from './putresendcancelinvitation';
|
|
295
|
-
export * from './remainingCreditModel';
|
|
296
|
-
export * from './remainingCreditModelChild';
|
|
297
|
-
export * from './remainingCreditModelReseller';
|
|
298
353
|
export * from './removeContactFromList';
|
|
299
|
-
export * from './removeCredits';
|
|
300
354
|
export * from './requestContactExport';
|
|
301
355
|
export * from './requestContactExportCustomContactFilter';
|
|
302
356
|
export * from './requestContactImport';
|
|
@@ -320,6 +374,7 @@ export * from './sendSmtpEmailToInner';
|
|
|
320
374
|
export * from './sendTestEmail';
|
|
321
375
|
export * from './sendTestSms';
|
|
322
376
|
export * from './sendTransacSms';
|
|
377
|
+
export * from './sendTransacSmsTag';
|
|
323
378
|
export * from './sendWhatsappMessage';
|
|
324
379
|
export * from './sendWhatsappMessage201Response';
|
|
325
380
|
export * from './ssoTokenRequest';
|
|
@@ -330,11 +385,14 @@ export * from './subAccountDetailsResponseGroupsInner';
|
|
|
330
385
|
export * from './subAccountDetailsResponsePlanInfo';
|
|
331
386
|
export * from './subAccountDetailsResponsePlanInfoCredits';
|
|
332
387
|
export * from './subAccountDetailsResponsePlanInfoCreditsEmails';
|
|
388
|
+
export * from './subAccountDetailsResponsePlanInfoCreditsExternalFeeds';
|
|
333
389
|
export * from './subAccountDetailsResponsePlanInfoCreditsSms';
|
|
390
|
+
export * from './subAccountDetailsResponsePlanInfoCreditsWhatsapp';
|
|
334
391
|
export * from './subAccountDetailsResponsePlanInfoCreditsWpSubscribers';
|
|
335
392
|
export * from './subAccountDetailsResponsePlanInfoFeatures';
|
|
336
393
|
export * from './subAccountDetailsResponsePlanInfoFeaturesInbox';
|
|
337
394
|
export * from './subAccountDetailsResponsePlanInfoFeaturesLandingPage';
|
|
395
|
+
export * from './subAccountDetailsResponsePlanInfoFeaturesSalesUsers';
|
|
338
396
|
export * from './subAccountDetailsResponsePlanInfoFeaturesUsers';
|
|
339
397
|
export * from './subAccountUpdatePlanRequest';
|
|
340
398
|
export * from './subAccountUpdatePlanRequestCredits';
|
|
@@ -342,31 +400,59 @@ export * from './subAccountUpdatePlanRequestFeatures';
|
|
|
342
400
|
export * from './subAccountsResponse';
|
|
343
401
|
export * from './subAccountsResponseSubAccountsInner';
|
|
344
402
|
export * from './subAccountsResponseSubAccountsInnerGroupsInner';
|
|
403
|
+
export * from './subAccountsUpdatePlanRequest';
|
|
404
|
+
export * from './subAccountsUpdatePlanRequestCredits';
|
|
405
|
+
export * from './subAccountsUpdatePlanRequestFeatures';
|
|
406
|
+
export * from './subscription';
|
|
407
|
+
export * from './subscriptionAggregateBalance';
|
|
408
|
+
export * from './subscriptionAttributedReward';
|
|
409
|
+
export * from './subscriptionBalances';
|
|
410
|
+
export * from './subscriptionHandlerInfo';
|
|
411
|
+
export * from './subscriptionMember';
|
|
412
|
+
export * from './subscriptionTier';
|
|
345
413
|
export * from './task';
|
|
346
414
|
export * from './taskList';
|
|
347
415
|
export * from './taskReminder';
|
|
348
416
|
export * from './taskTypes';
|
|
417
|
+
export * from './templatePreview';
|
|
418
|
+
export * from './tier';
|
|
419
|
+
export * from './tierAccessConditionsInner';
|
|
420
|
+
export * from './tierForContact';
|
|
421
|
+
export * from './tierGroup';
|
|
422
|
+
export * from './tierGroupPage';
|
|
423
|
+
export * from './tierRequest';
|
|
424
|
+
export * from './tierRequestAccessConditionsInner';
|
|
425
|
+
export * from './tierRequestPutPayload';
|
|
426
|
+
export * from './tierRequestTierRewardsInner';
|
|
427
|
+
export * from './tierTierRewardsInner';
|
|
428
|
+
export * from './transaction';
|
|
429
|
+
export * from './transactionHistory';
|
|
430
|
+
export * from './transactionHistoryResp';
|
|
431
|
+
export * from './unauthorizedResponse';
|
|
349
432
|
export * from './updateAttribute';
|
|
350
433
|
export * from './updateAttributeEnumerationInner';
|
|
434
|
+
export * from './updateBalanceDefinitionPayload';
|
|
435
|
+
export * from './updateBalanceLimitPayload';
|
|
351
436
|
export * from './updateBatchContacts';
|
|
352
437
|
export * from './updateBatchContactsContactsInner';
|
|
353
438
|
export * from './updateBatchContactsModel';
|
|
354
439
|
export * from './updateCampaignStatus';
|
|
355
440
|
export * from './updateChild';
|
|
356
|
-
export * from './updateChildAccountStatus';
|
|
357
|
-
export * from './updateChildDomain';
|
|
358
441
|
export * from './updateContact';
|
|
359
442
|
export * from './updateCouponCollection200Response';
|
|
360
443
|
export * from './updateCouponCollectionRequest';
|
|
361
444
|
export * from './updateEmailCampaign';
|
|
445
|
+
export * from './updateEmailCampaignEmailExpirationDate';
|
|
362
446
|
export * from './updateEmailCampaignRecipients';
|
|
363
447
|
export * from './updateEmailCampaignSender';
|
|
364
448
|
export * from './updateExternalFeed';
|
|
365
449
|
export * from './updateList';
|
|
450
|
+
export * from './updateLoyaltyProgramPayload';
|
|
366
451
|
export * from './updateSender';
|
|
367
452
|
export * from './updateSmsCampaign';
|
|
368
453
|
export * from './updateSmtpTemplate';
|
|
369
454
|
export * from './updateSmtpTemplateSender';
|
|
455
|
+
export * from './updateTierGroupRequest';
|
|
370
456
|
export * from './updateWebhook';
|
|
371
457
|
export * from './updateWhatsAppCampaign';
|
|
372
458
|
export * from './uploadImageModel';
|
|
@@ -395,11 +481,20 @@ import { AbTestVersionClicksInner } from './abTestVersionClicksInner';
|
|
|
395
481
|
import { AbTestVersionStats } from './abTestVersionStats';
|
|
396
482
|
import { AddChildDomain } from './addChildDomain';
|
|
397
483
|
import { AddContactToList } from './addContactToList';
|
|
398
|
-
import {
|
|
484
|
+
import { AddSubscriptionMemberPayload } from './addSubscriptionMemberPayload';
|
|
485
|
+
import { AggregateBalance } from './aggregateBalance';
|
|
399
486
|
import { AuthenticateDomainModel } from './authenticateDomainModel';
|
|
487
|
+
import { Balance } from './balance';
|
|
488
|
+
import { BalanceDataPerContact } from './balanceDataPerContact';
|
|
489
|
+
import { BalanceDefinition } from './balanceDefinition';
|
|
490
|
+
import { BalanceDefinitionPage } from './balanceDefinitionPage';
|
|
491
|
+
import { BalanceLimit } from './balanceLimit';
|
|
492
|
+
import { BalanceOrder } from './balanceOrder';
|
|
400
493
|
import { BlockDomain } from './blockDomain';
|
|
401
494
|
import { Cart } from './cart';
|
|
402
495
|
import { CompaniesIdPatchRequest } from './companiesIdPatchRequest';
|
|
496
|
+
import { CompaniesImportPost200Response } from './companiesImportPost200Response';
|
|
497
|
+
import { CompaniesImportPost400Response } from './companiesImportPost400Response';
|
|
403
498
|
import { CompaniesLinkUnlinkIdPatchRequest } from './companiesLinkUnlinkIdPatchRequest';
|
|
404
499
|
import { CompaniesList } from './companiesList';
|
|
405
500
|
import { CompaniesPost200Response } from './companiesPost200Response';
|
|
@@ -408,10 +503,17 @@ import { Company } from './company';
|
|
|
408
503
|
import { CompanyAttributesInner } from './companyAttributesInner';
|
|
409
504
|
import { ComponentItems } from './componentItems';
|
|
410
505
|
import { Configuration } from './configuration';
|
|
506
|
+
import { ContactBalancesResp } from './contactBalancesResp';
|
|
507
|
+
import { ContactErrorModel } from './contactErrorModel';
|
|
411
508
|
import { ConversationsAgentOnlinePingPostRequest } from './conversationsAgentOnlinePingPostRequest';
|
|
412
509
|
import { ConversationsMessage } from './conversationsMessage';
|
|
510
|
+
import { ConversationsMessageAttachmentsInner } from './conversationsMessageAttachmentsInner';
|
|
413
511
|
import { ConversationsMessageFile } from './conversationsMessageFile';
|
|
414
512
|
import { ConversationsMessageFileImageInfo } from './conversationsMessageFileImageInfo';
|
|
513
|
+
import { ConversationsMessageForwardedToSourceStatus } from './conversationsMessageForwardedToSourceStatus';
|
|
514
|
+
import { ConversationsMessageFrom } from './conversationsMessageFrom';
|
|
515
|
+
import { ConversationsMessageReplyTo } from './conversationsMessageReplyTo';
|
|
516
|
+
import { ConversationsMessageToInner } from './conversationsMessageToInner';
|
|
415
517
|
import { ConversationsMessagesIdPutRequest } from './conversationsMessagesIdPutRequest';
|
|
416
518
|
import { ConversationsMessagesPostRequest } from './conversationsMessagesPostRequest';
|
|
417
519
|
import { ConversationsPushedMessagesIdPutRequest } from './conversationsPushedMessagesIdPutRequest';
|
|
@@ -427,11 +529,16 @@ import { CorporateGroupPostRequest } from './corporateGroupPostRequest';
|
|
|
427
529
|
import { CorporateGroupUnlinkGroupIdSubAccountsPutRequest } from './corporateGroupUnlinkGroupIdSubAccountsPutRequest';
|
|
428
530
|
import { CorporateSubAccountIpAssociatePostRequest } from './corporateSubAccountIpAssociatePostRequest';
|
|
429
531
|
import { CorporateSubAccountIpDissociatePutRequest } from './corporateSubAccountIpDissociatePutRequest';
|
|
532
|
+
import { CorporateUserEmailPermissionsPutRequest } from './corporateUserEmailPermissionsPutRequest';
|
|
533
|
+
import { CorporateUserEmailPermissionsPutRequestPrivilegesInner } from './corporateUserEmailPermissionsPutRequestPrivilegesInner';
|
|
430
534
|
import { CorporateUserInvitationActionEmailPut200Response } from './corporateUserInvitationActionEmailPut200Response';
|
|
431
535
|
import { CreateApiKeyRequest } from './createApiKeyRequest';
|
|
432
536
|
import { CreateApiKeyResponse } from './createApiKeyResponse';
|
|
433
537
|
import { CreateAttribute } from './createAttribute';
|
|
434
538
|
import { CreateAttributeEnumerationInner } from './createAttributeEnumerationInner';
|
|
539
|
+
import { CreateBalanceDefinitionPayload } from './createBalanceDefinitionPayload';
|
|
540
|
+
import { CreateBalanceLimitPayload } from './createBalanceLimitPayload';
|
|
541
|
+
import { CreateBalancePayload } from './createBalancePayload';
|
|
435
542
|
import { CreateCategoryModel } from './createCategoryModel';
|
|
436
543
|
import { CreateChild } from './createChild';
|
|
437
544
|
import { CreateContact } from './createContact';
|
|
@@ -444,16 +551,18 @@ import { CreateDomainModel } from './createDomainModel';
|
|
|
444
551
|
import { CreateDomainModelDnsRecords } from './createDomainModelDnsRecords';
|
|
445
552
|
import { CreateDomainModelDnsRecordsDkimRecord } from './createDomainModelDnsRecordsDkimRecord';
|
|
446
553
|
import { CreateEmailCampaign } from './createEmailCampaign';
|
|
554
|
+
import { CreateEmailCampaignEmailExpirationDate } from './createEmailCampaignEmailExpirationDate';
|
|
447
555
|
import { CreateEmailCampaignRecipients } from './createEmailCampaignRecipients';
|
|
448
556
|
import { CreateEmailCampaignSender } from './createEmailCampaignSender';
|
|
449
557
|
import { CreateExternalFeed } from './createExternalFeed';
|
|
450
558
|
import { CreateExternalFeed201Response } from './createExternalFeed201Response';
|
|
451
559
|
import { CreateList } from './createList';
|
|
560
|
+
import { CreateLoyaltyProgramPayload } from './createLoyaltyProgramPayload';
|
|
452
561
|
import { CreateModel } from './createModel';
|
|
562
|
+
import { CreateOrderPayload } from './createOrderPayload';
|
|
453
563
|
import { CreatePaymentRequest } from './createPaymentRequest';
|
|
454
564
|
import { CreatePaymentResponse } from './createPaymentResponse';
|
|
455
565
|
import { CreateProductModel } from './createProductModel';
|
|
456
|
-
import { CreateReseller } from './createReseller';
|
|
457
566
|
import { CreateSender } from './createSender';
|
|
458
567
|
import { CreateSenderIpsInner } from './createSenderIpsInner';
|
|
459
568
|
import { CreateSenderModel } from './createSenderModel';
|
|
@@ -464,6 +573,10 @@ import { CreateSmtpTemplate } from './createSmtpTemplate';
|
|
|
464
573
|
import { CreateSmtpTemplateSender } from './createSmtpTemplateSender';
|
|
465
574
|
import { CreateSubAccount } from './createSubAccount';
|
|
466
575
|
import { CreateSubAccountResponse } from './createSubAccountResponse';
|
|
576
|
+
import { CreateSubscriptionPayload } from './createSubscriptionPayload';
|
|
577
|
+
import { CreateSubscriptionResponse } from './createSubscriptionResponse';
|
|
578
|
+
import { CreateTierGroupRequest } from './createTierGroupRequest';
|
|
579
|
+
import { CreateTransactionPayload } from './createTransactionPayload';
|
|
467
580
|
import { CreateUpdateBatchCategory } from './createUpdateBatchCategory';
|
|
468
581
|
import { CreateUpdateBatchCategoryModel } from './createUpdateBatchCategoryModel';
|
|
469
582
|
import { CreateUpdateBatchProducts } from './createUpdateBatchProducts';
|
|
@@ -480,6 +593,8 @@ import { CreateWhatsAppCampaignRecipients } from './createWhatsAppCampaignRecipi
|
|
|
480
593
|
import { CreateWhatsAppTemplate } from './createWhatsAppTemplate';
|
|
481
594
|
import { CreatedBatchId } from './createdBatchId';
|
|
482
595
|
import { CreatedProcessId } from './createdProcessId';
|
|
596
|
+
import { CrmAttributesPost200Response } from './crmAttributesPost200Response';
|
|
597
|
+
import { CrmAttributesPostRequest } from './crmAttributesPostRequest';
|
|
483
598
|
import { CrmDealsIdPatchRequest } from './crmDealsIdPatchRequest';
|
|
484
599
|
import { CrmDealsLinkUnlinkIdPatchRequest } from './crmDealsLinkUnlinkIdPatchRequest';
|
|
485
600
|
import { CrmDealsPost201Response } from './crmDealsPost201Response';
|
|
@@ -498,9 +613,11 @@ import { EcommerceAttributionProductsConversionSourceConversionSourceIdGet200Res
|
|
|
498
613
|
import { EcommerceConfigDisplayCurrencyGet200Response } from './ecommerceConfigDisplayCurrencyGet200Response';
|
|
499
614
|
import { EmailExportRecipients } from './emailExportRecipients';
|
|
500
615
|
import { ErrorModel } from './errorModel';
|
|
616
|
+
import { ErrorResponse } from './errorResponse';
|
|
501
617
|
import { Event } from './event';
|
|
502
618
|
import { EventIdentifiers } from './eventIdentifiers';
|
|
503
619
|
import { ExportWebhooksHistory } from './exportWebhooksHistory';
|
|
620
|
+
import { FetchTemplatePreview } from './fetchTemplatePreview';
|
|
504
621
|
import { FileData } from './fileData';
|
|
505
622
|
import { FileDownloadableLink } from './fileDownloadableLink';
|
|
506
623
|
import { GetAccount } from './getAccount';
|
|
@@ -522,26 +639,13 @@ import { GetCampaignRecipients } from './getCampaignRecipients';
|
|
|
522
639
|
import { GetCampaignStats } from './getCampaignStats';
|
|
523
640
|
import { GetCategories } from './getCategories';
|
|
524
641
|
import { GetCategoryDetails } from './getCategoryDetails';
|
|
525
|
-
import { GetChildAccountCreationStatus } from './getChildAccountCreationStatus';
|
|
526
642
|
import { GetChildDomain } from './getChildDomain';
|
|
527
|
-
import { GetChildInfo } from './getChildInfo';
|
|
528
|
-
import { GetChildInfoAllOfApiKeys } from './getChildInfoAllOfApiKeys';
|
|
529
|
-
import { GetChildInfoAllOfApiKeysV2 } from './getChildInfoAllOfApiKeysV2';
|
|
530
|
-
import { GetChildInfoAllOfApiKeysV3 } from './getChildInfoAllOfApiKeysV3';
|
|
531
|
-
import { GetChildInfoAllOfCredits } from './getChildInfoAllOfCredits';
|
|
532
|
-
import { GetChildInfoAllOfStatistics } from './getChildInfoAllOfStatistics';
|
|
533
|
-
import { GetChildrenList } from './getChildrenList';
|
|
534
|
-
import { GetChildrenListChildrenInner } from './getChildrenListChildrenInner';
|
|
535
643
|
import { GetClient } from './getClient';
|
|
536
644
|
import { GetContactCampaignStats } from './getContactCampaignStats';
|
|
537
645
|
import { GetContactCampaignStatsClickedInner } from './getContactCampaignStatsClickedInner';
|
|
538
|
-
import { GetContactCampaignStatsClickedInnerLinksInner } from './getContactCampaignStatsClickedInnerLinksInner';
|
|
539
|
-
import { GetContactCampaignStatsMessagesSentInner } from './getContactCampaignStatsMessagesSentInner';
|
|
540
646
|
import { GetContactCampaignStatsOpenedInner } from './getContactCampaignStatsOpenedInner';
|
|
541
647
|
import { GetContactCampaignStatsTransacAttributesInner } from './getContactCampaignStatsTransacAttributesInner';
|
|
542
648
|
import { GetContactCampaignStatsUnsubscriptions } from './getContactCampaignStatsUnsubscriptions';
|
|
543
|
-
import { GetContactCampaignStatsUnsubscriptionsAdminUnsubscriptionInner } from './getContactCampaignStatsUnsubscriptionsAdminUnsubscriptionInner';
|
|
544
|
-
import { GetContactCampaignStatsUnsubscriptionsUserUnsubscriptionInner } from './getContactCampaignStatsUnsubscriptionsUserUnsubscriptionInner';
|
|
545
649
|
import { GetContactDetails } from './getContactDetails';
|
|
546
650
|
import { GetContacts } from './getContacts';
|
|
547
651
|
import { GetCorporateInvitedUsersList } from './getCorporateInvitedUsersList';
|
|
@@ -609,8 +713,8 @@ import { GetReportsReportsInner } from './getReportsReportsInner';
|
|
|
609
713
|
import { GetScheduledEmailByBatchId } from './getScheduledEmailByBatchId';
|
|
610
714
|
import { GetScheduledEmailByBatchIdBatchesInner } from './getScheduledEmailByBatchIdBatchesInner';
|
|
611
715
|
import { GetScheduledEmailByMessageId } from './getScheduledEmailByMessageId';
|
|
716
|
+
import { GetSegment } from './getSegment';
|
|
612
717
|
import { GetSegments } from './getSegments';
|
|
613
|
-
import { GetSegmentsSegments } from './getSegmentsSegments';
|
|
614
718
|
import { GetSendersList } from './getSendersList';
|
|
615
719
|
import { GetSendersListSendersInner } from './getSendersListSendersInner';
|
|
616
720
|
import { GetSendersListSendersInnerIpsInner } from './getSendersListSendersInnerIpsInner';
|
|
@@ -656,13 +760,51 @@ import { InviteAdminUser } from './inviteAdminUser';
|
|
|
656
760
|
import { InviteAdminUserPrivilegesInner } from './inviteAdminUserPrivilegesInner';
|
|
657
761
|
import { Inviteuser } from './inviteuser';
|
|
658
762
|
import { InviteuserPrivilegesInner } from './inviteuserPrivilegesInner';
|
|
659
|
-
import {
|
|
763
|
+
import { LoyaltyProgram } from './loyaltyProgram';
|
|
764
|
+
import { LoyaltyProgramPage } from './loyaltyProgramPage';
|
|
765
|
+
import { LoyaltyProgramValidationError } from './loyaltyProgramValidationError';
|
|
766
|
+
import { LoyaltyTierPage } from './loyaltyTierPage';
|
|
767
|
+
import { MainAttributeRewardPayload } from './mainAttributeRewardPayload';
|
|
768
|
+
import { MainBillingPayload } from './mainBillingPayload';
|
|
769
|
+
import { MainCodeCountHttpResponse } from './mainCodeCountHttpResponse';
|
|
770
|
+
import { MainCreateRedeemPayload } from './mainCreateRedeemPayload';
|
|
771
|
+
import { MainCreateRewardPayload } from './mainCreateRewardPayload';
|
|
772
|
+
import { MainCreateRewardResponse } from './mainCreateRewardResponse';
|
|
773
|
+
import { MainErrorResponse } from './mainErrorResponse';
|
|
774
|
+
import { MainFilter } from './mainFilter';
|
|
775
|
+
import { MainGenerator } from './mainGenerator';
|
|
776
|
+
import { MainGetContactRewardsPayload } from './mainGetContactRewardsPayload';
|
|
777
|
+
import { MainIdentifiersPayload } from './mainIdentifiersPayload';
|
|
778
|
+
import { MainLimit } from './mainLimit';
|
|
779
|
+
import { MainModelContactReward } from './mainModelContactReward';
|
|
780
|
+
import { MainModelContactRewardsResp } from './mainModelContactRewardsResp';
|
|
781
|
+
import { MainNodeResponse } from './mainNodeResponse';
|
|
782
|
+
import { MainOrderPayload } from './mainOrderPayload';
|
|
783
|
+
import { MainProduct } from './mainProduct';
|
|
784
|
+
import { MainProductPayload } from './mainProductPayload';
|
|
785
|
+
import { MainRedeem } from './mainRedeem';
|
|
786
|
+
import { MainResultParameterResponse } from './mainResultParameterResponse';
|
|
787
|
+
import { MainReward } from './mainReward';
|
|
788
|
+
import { MainRewardAttribution } from './mainRewardAttribution';
|
|
789
|
+
import { MainRewardConfigurations } from './mainRewardConfigurations';
|
|
790
|
+
import { MainRewardPage } from './mainRewardPage';
|
|
791
|
+
import { MainRewardPageObj } from './mainRewardPageObj';
|
|
792
|
+
import { MainRewardValidate } from './mainRewardValidate';
|
|
793
|
+
import { MainRule } from './mainRule';
|
|
794
|
+
import { MainRuleConditionResponse } from './mainRuleConditionResponse';
|
|
795
|
+
import { MainRuleEventResponse } from './mainRuleEventResponse';
|
|
796
|
+
import { MainRuleResultResponse } from './mainRuleResultResponse';
|
|
797
|
+
import { MainValidateRewardPayload } from './mainValidateRewardPayload';
|
|
798
|
+
import { MainValueResponse } from './mainValueResponse';
|
|
799
|
+
import { MainVoucherRevokePayload } from './mainVoucherRevokePayload';
|
|
660
800
|
import { MasterDetailsResponse } from './masterDetailsResponse';
|
|
661
801
|
import { MasterDetailsResponseBillingInfo } from './masterDetailsResponseBillingInfo';
|
|
662
802
|
import { MasterDetailsResponseBillingInfoAddress } from './masterDetailsResponseBillingInfoAddress';
|
|
663
803
|
import { MasterDetailsResponseBillingInfoName } from './masterDetailsResponseBillingInfoName';
|
|
664
804
|
import { MasterDetailsResponsePlanInfo } from './masterDetailsResponsePlanInfo';
|
|
665
805
|
import { MasterDetailsResponsePlanInfoFeaturesInner } from './masterDetailsResponsePlanInfoFeaturesInner';
|
|
806
|
+
import { MemberContact } from './memberContact';
|
|
807
|
+
import { ModelSubscriptionBalanceResp } from './modelSubscriptionBalanceResp';
|
|
666
808
|
import { Note } from './note';
|
|
667
809
|
import { NoteData } from './noteData';
|
|
668
810
|
import { NoteId } from './noteId';
|
|
@@ -670,8 +812,10 @@ import { Notification } from './notification';
|
|
|
670
812
|
import { Order } from './order';
|
|
671
813
|
import { OrderBatch } from './orderBatch';
|
|
672
814
|
import { OrderBilling } from './orderBilling';
|
|
815
|
+
import { OrderIdentifiers } from './orderIdentifiers';
|
|
673
816
|
import { OrderProductsInner } from './orderProductsInner';
|
|
674
817
|
import { Otp } from './otp';
|
|
818
|
+
import { PatchLoyaltyProgramPayload } from './patchLoyaltyProgramPayload';
|
|
675
819
|
import { Pipeline } from './pipeline';
|
|
676
820
|
import { PipelineStage } from './pipelineStage';
|
|
677
821
|
import { PostContactInfo } from './postContactInfo';
|
|
@@ -680,11 +824,7 @@ import { PostSendFailed } from './postSendFailed';
|
|
|
680
824
|
import { PostSendSmsTestFailed } from './postSendSmsTestFailed';
|
|
681
825
|
import { PutRevokeUserPermission } from './putRevokeUserPermission';
|
|
682
826
|
import { Putresendcancelinvitation } from './putresendcancelinvitation';
|
|
683
|
-
import { RemainingCreditModel } from './remainingCreditModel';
|
|
684
|
-
import { RemainingCreditModelChild } from './remainingCreditModelChild';
|
|
685
|
-
import { RemainingCreditModelReseller } from './remainingCreditModelReseller';
|
|
686
827
|
import { RemoveContactFromList } from './removeContactFromList';
|
|
687
|
-
import { RemoveCredits } from './removeCredits';
|
|
688
828
|
import { RequestContactExport } from './requestContactExport';
|
|
689
829
|
import { RequestContactExportCustomContactFilter } from './requestContactExportCustomContactFilter';
|
|
690
830
|
import { RequestContactImport } from './requestContactImport';
|
|
@@ -708,6 +848,7 @@ import { SendSmtpEmailToInner } from './sendSmtpEmailToInner';
|
|
|
708
848
|
import { SendTestEmail } from './sendTestEmail';
|
|
709
849
|
import { SendTestSms } from './sendTestSms';
|
|
710
850
|
import { SendTransacSms } from './sendTransacSms';
|
|
851
|
+
import { SendTransacSmsTag } from './sendTransacSmsTag';
|
|
711
852
|
import { SendWhatsappMessage } from './sendWhatsappMessage';
|
|
712
853
|
import { SendWhatsappMessage201Response } from './sendWhatsappMessage201Response';
|
|
713
854
|
import { SsoTokenRequest } from './ssoTokenRequest';
|
|
@@ -718,11 +859,14 @@ import { SubAccountDetailsResponseGroupsInner } from './subAccountDetailsRespons
|
|
|
718
859
|
import { SubAccountDetailsResponsePlanInfo } from './subAccountDetailsResponsePlanInfo';
|
|
719
860
|
import { SubAccountDetailsResponsePlanInfoCredits } from './subAccountDetailsResponsePlanInfoCredits';
|
|
720
861
|
import { SubAccountDetailsResponsePlanInfoCreditsEmails } from './subAccountDetailsResponsePlanInfoCreditsEmails';
|
|
862
|
+
import { SubAccountDetailsResponsePlanInfoCreditsExternalFeeds } from './subAccountDetailsResponsePlanInfoCreditsExternalFeeds';
|
|
721
863
|
import { SubAccountDetailsResponsePlanInfoCreditsSms } from './subAccountDetailsResponsePlanInfoCreditsSms';
|
|
864
|
+
import { SubAccountDetailsResponsePlanInfoCreditsWhatsapp } from './subAccountDetailsResponsePlanInfoCreditsWhatsapp';
|
|
722
865
|
import { SubAccountDetailsResponsePlanInfoCreditsWpSubscribers } from './subAccountDetailsResponsePlanInfoCreditsWpSubscribers';
|
|
723
866
|
import { SubAccountDetailsResponsePlanInfoFeatures } from './subAccountDetailsResponsePlanInfoFeatures';
|
|
724
867
|
import { SubAccountDetailsResponsePlanInfoFeaturesInbox } from './subAccountDetailsResponsePlanInfoFeaturesInbox';
|
|
725
868
|
import { SubAccountDetailsResponsePlanInfoFeaturesLandingPage } from './subAccountDetailsResponsePlanInfoFeaturesLandingPage';
|
|
869
|
+
import { SubAccountDetailsResponsePlanInfoFeaturesSalesUsers } from './subAccountDetailsResponsePlanInfoFeaturesSalesUsers';
|
|
726
870
|
import { SubAccountDetailsResponsePlanInfoFeaturesUsers } from './subAccountDetailsResponsePlanInfoFeaturesUsers';
|
|
727
871
|
import { SubAccountUpdatePlanRequest } from './subAccountUpdatePlanRequest';
|
|
728
872
|
import { SubAccountUpdatePlanRequestCredits } from './subAccountUpdatePlanRequestCredits';
|
|
@@ -730,31 +874,59 @@ import { SubAccountUpdatePlanRequestFeatures } from './subAccountUpdatePlanReque
|
|
|
730
874
|
import { SubAccountsResponse } from './subAccountsResponse';
|
|
731
875
|
import { SubAccountsResponseSubAccountsInner } from './subAccountsResponseSubAccountsInner';
|
|
732
876
|
import { SubAccountsResponseSubAccountsInnerGroupsInner } from './subAccountsResponseSubAccountsInnerGroupsInner';
|
|
877
|
+
import { SubAccountsUpdatePlanRequest } from './subAccountsUpdatePlanRequest';
|
|
878
|
+
import { SubAccountsUpdatePlanRequestCredits } from './subAccountsUpdatePlanRequestCredits';
|
|
879
|
+
import { SubAccountsUpdatePlanRequestFeatures } from './subAccountsUpdatePlanRequestFeatures';
|
|
880
|
+
import { Subscription } from './subscription';
|
|
881
|
+
import { SubscriptionAggregateBalance } from './subscriptionAggregateBalance';
|
|
882
|
+
import { SubscriptionAttributedReward } from './subscriptionAttributedReward';
|
|
883
|
+
import { SubscriptionBalances } from './subscriptionBalances';
|
|
884
|
+
import { SubscriptionHandlerInfo } from './subscriptionHandlerInfo';
|
|
885
|
+
import { SubscriptionMember } from './subscriptionMember';
|
|
886
|
+
import { SubscriptionTier } from './subscriptionTier';
|
|
733
887
|
import { Task } from './task';
|
|
734
888
|
import { TaskList } from './taskList';
|
|
735
889
|
import { TaskReminder } from './taskReminder';
|
|
736
890
|
import { TaskTypes } from './taskTypes';
|
|
891
|
+
import { TemplatePreview } from './templatePreview';
|
|
892
|
+
import { Tier } from './tier';
|
|
893
|
+
import { TierAccessConditionsInner } from './tierAccessConditionsInner';
|
|
894
|
+
import { TierForContact } from './tierForContact';
|
|
895
|
+
import { TierGroup } from './tierGroup';
|
|
896
|
+
import { TierGroupPage } from './tierGroupPage';
|
|
897
|
+
import { TierRequest } from './tierRequest';
|
|
898
|
+
import { TierRequestAccessConditionsInner } from './tierRequestAccessConditionsInner';
|
|
899
|
+
import { TierRequestPutPayload } from './tierRequestPutPayload';
|
|
900
|
+
import { TierRequestTierRewardsInner } from './tierRequestTierRewardsInner';
|
|
901
|
+
import { TierTierRewardsInner } from './tierTierRewardsInner';
|
|
902
|
+
import { Transaction } from './transaction';
|
|
903
|
+
import { TransactionHistory } from './transactionHistory';
|
|
904
|
+
import { TransactionHistoryResp } from './transactionHistoryResp';
|
|
905
|
+
import { UnauthorizedResponse } from './unauthorizedResponse';
|
|
737
906
|
import { UpdateAttribute } from './updateAttribute';
|
|
738
907
|
import { UpdateAttributeEnumerationInner } from './updateAttributeEnumerationInner';
|
|
908
|
+
import { UpdateBalanceDefinitionPayload } from './updateBalanceDefinitionPayload';
|
|
909
|
+
import { UpdateBalanceLimitPayload } from './updateBalanceLimitPayload';
|
|
739
910
|
import { UpdateBatchContacts } from './updateBatchContacts';
|
|
740
911
|
import { UpdateBatchContactsContactsInner } from './updateBatchContactsContactsInner';
|
|
741
912
|
import { UpdateBatchContactsModel } from './updateBatchContactsModel';
|
|
742
913
|
import { UpdateCampaignStatus } from './updateCampaignStatus';
|
|
743
914
|
import { UpdateChild } from './updateChild';
|
|
744
|
-
import { UpdateChildAccountStatus } from './updateChildAccountStatus';
|
|
745
|
-
import { UpdateChildDomain } from './updateChildDomain';
|
|
746
915
|
import { UpdateContact } from './updateContact';
|
|
747
916
|
import { UpdateCouponCollection200Response } from './updateCouponCollection200Response';
|
|
748
917
|
import { UpdateCouponCollectionRequest } from './updateCouponCollectionRequest';
|
|
749
918
|
import { UpdateEmailCampaign } from './updateEmailCampaign';
|
|
919
|
+
import { UpdateEmailCampaignEmailExpirationDate } from './updateEmailCampaignEmailExpirationDate';
|
|
750
920
|
import { UpdateEmailCampaignRecipients } from './updateEmailCampaignRecipients';
|
|
751
921
|
import { UpdateEmailCampaignSender } from './updateEmailCampaignSender';
|
|
752
922
|
import { UpdateExternalFeed } from './updateExternalFeed';
|
|
753
923
|
import { UpdateList } from './updateList';
|
|
924
|
+
import { UpdateLoyaltyProgramPayload } from './updateLoyaltyProgramPayload';
|
|
754
925
|
import { UpdateSender } from './updateSender';
|
|
755
926
|
import { UpdateSmsCampaign } from './updateSmsCampaign';
|
|
756
927
|
import { UpdateSmtpTemplate } from './updateSmtpTemplate';
|
|
757
928
|
import { UpdateSmtpTemplateSender } from './updateSmtpTemplateSender';
|
|
929
|
+
import { UpdateTierGroupRequest } from './updateTierGroupRequest';
|
|
758
930
|
import { UpdateWebhook } from './updateWebhook';
|
|
759
931
|
import { UpdateWhatsAppCampaign } from './updateWhatsAppCampaign';
|
|
760
932
|
import { UploadImageModel } from './uploadImageModel';
|
|
@@ -778,18 +950,37 @@ let primitives = [
|
|
|
778
950
|
let enumsMap: {[index: string]: any} = {
|
|
779
951
|
"AbTestCampaignResult.WinningVersionEnum": AbTestCampaignResult.WinningVersionEnum,
|
|
780
952
|
"AbTestCampaignResult.WinningCriteriaEnum": AbTestCampaignResult.WinningCriteriaEnum,
|
|
953
|
+
"BalanceDefinition.BalanceAvailabilityDurationModifierEnum": BalanceDefinition.BalanceAvailabilityDurationModifierEnum,
|
|
781
954
|
"Cart.CurrencyEnum": Cart.CurrencyEnum,
|
|
955
|
+
"ContactErrorModel.CodeEnum": ContactErrorModel.CodeEnum,
|
|
782
956
|
"ConversationsMessage.TypeEnum": ConversationsMessage.TypeEnum,
|
|
783
957
|
"ConversionSourceMetrics.ConversionSourceEnum": ConversionSourceMetrics.ConversionSourceEnum,
|
|
958
|
+
"CorporateUserEmailPermissionsPutRequestPrivilegesInner.FeatureEnum": CorporateUserEmailPermissionsPutRequestPrivilegesInner.FeatureEnum,
|
|
959
|
+
"CorporateUserEmailPermissionsPutRequestPrivilegesInner.PermissionsEnum": CorporateUserEmailPermissionsPutRequestPrivilegesInner.PermissionsEnum,
|
|
784
960
|
"CreateAttribute.TypeEnum": CreateAttribute.TypeEnum,
|
|
961
|
+
"CreateBalanceDefinitionPayload.BalanceAvailabilityDurationModifierEnum": CreateBalanceDefinitionPayload.BalanceAvailabilityDurationModifierEnum,
|
|
962
|
+
"CreateBalanceDefinitionPayload.BalanceAvailabilityDurationUnitEnum": CreateBalanceDefinitionPayload.BalanceAvailabilityDurationUnitEnum,
|
|
963
|
+
"CreateBalanceDefinitionPayload.BalanceOptionAmountOvertakingStrategyEnum": CreateBalanceDefinitionPayload.BalanceOptionAmountOvertakingStrategyEnum,
|
|
964
|
+
"CreateBalanceDefinitionPayload.BalanceOptionCreditRoundingEnum": CreateBalanceDefinitionPayload.BalanceOptionCreditRoundingEnum,
|
|
965
|
+
"CreateBalanceDefinitionPayload.BalanceOptionDebitRoundingEnum": CreateBalanceDefinitionPayload.BalanceOptionDebitRoundingEnum,
|
|
966
|
+
"CreateBalanceDefinitionPayload.UnitEnum": CreateBalanceDefinitionPayload.UnitEnum,
|
|
967
|
+
"CreateBalanceLimitPayload.ConstraintTypeEnum": CreateBalanceLimitPayload.ConstraintTypeEnum,
|
|
968
|
+
"CreateBalanceLimitPayload.DurationUnitEnum": CreateBalanceLimitPayload.DurationUnitEnum,
|
|
969
|
+
"CreateBalanceLimitPayload.TransactionTypeEnum": CreateBalanceLimitPayload.TransactionTypeEnum,
|
|
785
970
|
"CreateChild.LanguageEnum": CreateChild.LanguageEnum,
|
|
786
971
|
"CreateEmailCampaign.WinnerCriteriaEnum": CreateEmailCampaign.WinnerCriteriaEnum,
|
|
972
|
+
"CreateEmailCampaignEmailExpirationDate.UnitEnum": CreateEmailCampaignEmailExpirationDate.UnitEnum,
|
|
787
973
|
"CreateExternalFeed.AuthTypeEnum": CreateExternalFeed.AuthTypeEnum,
|
|
788
974
|
"CreateSubAccount.LanguageEnum": CreateSubAccount.LanguageEnum,
|
|
975
|
+
"CreateTierGroupRequest.UpgradeStrategyEnum": CreateTierGroupRequest.UpgradeStrategyEnum,
|
|
976
|
+
"CreateTierGroupRequest.DowngradeStrategyEnum": CreateTierGroupRequest.DowngradeStrategyEnum,
|
|
789
977
|
"CreateWebhook.EventsEnum": CreateWebhook.EventsEnum,
|
|
790
978
|
"CreateWebhook.TypeEnum": CreateWebhook.TypeEnum,
|
|
979
|
+
"CreateWebhook.ChannelEnum": CreateWebhook.ChannelEnum,
|
|
791
980
|
"CreateWhatsAppTemplate.CategoryEnum": CreateWhatsAppTemplate.CategoryEnum,
|
|
792
981
|
"CreateWhatsAppTemplate.SourceEnum": CreateWhatsAppTemplate.SourceEnum,
|
|
982
|
+
"CrmAttributesPostRequest.AttributeTypeEnum": CrmAttributesPostRequest.AttributeTypeEnum,
|
|
983
|
+
"CrmAttributesPostRequest.ObjectTypeEnum": CrmAttributesPostRequest.ObjectTypeEnum,
|
|
793
984
|
"EcommerceAttributionMetricsConversionSourceConversionSourceIdGet200Response.ConversionSourceEnum": EcommerceAttributionMetricsConversionSourceConversionSourceIdGet200Response.ConversionSourceEnum,
|
|
794
985
|
"EmailExportRecipients.RecipientsTypeEnum": EmailExportRecipients.RecipientsTypeEnum,
|
|
795
986
|
"ErrorModel.CodeEnum": ErrorModel.CodeEnum,
|
|
@@ -830,6 +1021,10 @@ let enumsMap: {[index: string]: any} = {
|
|
|
830
1021
|
"InviteAdminUserPrivilegesInner.PermissionsEnum": InviteAdminUserPrivilegesInner.PermissionsEnum,
|
|
831
1022
|
"InviteuserPrivilegesInner.FeatureEnum": InviteuserPrivilegesInner.FeatureEnum,
|
|
832
1023
|
"InviteuserPrivilegesInner.PermissionsEnum": InviteuserPrivilegesInner.PermissionsEnum,
|
|
1024
|
+
"LoyaltyProgram.StateEnum": LoyaltyProgram.StateEnum,
|
|
1025
|
+
"MainGetContactRewardsPayload.SortEnum": MainGetContactRewardsPayload.SortEnum,
|
|
1026
|
+
"MainGetContactRewardsPayload.SortFieldEnum": MainGetContactRewardsPayload.SortFieldEnum,
|
|
1027
|
+
"MainReward.ExpirationModifierEnum": MainReward.ExpirationModifierEnum,
|
|
833
1028
|
"MasterDetailsResponsePlanInfo.PlanPeriodEnum": MasterDetailsResponsePlanInfo.PlanPeriodEnum,
|
|
834
1029
|
"Notification.ChannelEnum": Notification.ChannelEnum,
|
|
835
1030
|
"RequestContactExportCustomContactFilter.ActionForContactsEnum": RequestContactExportCustomContactFilter.ActionForContactsEnum,
|
|
@@ -840,9 +1035,23 @@ let enumsMap: {[index: string]: any} = {
|
|
|
840
1035
|
"SendTransacSms.TypeEnum": SendTransacSms.TypeEnum,
|
|
841
1036
|
"SsoTokenRequest.TargetEnum": SsoTokenRequest.TargetEnum,
|
|
842
1037
|
"TaskReminder.UnitEnum": TaskReminder.UnitEnum,
|
|
1038
|
+
"TierGroup.UpgradeStrategyEnum": TierGroup.UpgradeStrategyEnum,
|
|
1039
|
+
"TierGroup.DowngradeStrategyEnum": TierGroup.DowngradeStrategyEnum,
|
|
1040
|
+
"UpdateBalanceDefinitionPayload.BalanceAvailabilityDurationModifierEnum": UpdateBalanceDefinitionPayload.BalanceAvailabilityDurationModifierEnum,
|
|
1041
|
+
"UpdateBalanceDefinitionPayload.BalanceAvailabilityDurationUnitEnum": UpdateBalanceDefinitionPayload.BalanceAvailabilityDurationUnitEnum,
|
|
1042
|
+
"UpdateBalanceDefinitionPayload.BalanceOptionAmountOvertakingStrategyEnum": UpdateBalanceDefinitionPayload.BalanceOptionAmountOvertakingStrategyEnum,
|
|
1043
|
+
"UpdateBalanceDefinitionPayload.BalanceOptionCreditRoundingEnum": UpdateBalanceDefinitionPayload.BalanceOptionCreditRoundingEnum,
|
|
1044
|
+
"UpdateBalanceDefinitionPayload.BalanceOptionDebitRoundingEnum": UpdateBalanceDefinitionPayload.BalanceOptionDebitRoundingEnum,
|
|
1045
|
+
"UpdateBalanceDefinitionPayload.UnitEnum": UpdateBalanceDefinitionPayload.UnitEnum,
|
|
1046
|
+
"UpdateBalanceLimitPayload.ConstraintTypeEnum": UpdateBalanceLimitPayload.ConstraintTypeEnum,
|
|
1047
|
+
"UpdateBalanceLimitPayload.DurationUnitEnum": UpdateBalanceLimitPayload.DurationUnitEnum,
|
|
1048
|
+
"UpdateBalanceLimitPayload.TransactionTypeEnum": UpdateBalanceLimitPayload.TransactionTypeEnum,
|
|
843
1049
|
"UpdateCampaignStatus.StatusEnum": UpdateCampaignStatus.StatusEnum,
|
|
844
1050
|
"UpdateEmailCampaign.WinnerCriteriaEnum": UpdateEmailCampaign.WinnerCriteriaEnum,
|
|
1051
|
+
"UpdateEmailCampaignEmailExpirationDate.UnitEnum": UpdateEmailCampaignEmailExpirationDate.UnitEnum,
|
|
845
1052
|
"UpdateExternalFeed.AuthTypeEnum": UpdateExternalFeed.AuthTypeEnum,
|
|
1053
|
+
"UpdateTierGroupRequest.UpgradeStrategyEnum": UpdateTierGroupRequest.UpgradeStrategyEnum,
|
|
1054
|
+
"UpdateTierGroupRequest.DowngradeStrategyEnum": UpdateTierGroupRequest.DowngradeStrategyEnum,
|
|
846
1055
|
"UpdateWebhook.EventsEnum": UpdateWebhook.EventsEnum,
|
|
847
1056
|
"UpdateWhatsAppCampaign.CampaignStatusEnum": UpdateWhatsAppCampaign.CampaignStatusEnum,
|
|
848
1057
|
}
|
|
@@ -855,11 +1064,20 @@ let typeMap: {[index: string]: any} = {
|
|
|
855
1064
|
"AbTestVersionStats": AbTestVersionStats,
|
|
856
1065
|
"AddChildDomain": AddChildDomain,
|
|
857
1066
|
"AddContactToList": AddContactToList,
|
|
858
|
-
"
|
|
1067
|
+
"AddSubscriptionMemberPayload": AddSubscriptionMemberPayload,
|
|
1068
|
+
"AggregateBalance": AggregateBalance,
|
|
859
1069
|
"AuthenticateDomainModel": AuthenticateDomainModel,
|
|
1070
|
+
"Balance": Balance,
|
|
1071
|
+
"BalanceDataPerContact": BalanceDataPerContact,
|
|
1072
|
+
"BalanceDefinition": BalanceDefinition,
|
|
1073
|
+
"BalanceDefinitionPage": BalanceDefinitionPage,
|
|
1074
|
+
"BalanceLimit": BalanceLimit,
|
|
1075
|
+
"BalanceOrder": BalanceOrder,
|
|
860
1076
|
"BlockDomain": BlockDomain,
|
|
861
1077
|
"Cart": Cart,
|
|
862
1078
|
"CompaniesIdPatchRequest": CompaniesIdPatchRequest,
|
|
1079
|
+
"CompaniesImportPost200Response": CompaniesImportPost200Response,
|
|
1080
|
+
"CompaniesImportPost400Response": CompaniesImportPost400Response,
|
|
863
1081
|
"CompaniesLinkUnlinkIdPatchRequest": CompaniesLinkUnlinkIdPatchRequest,
|
|
864
1082
|
"CompaniesList": CompaniesList,
|
|
865
1083
|
"CompaniesPost200Response": CompaniesPost200Response,
|
|
@@ -868,10 +1086,17 @@ let typeMap: {[index: string]: any} = {
|
|
|
868
1086
|
"CompanyAttributesInner": CompanyAttributesInner,
|
|
869
1087
|
"ComponentItems": ComponentItems,
|
|
870
1088
|
"Configuration": Configuration,
|
|
1089
|
+
"ContactBalancesResp": ContactBalancesResp,
|
|
1090
|
+
"ContactErrorModel": ContactErrorModel,
|
|
871
1091
|
"ConversationsAgentOnlinePingPostRequest": ConversationsAgentOnlinePingPostRequest,
|
|
872
1092
|
"ConversationsMessage": ConversationsMessage,
|
|
1093
|
+
"ConversationsMessageAttachmentsInner": ConversationsMessageAttachmentsInner,
|
|
873
1094
|
"ConversationsMessageFile": ConversationsMessageFile,
|
|
874
1095
|
"ConversationsMessageFileImageInfo": ConversationsMessageFileImageInfo,
|
|
1096
|
+
"ConversationsMessageForwardedToSourceStatus": ConversationsMessageForwardedToSourceStatus,
|
|
1097
|
+
"ConversationsMessageFrom": ConversationsMessageFrom,
|
|
1098
|
+
"ConversationsMessageReplyTo": ConversationsMessageReplyTo,
|
|
1099
|
+
"ConversationsMessageToInner": ConversationsMessageToInner,
|
|
875
1100
|
"ConversationsMessagesIdPutRequest": ConversationsMessagesIdPutRequest,
|
|
876
1101
|
"ConversationsMessagesPostRequest": ConversationsMessagesPostRequest,
|
|
877
1102
|
"ConversationsPushedMessagesIdPutRequest": ConversationsPushedMessagesIdPutRequest,
|
|
@@ -887,11 +1112,16 @@ let typeMap: {[index: string]: any} = {
|
|
|
887
1112
|
"CorporateGroupUnlinkGroupIdSubAccountsPutRequest": CorporateGroupUnlinkGroupIdSubAccountsPutRequest,
|
|
888
1113
|
"CorporateSubAccountIpAssociatePostRequest": CorporateSubAccountIpAssociatePostRequest,
|
|
889
1114
|
"CorporateSubAccountIpDissociatePutRequest": CorporateSubAccountIpDissociatePutRequest,
|
|
1115
|
+
"CorporateUserEmailPermissionsPutRequest": CorporateUserEmailPermissionsPutRequest,
|
|
1116
|
+
"CorporateUserEmailPermissionsPutRequestPrivilegesInner": CorporateUserEmailPermissionsPutRequestPrivilegesInner,
|
|
890
1117
|
"CorporateUserInvitationActionEmailPut200Response": CorporateUserInvitationActionEmailPut200Response,
|
|
891
1118
|
"CreateApiKeyRequest": CreateApiKeyRequest,
|
|
892
1119
|
"CreateApiKeyResponse": CreateApiKeyResponse,
|
|
893
1120
|
"CreateAttribute": CreateAttribute,
|
|
894
1121
|
"CreateAttributeEnumerationInner": CreateAttributeEnumerationInner,
|
|
1122
|
+
"CreateBalanceDefinitionPayload": CreateBalanceDefinitionPayload,
|
|
1123
|
+
"CreateBalanceLimitPayload": CreateBalanceLimitPayload,
|
|
1124
|
+
"CreateBalancePayload": CreateBalancePayload,
|
|
895
1125
|
"CreateCategoryModel": CreateCategoryModel,
|
|
896
1126
|
"CreateChild": CreateChild,
|
|
897
1127
|
"CreateContact": CreateContact,
|
|
@@ -904,16 +1134,18 @@ let typeMap: {[index: string]: any} = {
|
|
|
904
1134
|
"CreateDomainModelDnsRecords": CreateDomainModelDnsRecords,
|
|
905
1135
|
"CreateDomainModelDnsRecordsDkimRecord": CreateDomainModelDnsRecordsDkimRecord,
|
|
906
1136
|
"CreateEmailCampaign": CreateEmailCampaign,
|
|
1137
|
+
"CreateEmailCampaignEmailExpirationDate": CreateEmailCampaignEmailExpirationDate,
|
|
907
1138
|
"CreateEmailCampaignRecipients": CreateEmailCampaignRecipients,
|
|
908
1139
|
"CreateEmailCampaignSender": CreateEmailCampaignSender,
|
|
909
1140
|
"CreateExternalFeed": CreateExternalFeed,
|
|
910
1141
|
"CreateExternalFeed201Response": CreateExternalFeed201Response,
|
|
911
1142
|
"CreateList": CreateList,
|
|
1143
|
+
"CreateLoyaltyProgramPayload": CreateLoyaltyProgramPayload,
|
|
912
1144
|
"CreateModel": CreateModel,
|
|
1145
|
+
"CreateOrderPayload": CreateOrderPayload,
|
|
913
1146
|
"CreatePaymentRequest": CreatePaymentRequest,
|
|
914
1147
|
"CreatePaymentResponse": CreatePaymentResponse,
|
|
915
1148
|
"CreateProductModel": CreateProductModel,
|
|
916
|
-
"CreateReseller": CreateReseller,
|
|
917
1149
|
"CreateSender": CreateSender,
|
|
918
1150
|
"CreateSenderIpsInner": CreateSenderIpsInner,
|
|
919
1151
|
"CreateSenderModel": CreateSenderModel,
|
|
@@ -924,6 +1156,10 @@ let typeMap: {[index: string]: any} = {
|
|
|
924
1156
|
"CreateSmtpTemplateSender": CreateSmtpTemplateSender,
|
|
925
1157
|
"CreateSubAccount": CreateSubAccount,
|
|
926
1158
|
"CreateSubAccountResponse": CreateSubAccountResponse,
|
|
1159
|
+
"CreateSubscriptionPayload": CreateSubscriptionPayload,
|
|
1160
|
+
"CreateSubscriptionResponse": CreateSubscriptionResponse,
|
|
1161
|
+
"CreateTierGroupRequest": CreateTierGroupRequest,
|
|
1162
|
+
"CreateTransactionPayload": CreateTransactionPayload,
|
|
927
1163
|
"CreateUpdateBatchCategory": CreateUpdateBatchCategory,
|
|
928
1164
|
"CreateUpdateBatchCategoryModel": CreateUpdateBatchCategoryModel,
|
|
929
1165
|
"CreateUpdateBatchProducts": CreateUpdateBatchProducts,
|
|
@@ -940,6 +1176,8 @@ let typeMap: {[index: string]: any} = {
|
|
|
940
1176
|
"CreateWhatsAppTemplate": CreateWhatsAppTemplate,
|
|
941
1177
|
"CreatedBatchId": CreatedBatchId,
|
|
942
1178
|
"CreatedProcessId": CreatedProcessId,
|
|
1179
|
+
"CrmAttributesPost200Response": CrmAttributesPost200Response,
|
|
1180
|
+
"CrmAttributesPostRequest": CrmAttributesPostRequest,
|
|
943
1181
|
"CrmDealsIdPatchRequest": CrmDealsIdPatchRequest,
|
|
944
1182
|
"CrmDealsLinkUnlinkIdPatchRequest": CrmDealsLinkUnlinkIdPatchRequest,
|
|
945
1183
|
"CrmDealsPost201Response": CrmDealsPost201Response,
|
|
@@ -958,9 +1196,11 @@ let typeMap: {[index: string]: any} = {
|
|
|
958
1196
|
"EcommerceConfigDisplayCurrencyGet200Response": EcommerceConfigDisplayCurrencyGet200Response,
|
|
959
1197
|
"EmailExportRecipients": EmailExportRecipients,
|
|
960
1198
|
"ErrorModel": ErrorModel,
|
|
1199
|
+
"ErrorResponse": ErrorResponse,
|
|
961
1200
|
"Event": Event,
|
|
962
1201
|
"EventIdentifiers": EventIdentifiers,
|
|
963
1202
|
"ExportWebhooksHistory": ExportWebhooksHistory,
|
|
1203
|
+
"FetchTemplatePreview": FetchTemplatePreview,
|
|
964
1204
|
"FileData": FileData,
|
|
965
1205
|
"FileDownloadableLink": FileDownloadableLink,
|
|
966
1206
|
"GetAccount": GetAccount,
|
|
@@ -982,26 +1222,13 @@ let typeMap: {[index: string]: any} = {
|
|
|
982
1222
|
"GetCampaignStats": GetCampaignStats,
|
|
983
1223
|
"GetCategories": GetCategories,
|
|
984
1224
|
"GetCategoryDetails": GetCategoryDetails,
|
|
985
|
-
"GetChildAccountCreationStatus": GetChildAccountCreationStatus,
|
|
986
1225
|
"GetChildDomain": GetChildDomain,
|
|
987
|
-
"GetChildInfo": GetChildInfo,
|
|
988
|
-
"GetChildInfoAllOfApiKeys": GetChildInfoAllOfApiKeys,
|
|
989
|
-
"GetChildInfoAllOfApiKeysV2": GetChildInfoAllOfApiKeysV2,
|
|
990
|
-
"GetChildInfoAllOfApiKeysV3": GetChildInfoAllOfApiKeysV3,
|
|
991
|
-
"GetChildInfoAllOfCredits": GetChildInfoAllOfCredits,
|
|
992
|
-
"GetChildInfoAllOfStatistics": GetChildInfoAllOfStatistics,
|
|
993
|
-
"GetChildrenList": GetChildrenList,
|
|
994
|
-
"GetChildrenListChildrenInner": GetChildrenListChildrenInner,
|
|
995
1226
|
"GetClient": GetClient,
|
|
996
1227
|
"GetContactCampaignStats": GetContactCampaignStats,
|
|
997
1228
|
"GetContactCampaignStatsClickedInner": GetContactCampaignStatsClickedInner,
|
|
998
|
-
"GetContactCampaignStatsClickedInnerLinksInner": GetContactCampaignStatsClickedInnerLinksInner,
|
|
999
|
-
"GetContactCampaignStatsMessagesSentInner": GetContactCampaignStatsMessagesSentInner,
|
|
1000
1229
|
"GetContactCampaignStatsOpenedInner": GetContactCampaignStatsOpenedInner,
|
|
1001
1230
|
"GetContactCampaignStatsTransacAttributesInner": GetContactCampaignStatsTransacAttributesInner,
|
|
1002
1231
|
"GetContactCampaignStatsUnsubscriptions": GetContactCampaignStatsUnsubscriptions,
|
|
1003
|
-
"GetContactCampaignStatsUnsubscriptionsAdminUnsubscriptionInner": GetContactCampaignStatsUnsubscriptionsAdminUnsubscriptionInner,
|
|
1004
|
-
"GetContactCampaignStatsUnsubscriptionsUserUnsubscriptionInner": GetContactCampaignStatsUnsubscriptionsUserUnsubscriptionInner,
|
|
1005
1232
|
"GetContactDetails": GetContactDetails,
|
|
1006
1233
|
"GetContacts": GetContacts,
|
|
1007
1234
|
"GetCorporateInvitedUsersList": GetCorporateInvitedUsersList,
|
|
@@ -1069,8 +1296,8 @@ let typeMap: {[index: string]: any} = {
|
|
|
1069
1296
|
"GetScheduledEmailByBatchId": GetScheduledEmailByBatchId,
|
|
1070
1297
|
"GetScheduledEmailByBatchIdBatchesInner": GetScheduledEmailByBatchIdBatchesInner,
|
|
1071
1298
|
"GetScheduledEmailByMessageId": GetScheduledEmailByMessageId,
|
|
1299
|
+
"GetSegment": GetSegment,
|
|
1072
1300
|
"GetSegments": GetSegments,
|
|
1073
|
-
"GetSegmentsSegments": GetSegmentsSegments,
|
|
1074
1301
|
"GetSendersList": GetSendersList,
|
|
1075
1302
|
"GetSendersListSendersInner": GetSendersListSendersInner,
|
|
1076
1303
|
"GetSendersListSendersInnerIpsInner": GetSendersListSendersInnerIpsInner,
|
|
@@ -1116,13 +1343,51 @@ let typeMap: {[index: string]: any} = {
|
|
|
1116
1343
|
"InviteAdminUserPrivilegesInner": InviteAdminUserPrivilegesInner,
|
|
1117
1344
|
"Inviteuser": Inviteuser,
|
|
1118
1345
|
"InviteuserPrivilegesInner": InviteuserPrivilegesInner,
|
|
1119
|
-
"
|
|
1346
|
+
"LoyaltyProgram": LoyaltyProgram,
|
|
1347
|
+
"LoyaltyProgramPage": LoyaltyProgramPage,
|
|
1348
|
+
"LoyaltyProgramValidationError": LoyaltyProgramValidationError,
|
|
1349
|
+
"LoyaltyTierPage": LoyaltyTierPage,
|
|
1350
|
+
"MainAttributeRewardPayload": MainAttributeRewardPayload,
|
|
1351
|
+
"MainBillingPayload": MainBillingPayload,
|
|
1352
|
+
"MainCodeCountHttpResponse": MainCodeCountHttpResponse,
|
|
1353
|
+
"MainCreateRedeemPayload": MainCreateRedeemPayload,
|
|
1354
|
+
"MainCreateRewardPayload": MainCreateRewardPayload,
|
|
1355
|
+
"MainCreateRewardResponse": MainCreateRewardResponse,
|
|
1356
|
+
"MainErrorResponse": MainErrorResponse,
|
|
1357
|
+
"MainFilter": MainFilter,
|
|
1358
|
+
"MainGenerator": MainGenerator,
|
|
1359
|
+
"MainGetContactRewardsPayload": MainGetContactRewardsPayload,
|
|
1360
|
+
"MainIdentifiersPayload": MainIdentifiersPayload,
|
|
1361
|
+
"MainLimit": MainLimit,
|
|
1362
|
+
"MainModelContactReward": MainModelContactReward,
|
|
1363
|
+
"MainModelContactRewardsResp": MainModelContactRewardsResp,
|
|
1364
|
+
"MainNodeResponse": MainNodeResponse,
|
|
1365
|
+
"MainOrderPayload": MainOrderPayload,
|
|
1366
|
+
"MainProduct": MainProduct,
|
|
1367
|
+
"MainProductPayload": MainProductPayload,
|
|
1368
|
+
"MainRedeem": MainRedeem,
|
|
1369
|
+
"MainResultParameterResponse": MainResultParameterResponse,
|
|
1370
|
+
"MainReward": MainReward,
|
|
1371
|
+
"MainRewardAttribution": MainRewardAttribution,
|
|
1372
|
+
"MainRewardConfigurations": MainRewardConfigurations,
|
|
1373
|
+
"MainRewardPage": MainRewardPage,
|
|
1374
|
+
"MainRewardPageObj": MainRewardPageObj,
|
|
1375
|
+
"MainRewardValidate": MainRewardValidate,
|
|
1376
|
+
"MainRule": MainRule,
|
|
1377
|
+
"MainRuleConditionResponse": MainRuleConditionResponse,
|
|
1378
|
+
"MainRuleEventResponse": MainRuleEventResponse,
|
|
1379
|
+
"MainRuleResultResponse": MainRuleResultResponse,
|
|
1380
|
+
"MainValidateRewardPayload": MainValidateRewardPayload,
|
|
1381
|
+
"MainValueResponse": MainValueResponse,
|
|
1382
|
+
"MainVoucherRevokePayload": MainVoucherRevokePayload,
|
|
1120
1383
|
"MasterDetailsResponse": MasterDetailsResponse,
|
|
1121
1384
|
"MasterDetailsResponseBillingInfo": MasterDetailsResponseBillingInfo,
|
|
1122
1385
|
"MasterDetailsResponseBillingInfoAddress": MasterDetailsResponseBillingInfoAddress,
|
|
1123
1386
|
"MasterDetailsResponseBillingInfoName": MasterDetailsResponseBillingInfoName,
|
|
1124
1387
|
"MasterDetailsResponsePlanInfo": MasterDetailsResponsePlanInfo,
|
|
1125
1388
|
"MasterDetailsResponsePlanInfoFeaturesInner": MasterDetailsResponsePlanInfoFeaturesInner,
|
|
1389
|
+
"MemberContact": MemberContact,
|
|
1390
|
+
"ModelSubscriptionBalanceResp": ModelSubscriptionBalanceResp,
|
|
1126
1391
|
"Note": Note,
|
|
1127
1392
|
"NoteData": NoteData,
|
|
1128
1393
|
"NoteId": NoteId,
|
|
@@ -1130,8 +1395,10 @@ let typeMap: {[index: string]: any} = {
|
|
|
1130
1395
|
"Order": Order,
|
|
1131
1396
|
"OrderBatch": OrderBatch,
|
|
1132
1397
|
"OrderBilling": OrderBilling,
|
|
1398
|
+
"OrderIdentifiers": OrderIdentifiers,
|
|
1133
1399
|
"OrderProductsInner": OrderProductsInner,
|
|
1134
1400
|
"Otp": Otp,
|
|
1401
|
+
"PatchLoyaltyProgramPayload": PatchLoyaltyProgramPayload,
|
|
1135
1402
|
"Pipeline": Pipeline,
|
|
1136
1403
|
"PipelineStage": PipelineStage,
|
|
1137
1404
|
"PostContactInfo": PostContactInfo,
|
|
@@ -1140,11 +1407,7 @@ let typeMap: {[index: string]: any} = {
|
|
|
1140
1407
|
"PostSendSmsTestFailed": PostSendSmsTestFailed,
|
|
1141
1408
|
"PutRevokeUserPermission": PutRevokeUserPermission,
|
|
1142
1409
|
"Putresendcancelinvitation": Putresendcancelinvitation,
|
|
1143
|
-
"RemainingCreditModel": RemainingCreditModel,
|
|
1144
|
-
"RemainingCreditModelChild": RemainingCreditModelChild,
|
|
1145
|
-
"RemainingCreditModelReseller": RemainingCreditModelReseller,
|
|
1146
1410
|
"RemoveContactFromList": RemoveContactFromList,
|
|
1147
|
-
"RemoveCredits": RemoveCredits,
|
|
1148
1411
|
"RequestContactExport": RequestContactExport,
|
|
1149
1412
|
"RequestContactExportCustomContactFilter": RequestContactExportCustomContactFilter,
|
|
1150
1413
|
"RequestContactImport": RequestContactImport,
|
|
@@ -1168,6 +1431,7 @@ let typeMap: {[index: string]: any} = {
|
|
|
1168
1431
|
"SendTestEmail": SendTestEmail,
|
|
1169
1432
|
"SendTestSms": SendTestSms,
|
|
1170
1433
|
"SendTransacSms": SendTransacSms,
|
|
1434
|
+
"SendTransacSmsTag": SendTransacSmsTag,
|
|
1171
1435
|
"SendWhatsappMessage": SendWhatsappMessage,
|
|
1172
1436
|
"SendWhatsappMessage201Response": SendWhatsappMessage201Response,
|
|
1173
1437
|
"SsoTokenRequest": SsoTokenRequest,
|
|
@@ -1178,11 +1442,14 @@ let typeMap: {[index: string]: any} = {
|
|
|
1178
1442
|
"SubAccountDetailsResponsePlanInfo": SubAccountDetailsResponsePlanInfo,
|
|
1179
1443
|
"SubAccountDetailsResponsePlanInfoCredits": SubAccountDetailsResponsePlanInfoCredits,
|
|
1180
1444
|
"SubAccountDetailsResponsePlanInfoCreditsEmails": SubAccountDetailsResponsePlanInfoCreditsEmails,
|
|
1445
|
+
"SubAccountDetailsResponsePlanInfoCreditsExternalFeeds": SubAccountDetailsResponsePlanInfoCreditsExternalFeeds,
|
|
1181
1446
|
"SubAccountDetailsResponsePlanInfoCreditsSms": SubAccountDetailsResponsePlanInfoCreditsSms,
|
|
1447
|
+
"SubAccountDetailsResponsePlanInfoCreditsWhatsapp": SubAccountDetailsResponsePlanInfoCreditsWhatsapp,
|
|
1182
1448
|
"SubAccountDetailsResponsePlanInfoCreditsWpSubscribers": SubAccountDetailsResponsePlanInfoCreditsWpSubscribers,
|
|
1183
1449
|
"SubAccountDetailsResponsePlanInfoFeatures": SubAccountDetailsResponsePlanInfoFeatures,
|
|
1184
1450
|
"SubAccountDetailsResponsePlanInfoFeaturesInbox": SubAccountDetailsResponsePlanInfoFeaturesInbox,
|
|
1185
1451
|
"SubAccountDetailsResponsePlanInfoFeaturesLandingPage": SubAccountDetailsResponsePlanInfoFeaturesLandingPage,
|
|
1452
|
+
"SubAccountDetailsResponsePlanInfoFeaturesSalesUsers": SubAccountDetailsResponsePlanInfoFeaturesSalesUsers,
|
|
1186
1453
|
"SubAccountDetailsResponsePlanInfoFeaturesUsers": SubAccountDetailsResponsePlanInfoFeaturesUsers,
|
|
1187
1454
|
"SubAccountUpdatePlanRequest": SubAccountUpdatePlanRequest,
|
|
1188
1455
|
"SubAccountUpdatePlanRequestCredits": SubAccountUpdatePlanRequestCredits,
|
|
@@ -1190,31 +1457,59 @@ let typeMap: {[index: string]: any} = {
|
|
|
1190
1457
|
"SubAccountsResponse": SubAccountsResponse,
|
|
1191
1458
|
"SubAccountsResponseSubAccountsInner": SubAccountsResponseSubAccountsInner,
|
|
1192
1459
|
"SubAccountsResponseSubAccountsInnerGroupsInner": SubAccountsResponseSubAccountsInnerGroupsInner,
|
|
1460
|
+
"SubAccountsUpdatePlanRequest": SubAccountsUpdatePlanRequest,
|
|
1461
|
+
"SubAccountsUpdatePlanRequestCredits": SubAccountsUpdatePlanRequestCredits,
|
|
1462
|
+
"SubAccountsUpdatePlanRequestFeatures": SubAccountsUpdatePlanRequestFeatures,
|
|
1463
|
+
"Subscription": Subscription,
|
|
1464
|
+
"SubscriptionAggregateBalance": SubscriptionAggregateBalance,
|
|
1465
|
+
"SubscriptionAttributedReward": SubscriptionAttributedReward,
|
|
1466
|
+
"SubscriptionBalances": SubscriptionBalances,
|
|
1467
|
+
"SubscriptionHandlerInfo": SubscriptionHandlerInfo,
|
|
1468
|
+
"SubscriptionMember": SubscriptionMember,
|
|
1469
|
+
"SubscriptionTier": SubscriptionTier,
|
|
1193
1470
|
"Task": Task,
|
|
1194
1471
|
"TaskList": TaskList,
|
|
1195
1472
|
"TaskReminder": TaskReminder,
|
|
1196
1473
|
"TaskTypes": TaskTypes,
|
|
1474
|
+
"TemplatePreview": TemplatePreview,
|
|
1475
|
+
"Tier": Tier,
|
|
1476
|
+
"TierAccessConditionsInner": TierAccessConditionsInner,
|
|
1477
|
+
"TierForContact": TierForContact,
|
|
1478
|
+
"TierGroup": TierGroup,
|
|
1479
|
+
"TierGroupPage": TierGroupPage,
|
|
1480
|
+
"TierRequest": TierRequest,
|
|
1481
|
+
"TierRequestAccessConditionsInner": TierRequestAccessConditionsInner,
|
|
1482
|
+
"TierRequestPutPayload": TierRequestPutPayload,
|
|
1483
|
+
"TierRequestTierRewardsInner": TierRequestTierRewardsInner,
|
|
1484
|
+
"TierTierRewardsInner": TierTierRewardsInner,
|
|
1485
|
+
"Transaction": Transaction,
|
|
1486
|
+
"TransactionHistory": TransactionHistory,
|
|
1487
|
+
"TransactionHistoryResp": TransactionHistoryResp,
|
|
1488
|
+
"UnauthorizedResponse": UnauthorizedResponse,
|
|
1197
1489
|
"UpdateAttribute": UpdateAttribute,
|
|
1198
1490
|
"UpdateAttributeEnumerationInner": UpdateAttributeEnumerationInner,
|
|
1491
|
+
"UpdateBalanceDefinitionPayload": UpdateBalanceDefinitionPayload,
|
|
1492
|
+
"UpdateBalanceLimitPayload": UpdateBalanceLimitPayload,
|
|
1199
1493
|
"UpdateBatchContacts": UpdateBatchContacts,
|
|
1200
1494
|
"UpdateBatchContactsContactsInner": UpdateBatchContactsContactsInner,
|
|
1201
1495
|
"UpdateBatchContactsModel": UpdateBatchContactsModel,
|
|
1202
1496
|
"UpdateCampaignStatus": UpdateCampaignStatus,
|
|
1203
1497
|
"UpdateChild": UpdateChild,
|
|
1204
|
-
"UpdateChildAccountStatus": UpdateChildAccountStatus,
|
|
1205
|
-
"UpdateChildDomain": UpdateChildDomain,
|
|
1206
1498
|
"UpdateContact": UpdateContact,
|
|
1207
1499
|
"UpdateCouponCollection200Response": UpdateCouponCollection200Response,
|
|
1208
1500
|
"UpdateCouponCollectionRequest": UpdateCouponCollectionRequest,
|
|
1209
1501
|
"UpdateEmailCampaign": UpdateEmailCampaign,
|
|
1502
|
+
"UpdateEmailCampaignEmailExpirationDate": UpdateEmailCampaignEmailExpirationDate,
|
|
1210
1503
|
"UpdateEmailCampaignRecipients": UpdateEmailCampaignRecipients,
|
|
1211
1504
|
"UpdateEmailCampaignSender": UpdateEmailCampaignSender,
|
|
1212
1505
|
"UpdateExternalFeed": UpdateExternalFeed,
|
|
1213
1506
|
"UpdateList": UpdateList,
|
|
1507
|
+
"UpdateLoyaltyProgramPayload": UpdateLoyaltyProgramPayload,
|
|
1214
1508
|
"UpdateSender": UpdateSender,
|
|
1215
1509
|
"UpdateSmsCampaign": UpdateSmsCampaign,
|
|
1216
1510
|
"UpdateSmtpTemplate": UpdateSmtpTemplate,
|
|
1217
1511
|
"UpdateSmtpTemplateSender": UpdateSmtpTemplateSender,
|
|
1512
|
+
"UpdateTierGroupRequest": UpdateTierGroupRequest,
|
|
1218
1513
|
"UpdateWebhook": UpdateWebhook,
|
|
1219
1514
|
"UpdateWhatsAppCampaign": UpdateWhatsAppCampaign,
|
|
1220
1515
|
"UploadImageModel": UploadImageModel,
|
|
@@ -1224,6 +1519,23 @@ let typeMap: {[index: string]: any} = {
|
|
|
1224
1519
|
"WhatsappCampTemplate": WhatsappCampTemplate,
|
|
1225
1520
|
}
|
|
1226
1521
|
|
|
1522
|
+
// Check if a string starts with another string without using es6 features
|
|
1523
|
+
function startsWith(str: string, match: string): boolean {
|
|
1524
|
+
return str.substring(0, match.length) === match;
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1527
|
+
// Check if a string ends with another string without using es6 features
|
|
1528
|
+
function endsWith(str: string, match: string): boolean {
|
|
1529
|
+
return str.length >= match.length && str.substring(str.length - match.length) === match;
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
const nullableSuffix = " | null";
|
|
1533
|
+
const optionalSuffix = " | undefined";
|
|
1534
|
+
const arrayPrefix = "Array<";
|
|
1535
|
+
const arraySuffix = ">";
|
|
1536
|
+
const mapPrefix = "{ [key: string]: ";
|
|
1537
|
+
const mapSuffix = "; }";
|
|
1538
|
+
|
|
1227
1539
|
export class ObjectSerializer {
|
|
1228
1540
|
public static findCorrectType(data: any, expectedType: string) {
|
|
1229
1541
|
if (data == undefined) {
|
|
@@ -1260,20 +1572,35 @@ export class ObjectSerializer {
|
|
|
1260
1572
|
}
|
|
1261
1573
|
}
|
|
1262
1574
|
|
|
1263
|
-
public static serialize(data: any, type: string) {
|
|
1575
|
+
public static serialize(data: any, type: string): any {
|
|
1264
1576
|
if (data == undefined) {
|
|
1265
1577
|
return data;
|
|
1266
1578
|
} else if (primitives.indexOf(type.toLowerCase()) !== -1) {
|
|
1267
1579
|
return data;
|
|
1268
|
-
} else if (type
|
|
1269
|
-
let subType: string = type.
|
|
1270
|
-
|
|
1580
|
+
} else if (endsWith(type, nullableSuffix)) {
|
|
1581
|
+
let subType: string = type.slice(0, -nullableSuffix.length); // Type | null => Type
|
|
1582
|
+
return ObjectSerializer.serialize(data, subType);
|
|
1583
|
+
} else if (endsWith(type, optionalSuffix)) {
|
|
1584
|
+
let subType: string = type.slice(0, -optionalSuffix.length); // Type | undefined => Type
|
|
1585
|
+
return ObjectSerializer.serialize(data, subType);
|
|
1586
|
+
} else if (startsWith(type, arrayPrefix)) {
|
|
1587
|
+
let subType: string = type.slice(arrayPrefix.length, -arraySuffix.length); // Array<Type> => Type
|
|
1271
1588
|
let transformedData: any[] = [];
|
|
1272
1589
|
for (let index = 0; index < data.length; index++) {
|
|
1273
1590
|
let datum = data[index];
|
|
1274
1591
|
transformedData.push(ObjectSerializer.serialize(datum, subType));
|
|
1275
1592
|
}
|
|
1276
1593
|
return transformedData;
|
|
1594
|
+
} else if (startsWith(type, mapPrefix)) {
|
|
1595
|
+
let subType: string = type.slice(mapPrefix.length, -mapSuffix.length); // { [key: string]: Type; } => Type
|
|
1596
|
+
let transformedData: { [key: string]: any } = {};
|
|
1597
|
+
for (let key in data) {
|
|
1598
|
+
transformedData[key] = ObjectSerializer.serialize(
|
|
1599
|
+
data[key],
|
|
1600
|
+
subType,
|
|
1601
|
+
);
|
|
1602
|
+
}
|
|
1603
|
+
return transformedData;
|
|
1277
1604
|
} else if (type === "Date") {
|
|
1278
1605
|
return data.toISOString();
|
|
1279
1606
|
} else {
|
|
@@ -1298,22 +1625,37 @@ export class ObjectSerializer {
|
|
|
1298
1625
|
}
|
|
1299
1626
|
}
|
|
1300
1627
|
|
|
1301
|
-
public static deserialize(data: any, type: string) {
|
|
1628
|
+
public static deserialize(data: any, type: string): any {
|
|
1302
1629
|
// polymorphism may change the actual type.
|
|
1303
1630
|
type = ObjectSerializer.findCorrectType(data, type);
|
|
1304
1631
|
if (data == undefined) {
|
|
1305
1632
|
return data;
|
|
1306
1633
|
} else if (primitives.indexOf(type.toLowerCase()) !== -1) {
|
|
1307
1634
|
return data;
|
|
1308
|
-
} else if (type
|
|
1309
|
-
let subType: string = type.
|
|
1310
|
-
|
|
1635
|
+
} else if (endsWith(type, nullableSuffix)) {
|
|
1636
|
+
let subType: string = type.slice(0, -nullableSuffix.length); // Type | null => Type
|
|
1637
|
+
return ObjectSerializer.deserialize(data, subType);
|
|
1638
|
+
} else if (endsWith(type, optionalSuffix)) {
|
|
1639
|
+
let subType: string = type.slice(0, -optionalSuffix.length); // Type | undefined => Type
|
|
1640
|
+
return ObjectSerializer.deserialize(data, subType);
|
|
1641
|
+
} else if (startsWith(type, arrayPrefix)) {
|
|
1642
|
+
let subType: string = type.slice(arrayPrefix.length, -arraySuffix.length); // Array<Type> => Type
|
|
1311
1643
|
let transformedData: any[] = [];
|
|
1312
1644
|
for (let index = 0; index < data.length; index++) {
|
|
1313
1645
|
let datum = data[index];
|
|
1314
1646
|
transformedData.push(ObjectSerializer.deserialize(datum, subType));
|
|
1315
1647
|
}
|
|
1316
1648
|
return transformedData;
|
|
1649
|
+
} else if (startsWith(type, mapPrefix)) {
|
|
1650
|
+
let subType: string = type.slice(mapPrefix.length, -mapSuffix.length); // { [key: string]: Type; } => Type
|
|
1651
|
+
let transformedData: { [key: string]: any } = {};
|
|
1652
|
+
for (let key in data) {
|
|
1653
|
+
transformedData[key] = ObjectSerializer.deserialize(
|
|
1654
|
+
data[key],
|
|
1655
|
+
subType,
|
|
1656
|
+
);
|
|
1657
|
+
}
|
|
1658
|
+
return transformedData;
|
|
1317
1659
|
} else if (type === "Date") {
|
|
1318
1660
|
return new Date(data);
|
|
1319
1661
|
} else {
|