@wix/email-marketing 1.0.75 → 1.0.76

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.75",
3
+ "version": "1.0.76",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -19,7 +19,7 @@
19
19
  ],
20
20
  "dependencies": {
21
21
  "@wix/email-marketing_account-details": "1.0.25",
22
- "@wix/email-marketing_campaigns": "1.0.30",
22
+ "@wix/email-marketing_campaigns": "1.0.31",
23
23
  "@wix/email-marketing_sender-details": "1.0.29"
24
24
  },
25
25
  "devDependencies": {
@@ -45,5 +45,5 @@
45
45
  "fqdn": ""
46
46
  }
47
47
  },
48
- "falconPackageHash": "8bed346e04c0115b1e933fd9c311e59e57c2365cdcdfbdecb4e6be27"
48
+ "falconPackageHash": "eb10c43cd0f4d67fd99662efcc1fff4d31960ccb73f735c88a2e9097"
49
49
  }
@@ -880,44 +880,6 @@ interface SubscribeFromLandingPageRequest {
880
880
  interface SubscribeFromLandingPageResponse {
881
881
  contactId?: string;
882
882
  }
883
- interface UnprocessedTargetEvent {
884
- /** The target that was not marked as processed */
885
- target?: Target;
886
- }
887
- interface Target {
888
- /** Unique identifier of the target with pattern `id_tag_value[type]`, for example 'com.wixpress.myproto[wix_proto_bundle_export]`` */
889
- _id?: string | null;
890
- /** The unique location of the target in Bazel notation i.e @repo//path/to/target:target_name */
891
- location?: string | null;
892
- /** The combined digest of all files within the target */
893
- combinedDigest?: string | null;
894
- /** The vcs commit timestamp of the target in milliseconds */
895
- commitTimestamp?: string | null;
896
- /** The type of the target */
897
- type?: TargetType;
898
- /**
899
- * The target's id tag value in Bazel, uniquness is not guaranteed
900
- * i.e for a tag "businessSchemaIndexerId=com.wixpress.myproto" the value is "com.wixpress.myproto"
901
- */
902
- idTagValue?: string | null;
903
- files?: File[];
904
- }
905
- declare enum TargetType {
906
- NONE = "NONE",
907
- WIX_PROTO_BUNDLE_EXPORT = "WIX_PROTO_BUNDLE_EXPORT",
908
- WIX_APPENDIX_BUNDLE_EXPORT = "WIX_APPENDIX_BUNDLE_EXPORT",
909
- WIX_API_REGISTRY_INFO_EXPORT = "WIX_API_REGISTRY_INFO_EXPORT"
910
- }
911
- interface File {
912
- /** The name of the file including path relative to its source repo, i.e src/main/java/com/wixpress/MyClass.java */
913
- name?: string | null;
914
- /** The URI of the file */
915
- uri?: string | null;
916
- /** The digest of the file */
917
- digest?: string | null;
918
- /** The size of the file in bytes */
919
- sizeInBytes?: string | null;
920
- }
921
883
  interface GetPlaceholderKeysRequest {
922
884
  /** Campaign ID. */
923
885
  campaignId?: string;
@@ -933,116 +895,6 @@ interface GetDefaultComponentsResponse {
933
895
  logo?: Record<string, any> | null;
934
896
  follow?: Record<string, any> | null;
935
897
  }
936
- interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
937
- createdEvent?: EntityCreatedEvent$1;
938
- updatedEvent?: EntityUpdatedEvent$1;
939
- deletedEvent?: EntityDeletedEvent$1;
940
- actionEvent?: ActionEvent$1;
941
- /**
942
- * Unique event ID.
943
- * Allows clients to ignore duplicate webhooks.
944
- */
945
- _id?: string;
946
- /**
947
- * Assumes actions are also always typed to an entity_type
948
- * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
949
- */
950
- entityFqdn?: string;
951
- /**
952
- * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
953
- * This is although the created/updated/deleted notion is duplication of the oneof types
954
- * Example: created/updated/deleted/started/completed/email_opened
955
- */
956
- slug?: string;
957
- /** ID of the entity associated with the event. */
958
- entityId?: string;
959
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
960
- eventTime?: Date;
961
- /**
962
- * Whether the event was triggered as a result of a privacy regulation application
963
- * (for example, GDPR).
964
- */
965
- triggeredByAnonymizeRequest?: boolean | null;
966
- /** If present, indicates the action that triggered the event. */
967
- originatedFrom?: string | null;
968
- /**
969
- * A sequence number defining the order of updates to the underlying entity.
970
- * For example, given that some entity was updated at 16:00 and than again at 16:01,
971
- * it is guaranteed that the sequence number of the second update is strictly higher than the first.
972
- * As the consumer, you can use this value to ensure that you handle messages in the correct order.
973
- * To do so, you will need to persist this number on your end, and compare the sequence number from the
974
- * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
975
- */
976
- entityEventSequence?: string | null;
977
- }
978
- /** @oneof */
979
- interface DomainEventBodyOneOf$1 {
980
- createdEvent?: EntityCreatedEvent$1;
981
- updatedEvent?: EntityUpdatedEvent$1;
982
- deletedEvent?: EntityDeletedEvent$1;
983
- actionEvent?: ActionEvent$1;
984
- }
985
- interface EntityCreatedEvent$1 {
986
- entity?: string;
987
- }
988
- interface RestoreInfo$1 {
989
- deletedDate?: Date;
990
- }
991
- interface EntityUpdatedEvent$1 {
992
- /**
993
- * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
994
- * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
995
- * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
996
- */
997
- currentEntity?: string;
998
- }
999
- interface EntityDeletedEvent$1 {
1000
- /** Entity that was deleted */
1001
- deletedEntity?: string | null;
1002
- }
1003
- interface ActionEvent$1 {
1004
- body?: string;
1005
- }
1006
- interface MessageEnvelope$1 {
1007
- /** App instance ID. */
1008
- instanceId?: string | null;
1009
- /** Event type. */
1010
- eventType?: string;
1011
- /** The identification type and identity data. */
1012
- identity?: IdentificationData$1;
1013
- /** Stringify payload. */
1014
- data?: string;
1015
- }
1016
- interface IdentificationData$1 extends IdentificationDataIdOneOf$1 {
1017
- /** ID of a site visitor that has not logged in to the site. */
1018
- anonymousVisitorId?: string;
1019
- /** ID of a site visitor that has logged in to the site. */
1020
- memberId?: string;
1021
- /** ID of a Wix user (site owner, contributor, etc.). */
1022
- wixUserId?: string;
1023
- /** ID of an app. */
1024
- appId?: string;
1025
- /** @readonly */
1026
- identityType?: WebhookIdentityType$1;
1027
- }
1028
- /** @oneof */
1029
- interface IdentificationDataIdOneOf$1 {
1030
- /** ID of a site visitor that has not logged in to the site. */
1031
- anonymousVisitorId?: string;
1032
- /** ID of a site visitor that has logged in to the site. */
1033
- memberId?: string;
1034
- /** ID of a Wix user (site owner, contributor, etc.). */
1035
- wixUserId?: string;
1036
- /** ID of an app. */
1037
- appId?: string;
1038
- }
1039
- declare enum WebhookIdentityType$1 {
1040
- UNKNOWN = "UNKNOWN",
1041
- ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
1042
- MEMBER = "MEMBER",
1043
- WIX_USER = "WIX_USER",
1044
- APP = "APP"
1045
- }
1046
898
  interface ValidateLinkRequest {
1047
899
  /** web URL */
1048
900
  url?: string;
@@ -1921,6 +1773,116 @@ interface ResendToNonOpenersResponse {
1921
1773
  /** ID of the newly created and resent campaign. */
1922
1774
  campaignId?: string;
1923
1775
  }
1776
+ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
1777
+ createdEvent?: EntityCreatedEvent$1;
1778
+ updatedEvent?: EntityUpdatedEvent$1;
1779
+ deletedEvent?: EntityDeletedEvent$1;
1780
+ actionEvent?: ActionEvent$1;
1781
+ /**
1782
+ * Unique event ID.
1783
+ * Allows clients to ignore duplicate webhooks.
1784
+ */
1785
+ _id?: string;
1786
+ /**
1787
+ * Assumes actions are also always typed to an entity_type
1788
+ * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
1789
+ */
1790
+ entityFqdn?: string;
1791
+ /**
1792
+ * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
1793
+ * This is although the created/updated/deleted notion is duplication of the oneof types
1794
+ * Example: created/updated/deleted/started/completed/email_opened
1795
+ */
1796
+ slug?: string;
1797
+ /** ID of the entity associated with the event. */
1798
+ entityId?: string;
1799
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
1800
+ eventTime?: Date;
1801
+ /**
1802
+ * Whether the event was triggered as a result of a privacy regulation application
1803
+ * (for example, GDPR).
1804
+ */
1805
+ triggeredByAnonymizeRequest?: boolean | null;
1806
+ /** If present, indicates the action that triggered the event. */
1807
+ originatedFrom?: string | null;
1808
+ /**
1809
+ * A sequence number defining the order of updates to the underlying entity.
1810
+ * For example, given that some entity was updated at 16:00 and than again at 16:01,
1811
+ * it is guaranteed that the sequence number of the second update is strictly higher than the first.
1812
+ * As the consumer, you can use this value to ensure that you handle messages in the correct order.
1813
+ * To do so, you will need to persist this number on your end, and compare the sequence number from the
1814
+ * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
1815
+ */
1816
+ entityEventSequence?: string | null;
1817
+ }
1818
+ /** @oneof */
1819
+ interface DomainEventBodyOneOf$1 {
1820
+ createdEvent?: EntityCreatedEvent$1;
1821
+ updatedEvent?: EntityUpdatedEvent$1;
1822
+ deletedEvent?: EntityDeletedEvent$1;
1823
+ actionEvent?: ActionEvent$1;
1824
+ }
1825
+ interface EntityCreatedEvent$1 {
1826
+ entity?: string;
1827
+ }
1828
+ interface RestoreInfo$1 {
1829
+ deletedDate?: Date;
1830
+ }
1831
+ interface EntityUpdatedEvent$1 {
1832
+ /**
1833
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
1834
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
1835
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
1836
+ */
1837
+ currentEntity?: string;
1838
+ }
1839
+ interface EntityDeletedEvent$1 {
1840
+ /** Entity that was deleted */
1841
+ deletedEntity?: string | null;
1842
+ }
1843
+ interface ActionEvent$1 {
1844
+ body?: string;
1845
+ }
1846
+ interface MessageEnvelope$1 {
1847
+ /** App instance ID. */
1848
+ instanceId?: string | null;
1849
+ /** Event type. */
1850
+ eventType?: string;
1851
+ /** The identification type and identity data. */
1852
+ identity?: IdentificationData$1;
1853
+ /** Stringify payload. */
1854
+ data?: string;
1855
+ }
1856
+ interface IdentificationData$1 extends IdentificationDataIdOneOf$1 {
1857
+ /** ID of a site visitor that has not logged in to the site. */
1858
+ anonymousVisitorId?: string;
1859
+ /** ID of a site visitor that has logged in to the site. */
1860
+ memberId?: string;
1861
+ /** ID of a Wix user (site owner, contributor, etc.). */
1862
+ wixUserId?: string;
1863
+ /** ID of an app. */
1864
+ appId?: string;
1865
+ /** @readonly */
1866
+ identityType?: WebhookIdentityType$1;
1867
+ }
1868
+ /** @oneof */
1869
+ interface IdentificationDataIdOneOf$1 {
1870
+ /** ID of a site visitor that has not logged in to the site. */
1871
+ anonymousVisitorId?: string;
1872
+ /** ID of a site visitor that has logged in to the site. */
1873
+ memberId?: string;
1874
+ /** ID of a Wix user (site owner, contributor, etc.). */
1875
+ wixUserId?: string;
1876
+ /** ID of an app. */
1877
+ appId?: string;
1878
+ }
1879
+ declare enum WebhookIdentityType$1 {
1880
+ UNKNOWN = "UNKNOWN",
1881
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
1882
+ MEMBER = "MEMBER",
1883
+ WIX_USER = "WIX_USER",
1884
+ APP = "APP"
1885
+ }
1924
1886
  interface LandingPageStatisticsNonNullableFields {
1925
1887
  opened: number;
1926
1888
  clicked: number;
@@ -2420,7 +2382,6 @@ type context$1_EstimateAudienceSizeRequest = EstimateAudienceSizeRequest;
2420
2382
  type context$1_EstimateAudienceSizeResponse = EstimateAudienceSizeResponse;
2421
2383
  type context$1_EstimateFilterSizeRequest = EstimateFilterSizeRequest;
2422
2384
  type context$1_EstimateFilterSizeResponse = EstimateFilterSizeResponse;
2423
- type context$1_File = File;
2424
2385
  type context$1_GetCampaignMappingRequest = GetCampaignMappingRequest;
2425
2386
  type context$1_GetCampaignMappingResponse = GetCampaignMappingResponse;
2426
2387
  type context$1_GetCampaignOptions = GetCampaignOptions;
@@ -2513,9 +2474,6 @@ declare const context$1_SortOrder: typeof SortOrder;
2513
2474
  type context$1_Sorting = Sorting;
2514
2475
  type context$1_SubscribeFromLandingPageRequest = SubscribeFromLandingPageRequest;
2515
2476
  type context$1_SubscribeFromLandingPageResponse = SubscribeFromLandingPageResponse;
2516
- type context$1_Target = Target;
2517
- type context$1_TargetType = TargetType;
2518
- declare const context$1_TargetType: typeof TargetType;
2519
2477
  type context$1_TemplateData = TemplateData;
2520
2478
  type context$1_TemplateQueryType = TemplateQueryType;
2521
2479
  declare const context$1_TemplateQueryType: typeof TemplateQueryType;
@@ -2530,7 +2488,6 @@ declare const context$1_TranslationState: typeof TranslationState;
2530
2488
  type context$1_TriggerConfiguration = TriggerConfiguration;
2531
2489
  type context$1_UnarchiveCampaignRequest = UnarchiveCampaignRequest;
2532
2490
  type context$1_UnarchiveCampaignResponse = UnarchiveCampaignResponse;
2533
- type context$1_UnprocessedTargetEvent = UnprocessedTargetEvent;
2534
2491
  type context$1_UpdateComposerRequest = UpdateComposerRequest;
2535
2492
  type context$1_UpdateComposerResponse = UpdateComposerResponse;
2536
2493
  type context$1_UpdateTitleRequest = UpdateTitleRequest;
@@ -2573,7 +2530,7 @@ declare const context$1_reschedule: typeof reschedule;
2573
2530
  declare const context$1_reuseCampaign: typeof reuseCampaign;
2574
2531
  declare const context$1_sendTest: typeof sendTest;
2575
2532
  declare namespace context$1 {
2576
- 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_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_CampaignArchivedEvent as CampaignArchivedEvent, type context$1_CampaignCreatedEnvelope as CampaignCreatedEnvelope, type context$1_CampaignDeletedEnvelope as CampaignDeletedEnvelope, type context$1_CampaignDistributedEnvelope as CampaignDistributedEnvelope, type context$1_CampaignDistributedEvent as CampaignDistributedEvent, 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_CampaignPausedEvent as CampaignPausedEvent, type context$1_CampaignPublishedEnvelope as CampaignPublishedEnvelope, type context$1_CampaignPublishedEvent as CampaignPublishedEvent, type context$1_CampaignRecipientDetails as CampaignRecipientDetails, type context$1_CampaignRejectedEnvelope as CampaignRejectedEnvelope, type context$1_CampaignRejectedEvent as CampaignRejectedEvent, type context$1_CampaignScheduledEnvelope as CampaignScheduledEnvelope, type context$1_CampaignScheduledEvent as CampaignScheduledEvent, 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, type context$1_CampaignTerminatedEvent as CampaignTerminatedEvent, context$1_CampaignTypeEnum as CampaignTypeEnum, type context$1_CampaignUnarchivedEvent as CampaignUnarchivedEvent, 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_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_File as File, 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_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_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_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_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_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_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_Target as Target, context$1_TargetType as TargetType, type context$1_TemplateData as TemplateData, context$1_TemplateQueryType as TemplateQueryType, context$1_TemplateState as TemplateState, context$1_TemplateType as TemplateType, 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_UnprocessedTargetEvent as UnprocessedTargetEvent, 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_ValidateLinkRequest as ValidateLinkRequest, type context$1_ValidateLinkResponse as ValidateLinkResponse, 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_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 };
2533
+ 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_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_CampaignArchivedEvent as CampaignArchivedEvent, type context$1_CampaignCreatedEnvelope as CampaignCreatedEnvelope, type context$1_CampaignDeletedEnvelope as CampaignDeletedEnvelope, type context$1_CampaignDistributedEnvelope as CampaignDistributedEnvelope, type context$1_CampaignDistributedEvent as CampaignDistributedEvent, 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_CampaignPausedEvent as CampaignPausedEvent, type context$1_CampaignPublishedEnvelope as CampaignPublishedEnvelope, type context$1_CampaignPublishedEvent as CampaignPublishedEvent, type context$1_CampaignRecipientDetails as CampaignRecipientDetails, type context$1_CampaignRejectedEnvelope as CampaignRejectedEnvelope, type context$1_CampaignRejectedEvent as CampaignRejectedEvent, type context$1_CampaignScheduledEnvelope as CampaignScheduledEnvelope, type context$1_CampaignScheduledEvent as CampaignScheduledEvent, 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, type context$1_CampaignTerminatedEvent as CampaignTerminatedEvent, context$1_CampaignTypeEnum as CampaignTypeEnum, type context$1_CampaignUnarchivedEvent as CampaignUnarchivedEvent, 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_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_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_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_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_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_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_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_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_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_ValidateLinkRequest as ValidateLinkRequest, type context$1_ValidateLinkResponse as ValidateLinkResponse, 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_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 };
2577
2534
  }
2578
2535
 
2579
2536
  /**
@@ -880,44 +880,6 @@ interface SubscribeFromLandingPageRequest {
880
880
  interface SubscribeFromLandingPageResponse {
881
881
  contactId?: string;
882
882
  }
883
- interface UnprocessedTargetEvent {
884
- /** The target that was not marked as processed */
885
- target?: Target;
886
- }
887
- interface Target {
888
- /** Unique identifier of the target with pattern `id_tag_value[type]`, for example 'com.wixpress.myproto[wix_proto_bundle_export]`` */
889
- _id?: string | null;
890
- /** The unique location of the target in Bazel notation i.e @repo//path/to/target:target_name */
891
- location?: string | null;
892
- /** The combined digest of all files within the target */
893
- combinedDigest?: string | null;
894
- /** The vcs commit timestamp of the target in milliseconds */
895
- commitTimestamp?: string | null;
896
- /** The type of the target */
897
- type?: TargetType;
898
- /**
899
- * The target's id tag value in Bazel, uniquness is not guaranteed
900
- * i.e for a tag "businessSchemaIndexerId=com.wixpress.myproto" the value is "com.wixpress.myproto"
901
- */
902
- idTagValue?: string | null;
903
- files?: File[];
904
- }
905
- declare enum TargetType {
906
- NONE = "NONE",
907
- WIX_PROTO_BUNDLE_EXPORT = "WIX_PROTO_BUNDLE_EXPORT",
908
- WIX_APPENDIX_BUNDLE_EXPORT = "WIX_APPENDIX_BUNDLE_EXPORT",
909
- WIX_API_REGISTRY_INFO_EXPORT = "WIX_API_REGISTRY_INFO_EXPORT"
910
- }
911
- interface File {
912
- /** The name of the file including path relative to its source repo, i.e src/main/java/com/wixpress/MyClass.java */
913
- name?: string | null;
914
- /** The URI of the file */
915
- uri?: string | null;
916
- /** The digest of the file */
917
- digest?: string | null;
918
- /** The size of the file in bytes */
919
- sizeInBytes?: string | null;
920
- }
921
883
  interface GetPlaceholderKeysRequest {
922
884
  /** Campaign ID. */
923
885
  campaignId?: string;
@@ -933,116 +895,6 @@ interface GetDefaultComponentsResponse {
933
895
  logo?: Record<string, any> | null;
934
896
  follow?: Record<string, any> | null;
935
897
  }
936
- interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
937
- createdEvent?: EntityCreatedEvent$1;
938
- updatedEvent?: EntityUpdatedEvent$1;
939
- deletedEvent?: EntityDeletedEvent$1;
940
- actionEvent?: ActionEvent$1;
941
- /**
942
- * Unique event ID.
943
- * Allows clients to ignore duplicate webhooks.
944
- */
945
- _id?: string;
946
- /**
947
- * Assumes actions are also always typed to an entity_type
948
- * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
949
- */
950
- entityFqdn?: string;
951
- /**
952
- * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
953
- * This is although the created/updated/deleted notion is duplication of the oneof types
954
- * Example: created/updated/deleted/started/completed/email_opened
955
- */
956
- slug?: string;
957
- /** ID of the entity associated with the event. */
958
- entityId?: string;
959
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
960
- eventTime?: Date;
961
- /**
962
- * Whether the event was triggered as a result of a privacy regulation application
963
- * (for example, GDPR).
964
- */
965
- triggeredByAnonymizeRequest?: boolean | null;
966
- /** If present, indicates the action that triggered the event. */
967
- originatedFrom?: string | null;
968
- /**
969
- * A sequence number defining the order of updates to the underlying entity.
970
- * For example, given that some entity was updated at 16:00 and than again at 16:01,
971
- * it is guaranteed that the sequence number of the second update is strictly higher than the first.
972
- * As the consumer, you can use this value to ensure that you handle messages in the correct order.
973
- * To do so, you will need to persist this number on your end, and compare the sequence number from the
974
- * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
975
- */
976
- entityEventSequence?: string | null;
977
- }
978
- /** @oneof */
979
- interface DomainEventBodyOneOf$1 {
980
- createdEvent?: EntityCreatedEvent$1;
981
- updatedEvent?: EntityUpdatedEvent$1;
982
- deletedEvent?: EntityDeletedEvent$1;
983
- actionEvent?: ActionEvent$1;
984
- }
985
- interface EntityCreatedEvent$1 {
986
- entity?: string;
987
- }
988
- interface RestoreInfo$1 {
989
- deletedDate?: Date;
990
- }
991
- interface EntityUpdatedEvent$1 {
992
- /**
993
- * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
994
- * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
995
- * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
996
- */
997
- currentEntity?: string;
998
- }
999
- interface EntityDeletedEvent$1 {
1000
- /** Entity that was deleted */
1001
- deletedEntity?: string | null;
1002
- }
1003
- interface ActionEvent$1 {
1004
- body?: string;
1005
- }
1006
- interface MessageEnvelope$1 {
1007
- /** App instance ID. */
1008
- instanceId?: string | null;
1009
- /** Event type. */
1010
- eventType?: string;
1011
- /** The identification type and identity data. */
1012
- identity?: IdentificationData$1;
1013
- /** Stringify payload. */
1014
- data?: string;
1015
- }
1016
- interface IdentificationData$1 extends IdentificationDataIdOneOf$1 {
1017
- /** ID of a site visitor that has not logged in to the site. */
1018
- anonymousVisitorId?: string;
1019
- /** ID of a site visitor that has logged in to the site. */
1020
- memberId?: string;
1021
- /** ID of a Wix user (site owner, contributor, etc.). */
1022
- wixUserId?: string;
1023
- /** ID of an app. */
1024
- appId?: string;
1025
- /** @readonly */
1026
- identityType?: WebhookIdentityType$1;
1027
- }
1028
- /** @oneof */
1029
- interface IdentificationDataIdOneOf$1 {
1030
- /** ID of a site visitor that has not logged in to the site. */
1031
- anonymousVisitorId?: string;
1032
- /** ID of a site visitor that has logged in to the site. */
1033
- memberId?: string;
1034
- /** ID of a Wix user (site owner, contributor, etc.). */
1035
- wixUserId?: string;
1036
- /** ID of an app. */
1037
- appId?: string;
1038
- }
1039
- declare enum WebhookIdentityType$1 {
1040
- UNKNOWN = "UNKNOWN",
1041
- ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
1042
- MEMBER = "MEMBER",
1043
- WIX_USER = "WIX_USER",
1044
- APP = "APP"
1045
- }
1046
898
  interface ValidateLinkRequest {
1047
899
  /** web URL */
1048
900
  url?: string;
@@ -1921,6 +1773,116 @@ interface ResendToNonOpenersResponse {
1921
1773
  /** ID of the newly created and resent campaign. */
1922
1774
  campaignId?: string;
1923
1775
  }
1776
+ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
1777
+ createdEvent?: EntityCreatedEvent$1;
1778
+ updatedEvent?: EntityUpdatedEvent$1;
1779
+ deletedEvent?: EntityDeletedEvent$1;
1780
+ actionEvent?: ActionEvent$1;
1781
+ /**
1782
+ * Unique event ID.
1783
+ * Allows clients to ignore duplicate webhooks.
1784
+ */
1785
+ _id?: string;
1786
+ /**
1787
+ * Assumes actions are also always typed to an entity_type
1788
+ * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
1789
+ */
1790
+ entityFqdn?: string;
1791
+ /**
1792
+ * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
1793
+ * This is although the created/updated/deleted notion is duplication of the oneof types
1794
+ * Example: created/updated/deleted/started/completed/email_opened
1795
+ */
1796
+ slug?: string;
1797
+ /** ID of the entity associated with the event. */
1798
+ entityId?: string;
1799
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
1800
+ eventTime?: Date;
1801
+ /**
1802
+ * Whether the event was triggered as a result of a privacy regulation application
1803
+ * (for example, GDPR).
1804
+ */
1805
+ triggeredByAnonymizeRequest?: boolean | null;
1806
+ /** If present, indicates the action that triggered the event. */
1807
+ originatedFrom?: string | null;
1808
+ /**
1809
+ * A sequence number defining the order of updates to the underlying entity.
1810
+ * For example, given that some entity was updated at 16:00 and than again at 16:01,
1811
+ * it is guaranteed that the sequence number of the second update is strictly higher than the first.
1812
+ * As the consumer, you can use this value to ensure that you handle messages in the correct order.
1813
+ * To do so, you will need to persist this number on your end, and compare the sequence number from the
1814
+ * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
1815
+ */
1816
+ entityEventSequence?: string | null;
1817
+ }
1818
+ /** @oneof */
1819
+ interface DomainEventBodyOneOf$1 {
1820
+ createdEvent?: EntityCreatedEvent$1;
1821
+ updatedEvent?: EntityUpdatedEvent$1;
1822
+ deletedEvent?: EntityDeletedEvent$1;
1823
+ actionEvent?: ActionEvent$1;
1824
+ }
1825
+ interface EntityCreatedEvent$1 {
1826
+ entity?: string;
1827
+ }
1828
+ interface RestoreInfo$1 {
1829
+ deletedDate?: Date;
1830
+ }
1831
+ interface EntityUpdatedEvent$1 {
1832
+ /**
1833
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
1834
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
1835
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
1836
+ */
1837
+ currentEntity?: string;
1838
+ }
1839
+ interface EntityDeletedEvent$1 {
1840
+ /** Entity that was deleted */
1841
+ deletedEntity?: string | null;
1842
+ }
1843
+ interface ActionEvent$1 {
1844
+ body?: string;
1845
+ }
1846
+ interface MessageEnvelope$1 {
1847
+ /** App instance ID. */
1848
+ instanceId?: string | null;
1849
+ /** Event type. */
1850
+ eventType?: string;
1851
+ /** The identification type and identity data. */
1852
+ identity?: IdentificationData$1;
1853
+ /** Stringify payload. */
1854
+ data?: string;
1855
+ }
1856
+ interface IdentificationData$1 extends IdentificationDataIdOneOf$1 {
1857
+ /** ID of a site visitor that has not logged in to the site. */
1858
+ anonymousVisitorId?: string;
1859
+ /** ID of a site visitor that has logged in to the site. */
1860
+ memberId?: string;
1861
+ /** ID of a Wix user (site owner, contributor, etc.). */
1862
+ wixUserId?: string;
1863
+ /** ID of an app. */
1864
+ appId?: string;
1865
+ /** @readonly */
1866
+ identityType?: WebhookIdentityType$1;
1867
+ }
1868
+ /** @oneof */
1869
+ interface IdentificationDataIdOneOf$1 {
1870
+ /** ID of a site visitor that has not logged in to the site. */
1871
+ anonymousVisitorId?: string;
1872
+ /** ID of a site visitor that has logged in to the site. */
1873
+ memberId?: string;
1874
+ /** ID of a Wix user (site owner, contributor, etc.). */
1875
+ wixUserId?: string;
1876
+ /** ID of an app. */
1877
+ appId?: string;
1878
+ }
1879
+ declare enum WebhookIdentityType$1 {
1880
+ UNKNOWN = "UNKNOWN",
1881
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
1882
+ MEMBER = "MEMBER",
1883
+ WIX_USER = "WIX_USER",
1884
+ APP = "APP"
1885
+ }
1924
1886
  interface LandingPageStatisticsNonNullableFields {
1925
1887
  opened: number;
1926
1888
  clicked: number;
@@ -2420,7 +2382,6 @@ type index_d$1_EstimateAudienceSizeRequest = EstimateAudienceSizeRequest;
2420
2382
  type index_d$1_EstimateAudienceSizeResponse = EstimateAudienceSizeResponse;
2421
2383
  type index_d$1_EstimateFilterSizeRequest = EstimateFilterSizeRequest;
2422
2384
  type index_d$1_EstimateFilterSizeResponse = EstimateFilterSizeResponse;
2423
- type index_d$1_File = File;
2424
2385
  type index_d$1_GetCampaignMappingRequest = GetCampaignMappingRequest;
2425
2386
  type index_d$1_GetCampaignMappingResponse = GetCampaignMappingResponse;
2426
2387
  type index_d$1_GetCampaignOptions = GetCampaignOptions;
@@ -2513,9 +2474,6 @@ declare const index_d$1_SortOrder: typeof SortOrder;
2513
2474
  type index_d$1_Sorting = Sorting;
2514
2475
  type index_d$1_SubscribeFromLandingPageRequest = SubscribeFromLandingPageRequest;
2515
2476
  type index_d$1_SubscribeFromLandingPageResponse = SubscribeFromLandingPageResponse;
2516
- type index_d$1_Target = Target;
2517
- type index_d$1_TargetType = TargetType;
2518
- declare const index_d$1_TargetType: typeof TargetType;
2519
2477
  type index_d$1_TemplateData = TemplateData;
2520
2478
  type index_d$1_TemplateQueryType = TemplateQueryType;
2521
2479
  declare const index_d$1_TemplateQueryType: typeof TemplateQueryType;
@@ -2530,7 +2488,6 @@ declare const index_d$1_TranslationState: typeof TranslationState;
2530
2488
  type index_d$1_TriggerConfiguration = TriggerConfiguration;
2531
2489
  type index_d$1_UnarchiveCampaignRequest = UnarchiveCampaignRequest;
2532
2490
  type index_d$1_UnarchiveCampaignResponse = UnarchiveCampaignResponse;
2533
- type index_d$1_UnprocessedTargetEvent = UnprocessedTargetEvent;
2534
2491
  type index_d$1_UpdateComposerRequest = UpdateComposerRequest;
2535
2492
  type index_d$1_UpdateComposerResponse = UpdateComposerResponse;
2536
2493
  type index_d$1_UpdateTitleRequest = UpdateTitleRequest;
@@ -2573,7 +2530,7 @@ declare const index_d$1_reschedule: typeof reschedule;
2573
2530
  declare const index_d$1_reuseCampaign: typeof reuseCampaign;
2574
2531
  declare const index_d$1_sendTest: typeof sendTest;
2575
2532
  declare namespace index_d$1 {
2576
- 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_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_CampaignArchivedEvent as CampaignArchivedEvent, 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_CampaignDistributedEvent as CampaignDistributedEvent, 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_CampaignPausedEvent as CampaignPausedEvent, type index_d$1_CampaignPublishedEnvelope as CampaignPublishedEnvelope, type index_d$1_CampaignPublishedEvent as CampaignPublishedEvent, type index_d$1_CampaignRecipientDetails as CampaignRecipientDetails, type index_d$1_CampaignRejectedEnvelope as CampaignRejectedEnvelope, type index_d$1_CampaignRejectedEvent as CampaignRejectedEvent, type index_d$1_CampaignScheduledEnvelope as CampaignScheduledEnvelope, type index_d$1_CampaignScheduledEvent as CampaignScheduledEvent, 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, type index_d$1_CampaignTerminatedEvent as CampaignTerminatedEvent, index_d$1_CampaignTypeEnum as CampaignTypeEnum, type index_d$1_CampaignUnarchivedEvent as CampaignUnarchivedEvent, 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_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_File as File, 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_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_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_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_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_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_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_Target as Target, index_d$1_TargetType as TargetType, 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_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_UnprocessedTargetEvent as UnprocessedTargetEvent, 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_ValidateLinkRequest as ValidateLinkRequest, type index_d$1_ValidateLinkResponse as ValidateLinkResponse, 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_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 };
2533
+ 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_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_CampaignArchivedEvent as CampaignArchivedEvent, 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_CampaignDistributedEvent as CampaignDistributedEvent, 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_CampaignPausedEvent as CampaignPausedEvent, type index_d$1_CampaignPublishedEnvelope as CampaignPublishedEnvelope, type index_d$1_CampaignPublishedEvent as CampaignPublishedEvent, type index_d$1_CampaignRecipientDetails as CampaignRecipientDetails, type index_d$1_CampaignRejectedEnvelope as CampaignRejectedEnvelope, type index_d$1_CampaignRejectedEvent as CampaignRejectedEvent, type index_d$1_CampaignScheduledEnvelope as CampaignScheduledEnvelope, type index_d$1_CampaignScheduledEvent as CampaignScheduledEvent, 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, type index_d$1_CampaignTerminatedEvent as CampaignTerminatedEvent, index_d$1_CampaignTypeEnum as CampaignTypeEnum, type index_d$1_CampaignUnarchivedEvent as CampaignUnarchivedEvent, 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_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_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_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_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_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_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_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_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_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_ValidateLinkRequest as ValidateLinkRequest, type index_d$1_ValidateLinkResponse as ValidateLinkResponse, 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_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 };
2577
2534
  }
2578
2535
 
2579
2536
  /**