@wix/email-marketing 1.0.93 → 1.0.95
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/email-marketing",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.95",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@wix/email-marketing_account-details": "1.0.32",
|
|
25
|
-
"@wix/email-marketing_campaigns": "1.0.
|
|
25
|
+
"@wix/email-marketing_campaigns": "1.0.47",
|
|
26
26
|
"@wix/email-marketing_sender-details": "1.0.35"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": ""
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "eef37c13d7841dbfe74e365d2e3e2cc34d4edbc457c2cebb0ba36538"
|
|
52
52
|
}
|
|
@@ -1617,7 +1617,7 @@ interface EmailActivityUpdatedEventTypeOneOf {
|
|
|
1617
1617
|
declare enum ActivityType {
|
|
1618
1618
|
/** Triggered when email is delivered to the recipient. */
|
|
1619
1619
|
DELIVERY = "DELIVERY",
|
|
1620
|
-
/** Triggered when the recipient clicks on
|
|
1620
|
+
/** Triggered when the recipient clicks on a URL inside of the email. */
|
|
1621
1621
|
CLICK = "CLICK",
|
|
1622
1622
|
/** Triggered when the email is opened by the recipient. */
|
|
1623
1623
|
OPEN = "OPEN",
|
|
@@ -2333,13 +2333,13 @@ interface IdentifySenderAddressSignature {
|
|
|
2333
2333
|
(emailAddress: string): Promise<IdentifySenderAddressResponse & IdentifySenderAddressResponseNonNullableFields>;
|
|
2334
2334
|
}
|
|
2335
2335
|
declare const onCampaignCreated$1: EventDefinition<CampaignCreatedEnvelope, "wix.email_marketing.v1.campaign_created">;
|
|
2336
|
-
declare const
|
|
2337
|
-
declare const
|
|
2338
|
-
declare const
|
|
2339
|
-
declare const
|
|
2336
|
+
declare const onCampaignRejected$1: EventDefinition<CampaignRejectedEnvelope, "wix.email_marketing.v1.campaign_rejected">;
|
|
2337
|
+
declare const onCampaignPublished$1: EventDefinition<CampaignPublishedEnvelope, "wix.email_marketing.v1.campaign_published">;
|
|
2338
|
+
declare const onCampaignTerminated$1: EventDefinition<CampaignTerminatedEnvelope, "wix.email_marketing.v1.campaign_terminated">;
|
|
2339
|
+
declare const onCampaignDistributed$1: EventDefinition<CampaignDistributedEnvelope, "wix.email_marketing.v1.campaign_distributed">;
|
|
2340
2340
|
declare const onCampaignEmailActivityUpdated$1: EventDefinition<CampaignEmailActivityUpdatedEnvelope, "wix.email_marketing.v1.campaign_email_activity_updated">;
|
|
2341
|
-
declare const
|
|
2342
|
-
declare const
|
|
2341
|
+
declare const onCampaignScheduled$1: EventDefinition<CampaignScheduledEnvelope, "wix.email_marketing.v1.campaign_scheduled">;
|
|
2342
|
+
declare const onCampaignPaused$1: EventDefinition<CampaignPausedEnvelope, "wix.email_marketing.v1.campaign_paused">;
|
|
2343
2343
|
declare const onCampaignDeleted$1: EventDefinition<CampaignDeletedEnvelope, "wix.email_marketing.v1.campaign_deleted">;
|
|
2344
2344
|
|
|
2345
2345
|
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
@@ -2362,29 +2362,29 @@ type _publicOnCampaignCreatedType = typeof onCampaignCreated$1;
|
|
|
2362
2362
|
/** */
|
|
2363
2363
|
declare const onCampaignCreated: ReturnType<typeof createEventModule$1<_publicOnCampaignCreatedType>>;
|
|
2364
2364
|
|
|
2365
|
-
type
|
|
2365
|
+
type _publicOnCampaignRejectedType = typeof onCampaignRejected$1;
|
|
2366
2366
|
/**
|
|
2367
2367
|
* Triggered when a campaign is identified as abusive and rejected without sending emails to recipients.
|
|
2368
2368
|
*/
|
|
2369
|
-
declare const
|
|
2369
|
+
declare const onCampaignRejected: ReturnType<typeof createEventModule$1<_publicOnCampaignRejectedType>>;
|
|
2370
2370
|
|
|
2371
|
-
type
|
|
2371
|
+
type _publicOnCampaignPublishedType = typeof onCampaignPublished$1;
|
|
2372
2372
|
/**
|
|
2373
2373
|
* Triggered when a draft campaign is published.
|
|
2374
2374
|
*/
|
|
2375
|
-
declare const
|
|
2375
|
+
declare const onCampaignPublished: ReturnType<typeof createEventModule$1<_publicOnCampaignPublishedType>>;
|
|
2376
2376
|
|
|
2377
|
-
type
|
|
2377
|
+
type _publicOnCampaignTerminatedType = typeof onCampaignTerminated$1;
|
|
2378
2378
|
/**
|
|
2379
2379
|
* Triggered when the mailing list is not clean and campaign was terminated (not sent to all recipients).
|
|
2380
2380
|
*/
|
|
2381
|
-
declare const
|
|
2381
|
+
declare const onCampaignTerminated: ReturnType<typeof createEventModule$1<_publicOnCampaignTerminatedType>>;
|
|
2382
2382
|
|
|
2383
|
-
type
|
|
2383
|
+
type _publicOnCampaignDistributedType = typeof onCampaignDistributed$1;
|
|
2384
2384
|
/**
|
|
2385
2385
|
* Triggered when a campaign is successfully distributed to all recipients
|
|
2386
2386
|
*/
|
|
2387
|
-
declare const
|
|
2387
|
+
declare const onCampaignDistributed: ReturnType<typeof createEventModule$1<_publicOnCampaignDistributedType>>;
|
|
2388
2388
|
|
|
2389
2389
|
type _publicOnCampaignEmailActivityUpdatedType = typeof onCampaignEmailActivityUpdated$1;
|
|
2390
2390
|
/**
|
|
@@ -2402,17 +2402,17 @@ type _publicOnCampaignEmailActivityUpdatedType = typeof onCampaignEmailActivityU
|
|
|
2402
2402
|
*/
|
|
2403
2403
|
declare const onCampaignEmailActivityUpdated: ReturnType<typeof createEventModule$1<_publicOnCampaignEmailActivityUpdatedType>>;
|
|
2404
2404
|
|
|
2405
|
-
type
|
|
2405
|
+
type _publicOnCampaignScheduledType = typeof onCampaignScheduled$1;
|
|
2406
2406
|
/**
|
|
2407
2407
|
* Campaign scheduled at a specific time in the future.
|
|
2408
2408
|
*/
|
|
2409
|
-
declare const
|
|
2409
|
+
declare const onCampaignScheduled: ReturnType<typeof createEventModule$1<_publicOnCampaignScheduledType>>;
|
|
2410
2410
|
|
|
2411
|
-
type
|
|
2411
|
+
type _publicOnCampaignPausedType = typeof onCampaignPaused$1;
|
|
2412
2412
|
/**
|
|
2413
2413
|
* Triggered when a scheduled campaign is paused.
|
|
2414
2414
|
*/
|
|
2415
|
-
declare const
|
|
2415
|
+
declare const onCampaignPaused: ReturnType<typeof createEventModule$1<_publicOnCampaignPausedType>>;
|
|
2416
2416
|
|
|
2417
2417
|
type _publicOnCampaignDeletedType = typeof onCampaignDeleted$1;
|
|
2418
2418
|
/**
|
|
@@ -2626,13 +2626,13 @@ declare const context$1_VersionType: typeof VersionType;
|
|
|
2626
2626
|
type context$1__Array = _Array;
|
|
2627
2627
|
type context$1__publicOnCampaignCreatedType = _publicOnCampaignCreatedType;
|
|
2628
2628
|
type context$1__publicOnCampaignDeletedType = _publicOnCampaignDeletedType;
|
|
2629
|
-
type context$
|
|
2629
|
+
type context$1__publicOnCampaignDistributedType = _publicOnCampaignDistributedType;
|
|
2630
2630
|
type context$1__publicOnCampaignEmailActivityUpdatedType = _publicOnCampaignEmailActivityUpdatedType;
|
|
2631
|
-
type context$
|
|
2632
|
-
type context$
|
|
2633
|
-
type context$
|
|
2634
|
-
type context$
|
|
2635
|
-
type context$
|
|
2631
|
+
type context$1__publicOnCampaignPausedType = _publicOnCampaignPausedType;
|
|
2632
|
+
type context$1__publicOnCampaignPublishedType = _publicOnCampaignPublishedType;
|
|
2633
|
+
type context$1__publicOnCampaignRejectedType = _publicOnCampaignRejectedType;
|
|
2634
|
+
type context$1__publicOnCampaignScheduledType = _publicOnCampaignScheduledType;
|
|
2635
|
+
type context$1__publicOnCampaignTerminatedType = _publicOnCampaignTerminatedType;
|
|
2636
2636
|
declare const context$1_deleteCampaign: typeof deleteCampaign;
|
|
2637
2637
|
declare const context$1_getCampaign: typeof getCampaign;
|
|
2638
2638
|
declare const context$1_identifySenderAddress: typeof identifySenderAddress;
|
|
@@ -2641,13 +2641,13 @@ declare const context$1_listRecipients: typeof listRecipients;
|
|
|
2641
2641
|
declare const context$1_listStatistics: typeof listStatistics;
|
|
2642
2642
|
declare const context$1_onCampaignCreated: typeof onCampaignCreated;
|
|
2643
2643
|
declare const context$1_onCampaignDeleted: typeof onCampaignDeleted;
|
|
2644
|
-
declare const context$
|
|
2644
|
+
declare const context$1_onCampaignDistributed: typeof onCampaignDistributed;
|
|
2645
2645
|
declare const context$1_onCampaignEmailActivityUpdated: typeof onCampaignEmailActivityUpdated;
|
|
2646
|
-
declare const context$
|
|
2647
|
-
declare const context$
|
|
2648
|
-
declare const context$
|
|
2649
|
-
declare const context$
|
|
2650
|
-
declare const context$
|
|
2646
|
+
declare const context$1_onCampaignPaused: typeof onCampaignPaused;
|
|
2647
|
+
declare const context$1_onCampaignPublished: typeof onCampaignPublished;
|
|
2648
|
+
declare const context$1_onCampaignRejected: typeof onCampaignRejected;
|
|
2649
|
+
declare const context$1_onCampaignScheduled: typeof onCampaignScheduled;
|
|
2650
|
+
declare const context$1_onCampaignTerminated: typeof onCampaignTerminated;
|
|
2651
2651
|
declare const context$1_pauseScheduling: typeof pauseScheduling;
|
|
2652
2652
|
declare const context$1_publishCampaign: typeof publishCampaign;
|
|
2653
2653
|
declare const context$1_reschedule: typeof reschedule;
|
|
@@ -2656,7 +2656,7 @@ declare const context$1_sendTest: typeof sendTest;
|
|
|
2656
2656
|
declare const context$1_validateHtmlLinks: typeof validateHtmlLinks;
|
|
2657
2657
|
declare const context$1_validateLink: typeof validateLink;
|
|
2658
2658
|
declare namespace context$1 {
|
|
2659
|
-
export { type context$1_ActionConfiguration as ActionConfiguration, type ActionEvent$1 as ActionEvent, type context$1_ActivationCycle as ActivationCycle, context$1_ActivityType as ActivityType, type context$1_ArchiveCampaignRequest as ArchiveCampaignRequest, type context$1_ArchiveCampaignResponse as ArchiveCampaignResponse, type context$1_Archived as Archived, type context$1_Attachment as Attachment, type context$1_AutomationTemplate as AutomationTemplate, type context$1_AutomationTemplateContainer as AutomationTemplateContainer, type context$1_AutomationTemplateEnrichmentData as AutomationTemplateEnrichmentData, type BaseEventMetadata$1 as BaseEventMetadata, type context$1_Campaign as Campaign, type context$1_CampaignCreatedEnvelope as CampaignCreatedEnvelope, type context$1_CampaignDeletedEnvelope as CampaignDeletedEnvelope, type context$1_CampaignDistributedEnvelope as CampaignDistributedEnvelope, type context$1_CampaignEditorType as CampaignEditorType, context$1_CampaignEditorTypeEnum as CampaignEditorTypeEnum, type context$1_CampaignEmailActivityUpdatedEnvelope as CampaignEmailActivityUpdatedEnvelope, type context$1_CampaignLookupBatchRequest as CampaignLookupBatchRequest, type context$1_CampaignLookupBatchResponse as CampaignLookupBatchResponse, type context$1_CampaignLookupRequest as CampaignLookupRequest, type context$1_CampaignLookupResponse as CampaignLookupResponse, type context$1_CampaignNonNullableFields as CampaignNonNullableFields, type context$1_CampaignPausedEnvelope as CampaignPausedEnvelope, type context$1_CampaignPublishedEnvelope as CampaignPublishedEnvelope, type context$1_CampaignRecipientDetails as CampaignRecipientDetails, type context$1_CampaignRejectedEnvelope as CampaignRejectedEnvelope, type context$1_CampaignScheduledEnvelope as CampaignScheduledEnvelope, context$1_CampaignSendingStateEnum as CampaignSendingStateEnum, type context$1_CampaignStatistics as CampaignStatistics, type context$1_CampaignStatisticsContainer as CampaignStatisticsContainer, context$1_CampaignStatusEnum as CampaignStatusEnum, type context$1_CampaignTerminatedEnvelope as CampaignTerminatedEnvelope, context$1_CampaignTypeEnum as CampaignTypeEnum, context$1_CampaignVisibilityStatusEnum as CampaignVisibilityStatusEnum, type context$1_Click as Click, type context$1_Composer as Composer, type context$1_ConditionConfiguration as ConditionConfiguration, type context$1_Contact as Contact, type context$1_CountCampaignsRequest as CountCampaignsRequest, type context$1_CountCampaignsResponse as CountCampaignsResponse, type context$1_CreateCampaignRequest as CreateCampaignRequest, type context$1_CreateCampaignResponse as CreateCampaignResponse, type context$1_CreateFromTemplateRequest as CreateFromTemplateRequest, type context$1_CreateFromTemplateResponse as CreateFromTemplateResponse, type context$1_CreateFromUserTemplateRequest as CreateFromUserTemplateRequest, type context$1_CreateFromUserTemplateResponse as CreateFromUserTemplateResponse, type context$1_CreateUserTemplateRequest as CreateUserTemplateRequest, type context$1_CreateUserTemplateResponse as CreateUserTemplateResponse, type context$1_CursorPaging as CursorPaging, type context$1_Cursors as Cursors, type context$1_DateTime as DateTime, type context$1_Decimal as Decimal, type context$1_DefaultValues as DefaultValues, type context$1_DeleteCampaignRequest as DeleteCampaignRequest, type context$1_DeleteCampaignResponse as DeleteCampaignResponse, type context$1_Distributed as Distributed, type context$1_DistributionStatistics as DistributionStatistics, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type context$1_EmailActivityUpdated as EmailActivityUpdated, type context$1_EmailActivityUpdatedEventTypeOneOf as EmailActivityUpdatedEventTypeOneOf, type context$1_EmailDistributionOptions as EmailDistributionOptions, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, context$1_Enum as Enum, type context$1_EstimateAudienceSizeRequest as EstimateAudienceSizeRequest, type context$1_EstimateAudienceSizeResponse as EstimateAudienceSizeResponse, type context$1_EstimateFilterSizeRequest as EstimateFilterSizeRequest, type context$1_EstimateFilterSizeResponse as EstimateFilterSizeResponse, type EventMetadata$1 as EventMetadata, type context$1_GetCampaignMappingRequest as GetCampaignMappingRequest, type context$1_GetCampaignMappingResponse as GetCampaignMappingResponse, type context$1_GetCampaignOptions as GetCampaignOptions, type context$1_GetCampaignRequest as GetCampaignRequest, type context$1_GetCampaignResponse as GetCampaignResponse, type context$1_GetCampaignResponseNonNullableFields as GetCampaignResponseNonNullableFields, type context$1_GetComposerRequest as GetComposerRequest, type context$1_GetComposerResponse as GetComposerResponse, type context$1_GetDefaultComponentsRequest as GetDefaultComponentsRequest, type context$1_GetDefaultComponentsResponse as GetDefaultComponentsResponse, type context$1_GetLabelsRequest as GetLabelsRequest, type context$1_GetLabelsResponse as GetLabelsResponse, type context$1_GetPingCampaignMappingRequest as GetPingCampaignMappingRequest, type context$1_GetPingCampaignMappingResponse as GetPingCampaignMappingResponse, type context$1_GetPlaceholderKeysRequest as GetPlaceholderKeysRequest, type context$1_GetPlaceholderKeysResponse as GetPlaceholderKeysResponse, type context$1_GetUsedPlaceholderKeysRequest as GetUsedPlaceholderKeysRequest, type context$1_GetUsedPlaceholderKeysResponse as GetUsedPlaceholderKeysResponse, type context$1_HardBounce as HardBounce, type context$1_Html as Html, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type context$1_IdentifySenderAddressRequest as IdentifySenderAddressRequest, type context$1_IdentifySenderAddressResponse as IdentifySenderAddressResponse, type context$1_IdentifySenderAddressResponseNonNullableFields as IdentifySenderAddressResponseNonNullableFields, type context$1_Integer as Integer, type context$1_Label as Label, type context$1_LandingPageStatistics as LandingPageStatistics, type context$1_ListCampaignsOptions as ListCampaignsOptions, type context$1_ListCampaignsRequest as ListCampaignsRequest, type context$1_ListCampaignsResponse as ListCampaignsResponse, type context$1_ListCampaignsResponseNonNullableFields as ListCampaignsResponseNonNullableFields, type context$1_ListRecipientsOptions as ListRecipientsOptions, type context$1_ListRecipientsRequest as ListRecipientsRequest, type context$1_ListRecipientsResponse as ListRecipientsResponse, type context$1_ListRecipientsResponseNonNullableFields as ListRecipientsResponseNonNullableFields, type context$1_ListStatisticsRequest as ListStatisticsRequest, type context$1_ListStatisticsResponse as ListStatisticsResponse, type context$1_ListStatisticsResponseNonNullableFields as ListStatisticsResponseNonNullableFields, type context$1_LookupCampaignMappingRequest as LookupCampaignMappingRequest, type context$1_LookupCampaignMappingResponse as LookupCampaignMappingResponse, type context$1_Map as Map, type MessageEnvelope$1 as MessageEnvelope, type context$1_Money as Money, type context$1_Open as Open, context$1_Operator as Operator, type context$1_Paging as Paging, type context$1_PagingMetadataV2 as PagingMetadataV2, type context$1_PauseSchedulingRequest as PauseSchedulingRequest, type context$1_PauseSchedulingResponse as PauseSchedulingResponse, type context$1_Paused as Paused, type context$1_PlaceholderContent as PlaceholderContent, type context$1_PlaceholderContentEnum as PlaceholderContentEnum, type context$1_PlaceholderContentValueOneOf as PlaceholderContentValueOneOf, type context$1_PlainText as PlainText, type context$1_Precondition as Precondition, context$1_PreconditionType as PreconditionType, type context$1_PreviewCampaignRequest as PreviewCampaignRequest, type context$1_PreviewCampaignResponse as PreviewCampaignResponse, type context$1_PublishCampaignOptions as PublishCampaignOptions, type context$1_PublishCampaignRequest as PublishCampaignRequest, type context$1_PublishCampaignResponse as PublishCampaignResponse, type context$1_PublishCampaignResponseNonNullableFields as PublishCampaignResponseNonNullableFields, type context$1_Published as Published, type context$1_PublishingData as PublishingData, type context$1_Query as Query, type context$1_QueryAppTemplatesRequest as QueryAppTemplatesRequest, type context$1_QueryAppTemplatesResponse as QueryAppTemplatesResponse, type context$1_QueryAutomationTemplatesRequest as QueryAutomationTemplatesRequest, type context$1_QueryAutomationTemplatesResponse as QueryAutomationTemplatesResponse, type context$1_QueryMetadata as QueryMetadata, context$1_RecipientsActivityEnum as RecipientsActivityEnum, type context$1_ReconcileContactRequest as ReconcileContactRequest, type context$1_ReconcileContactResponse as ReconcileContactResponse, type context$1_Rejected as Rejected, type context$1_RejectionData as RejectionData, context$1_RejectionReasonEnum as RejectionReasonEnum, type context$1_RescheduleRequest as RescheduleRequest, type context$1_RescheduleResponse as RescheduleResponse, type context$1_ResendToNonOpenersRequest as ResendToNonOpenersRequest, type context$1_ResendToNonOpenersResponse as ResendToNonOpenersResponse, type RestoreInfo$1 as RestoreInfo, type context$1_ReuseCampaignRequest as ReuseCampaignRequest, type context$1_ReuseCampaignResponse as ReuseCampaignResponse, type context$1_ReuseCampaignResponseNonNullableFields as ReuseCampaignResponseNonNullableFields, type context$1_RuleConfiguration as RuleConfiguration, type context$1_RuleMetadata as RuleMetadata, context$1_RuleStatus as RuleStatus, type context$1_Scheduled as Scheduled, type context$1_SearchContactsRequest as SearchContactsRequest, type context$1_SearchContactsResponse as SearchContactsResponse, type context$1_SendTestOptions as SendTestOptions, type context$1_SendTestRequest as SendTestRequest, type context$1_SendTestResponse as SendTestResponse, type context$1_SoftBounce as SoftBounce, context$1_SortOrder as SortOrder, type context$1_Sorting as Sorting, type context$1_SubscribeFromLandingPageRequest as SubscribeFromLandingPageRequest, type context$1_SubscribeFromLandingPageResponse as SubscribeFromLandingPageResponse, type context$1_TemplateData as TemplateData, context$1_TemplateQueryType as TemplateQueryType, context$1_TemplateState as TemplateState, context$1_TemplateType as TemplateType, type context$1_Terminated as Terminated, type context$1_TotalStatistics as TotalStatistics, type context$1_Translation as Translation, context$1_TranslationState as TranslationState, type context$1_TriggerConfiguration as TriggerConfiguration, type context$1_UnarchiveCampaignRequest as UnarchiveCampaignRequest, type context$1_UnarchiveCampaignResponse as UnarchiveCampaignResponse, type context$1_Unarchived as Unarchived, type context$1_UpdateComposerRequest as UpdateComposerRequest, type context$1_UpdateComposerResponse as UpdateComposerResponse, type context$1_UpdateTitleRequest as UpdateTitleRequest, type context$1_UpdateTitleResponse as UpdateTitleResponse, type context$1_UpsertTranslationRequest as UpsertTranslationRequest, type context$1_UpsertTranslationResponse as UpsertTranslationResponse, type context$1_ValidateHtmlLinksRequest as ValidateHtmlLinksRequest, type context$1_ValidateHtmlLinksResponse as ValidateHtmlLinksResponse, type context$1_ValidateHtmlLinksResponseNonNullableFields as ValidateHtmlLinksResponseNonNullableFields, type context$1_ValidateLinkRequest as ValidateLinkRequest, type context$1_ValidateLinkResponse as ValidateLinkResponse, type context$1_ValidateLinkResponseNonNullableFields as ValidateLinkResponseNonNullableFields, context$1_VersionType as VersionType, WebhookIdentityType$1 as WebhookIdentityType, type context$1__Array as _Array, type context$1__publicOnCampaignCreatedType as _publicOnCampaignCreatedType, type context$1__publicOnCampaignDeletedType as _publicOnCampaignDeletedType, type context$1__publicOnCampaignDistributedEventType as _publicOnCampaignDistributedEventType, type context$1__publicOnCampaignEmailActivityUpdatedType as _publicOnCampaignEmailActivityUpdatedType, type context$1__publicOnCampaignPausedEventType as _publicOnCampaignPausedEventType, type context$1__publicOnCampaignPublishedEventType as _publicOnCampaignPublishedEventType, type context$1__publicOnCampaignRejectedEventType as _publicOnCampaignRejectedEventType, type context$1__publicOnCampaignScheduledEventType as _publicOnCampaignScheduledEventType, type context$1__publicOnCampaignTerminatedEventType as _publicOnCampaignTerminatedEventType, context$1_deleteCampaign as deleteCampaign, context$1_getCampaign as getCampaign, context$1_identifySenderAddress as identifySenderAddress, context$1_listCampaigns as listCampaigns, context$1_listRecipients as listRecipients, context$1_listStatistics as listStatistics, context$1_onCampaignCreated as onCampaignCreated, context$1_onCampaignDeleted as onCampaignDeleted, context$1_onCampaignDistributedEvent as onCampaignDistributedEvent, context$1_onCampaignEmailActivityUpdated as onCampaignEmailActivityUpdated, context$1_onCampaignPausedEvent as onCampaignPausedEvent, context$1_onCampaignPublishedEvent as onCampaignPublishedEvent, context$1_onCampaignRejectedEvent as onCampaignRejectedEvent, context$1_onCampaignScheduledEvent as onCampaignScheduledEvent, context$1_onCampaignTerminatedEvent as onCampaignTerminatedEvent, context$1_pauseScheduling as pauseScheduling, onCampaignCreated$1 as publicOnCampaignCreated, onCampaignDeleted$1 as publicOnCampaignDeleted, onCampaignDistributedEvent$1 as publicOnCampaignDistributedEvent, onCampaignEmailActivityUpdated$1 as publicOnCampaignEmailActivityUpdated, onCampaignPausedEvent$1 as publicOnCampaignPausedEvent, onCampaignPublishedEvent$1 as publicOnCampaignPublishedEvent, onCampaignRejectedEvent$1 as publicOnCampaignRejectedEvent, onCampaignScheduledEvent$1 as publicOnCampaignScheduledEvent, onCampaignTerminatedEvent$1 as publicOnCampaignTerminatedEvent, context$1_publishCampaign as publishCampaign, context$1_reschedule as reschedule, context$1_reuseCampaign as reuseCampaign, context$1_sendTest as sendTest, context$1_validateHtmlLinks as validateHtmlLinks, context$1_validateLink as validateLink };
|
|
2659
|
+
export { type context$1_ActionConfiguration as ActionConfiguration, type ActionEvent$1 as ActionEvent, type context$1_ActivationCycle as ActivationCycle, context$1_ActivityType as ActivityType, type context$1_ArchiveCampaignRequest as ArchiveCampaignRequest, type context$1_ArchiveCampaignResponse as ArchiveCampaignResponse, type context$1_Archived as Archived, type context$1_Attachment as Attachment, type context$1_AutomationTemplate as AutomationTemplate, type context$1_AutomationTemplateContainer as AutomationTemplateContainer, type context$1_AutomationTemplateEnrichmentData as AutomationTemplateEnrichmentData, type BaseEventMetadata$1 as BaseEventMetadata, type context$1_Campaign as Campaign, type context$1_CampaignCreatedEnvelope as CampaignCreatedEnvelope, type context$1_CampaignDeletedEnvelope as CampaignDeletedEnvelope, type context$1_CampaignDistributedEnvelope as CampaignDistributedEnvelope, type context$1_CampaignEditorType as CampaignEditorType, context$1_CampaignEditorTypeEnum as CampaignEditorTypeEnum, type context$1_CampaignEmailActivityUpdatedEnvelope as CampaignEmailActivityUpdatedEnvelope, type context$1_CampaignLookupBatchRequest as CampaignLookupBatchRequest, type context$1_CampaignLookupBatchResponse as CampaignLookupBatchResponse, type context$1_CampaignLookupRequest as CampaignLookupRequest, type context$1_CampaignLookupResponse as CampaignLookupResponse, type context$1_CampaignNonNullableFields as CampaignNonNullableFields, type context$1_CampaignPausedEnvelope as CampaignPausedEnvelope, type context$1_CampaignPublishedEnvelope as CampaignPublishedEnvelope, type context$1_CampaignRecipientDetails as CampaignRecipientDetails, type context$1_CampaignRejectedEnvelope as CampaignRejectedEnvelope, type context$1_CampaignScheduledEnvelope as CampaignScheduledEnvelope, context$1_CampaignSendingStateEnum as CampaignSendingStateEnum, type context$1_CampaignStatistics as CampaignStatistics, type context$1_CampaignStatisticsContainer as CampaignStatisticsContainer, context$1_CampaignStatusEnum as CampaignStatusEnum, type context$1_CampaignTerminatedEnvelope as CampaignTerminatedEnvelope, context$1_CampaignTypeEnum as CampaignTypeEnum, context$1_CampaignVisibilityStatusEnum as CampaignVisibilityStatusEnum, type context$1_Click as Click, type context$1_Composer as Composer, type context$1_ConditionConfiguration as ConditionConfiguration, type context$1_Contact as Contact, type context$1_CountCampaignsRequest as CountCampaignsRequest, type context$1_CountCampaignsResponse as CountCampaignsResponse, type context$1_CreateCampaignRequest as CreateCampaignRequest, type context$1_CreateCampaignResponse as CreateCampaignResponse, type context$1_CreateFromTemplateRequest as CreateFromTemplateRequest, type context$1_CreateFromTemplateResponse as CreateFromTemplateResponse, type context$1_CreateFromUserTemplateRequest as CreateFromUserTemplateRequest, type context$1_CreateFromUserTemplateResponse as CreateFromUserTemplateResponse, type context$1_CreateUserTemplateRequest as CreateUserTemplateRequest, type context$1_CreateUserTemplateResponse as CreateUserTemplateResponse, type context$1_CursorPaging as CursorPaging, type context$1_Cursors as Cursors, type context$1_DateTime as DateTime, type context$1_Decimal as Decimal, type context$1_DefaultValues as DefaultValues, type context$1_DeleteCampaignRequest as DeleteCampaignRequest, type context$1_DeleteCampaignResponse as DeleteCampaignResponse, type context$1_Distributed as Distributed, type context$1_DistributionStatistics as DistributionStatistics, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type context$1_EmailActivityUpdated as EmailActivityUpdated, type context$1_EmailActivityUpdatedEventTypeOneOf as EmailActivityUpdatedEventTypeOneOf, type context$1_EmailDistributionOptions as EmailDistributionOptions, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, context$1_Enum as Enum, type context$1_EstimateAudienceSizeRequest as EstimateAudienceSizeRequest, type context$1_EstimateAudienceSizeResponse as EstimateAudienceSizeResponse, type context$1_EstimateFilterSizeRequest as EstimateFilterSizeRequest, type context$1_EstimateFilterSizeResponse as EstimateFilterSizeResponse, type EventMetadata$1 as EventMetadata, type context$1_GetCampaignMappingRequest as GetCampaignMappingRequest, type context$1_GetCampaignMappingResponse as GetCampaignMappingResponse, type context$1_GetCampaignOptions as GetCampaignOptions, type context$1_GetCampaignRequest as GetCampaignRequest, type context$1_GetCampaignResponse as GetCampaignResponse, type context$1_GetCampaignResponseNonNullableFields as GetCampaignResponseNonNullableFields, type context$1_GetComposerRequest as GetComposerRequest, type context$1_GetComposerResponse as GetComposerResponse, type context$1_GetDefaultComponentsRequest as GetDefaultComponentsRequest, type context$1_GetDefaultComponentsResponse as GetDefaultComponentsResponse, type context$1_GetLabelsRequest as GetLabelsRequest, type context$1_GetLabelsResponse as GetLabelsResponse, type context$1_GetPingCampaignMappingRequest as GetPingCampaignMappingRequest, type context$1_GetPingCampaignMappingResponse as GetPingCampaignMappingResponse, type context$1_GetPlaceholderKeysRequest as GetPlaceholderKeysRequest, type context$1_GetPlaceholderKeysResponse as GetPlaceholderKeysResponse, type context$1_GetUsedPlaceholderKeysRequest as GetUsedPlaceholderKeysRequest, type context$1_GetUsedPlaceholderKeysResponse as GetUsedPlaceholderKeysResponse, type context$1_HardBounce as HardBounce, type context$1_Html as Html, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type context$1_IdentifySenderAddressRequest as IdentifySenderAddressRequest, type context$1_IdentifySenderAddressResponse as IdentifySenderAddressResponse, type context$1_IdentifySenderAddressResponseNonNullableFields as IdentifySenderAddressResponseNonNullableFields, type context$1_Integer as Integer, type context$1_Label as Label, type context$1_LandingPageStatistics as LandingPageStatistics, type context$1_ListCampaignsOptions as ListCampaignsOptions, type context$1_ListCampaignsRequest as ListCampaignsRequest, type context$1_ListCampaignsResponse as ListCampaignsResponse, type context$1_ListCampaignsResponseNonNullableFields as ListCampaignsResponseNonNullableFields, type context$1_ListRecipientsOptions as ListRecipientsOptions, type context$1_ListRecipientsRequest as ListRecipientsRequest, type context$1_ListRecipientsResponse as ListRecipientsResponse, type context$1_ListRecipientsResponseNonNullableFields as ListRecipientsResponseNonNullableFields, type context$1_ListStatisticsRequest as ListStatisticsRequest, type context$1_ListStatisticsResponse as ListStatisticsResponse, type context$1_ListStatisticsResponseNonNullableFields as ListStatisticsResponseNonNullableFields, type context$1_LookupCampaignMappingRequest as LookupCampaignMappingRequest, type context$1_LookupCampaignMappingResponse as LookupCampaignMappingResponse, type context$1_Map as Map, type MessageEnvelope$1 as MessageEnvelope, type context$1_Money as Money, type context$1_Open as Open, context$1_Operator as Operator, type context$1_Paging as Paging, type context$1_PagingMetadataV2 as PagingMetadataV2, type context$1_PauseSchedulingRequest as PauseSchedulingRequest, type context$1_PauseSchedulingResponse as PauseSchedulingResponse, type context$1_Paused as Paused, type context$1_PlaceholderContent as PlaceholderContent, type context$1_PlaceholderContentEnum as PlaceholderContentEnum, type context$1_PlaceholderContentValueOneOf as PlaceholderContentValueOneOf, type context$1_PlainText as PlainText, type context$1_Precondition as Precondition, context$1_PreconditionType as PreconditionType, type context$1_PreviewCampaignRequest as PreviewCampaignRequest, type context$1_PreviewCampaignResponse as PreviewCampaignResponse, type context$1_PublishCampaignOptions as PublishCampaignOptions, type context$1_PublishCampaignRequest as PublishCampaignRequest, type context$1_PublishCampaignResponse as PublishCampaignResponse, type context$1_PublishCampaignResponseNonNullableFields as PublishCampaignResponseNonNullableFields, type context$1_Published as Published, type context$1_PublishingData as PublishingData, type context$1_Query as Query, type context$1_QueryAppTemplatesRequest as QueryAppTemplatesRequest, type context$1_QueryAppTemplatesResponse as QueryAppTemplatesResponse, type context$1_QueryAutomationTemplatesRequest as QueryAutomationTemplatesRequest, type context$1_QueryAutomationTemplatesResponse as QueryAutomationTemplatesResponse, type context$1_QueryMetadata as QueryMetadata, context$1_RecipientsActivityEnum as RecipientsActivityEnum, type context$1_ReconcileContactRequest as ReconcileContactRequest, type context$1_ReconcileContactResponse as ReconcileContactResponse, type context$1_Rejected as Rejected, type context$1_RejectionData as RejectionData, context$1_RejectionReasonEnum as RejectionReasonEnum, type context$1_RescheduleRequest as RescheduleRequest, type context$1_RescheduleResponse as RescheduleResponse, type context$1_ResendToNonOpenersRequest as ResendToNonOpenersRequest, type context$1_ResendToNonOpenersResponse as ResendToNonOpenersResponse, type RestoreInfo$1 as RestoreInfo, type context$1_ReuseCampaignRequest as ReuseCampaignRequest, type context$1_ReuseCampaignResponse as ReuseCampaignResponse, type context$1_ReuseCampaignResponseNonNullableFields as ReuseCampaignResponseNonNullableFields, type context$1_RuleConfiguration as RuleConfiguration, type context$1_RuleMetadata as RuleMetadata, context$1_RuleStatus as RuleStatus, type context$1_Scheduled as Scheduled, type context$1_SearchContactsRequest as SearchContactsRequest, type context$1_SearchContactsResponse as SearchContactsResponse, type context$1_SendTestOptions as SendTestOptions, type context$1_SendTestRequest as SendTestRequest, type context$1_SendTestResponse as SendTestResponse, type context$1_SoftBounce as SoftBounce, context$1_SortOrder as SortOrder, type context$1_Sorting as Sorting, type context$1_SubscribeFromLandingPageRequest as SubscribeFromLandingPageRequest, type context$1_SubscribeFromLandingPageResponse as SubscribeFromLandingPageResponse, type context$1_TemplateData as TemplateData, context$1_TemplateQueryType as TemplateQueryType, context$1_TemplateState as TemplateState, context$1_TemplateType as TemplateType, type context$1_Terminated as Terminated, type context$1_TotalStatistics as TotalStatistics, type context$1_Translation as Translation, context$1_TranslationState as TranslationState, type context$1_TriggerConfiguration as TriggerConfiguration, type context$1_UnarchiveCampaignRequest as UnarchiveCampaignRequest, type context$1_UnarchiveCampaignResponse as UnarchiveCampaignResponse, type context$1_Unarchived as Unarchived, type context$1_UpdateComposerRequest as UpdateComposerRequest, type context$1_UpdateComposerResponse as UpdateComposerResponse, type context$1_UpdateTitleRequest as UpdateTitleRequest, type context$1_UpdateTitleResponse as UpdateTitleResponse, type context$1_UpsertTranslationRequest as UpsertTranslationRequest, type context$1_UpsertTranslationResponse as UpsertTranslationResponse, type context$1_ValidateHtmlLinksRequest as ValidateHtmlLinksRequest, type context$1_ValidateHtmlLinksResponse as ValidateHtmlLinksResponse, type context$1_ValidateHtmlLinksResponseNonNullableFields as ValidateHtmlLinksResponseNonNullableFields, type context$1_ValidateLinkRequest as ValidateLinkRequest, type context$1_ValidateLinkResponse as ValidateLinkResponse, type context$1_ValidateLinkResponseNonNullableFields as ValidateLinkResponseNonNullableFields, context$1_VersionType as VersionType, WebhookIdentityType$1 as WebhookIdentityType, type context$1__Array as _Array, type context$1__publicOnCampaignCreatedType as _publicOnCampaignCreatedType, type context$1__publicOnCampaignDeletedType as _publicOnCampaignDeletedType, type context$1__publicOnCampaignDistributedType as _publicOnCampaignDistributedType, type context$1__publicOnCampaignEmailActivityUpdatedType as _publicOnCampaignEmailActivityUpdatedType, type context$1__publicOnCampaignPausedType as _publicOnCampaignPausedType, type context$1__publicOnCampaignPublishedType as _publicOnCampaignPublishedType, type context$1__publicOnCampaignRejectedType as _publicOnCampaignRejectedType, type context$1__publicOnCampaignScheduledType as _publicOnCampaignScheduledType, type context$1__publicOnCampaignTerminatedType as _publicOnCampaignTerminatedType, context$1_deleteCampaign as deleteCampaign, context$1_getCampaign as getCampaign, context$1_identifySenderAddress as identifySenderAddress, context$1_listCampaigns as listCampaigns, context$1_listRecipients as listRecipients, context$1_listStatistics as listStatistics, context$1_onCampaignCreated as onCampaignCreated, context$1_onCampaignDeleted as onCampaignDeleted, context$1_onCampaignDistributed as onCampaignDistributed, context$1_onCampaignEmailActivityUpdated as onCampaignEmailActivityUpdated, context$1_onCampaignPaused as onCampaignPaused, context$1_onCampaignPublished as onCampaignPublished, context$1_onCampaignRejected as onCampaignRejected, context$1_onCampaignScheduled as onCampaignScheduled, context$1_onCampaignTerminated as onCampaignTerminated, context$1_pauseScheduling as pauseScheduling, onCampaignCreated$1 as publicOnCampaignCreated, onCampaignDeleted$1 as publicOnCampaignDeleted, onCampaignDistributed$1 as publicOnCampaignDistributed, onCampaignEmailActivityUpdated$1 as publicOnCampaignEmailActivityUpdated, onCampaignPaused$1 as publicOnCampaignPaused, onCampaignPublished$1 as publicOnCampaignPublished, onCampaignRejected$1 as publicOnCampaignRejected, onCampaignScheduled$1 as publicOnCampaignScheduled, onCampaignTerminated$1 as publicOnCampaignTerminated, context$1_publishCampaign as publishCampaign, context$1_reschedule as reschedule, context$1_reuseCampaign as reuseCampaign, context$1_sendTest as sendTest, context$1_validateHtmlLinks as validateHtmlLinks, context$1_validateLink as validateLink };
|
|
2660
2660
|
}
|
|
2661
2661
|
|
|
2662
2662
|
/**
|
|
@@ -1617,7 +1617,7 @@ interface EmailActivityUpdatedEventTypeOneOf {
|
|
|
1617
1617
|
declare enum ActivityType {
|
|
1618
1618
|
/** Triggered when email is delivered to the recipient. */
|
|
1619
1619
|
DELIVERY = "DELIVERY",
|
|
1620
|
-
/** Triggered when the recipient clicks on
|
|
1620
|
+
/** Triggered when the recipient clicks on a URL inside of the email. */
|
|
1621
1621
|
CLICK = "CLICK",
|
|
1622
1622
|
/** Triggered when the email is opened by the recipient. */
|
|
1623
1623
|
OPEN = "OPEN",
|
|
@@ -2333,13 +2333,13 @@ interface IdentifySenderAddressSignature {
|
|
|
2333
2333
|
(emailAddress: string): Promise<IdentifySenderAddressResponse & IdentifySenderAddressResponseNonNullableFields>;
|
|
2334
2334
|
}
|
|
2335
2335
|
declare const onCampaignCreated$1: EventDefinition<CampaignCreatedEnvelope, "wix.email_marketing.v1.campaign_created">;
|
|
2336
|
-
declare const
|
|
2337
|
-
declare const
|
|
2338
|
-
declare const
|
|
2339
|
-
declare const
|
|
2336
|
+
declare const onCampaignRejected$1: EventDefinition<CampaignRejectedEnvelope, "wix.email_marketing.v1.campaign_rejected">;
|
|
2337
|
+
declare const onCampaignPublished$1: EventDefinition<CampaignPublishedEnvelope, "wix.email_marketing.v1.campaign_published">;
|
|
2338
|
+
declare const onCampaignTerminated$1: EventDefinition<CampaignTerminatedEnvelope, "wix.email_marketing.v1.campaign_terminated">;
|
|
2339
|
+
declare const onCampaignDistributed$1: EventDefinition<CampaignDistributedEnvelope, "wix.email_marketing.v1.campaign_distributed">;
|
|
2340
2340
|
declare const onCampaignEmailActivityUpdated$1: EventDefinition<CampaignEmailActivityUpdatedEnvelope, "wix.email_marketing.v1.campaign_email_activity_updated">;
|
|
2341
|
-
declare const
|
|
2342
|
-
declare const
|
|
2341
|
+
declare const onCampaignScheduled$1: EventDefinition<CampaignScheduledEnvelope, "wix.email_marketing.v1.campaign_scheduled">;
|
|
2342
|
+
declare const onCampaignPaused$1: EventDefinition<CampaignPausedEnvelope, "wix.email_marketing.v1.campaign_paused">;
|
|
2343
2343
|
declare const onCampaignDeleted$1: EventDefinition<CampaignDeletedEnvelope, "wix.email_marketing.v1.campaign_deleted">;
|
|
2344
2344
|
|
|
2345
2345
|
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
@@ -2362,29 +2362,29 @@ type _publicOnCampaignCreatedType = typeof onCampaignCreated$1;
|
|
|
2362
2362
|
/** */
|
|
2363
2363
|
declare const onCampaignCreated: ReturnType<typeof createEventModule$1<_publicOnCampaignCreatedType>>;
|
|
2364
2364
|
|
|
2365
|
-
type
|
|
2365
|
+
type _publicOnCampaignRejectedType = typeof onCampaignRejected$1;
|
|
2366
2366
|
/**
|
|
2367
2367
|
* Triggered when a campaign is identified as abusive and rejected without sending emails to recipients.
|
|
2368
2368
|
*/
|
|
2369
|
-
declare const
|
|
2369
|
+
declare const onCampaignRejected: ReturnType<typeof createEventModule$1<_publicOnCampaignRejectedType>>;
|
|
2370
2370
|
|
|
2371
|
-
type
|
|
2371
|
+
type _publicOnCampaignPublishedType = typeof onCampaignPublished$1;
|
|
2372
2372
|
/**
|
|
2373
2373
|
* Triggered when a draft campaign is published.
|
|
2374
2374
|
*/
|
|
2375
|
-
declare const
|
|
2375
|
+
declare const onCampaignPublished: ReturnType<typeof createEventModule$1<_publicOnCampaignPublishedType>>;
|
|
2376
2376
|
|
|
2377
|
-
type
|
|
2377
|
+
type _publicOnCampaignTerminatedType = typeof onCampaignTerminated$1;
|
|
2378
2378
|
/**
|
|
2379
2379
|
* Triggered when the mailing list is not clean and campaign was terminated (not sent to all recipients).
|
|
2380
2380
|
*/
|
|
2381
|
-
declare const
|
|
2381
|
+
declare const onCampaignTerminated: ReturnType<typeof createEventModule$1<_publicOnCampaignTerminatedType>>;
|
|
2382
2382
|
|
|
2383
|
-
type
|
|
2383
|
+
type _publicOnCampaignDistributedType = typeof onCampaignDistributed$1;
|
|
2384
2384
|
/**
|
|
2385
2385
|
* Triggered when a campaign is successfully distributed to all recipients
|
|
2386
2386
|
*/
|
|
2387
|
-
declare const
|
|
2387
|
+
declare const onCampaignDistributed: ReturnType<typeof createEventModule$1<_publicOnCampaignDistributedType>>;
|
|
2388
2388
|
|
|
2389
2389
|
type _publicOnCampaignEmailActivityUpdatedType = typeof onCampaignEmailActivityUpdated$1;
|
|
2390
2390
|
/**
|
|
@@ -2402,17 +2402,17 @@ type _publicOnCampaignEmailActivityUpdatedType = typeof onCampaignEmailActivityU
|
|
|
2402
2402
|
*/
|
|
2403
2403
|
declare const onCampaignEmailActivityUpdated: ReturnType<typeof createEventModule$1<_publicOnCampaignEmailActivityUpdatedType>>;
|
|
2404
2404
|
|
|
2405
|
-
type
|
|
2405
|
+
type _publicOnCampaignScheduledType = typeof onCampaignScheduled$1;
|
|
2406
2406
|
/**
|
|
2407
2407
|
* Campaign scheduled at a specific time in the future.
|
|
2408
2408
|
*/
|
|
2409
|
-
declare const
|
|
2409
|
+
declare const onCampaignScheduled: ReturnType<typeof createEventModule$1<_publicOnCampaignScheduledType>>;
|
|
2410
2410
|
|
|
2411
|
-
type
|
|
2411
|
+
type _publicOnCampaignPausedType = typeof onCampaignPaused$1;
|
|
2412
2412
|
/**
|
|
2413
2413
|
* Triggered when a scheduled campaign is paused.
|
|
2414
2414
|
*/
|
|
2415
|
-
declare const
|
|
2415
|
+
declare const onCampaignPaused: ReturnType<typeof createEventModule$1<_publicOnCampaignPausedType>>;
|
|
2416
2416
|
|
|
2417
2417
|
type _publicOnCampaignDeletedType = typeof onCampaignDeleted$1;
|
|
2418
2418
|
/**
|
|
@@ -2626,13 +2626,13 @@ declare const index_d$1_VersionType: typeof VersionType;
|
|
|
2626
2626
|
type index_d$1__Array = _Array;
|
|
2627
2627
|
type index_d$1__publicOnCampaignCreatedType = _publicOnCampaignCreatedType;
|
|
2628
2628
|
type index_d$1__publicOnCampaignDeletedType = _publicOnCampaignDeletedType;
|
|
2629
|
-
type index_d$
|
|
2629
|
+
type index_d$1__publicOnCampaignDistributedType = _publicOnCampaignDistributedType;
|
|
2630
2630
|
type index_d$1__publicOnCampaignEmailActivityUpdatedType = _publicOnCampaignEmailActivityUpdatedType;
|
|
2631
|
-
type index_d$
|
|
2632
|
-
type index_d$
|
|
2633
|
-
type index_d$
|
|
2634
|
-
type index_d$
|
|
2635
|
-
type index_d$
|
|
2631
|
+
type index_d$1__publicOnCampaignPausedType = _publicOnCampaignPausedType;
|
|
2632
|
+
type index_d$1__publicOnCampaignPublishedType = _publicOnCampaignPublishedType;
|
|
2633
|
+
type index_d$1__publicOnCampaignRejectedType = _publicOnCampaignRejectedType;
|
|
2634
|
+
type index_d$1__publicOnCampaignScheduledType = _publicOnCampaignScheduledType;
|
|
2635
|
+
type index_d$1__publicOnCampaignTerminatedType = _publicOnCampaignTerminatedType;
|
|
2636
2636
|
declare const index_d$1_deleteCampaign: typeof deleteCampaign;
|
|
2637
2637
|
declare const index_d$1_getCampaign: typeof getCampaign;
|
|
2638
2638
|
declare const index_d$1_identifySenderAddress: typeof identifySenderAddress;
|
|
@@ -2641,13 +2641,13 @@ declare const index_d$1_listRecipients: typeof listRecipients;
|
|
|
2641
2641
|
declare const index_d$1_listStatistics: typeof listStatistics;
|
|
2642
2642
|
declare const index_d$1_onCampaignCreated: typeof onCampaignCreated;
|
|
2643
2643
|
declare const index_d$1_onCampaignDeleted: typeof onCampaignDeleted;
|
|
2644
|
-
declare const index_d$
|
|
2644
|
+
declare const index_d$1_onCampaignDistributed: typeof onCampaignDistributed;
|
|
2645
2645
|
declare const index_d$1_onCampaignEmailActivityUpdated: typeof onCampaignEmailActivityUpdated;
|
|
2646
|
-
declare const index_d$
|
|
2647
|
-
declare const index_d$
|
|
2648
|
-
declare const index_d$
|
|
2649
|
-
declare const index_d$
|
|
2650
|
-
declare const index_d$
|
|
2646
|
+
declare const index_d$1_onCampaignPaused: typeof onCampaignPaused;
|
|
2647
|
+
declare const index_d$1_onCampaignPublished: typeof onCampaignPublished;
|
|
2648
|
+
declare const index_d$1_onCampaignRejected: typeof onCampaignRejected;
|
|
2649
|
+
declare const index_d$1_onCampaignScheduled: typeof onCampaignScheduled;
|
|
2650
|
+
declare const index_d$1_onCampaignTerminated: typeof onCampaignTerminated;
|
|
2651
2651
|
declare const index_d$1_pauseScheduling: typeof pauseScheduling;
|
|
2652
2652
|
declare const index_d$1_publishCampaign: typeof publishCampaign;
|
|
2653
2653
|
declare const index_d$1_reschedule: typeof reschedule;
|
|
@@ -2656,7 +2656,7 @@ declare const index_d$1_sendTest: typeof sendTest;
|
|
|
2656
2656
|
declare const index_d$1_validateHtmlLinks: typeof validateHtmlLinks;
|
|
2657
2657
|
declare const index_d$1_validateLink: typeof validateLink;
|
|
2658
2658
|
declare namespace index_d$1 {
|
|
2659
|
-
export { type index_d$1_ActionConfiguration as ActionConfiguration, type ActionEvent$1 as ActionEvent, type index_d$1_ActivationCycle as ActivationCycle, index_d$1_ActivityType as ActivityType, type index_d$1_ArchiveCampaignRequest as ArchiveCampaignRequest, type index_d$1_ArchiveCampaignResponse as ArchiveCampaignResponse, type index_d$1_Archived as Archived, type index_d$1_Attachment as Attachment, type index_d$1_AutomationTemplate as AutomationTemplate, type index_d$1_AutomationTemplateContainer as AutomationTemplateContainer, type index_d$1_AutomationTemplateEnrichmentData as AutomationTemplateEnrichmentData, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_Campaign as Campaign, type index_d$1_CampaignCreatedEnvelope as CampaignCreatedEnvelope, type index_d$1_CampaignDeletedEnvelope as CampaignDeletedEnvelope, type index_d$1_CampaignDistributedEnvelope as CampaignDistributedEnvelope, type index_d$1_CampaignEditorType as CampaignEditorType, index_d$1_CampaignEditorTypeEnum as CampaignEditorTypeEnum, type index_d$1_CampaignEmailActivityUpdatedEnvelope as CampaignEmailActivityUpdatedEnvelope, type index_d$1_CampaignLookupBatchRequest as CampaignLookupBatchRequest, type index_d$1_CampaignLookupBatchResponse as CampaignLookupBatchResponse, type index_d$1_CampaignLookupRequest as CampaignLookupRequest, type index_d$1_CampaignLookupResponse as CampaignLookupResponse, type index_d$1_CampaignNonNullableFields as CampaignNonNullableFields, type index_d$1_CampaignPausedEnvelope as CampaignPausedEnvelope, type index_d$1_CampaignPublishedEnvelope as CampaignPublishedEnvelope, type index_d$1_CampaignRecipientDetails as CampaignRecipientDetails, type index_d$1_CampaignRejectedEnvelope as CampaignRejectedEnvelope, type index_d$1_CampaignScheduledEnvelope as CampaignScheduledEnvelope, index_d$1_CampaignSendingStateEnum as CampaignSendingStateEnum, type index_d$1_CampaignStatistics as CampaignStatistics, type index_d$1_CampaignStatisticsContainer as CampaignStatisticsContainer, index_d$1_CampaignStatusEnum as CampaignStatusEnum, type index_d$1_CampaignTerminatedEnvelope as CampaignTerminatedEnvelope, index_d$1_CampaignTypeEnum as CampaignTypeEnum, index_d$1_CampaignVisibilityStatusEnum as CampaignVisibilityStatusEnum, type index_d$1_Click as Click, type index_d$1_Composer as Composer, type index_d$1_ConditionConfiguration as ConditionConfiguration, type index_d$1_Contact as Contact, type index_d$1_CountCampaignsRequest as CountCampaignsRequest, type index_d$1_CountCampaignsResponse as CountCampaignsResponse, type index_d$1_CreateCampaignRequest as CreateCampaignRequest, type index_d$1_CreateCampaignResponse as CreateCampaignResponse, type index_d$1_CreateFromTemplateRequest as CreateFromTemplateRequest, type index_d$1_CreateFromTemplateResponse as CreateFromTemplateResponse, type index_d$1_CreateFromUserTemplateRequest as CreateFromUserTemplateRequest, type index_d$1_CreateFromUserTemplateResponse as CreateFromUserTemplateResponse, type index_d$1_CreateUserTemplateRequest as CreateUserTemplateRequest, type index_d$1_CreateUserTemplateResponse as CreateUserTemplateResponse, type index_d$1_CursorPaging as CursorPaging, type index_d$1_Cursors as Cursors, type index_d$1_DateTime as DateTime, type index_d$1_Decimal as Decimal, type index_d$1_DefaultValues as DefaultValues, type index_d$1_DeleteCampaignRequest as DeleteCampaignRequest, type index_d$1_DeleteCampaignResponse as DeleteCampaignResponse, type index_d$1_Distributed as Distributed, type index_d$1_DistributionStatistics as DistributionStatistics, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$1_EmailActivityUpdated as EmailActivityUpdated, type index_d$1_EmailActivityUpdatedEventTypeOneOf as EmailActivityUpdatedEventTypeOneOf, type index_d$1_EmailDistributionOptions as EmailDistributionOptions, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, index_d$1_Enum as Enum, type index_d$1_EstimateAudienceSizeRequest as EstimateAudienceSizeRequest, type index_d$1_EstimateAudienceSizeResponse as EstimateAudienceSizeResponse, type index_d$1_EstimateFilterSizeRequest as EstimateFilterSizeRequest, type index_d$1_EstimateFilterSizeResponse as EstimateFilterSizeResponse, type EventMetadata$1 as EventMetadata, type index_d$1_GetCampaignMappingRequest as GetCampaignMappingRequest, type index_d$1_GetCampaignMappingResponse as GetCampaignMappingResponse, type index_d$1_GetCampaignOptions as GetCampaignOptions, type index_d$1_GetCampaignRequest as GetCampaignRequest, type index_d$1_GetCampaignResponse as GetCampaignResponse, type index_d$1_GetCampaignResponseNonNullableFields as GetCampaignResponseNonNullableFields, type index_d$1_GetComposerRequest as GetComposerRequest, type index_d$1_GetComposerResponse as GetComposerResponse, type index_d$1_GetDefaultComponentsRequest as GetDefaultComponentsRequest, type index_d$1_GetDefaultComponentsResponse as GetDefaultComponentsResponse, type index_d$1_GetLabelsRequest as GetLabelsRequest, type index_d$1_GetLabelsResponse as GetLabelsResponse, type index_d$1_GetPingCampaignMappingRequest as GetPingCampaignMappingRequest, type index_d$1_GetPingCampaignMappingResponse as GetPingCampaignMappingResponse, type index_d$1_GetPlaceholderKeysRequest as GetPlaceholderKeysRequest, type index_d$1_GetPlaceholderKeysResponse as GetPlaceholderKeysResponse, type index_d$1_GetUsedPlaceholderKeysRequest as GetUsedPlaceholderKeysRequest, type index_d$1_GetUsedPlaceholderKeysResponse as GetUsedPlaceholderKeysResponse, type index_d$1_HardBounce as HardBounce, type index_d$1_Html as Html, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type index_d$1_IdentifySenderAddressRequest as IdentifySenderAddressRequest, type index_d$1_IdentifySenderAddressResponse as IdentifySenderAddressResponse, type index_d$1_IdentifySenderAddressResponseNonNullableFields as IdentifySenderAddressResponseNonNullableFields, type index_d$1_Integer as Integer, type index_d$1_Label as Label, type index_d$1_LandingPageStatistics as LandingPageStatistics, type index_d$1_ListCampaignsOptions as ListCampaignsOptions, type index_d$1_ListCampaignsRequest as ListCampaignsRequest, type index_d$1_ListCampaignsResponse as ListCampaignsResponse, type index_d$1_ListCampaignsResponseNonNullableFields as ListCampaignsResponseNonNullableFields, type index_d$1_ListRecipientsOptions as ListRecipientsOptions, type index_d$1_ListRecipientsRequest as ListRecipientsRequest, type index_d$1_ListRecipientsResponse as ListRecipientsResponse, type index_d$1_ListRecipientsResponseNonNullableFields as ListRecipientsResponseNonNullableFields, type index_d$1_ListStatisticsRequest as ListStatisticsRequest, type index_d$1_ListStatisticsResponse as ListStatisticsResponse, type index_d$1_ListStatisticsResponseNonNullableFields as ListStatisticsResponseNonNullableFields, type index_d$1_LookupCampaignMappingRequest as LookupCampaignMappingRequest, type index_d$1_LookupCampaignMappingResponse as LookupCampaignMappingResponse, type index_d$1_Map as Map, type MessageEnvelope$1 as MessageEnvelope, type index_d$1_Money as Money, type index_d$1_Open as Open, index_d$1_Operator as Operator, type index_d$1_Paging as Paging, type index_d$1_PagingMetadataV2 as PagingMetadataV2, type index_d$1_PauseSchedulingRequest as PauseSchedulingRequest, type index_d$1_PauseSchedulingResponse as PauseSchedulingResponse, type index_d$1_Paused as Paused, type index_d$1_PlaceholderContent as PlaceholderContent, type index_d$1_PlaceholderContentEnum as PlaceholderContentEnum, type index_d$1_PlaceholderContentValueOneOf as PlaceholderContentValueOneOf, type index_d$1_PlainText as PlainText, type index_d$1_Precondition as Precondition, index_d$1_PreconditionType as PreconditionType, type index_d$1_PreviewCampaignRequest as PreviewCampaignRequest, type index_d$1_PreviewCampaignResponse as PreviewCampaignResponse, type index_d$1_PublishCampaignOptions as PublishCampaignOptions, type index_d$1_PublishCampaignRequest as PublishCampaignRequest, type index_d$1_PublishCampaignResponse as PublishCampaignResponse, type index_d$1_PublishCampaignResponseNonNullableFields as PublishCampaignResponseNonNullableFields, type index_d$1_Published as Published, type index_d$1_PublishingData as PublishingData, type index_d$1_Query as Query, type index_d$1_QueryAppTemplatesRequest as QueryAppTemplatesRequest, type index_d$1_QueryAppTemplatesResponse as QueryAppTemplatesResponse, type index_d$1_QueryAutomationTemplatesRequest as QueryAutomationTemplatesRequest, type index_d$1_QueryAutomationTemplatesResponse as QueryAutomationTemplatesResponse, type index_d$1_QueryMetadata as QueryMetadata, index_d$1_RecipientsActivityEnum as RecipientsActivityEnum, type index_d$1_ReconcileContactRequest as ReconcileContactRequest, type index_d$1_ReconcileContactResponse as ReconcileContactResponse, type index_d$1_Rejected as Rejected, type index_d$1_RejectionData as RejectionData, index_d$1_RejectionReasonEnum as RejectionReasonEnum, type index_d$1_RescheduleRequest as RescheduleRequest, type index_d$1_RescheduleResponse as RescheduleResponse, type index_d$1_ResendToNonOpenersRequest as ResendToNonOpenersRequest, type index_d$1_ResendToNonOpenersResponse as ResendToNonOpenersResponse, type RestoreInfo$1 as RestoreInfo, type index_d$1_ReuseCampaignRequest as ReuseCampaignRequest, type index_d$1_ReuseCampaignResponse as ReuseCampaignResponse, type index_d$1_ReuseCampaignResponseNonNullableFields as ReuseCampaignResponseNonNullableFields, type index_d$1_RuleConfiguration as RuleConfiguration, type index_d$1_RuleMetadata as RuleMetadata, index_d$1_RuleStatus as RuleStatus, type index_d$1_Scheduled as Scheduled, type index_d$1_SearchContactsRequest as SearchContactsRequest, type index_d$1_SearchContactsResponse as SearchContactsResponse, type index_d$1_SendTestOptions as SendTestOptions, type index_d$1_SendTestRequest as SendTestRequest, type index_d$1_SendTestResponse as SendTestResponse, type index_d$1_SoftBounce as SoftBounce, index_d$1_SortOrder as SortOrder, type index_d$1_Sorting as Sorting, type index_d$1_SubscribeFromLandingPageRequest as SubscribeFromLandingPageRequest, type index_d$1_SubscribeFromLandingPageResponse as SubscribeFromLandingPageResponse, type index_d$1_TemplateData as TemplateData, index_d$1_TemplateQueryType as TemplateQueryType, index_d$1_TemplateState as TemplateState, index_d$1_TemplateType as TemplateType, type index_d$1_Terminated as Terminated, type index_d$1_TotalStatistics as TotalStatistics, type index_d$1_Translation as Translation, index_d$1_TranslationState as TranslationState, type index_d$1_TriggerConfiguration as TriggerConfiguration, type index_d$1_UnarchiveCampaignRequest as UnarchiveCampaignRequest, type index_d$1_UnarchiveCampaignResponse as UnarchiveCampaignResponse, type index_d$1_Unarchived as Unarchived, type index_d$1_UpdateComposerRequest as UpdateComposerRequest, type index_d$1_UpdateComposerResponse as UpdateComposerResponse, type index_d$1_UpdateTitleRequest as UpdateTitleRequest, type index_d$1_UpdateTitleResponse as UpdateTitleResponse, type index_d$1_UpsertTranslationRequest as UpsertTranslationRequest, type index_d$1_UpsertTranslationResponse as UpsertTranslationResponse, type index_d$1_ValidateHtmlLinksRequest as ValidateHtmlLinksRequest, type index_d$1_ValidateHtmlLinksResponse as ValidateHtmlLinksResponse, type index_d$1_ValidateHtmlLinksResponseNonNullableFields as ValidateHtmlLinksResponseNonNullableFields, type index_d$1_ValidateLinkRequest as ValidateLinkRequest, type index_d$1_ValidateLinkResponse as ValidateLinkResponse, type index_d$1_ValidateLinkResponseNonNullableFields as ValidateLinkResponseNonNullableFields, index_d$1_VersionType as VersionType, WebhookIdentityType$1 as WebhookIdentityType, type index_d$1__Array as _Array, type index_d$1__publicOnCampaignCreatedType as _publicOnCampaignCreatedType, type index_d$1__publicOnCampaignDeletedType as _publicOnCampaignDeletedType, type index_d$1__publicOnCampaignDistributedEventType as _publicOnCampaignDistributedEventType, type index_d$1__publicOnCampaignEmailActivityUpdatedType as _publicOnCampaignEmailActivityUpdatedType, type index_d$1__publicOnCampaignPausedEventType as _publicOnCampaignPausedEventType, type index_d$1__publicOnCampaignPublishedEventType as _publicOnCampaignPublishedEventType, type index_d$1__publicOnCampaignRejectedEventType as _publicOnCampaignRejectedEventType, type index_d$1__publicOnCampaignScheduledEventType as _publicOnCampaignScheduledEventType, type index_d$1__publicOnCampaignTerminatedEventType as _publicOnCampaignTerminatedEventType, index_d$1_deleteCampaign as deleteCampaign, index_d$1_getCampaign as getCampaign, index_d$1_identifySenderAddress as identifySenderAddress, index_d$1_listCampaigns as listCampaigns, index_d$1_listRecipients as listRecipients, index_d$1_listStatistics as listStatistics, index_d$1_onCampaignCreated as onCampaignCreated, index_d$1_onCampaignDeleted as onCampaignDeleted, index_d$1_onCampaignDistributedEvent as onCampaignDistributedEvent, index_d$1_onCampaignEmailActivityUpdated as onCampaignEmailActivityUpdated, index_d$1_onCampaignPausedEvent as onCampaignPausedEvent, index_d$1_onCampaignPublishedEvent as onCampaignPublishedEvent, index_d$1_onCampaignRejectedEvent as onCampaignRejectedEvent, index_d$1_onCampaignScheduledEvent as onCampaignScheduledEvent, index_d$1_onCampaignTerminatedEvent as onCampaignTerminatedEvent, index_d$1_pauseScheduling as pauseScheduling, onCampaignCreated$1 as publicOnCampaignCreated, onCampaignDeleted$1 as publicOnCampaignDeleted, onCampaignDistributedEvent$1 as publicOnCampaignDistributedEvent, onCampaignEmailActivityUpdated$1 as publicOnCampaignEmailActivityUpdated, onCampaignPausedEvent$1 as publicOnCampaignPausedEvent, onCampaignPublishedEvent$1 as publicOnCampaignPublishedEvent, onCampaignRejectedEvent$1 as publicOnCampaignRejectedEvent, onCampaignScheduledEvent$1 as publicOnCampaignScheduledEvent, onCampaignTerminatedEvent$1 as publicOnCampaignTerminatedEvent, index_d$1_publishCampaign as publishCampaign, index_d$1_reschedule as reschedule, index_d$1_reuseCampaign as reuseCampaign, index_d$1_sendTest as sendTest, index_d$1_validateHtmlLinks as validateHtmlLinks, index_d$1_validateLink as validateLink };
|
|
2659
|
+
export { type index_d$1_ActionConfiguration as ActionConfiguration, type ActionEvent$1 as ActionEvent, type index_d$1_ActivationCycle as ActivationCycle, index_d$1_ActivityType as ActivityType, type index_d$1_ArchiveCampaignRequest as ArchiveCampaignRequest, type index_d$1_ArchiveCampaignResponse as ArchiveCampaignResponse, type index_d$1_Archived as Archived, type index_d$1_Attachment as Attachment, type index_d$1_AutomationTemplate as AutomationTemplate, type index_d$1_AutomationTemplateContainer as AutomationTemplateContainer, type index_d$1_AutomationTemplateEnrichmentData as AutomationTemplateEnrichmentData, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_Campaign as Campaign, type index_d$1_CampaignCreatedEnvelope as CampaignCreatedEnvelope, type index_d$1_CampaignDeletedEnvelope as CampaignDeletedEnvelope, type index_d$1_CampaignDistributedEnvelope as CampaignDistributedEnvelope, type index_d$1_CampaignEditorType as CampaignEditorType, index_d$1_CampaignEditorTypeEnum as CampaignEditorTypeEnum, type index_d$1_CampaignEmailActivityUpdatedEnvelope as CampaignEmailActivityUpdatedEnvelope, type index_d$1_CampaignLookupBatchRequest as CampaignLookupBatchRequest, type index_d$1_CampaignLookupBatchResponse as CampaignLookupBatchResponse, type index_d$1_CampaignLookupRequest as CampaignLookupRequest, type index_d$1_CampaignLookupResponse as CampaignLookupResponse, type index_d$1_CampaignNonNullableFields as CampaignNonNullableFields, type index_d$1_CampaignPausedEnvelope as CampaignPausedEnvelope, type index_d$1_CampaignPublishedEnvelope as CampaignPublishedEnvelope, type index_d$1_CampaignRecipientDetails as CampaignRecipientDetails, type index_d$1_CampaignRejectedEnvelope as CampaignRejectedEnvelope, type index_d$1_CampaignScheduledEnvelope as CampaignScheduledEnvelope, index_d$1_CampaignSendingStateEnum as CampaignSendingStateEnum, type index_d$1_CampaignStatistics as CampaignStatistics, type index_d$1_CampaignStatisticsContainer as CampaignStatisticsContainer, index_d$1_CampaignStatusEnum as CampaignStatusEnum, type index_d$1_CampaignTerminatedEnvelope as CampaignTerminatedEnvelope, index_d$1_CampaignTypeEnum as CampaignTypeEnum, index_d$1_CampaignVisibilityStatusEnum as CampaignVisibilityStatusEnum, type index_d$1_Click as Click, type index_d$1_Composer as Composer, type index_d$1_ConditionConfiguration as ConditionConfiguration, type index_d$1_Contact as Contact, type index_d$1_CountCampaignsRequest as CountCampaignsRequest, type index_d$1_CountCampaignsResponse as CountCampaignsResponse, type index_d$1_CreateCampaignRequest as CreateCampaignRequest, type index_d$1_CreateCampaignResponse as CreateCampaignResponse, type index_d$1_CreateFromTemplateRequest as CreateFromTemplateRequest, type index_d$1_CreateFromTemplateResponse as CreateFromTemplateResponse, type index_d$1_CreateFromUserTemplateRequest as CreateFromUserTemplateRequest, type index_d$1_CreateFromUserTemplateResponse as CreateFromUserTemplateResponse, type index_d$1_CreateUserTemplateRequest as CreateUserTemplateRequest, type index_d$1_CreateUserTemplateResponse as CreateUserTemplateResponse, type index_d$1_CursorPaging as CursorPaging, type index_d$1_Cursors as Cursors, type index_d$1_DateTime as DateTime, type index_d$1_Decimal as Decimal, type index_d$1_DefaultValues as DefaultValues, type index_d$1_DeleteCampaignRequest as DeleteCampaignRequest, type index_d$1_DeleteCampaignResponse as DeleteCampaignResponse, type index_d$1_Distributed as Distributed, type index_d$1_DistributionStatistics as DistributionStatistics, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$1_EmailActivityUpdated as EmailActivityUpdated, type index_d$1_EmailActivityUpdatedEventTypeOneOf as EmailActivityUpdatedEventTypeOneOf, type index_d$1_EmailDistributionOptions as EmailDistributionOptions, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, index_d$1_Enum as Enum, type index_d$1_EstimateAudienceSizeRequest as EstimateAudienceSizeRequest, type index_d$1_EstimateAudienceSizeResponse as EstimateAudienceSizeResponse, type index_d$1_EstimateFilterSizeRequest as EstimateFilterSizeRequest, type index_d$1_EstimateFilterSizeResponse as EstimateFilterSizeResponse, type EventMetadata$1 as EventMetadata, type index_d$1_GetCampaignMappingRequest as GetCampaignMappingRequest, type index_d$1_GetCampaignMappingResponse as GetCampaignMappingResponse, type index_d$1_GetCampaignOptions as GetCampaignOptions, type index_d$1_GetCampaignRequest as GetCampaignRequest, type index_d$1_GetCampaignResponse as GetCampaignResponse, type index_d$1_GetCampaignResponseNonNullableFields as GetCampaignResponseNonNullableFields, type index_d$1_GetComposerRequest as GetComposerRequest, type index_d$1_GetComposerResponse as GetComposerResponse, type index_d$1_GetDefaultComponentsRequest as GetDefaultComponentsRequest, type index_d$1_GetDefaultComponentsResponse as GetDefaultComponentsResponse, type index_d$1_GetLabelsRequest as GetLabelsRequest, type index_d$1_GetLabelsResponse as GetLabelsResponse, type index_d$1_GetPingCampaignMappingRequest as GetPingCampaignMappingRequest, type index_d$1_GetPingCampaignMappingResponse as GetPingCampaignMappingResponse, type index_d$1_GetPlaceholderKeysRequest as GetPlaceholderKeysRequest, type index_d$1_GetPlaceholderKeysResponse as GetPlaceholderKeysResponse, type index_d$1_GetUsedPlaceholderKeysRequest as GetUsedPlaceholderKeysRequest, type index_d$1_GetUsedPlaceholderKeysResponse as GetUsedPlaceholderKeysResponse, type index_d$1_HardBounce as HardBounce, type index_d$1_Html as Html, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type index_d$1_IdentifySenderAddressRequest as IdentifySenderAddressRequest, type index_d$1_IdentifySenderAddressResponse as IdentifySenderAddressResponse, type index_d$1_IdentifySenderAddressResponseNonNullableFields as IdentifySenderAddressResponseNonNullableFields, type index_d$1_Integer as Integer, type index_d$1_Label as Label, type index_d$1_LandingPageStatistics as LandingPageStatistics, type index_d$1_ListCampaignsOptions as ListCampaignsOptions, type index_d$1_ListCampaignsRequest as ListCampaignsRequest, type index_d$1_ListCampaignsResponse as ListCampaignsResponse, type index_d$1_ListCampaignsResponseNonNullableFields as ListCampaignsResponseNonNullableFields, type index_d$1_ListRecipientsOptions as ListRecipientsOptions, type index_d$1_ListRecipientsRequest as ListRecipientsRequest, type index_d$1_ListRecipientsResponse as ListRecipientsResponse, type index_d$1_ListRecipientsResponseNonNullableFields as ListRecipientsResponseNonNullableFields, type index_d$1_ListStatisticsRequest as ListStatisticsRequest, type index_d$1_ListStatisticsResponse as ListStatisticsResponse, type index_d$1_ListStatisticsResponseNonNullableFields as ListStatisticsResponseNonNullableFields, type index_d$1_LookupCampaignMappingRequest as LookupCampaignMappingRequest, type index_d$1_LookupCampaignMappingResponse as LookupCampaignMappingResponse, type index_d$1_Map as Map, type MessageEnvelope$1 as MessageEnvelope, type index_d$1_Money as Money, type index_d$1_Open as Open, index_d$1_Operator as Operator, type index_d$1_Paging as Paging, type index_d$1_PagingMetadataV2 as PagingMetadataV2, type index_d$1_PauseSchedulingRequest as PauseSchedulingRequest, type index_d$1_PauseSchedulingResponse as PauseSchedulingResponse, type index_d$1_Paused as Paused, type index_d$1_PlaceholderContent as PlaceholderContent, type index_d$1_PlaceholderContentEnum as PlaceholderContentEnum, type index_d$1_PlaceholderContentValueOneOf as PlaceholderContentValueOneOf, type index_d$1_PlainText as PlainText, type index_d$1_Precondition as Precondition, index_d$1_PreconditionType as PreconditionType, type index_d$1_PreviewCampaignRequest as PreviewCampaignRequest, type index_d$1_PreviewCampaignResponse as PreviewCampaignResponse, type index_d$1_PublishCampaignOptions as PublishCampaignOptions, type index_d$1_PublishCampaignRequest as PublishCampaignRequest, type index_d$1_PublishCampaignResponse as PublishCampaignResponse, type index_d$1_PublishCampaignResponseNonNullableFields as PublishCampaignResponseNonNullableFields, type index_d$1_Published as Published, type index_d$1_PublishingData as PublishingData, type index_d$1_Query as Query, type index_d$1_QueryAppTemplatesRequest as QueryAppTemplatesRequest, type index_d$1_QueryAppTemplatesResponse as QueryAppTemplatesResponse, type index_d$1_QueryAutomationTemplatesRequest as QueryAutomationTemplatesRequest, type index_d$1_QueryAutomationTemplatesResponse as QueryAutomationTemplatesResponse, type index_d$1_QueryMetadata as QueryMetadata, index_d$1_RecipientsActivityEnum as RecipientsActivityEnum, type index_d$1_ReconcileContactRequest as ReconcileContactRequest, type index_d$1_ReconcileContactResponse as ReconcileContactResponse, type index_d$1_Rejected as Rejected, type index_d$1_RejectionData as RejectionData, index_d$1_RejectionReasonEnum as RejectionReasonEnum, type index_d$1_RescheduleRequest as RescheduleRequest, type index_d$1_RescheduleResponse as RescheduleResponse, type index_d$1_ResendToNonOpenersRequest as ResendToNonOpenersRequest, type index_d$1_ResendToNonOpenersResponse as ResendToNonOpenersResponse, type RestoreInfo$1 as RestoreInfo, type index_d$1_ReuseCampaignRequest as ReuseCampaignRequest, type index_d$1_ReuseCampaignResponse as ReuseCampaignResponse, type index_d$1_ReuseCampaignResponseNonNullableFields as ReuseCampaignResponseNonNullableFields, type index_d$1_RuleConfiguration as RuleConfiguration, type index_d$1_RuleMetadata as RuleMetadata, index_d$1_RuleStatus as RuleStatus, type index_d$1_Scheduled as Scheduled, type index_d$1_SearchContactsRequest as SearchContactsRequest, type index_d$1_SearchContactsResponse as SearchContactsResponse, type index_d$1_SendTestOptions as SendTestOptions, type index_d$1_SendTestRequest as SendTestRequest, type index_d$1_SendTestResponse as SendTestResponse, type index_d$1_SoftBounce as SoftBounce, index_d$1_SortOrder as SortOrder, type index_d$1_Sorting as Sorting, type index_d$1_SubscribeFromLandingPageRequest as SubscribeFromLandingPageRequest, type index_d$1_SubscribeFromLandingPageResponse as SubscribeFromLandingPageResponse, type index_d$1_TemplateData as TemplateData, index_d$1_TemplateQueryType as TemplateQueryType, index_d$1_TemplateState as TemplateState, index_d$1_TemplateType as TemplateType, type index_d$1_Terminated as Terminated, type index_d$1_TotalStatistics as TotalStatistics, type index_d$1_Translation as Translation, index_d$1_TranslationState as TranslationState, type index_d$1_TriggerConfiguration as TriggerConfiguration, type index_d$1_UnarchiveCampaignRequest as UnarchiveCampaignRequest, type index_d$1_UnarchiveCampaignResponse as UnarchiveCampaignResponse, type index_d$1_Unarchived as Unarchived, type index_d$1_UpdateComposerRequest as UpdateComposerRequest, type index_d$1_UpdateComposerResponse as UpdateComposerResponse, type index_d$1_UpdateTitleRequest as UpdateTitleRequest, type index_d$1_UpdateTitleResponse as UpdateTitleResponse, type index_d$1_UpsertTranslationRequest as UpsertTranslationRequest, type index_d$1_UpsertTranslationResponse as UpsertTranslationResponse, type index_d$1_ValidateHtmlLinksRequest as ValidateHtmlLinksRequest, type index_d$1_ValidateHtmlLinksResponse as ValidateHtmlLinksResponse, type index_d$1_ValidateHtmlLinksResponseNonNullableFields as ValidateHtmlLinksResponseNonNullableFields, type index_d$1_ValidateLinkRequest as ValidateLinkRequest, type index_d$1_ValidateLinkResponse as ValidateLinkResponse, type index_d$1_ValidateLinkResponseNonNullableFields as ValidateLinkResponseNonNullableFields, index_d$1_VersionType as VersionType, WebhookIdentityType$1 as WebhookIdentityType, type index_d$1__Array as _Array, type index_d$1__publicOnCampaignCreatedType as _publicOnCampaignCreatedType, type index_d$1__publicOnCampaignDeletedType as _publicOnCampaignDeletedType, type index_d$1__publicOnCampaignDistributedType as _publicOnCampaignDistributedType, type index_d$1__publicOnCampaignEmailActivityUpdatedType as _publicOnCampaignEmailActivityUpdatedType, type index_d$1__publicOnCampaignPausedType as _publicOnCampaignPausedType, type index_d$1__publicOnCampaignPublishedType as _publicOnCampaignPublishedType, type index_d$1__publicOnCampaignRejectedType as _publicOnCampaignRejectedType, type index_d$1__publicOnCampaignScheduledType as _publicOnCampaignScheduledType, type index_d$1__publicOnCampaignTerminatedType as _publicOnCampaignTerminatedType, index_d$1_deleteCampaign as deleteCampaign, index_d$1_getCampaign as getCampaign, index_d$1_identifySenderAddress as identifySenderAddress, index_d$1_listCampaigns as listCampaigns, index_d$1_listRecipients as listRecipients, index_d$1_listStatistics as listStatistics, index_d$1_onCampaignCreated as onCampaignCreated, index_d$1_onCampaignDeleted as onCampaignDeleted, index_d$1_onCampaignDistributed as onCampaignDistributed, index_d$1_onCampaignEmailActivityUpdated as onCampaignEmailActivityUpdated, index_d$1_onCampaignPaused as onCampaignPaused, index_d$1_onCampaignPublished as onCampaignPublished, index_d$1_onCampaignRejected as onCampaignRejected, index_d$1_onCampaignScheduled as onCampaignScheduled, index_d$1_onCampaignTerminated as onCampaignTerminated, index_d$1_pauseScheduling as pauseScheduling, onCampaignCreated$1 as publicOnCampaignCreated, onCampaignDeleted$1 as publicOnCampaignDeleted, onCampaignDistributed$1 as publicOnCampaignDistributed, onCampaignEmailActivityUpdated$1 as publicOnCampaignEmailActivityUpdated, onCampaignPaused$1 as publicOnCampaignPaused, onCampaignPublished$1 as publicOnCampaignPublished, onCampaignRejected$1 as publicOnCampaignRejected, onCampaignScheduled$1 as publicOnCampaignScheduled, onCampaignTerminated$1 as publicOnCampaignTerminated, index_d$1_publishCampaign as publishCampaign, index_d$1_reschedule as reschedule, index_d$1_reuseCampaign as reuseCampaign, index_d$1_sendTest as sendTest, index_d$1_validateHtmlLinks as validateHtmlLinks, index_d$1_validateLink as validateLink };
|
|
2660
2660
|
}
|
|
2661
2661
|
|
|
2662
2662
|
/**
|