@wix/email-marketing 1.0.100 → 1.0.101
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.101",
|
|
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.53",
|
|
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": "03141e80afc24814744fb349d1ce36da7d0817b4ebe1804d26133df3"
|
|
52
52
|
}
|
|
@@ -1773,6 +1773,28 @@ interface ResendToNonOpenersResponse {
|
|
|
1773
1773
|
/** ID of the newly created and resent campaign. */
|
|
1774
1774
|
campaignId?: string;
|
|
1775
1775
|
}
|
|
1776
|
+
interface GetAudienceRequest {
|
|
1777
|
+
/** Campaign ID. */
|
|
1778
|
+
campaignId: string;
|
|
1779
|
+
}
|
|
1780
|
+
interface GetAudienceResponse {
|
|
1781
|
+
/** Campaign audience. */
|
|
1782
|
+
audience?: CampaignAudience;
|
|
1783
|
+
}
|
|
1784
|
+
interface CampaignAudience {
|
|
1785
|
+
/** Contact IDs to send campaign to. */
|
|
1786
|
+
contactIds?: string[];
|
|
1787
|
+
/** Label IDs to send campaign to. */
|
|
1788
|
+
labelIds?: string[];
|
|
1789
|
+
/** Segment ids to send campaign to. */
|
|
1790
|
+
segmentIds?: string[];
|
|
1791
|
+
/** Contacts filter expression (json). */
|
|
1792
|
+
contactsFilter?: Record<string, any> | null;
|
|
1793
|
+
/** Contacts plain text search expression (searches in name, phone and email fields). */
|
|
1794
|
+
contactsSearchTerm?: string | null;
|
|
1795
|
+
/** Should "inactive" contacts be excluded or not. */
|
|
1796
|
+
activeContactsOnly?: boolean;
|
|
1797
|
+
}
|
|
1776
1798
|
interface IdentifySenderAddressRequest {
|
|
1777
1799
|
/** User's provided arbitrary email address. */
|
|
1778
1800
|
emailAddress: string;
|
|
@@ -2040,6 +2062,15 @@ interface PublishCampaignResponseNonNullableFields {
|
|
|
2040
2062
|
interface ReuseCampaignResponseNonNullableFields {
|
|
2041
2063
|
campaign?: CampaignNonNullableFields;
|
|
2042
2064
|
}
|
|
2065
|
+
interface CampaignAudienceNonNullableFields {
|
|
2066
|
+
contactIds: string[];
|
|
2067
|
+
labelIds: string[];
|
|
2068
|
+
segmentIds: string[];
|
|
2069
|
+
activeContactsOnly: boolean;
|
|
2070
|
+
}
|
|
2071
|
+
interface GetAudienceResponseNonNullableFields {
|
|
2072
|
+
audience?: CampaignAudienceNonNullableFields;
|
|
2073
|
+
}
|
|
2043
2074
|
interface IdentifySenderAddressResponseNonNullableFields {
|
|
2044
2075
|
senderAddress: string;
|
|
2045
2076
|
}
|
|
@@ -2287,6 +2318,14 @@ interface ReuseCampaignSignature {
|
|
|
2287
2318
|
*/
|
|
2288
2319
|
(campaignId: string): Promise<ReuseCampaignResponse & ReuseCampaignResponseNonNullableFields>;
|
|
2289
2320
|
}
|
|
2321
|
+
declare function getAudience$1(httpClient: HttpClient): GetAudienceSignature;
|
|
2322
|
+
interface GetAudienceSignature {
|
|
2323
|
+
/**
|
|
2324
|
+
* Return audience "assigned" to paused campaign at the time of scheduling.
|
|
2325
|
+
* @param - Campaign ID.
|
|
2326
|
+
*/
|
|
2327
|
+
(campaignId: string): Promise<GetAudienceResponse & GetAudienceResponseNonNullableFields>;
|
|
2328
|
+
}
|
|
2290
2329
|
declare function identifySenderAddress$1(httpClient: HttpClient): IdentifySenderAddressSignature;
|
|
2291
2330
|
interface IdentifySenderAddressSignature {
|
|
2292
2331
|
/**
|
|
@@ -2354,6 +2393,7 @@ declare const pauseScheduling: MaybeContext<BuildRESTFunction<typeof pauseSchedu
|
|
|
2354
2393
|
declare const reschedule: MaybeContext<BuildRESTFunction<typeof reschedule$1> & typeof reschedule$1>;
|
|
2355
2394
|
declare const deleteCampaign: MaybeContext<BuildRESTFunction<typeof deleteCampaign$1> & typeof deleteCampaign$1>;
|
|
2356
2395
|
declare const reuseCampaign: MaybeContext<BuildRESTFunction<typeof reuseCampaign$1> & typeof reuseCampaign$1>;
|
|
2396
|
+
declare const getAudience: MaybeContext<BuildRESTFunction<typeof getAudience$1> & typeof getAudience$1>;
|
|
2357
2397
|
declare const identifySenderAddress: MaybeContext<BuildRESTFunction<typeof identifySenderAddress$1> & typeof identifySenderAddress$1>;
|
|
2358
2398
|
declare const listStatistics: MaybeContext<BuildRESTFunction<typeof listStatistics$1> & typeof listStatistics$1>;
|
|
2359
2399
|
declare const listRecipients: MaybeContext<BuildRESTFunction<typeof listRecipients$1> & typeof listRecipients$1>;
|
|
@@ -2432,6 +2472,7 @@ type context$1_AutomationTemplate = AutomationTemplate;
|
|
|
2432
2472
|
type context$1_AutomationTemplateContainer = AutomationTemplateContainer;
|
|
2433
2473
|
type context$1_AutomationTemplateEnrichmentData = AutomationTemplateEnrichmentData;
|
|
2434
2474
|
type context$1_Campaign = Campaign;
|
|
2475
|
+
type context$1_CampaignAudience = CampaignAudience;
|
|
2435
2476
|
type context$1_CampaignCreatedEnvelope = CampaignCreatedEnvelope;
|
|
2436
2477
|
type context$1_CampaignDeletedEnvelope = CampaignDeletedEnvelope;
|
|
2437
2478
|
type context$1_CampaignDistributedEnvelope = CampaignDistributedEnvelope;
|
|
@@ -2492,6 +2533,9 @@ type context$1_EstimateAudienceSizeRequest = EstimateAudienceSizeRequest;
|
|
|
2492
2533
|
type context$1_EstimateAudienceSizeResponse = EstimateAudienceSizeResponse;
|
|
2493
2534
|
type context$1_EstimateFilterSizeRequest = EstimateFilterSizeRequest;
|
|
2494
2535
|
type context$1_EstimateFilterSizeResponse = EstimateFilterSizeResponse;
|
|
2536
|
+
type context$1_GetAudienceRequest = GetAudienceRequest;
|
|
2537
|
+
type context$1_GetAudienceResponse = GetAudienceResponse;
|
|
2538
|
+
type context$1_GetAudienceResponseNonNullableFields = GetAudienceResponseNonNullableFields;
|
|
2495
2539
|
type context$1_GetCampaignMappingRequest = GetCampaignMappingRequest;
|
|
2496
2540
|
type context$1_GetCampaignMappingResponse = GetCampaignMappingResponse;
|
|
2497
2541
|
type context$1_GetCampaignOptions = GetCampaignOptions;
|
|
@@ -2634,6 +2678,7 @@ type context$1__publicOnCampaignRejectedEventType = _publicOnCampaignRejectedEve
|
|
|
2634
2678
|
type context$1__publicOnCampaignScheduledEventType = _publicOnCampaignScheduledEventType;
|
|
2635
2679
|
type context$1__publicOnCampaignTerminatedEventType = _publicOnCampaignTerminatedEventType;
|
|
2636
2680
|
declare const context$1_deleteCampaign: typeof deleteCampaign;
|
|
2681
|
+
declare const context$1_getAudience: typeof getAudience;
|
|
2637
2682
|
declare const context$1_getCampaign: typeof getCampaign;
|
|
2638
2683
|
declare const context$1_identifySenderAddress: typeof identifySenderAddress;
|
|
2639
2684
|
declare const context$1_listCampaigns: typeof listCampaigns;
|
|
@@ -2656,7 +2701,7 @@ declare const context$1_sendTest: typeof sendTest;
|
|
|
2656
2701
|
declare const context$1_validateHtmlLinks: typeof validateHtmlLinks;
|
|
2657
2702
|
declare const context$1_validateLink: typeof validateLink;
|
|
2658
2703
|
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 };
|
|
2704
|
+
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_CampaignAudience as CampaignAudience, 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_GetAudienceRequest as GetAudienceRequest, type context$1_GetAudienceResponse as GetAudienceResponse, type context$1_GetAudienceResponseNonNullableFields as GetAudienceResponseNonNullableFields, 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_getAudience as getAudience, 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 };
|
|
2660
2705
|
}
|
|
2661
2706
|
|
|
2662
2707
|
/**
|
|
@@ -1773,6 +1773,28 @@ interface ResendToNonOpenersResponse {
|
|
|
1773
1773
|
/** ID of the newly created and resent campaign. */
|
|
1774
1774
|
campaignId?: string;
|
|
1775
1775
|
}
|
|
1776
|
+
interface GetAudienceRequest {
|
|
1777
|
+
/** Campaign ID. */
|
|
1778
|
+
campaignId: string;
|
|
1779
|
+
}
|
|
1780
|
+
interface GetAudienceResponse {
|
|
1781
|
+
/** Campaign audience. */
|
|
1782
|
+
audience?: CampaignAudience;
|
|
1783
|
+
}
|
|
1784
|
+
interface CampaignAudience {
|
|
1785
|
+
/** Contact IDs to send campaign to. */
|
|
1786
|
+
contactIds?: string[];
|
|
1787
|
+
/** Label IDs to send campaign to. */
|
|
1788
|
+
labelIds?: string[];
|
|
1789
|
+
/** Segment ids to send campaign to. */
|
|
1790
|
+
segmentIds?: string[];
|
|
1791
|
+
/** Contacts filter expression (json). */
|
|
1792
|
+
contactsFilter?: Record<string, any> | null;
|
|
1793
|
+
/** Contacts plain text search expression (searches in name, phone and email fields). */
|
|
1794
|
+
contactsSearchTerm?: string | null;
|
|
1795
|
+
/** Should "inactive" contacts be excluded or not. */
|
|
1796
|
+
activeContactsOnly?: boolean;
|
|
1797
|
+
}
|
|
1776
1798
|
interface IdentifySenderAddressRequest {
|
|
1777
1799
|
/** User's provided arbitrary email address. */
|
|
1778
1800
|
emailAddress: string;
|
|
@@ -2040,6 +2062,15 @@ interface PublishCampaignResponseNonNullableFields {
|
|
|
2040
2062
|
interface ReuseCampaignResponseNonNullableFields {
|
|
2041
2063
|
campaign?: CampaignNonNullableFields;
|
|
2042
2064
|
}
|
|
2065
|
+
interface CampaignAudienceNonNullableFields {
|
|
2066
|
+
contactIds: string[];
|
|
2067
|
+
labelIds: string[];
|
|
2068
|
+
segmentIds: string[];
|
|
2069
|
+
activeContactsOnly: boolean;
|
|
2070
|
+
}
|
|
2071
|
+
interface GetAudienceResponseNonNullableFields {
|
|
2072
|
+
audience?: CampaignAudienceNonNullableFields;
|
|
2073
|
+
}
|
|
2043
2074
|
interface IdentifySenderAddressResponseNonNullableFields {
|
|
2044
2075
|
senderAddress: string;
|
|
2045
2076
|
}
|
|
@@ -2287,6 +2318,14 @@ interface ReuseCampaignSignature {
|
|
|
2287
2318
|
*/
|
|
2288
2319
|
(campaignId: string): Promise<ReuseCampaignResponse & ReuseCampaignResponseNonNullableFields>;
|
|
2289
2320
|
}
|
|
2321
|
+
declare function getAudience$1(httpClient: HttpClient): GetAudienceSignature;
|
|
2322
|
+
interface GetAudienceSignature {
|
|
2323
|
+
/**
|
|
2324
|
+
* Return audience "assigned" to paused campaign at the time of scheduling.
|
|
2325
|
+
* @param - Campaign ID.
|
|
2326
|
+
*/
|
|
2327
|
+
(campaignId: string): Promise<GetAudienceResponse & GetAudienceResponseNonNullableFields>;
|
|
2328
|
+
}
|
|
2290
2329
|
declare function identifySenderAddress$1(httpClient: HttpClient): IdentifySenderAddressSignature;
|
|
2291
2330
|
interface IdentifySenderAddressSignature {
|
|
2292
2331
|
/**
|
|
@@ -2354,6 +2393,7 @@ declare const pauseScheduling: MaybeContext<BuildRESTFunction<typeof pauseSchedu
|
|
|
2354
2393
|
declare const reschedule: MaybeContext<BuildRESTFunction<typeof reschedule$1> & typeof reschedule$1>;
|
|
2355
2394
|
declare const deleteCampaign: MaybeContext<BuildRESTFunction<typeof deleteCampaign$1> & typeof deleteCampaign$1>;
|
|
2356
2395
|
declare const reuseCampaign: MaybeContext<BuildRESTFunction<typeof reuseCampaign$1> & typeof reuseCampaign$1>;
|
|
2396
|
+
declare const getAudience: MaybeContext<BuildRESTFunction<typeof getAudience$1> & typeof getAudience$1>;
|
|
2357
2397
|
declare const identifySenderAddress: MaybeContext<BuildRESTFunction<typeof identifySenderAddress$1> & typeof identifySenderAddress$1>;
|
|
2358
2398
|
declare const listStatistics: MaybeContext<BuildRESTFunction<typeof listStatistics$1> & typeof listStatistics$1>;
|
|
2359
2399
|
declare const listRecipients: MaybeContext<BuildRESTFunction<typeof listRecipients$1> & typeof listRecipients$1>;
|
|
@@ -2432,6 +2472,7 @@ type index_d$1_AutomationTemplate = AutomationTemplate;
|
|
|
2432
2472
|
type index_d$1_AutomationTemplateContainer = AutomationTemplateContainer;
|
|
2433
2473
|
type index_d$1_AutomationTemplateEnrichmentData = AutomationTemplateEnrichmentData;
|
|
2434
2474
|
type index_d$1_Campaign = Campaign;
|
|
2475
|
+
type index_d$1_CampaignAudience = CampaignAudience;
|
|
2435
2476
|
type index_d$1_CampaignCreatedEnvelope = CampaignCreatedEnvelope;
|
|
2436
2477
|
type index_d$1_CampaignDeletedEnvelope = CampaignDeletedEnvelope;
|
|
2437
2478
|
type index_d$1_CampaignDistributedEnvelope = CampaignDistributedEnvelope;
|
|
@@ -2492,6 +2533,9 @@ type index_d$1_EstimateAudienceSizeRequest = EstimateAudienceSizeRequest;
|
|
|
2492
2533
|
type index_d$1_EstimateAudienceSizeResponse = EstimateAudienceSizeResponse;
|
|
2493
2534
|
type index_d$1_EstimateFilterSizeRequest = EstimateFilterSizeRequest;
|
|
2494
2535
|
type index_d$1_EstimateFilterSizeResponse = EstimateFilterSizeResponse;
|
|
2536
|
+
type index_d$1_GetAudienceRequest = GetAudienceRequest;
|
|
2537
|
+
type index_d$1_GetAudienceResponse = GetAudienceResponse;
|
|
2538
|
+
type index_d$1_GetAudienceResponseNonNullableFields = GetAudienceResponseNonNullableFields;
|
|
2495
2539
|
type index_d$1_GetCampaignMappingRequest = GetCampaignMappingRequest;
|
|
2496
2540
|
type index_d$1_GetCampaignMappingResponse = GetCampaignMappingResponse;
|
|
2497
2541
|
type index_d$1_GetCampaignOptions = GetCampaignOptions;
|
|
@@ -2634,6 +2678,7 @@ type index_d$1__publicOnCampaignRejectedEventType = _publicOnCampaignRejectedEve
|
|
|
2634
2678
|
type index_d$1__publicOnCampaignScheduledEventType = _publicOnCampaignScheduledEventType;
|
|
2635
2679
|
type index_d$1__publicOnCampaignTerminatedEventType = _publicOnCampaignTerminatedEventType;
|
|
2636
2680
|
declare const index_d$1_deleteCampaign: typeof deleteCampaign;
|
|
2681
|
+
declare const index_d$1_getAudience: typeof getAudience;
|
|
2637
2682
|
declare const index_d$1_getCampaign: typeof getCampaign;
|
|
2638
2683
|
declare const index_d$1_identifySenderAddress: typeof identifySenderAddress;
|
|
2639
2684
|
declare const index_d$1_listCampaigns: typeof listCampaigns;
|
|
@@ -2656,7 +2701,7 @@ declare const index_d$1_sendTest: typeof sendTest;
|
|
|
2656
2701
|
declare const index_d$1_validateHtmlLinks: typeof validateHtmlLinks;
|
|
2657
2702
|
declare const index_d$1_validateLink: typeof validateLink;
|
|
2658
2703
|
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 };
|
|
2704
|
+
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_CampaignAudience as CampaignAudience, 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_GetAudienceRequest as GetAudienceRequest, type index_d$1_GetAudienceResponse as GetAudienceResponse, type index_d$1_GetAudienceResponseNonNullableFields as GetAudienceResponseNonNullableFields, 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_getAudience as getAudience, 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 };
|
|
2660
2705
|
}
|
|
2661
2706
|
|
|
2662
2707
|
/**
|
|
@@ -509,6 +509,28 @@ interface ReuseCampaignResponse$1 {
|
|
|
509
509
|
/** Campaign information. */
|
|
510
510
|
campaign?: Campaign$1;
|
|
511
511
|
}
|
|
512
|
+
interface GetAudienceRequest$1 {
|
|
513
|
+
/** Campaign ID. */
|
|
514
|
+
campaignId: string;
|
|
515
|
+
}
|
|
516
|
+
interface GetAudienceResponse$1 {
|
|
517
|
+
/** Campaign audience. */
|
|
518
|
+
audience?: CampaignAudience$1;
|
|
519
|
+
}
|
|
520
|
+
interface CampaignAudience$1 {
|
|
521
|
+
/** Contact IDs to send campaign to. */
|
|
522
|
+
contactIds?: string[];
|
|
523
|
+
/** Label IDs to send campaign to. */
|
|
524
|
+
labelIds?: string[];
|
|
525
|
+
/** Segment ids to send campaign to. */
|
|
526
|
+
segmentIds?: string[];
|
|
527
|
+
/** Contacts filter expression (json). */
|
|
528
|
+
contactsFilter?: Record<string, any> | null;
|
|
529
|
+
/** Contacts plain text search expression (searches in name, phone and email fields). */
|
|
530
|
+
contactsSearchTerm?: string | null;
|
|
531
|
+
/** Should "inactive" contacts be excluded or not. */
|
|
532
|
+
activeContactsOnly?: boolean;
|
|
533
|
+
}
|
|
512
534
|
interface IdentifySenderAddressRequest$1 {
|
|
513
535
|
/** User's provided arbitrary email address. */
|
|
514
536
|
emailAddress: string;
|
|
@@ -659,6 +681,15 @@ interface PublishCampaignResponseNonNullableFields$1 {
|
|
|
659
681
|
interface ReuseCampaignResponseNonNullableFields$1 {
|
|
660
682
|
campaign?: CampaignNonNullableFields$1;
|
|
661
683
|
}
|
|
684
|
+
interface CampaignAudienceNonNullableFields$1 {
|
|
685
|
+
contactIds: string[];
|
|
686
|
+
labelIds: string[];
|
|
687
|
+
segmentIds: string[];
|
|
688
|
+
activeContactsOnly: boolean;
|
|
689
|
+
}
|
|
690
|
+
interface GetAudienceResponseNonNullableFields$1 {
|
|
691
|
+
audience?: CampaignAudienceNonNullableFields$1;
|
|
692
|
+
}
|
|
662
693
|
interface IdentifySenderAddressResponseNonNullableFields$1 {
|
|
663
694
|
senderAddress: string;
|
|
664
695
|
}
|
|
@@ -1033,6 +1064,28 @@ interface ReuseCampaignResponse {
|
|
|
1033
1064
|
/** Campaign information. */
|
|
1034
1065
|
campaign?: Campaign;
|
|
1035
1066
|
}
|
|
1067
|
+
interface GetAudienceRequest {
|
|
1068
|
+
/** Campaign ID. */
|
|
1069
|
+
campaignId: string;
|
|
1070
|
+
}
|
|
1071
|
+
interface GetAudienceResponse {
|
|
1072
|
+
/** Campaign audience. */
|
|
1073
|
+
audience?: CampaignAudience;
|
|
1074
|
+
}
|
|
1075
|
+
interface CampaignAudience {
|
|
1076
|
+
/** Contact IDs to send campaign to. */
|
|
1077
|
+
contactIds?: string[];
|
|
1078
|
+
/** Label IDs to send campaign to. */
|
|
1079
|
+
labelIds?: string[];
|
|
1080
|
+
/** Segment ids to send campaign to. */
|
|
1081
|
+
segmentIds?: string[];
|
|
1082
|
+
/** Contacts filter expression (json). */
|
|
1083
|
+
contactsFilter?: Record<string, any> | null;
|
|
1084
|
+
/** Contacts plain text search expression (searches in name, phone and email fields). */
|
|
1085
|
+
contactsSearchTerm?: string | null;
|
|
1086
|
+
/** Should "inactive" contacts be excluded or not. */
|
|
1087
|
+
activeContactsOnly?: boolean;
|
|
1088
|
+
}
|
|
1036
1089
|
interface IdentifySenderAddressRequest {
|
|
1037
1090
|
/** User's provided arbitrary email address. */
|
|
1038
1091
|
emailAddress: string;
|
|
@@ -1190,6 +1243,15 @@ interface PublishCampaignResponseNonNullableFields {
|
|
|
1190
1243
|
interface ReuseCampaignResponseNonNullableFields {
|
|
1191
1244
|
campaign?: CampaignNonNullableFields;
|
|
1192
1245
|
}
|
|
1246
|
+
interface CampaignAudienceNonNullableFields {
|
|
1247
|
+
contactIds: string[];
|
|
1248
|
+
labelIds: string[];
|
|
1249
|
+
segmentIds: string[];
|
|
1250
|
+
activeContactsOnly: boolean;
|
|
1251
|
+
}
|
|
1252
|
+
interface GetAudienceResponseNonNullableFields {
|
|
1253
|
+
audience?: CampaignAudienceNonNullableFields;
|
|
1254
|
+
}
|
|
1193
1255
|
interface IdentifySenderAddressResponseNonNullableFields {
|
|
1194
1256
|
senderAddress: string;
|
|
1195
1257
|
}
|
|
@@ -1244,6 +1306,9 @@ declare function deleteCampaign(): __PublicMethodMetaInfo$1<'DELETE', {
|
|
|
1244
1306
|
declare function reuseCampaign(): __PublicMethodMetaInfo$1<'POST', {
|
|
1245
1307
|
campaignId: string;
|
|
1246
1308
|
}, ReuseCampaignRequest, ReuseCampaignRequest$1, ReuseCampaignResponse & ReuseCampaignResponseNonNullableFields, ReuseCampaignResponse$1 & ReuseCampaignResponseNonNullableFields$1>;
|
|
1309
|
+
declare function getAudience(): __PublicMethodMetaInfo$1<'POST', {
|
|
1310
|
+
campaignId: string;
|
|
1311
|
+
}, GetAudienceRequest, GetAudienceRequest$1, GetAudienceResponse & GetAudienceResponseNonNullableFields, GetAudienceResponse$1 & GetAudienceResponseNonNullableFields$1>;
|
|
1247
1312
|
declare function identifySenderAddress(): __PublicMethodMetaInfo$1<'POST', {}, IdentifySenderAddressRequest, IdentifySenderAddressRequest$1, IdentifySenderAddressResponse & IdentifySenderAddressResponseNonNullableFields, IdentifySenderAddressResponse$1 & IdentifySenderAddressResponseNonNullableFields$1>;
|
|
1248
1313
|
declare function listStatistics(): __PublicMethodMetaInfo$1<'GET', {}, ListStatisticsRequest, ListStatisticsRequest$1, ListStatisticsResponse & ListStatisticsResponseNonNullableFields, ListStatisticsResponse$1 & ListStatisticsResponseNonNullableFields$1>;
|
|
1249
1314
|
declare function listRecipients(): __PublicMethodMetaInfo$1<'GET', {
|
|
@@ -1251,6 +1316,7 @@ declare function listRecipients(): __PublicMethodMetaInfo$1<'GET', {
|
|
|
1251
1316
|
}, ListRecipientsRequest, ListRecipientsRequest$1, ListRecipientsResponse & ListRecipientsResponseNonNullableFields, ListRecipientsResponse$1 & ListRecipientsResponseNonNullableFields$1>;
|
|
1252
1317
|
|
|
1253
1318
|
declare const meta$1_deleteCampaign: typeof deleteCampaign;
|
|
1319
|
+
declare const meta$1_getAudience: typeof getAudience;
|
|
1254
1320
|
declare const meta$1_getCampaign: typeof getCampaign;
|
|
1255
1321
|
declare const meta$1_identifySenderAddress: typeof identifySenderAddress;
|
|
1256
1322
|
declare const meta$1_listCampaigns: typeof listCampaigns;
|
|
@@ -1264,7 +1330,7 @@ declare const meta$1_sendTest: typeof sendTest;
|
|
|
1264
1330
|
declare const meta$1_validateHtmlLinks: typeof validateHtmlLinks;
|
|
1265
1331
|
declare const meta$1_validateLink: typeof validateLink;
|
|
1266
1332
|
declare namespace meta$1 {
|
|
1267
|
-
export { type __PublicMethodMetaInfo$1 as __PublicMethodMetaInfo, meta$1_deleteCampaign as deleteCampaign, meta$1_getCampaign as getCampaign, meta$1_identifySenderAddress as identifySenderAddress, meta$1_listCampaigns as listCampaigns, meta$1_listRecipients as listRecipients, meta$1_listStatistics as listStatistics, meta$1_pauseScheduling as pauseScheduling, meta$1_publishCampaign as publishCampaign, meta$1_reschedule as reschedule, meta$1_reuseCampaign as reuseCampaign, meta$1_sendTest as sendTest, meta$1_validateHtmlLinks as validateHtmlLinks, meta$1_validateLink as validateLink };
|
|
1333
|
+
export { type __PublicMethodMetaInfo$1 as __PublicMethodMetaInfo, meta$1_deleteCampaign as deleteCampaign, meta$1_getAudience as getAudience, meta$1_getCampaign as getCampaign, meta$1_identifySenderAddress as identifySenderAddress, meta$1_listCampaigns as listCampaigns, meta$1_listRecipients as listRecipients, meta$1_listStatistics as listStatistics, meta$1_pauseScheduling as pauseScheduling, meta$1_publishCampaign as publishCampaign, meta$1_reschedule as reschedule, meta$1_reuseCampaign as reuseCampaign, meta$1_sendTest as sendTest, meta$1_validateHtmlLinks as validateHtmlLinks, meta$1_validateLink as validateLink };
|
|
1268
1334
|
}
|
|
1269
1335
|
|
|
1270
1336
|
/**
|