@wix/multilingual 1.0.32 → 1.0.34

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/multilingual",
3
- "version": "1.0.32",
3
+ "version": "1.0.34",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -18,7 +18,7 @@
18
18
  "type-bundles"
19
19
  ],
20
20
  "dependencies": {
21
- "@wix/multilingual_entity-mapper": "1.0.7",
21
+ "@wix/multilingual_entity-mapper": "1.0.9",
22
22
  "@wix/multilingual_machine-translation": "1.0.26",
23
23
  "@wix/multilingual_site-translator": "1.0.12",
24
24
  "@wix/multilingual_translation-contents": "1.0.14",
@@ -48,5 +48,5 @@
48
48
  "fqdn": ""
49
49
  }
50
50
  },
51
- "falconPackageHash": "76a375ae61519a17099418599524a68d0c2138a77c5392f3e77e3c26"
51
+ "falconPackageHash": "7d6bb8100e21c6ce56eccc2ecaf7bb8d3ebebe311025a919076df86e"
52
52
  }
@@ -58,6 +58,8 @@ interface Mapper {
58
58
  ignoreDomainEvents?: boolean | null;
59
59
  /** The segment of the entity */
60
60
  segment?: string | null;
61
+ /** flag that indicate the removing a repeated field in main language should remove it in all languages */
62
+ deleteRepeatedFields?: boolean | null;
61
63
  }
62
64
  interface MapperField {
63
65
  /** The field FQN */
@@ -455,6 +457,63 @@ interface StressDMRequest {
455
457
  }
456
458
  interface StressDMResponse {
457
459
  }
460
+ interface BaseEventMetadata$1 {
461
+ /** App instance ID. */
462
+ instanceId?: string | null;
463
+ /** Event type. */
464
+ eventType?: string;
465
+ /** The identification type and identity data. */
466
+ identity?: IdentificationData$3;
467
+ }
468
+ interface EventMetadata$1 extends BaseEventMetadata$1 {
469
+ /**
470
+ * Unique event ID.
471
+ * Allows clients to ignore duplicate webhooks.
472
+ */
473
+ _id?: string;
474
+ /**
475
+ * Assumes actions are also always typed to an entity_type
476
+ * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
477
+ */
478
+ entityFqdn?: string;
479
+ /**
480
+ * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
481
+ * This is although the created/updated/deleted notion is duplication of the oneof types
482
+ * Example: created/updated/deleted/started/completed/email_opened
483
+ */
484
+ slug?: string;
485
+ /** ID of the entity associated with the event. */
486
+ entityId?: string;
487
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
488
+ eventTime?: Date;
489
+ /**
490
+ * Whether the event was triggered as a result of a privacy regulation application
491
+ * (for example, GDPR).
492
+ */
493
+ triggeredByAnonymizeRequest?: boolean | null;
494
+ /** If present, indicates the action that triggered the event. */
495
+ originatedFrom?: string | null;
496
+ /**
497
+ * A sequence number defining the order of updates to the underlying entity.
498
+ * For example, given that some entity was updated at 16:00 and than again at 16:01,
499
+ * it is guaranteed that the sequence number of the second update is strictly higher than the first.
500
+ * As the consumer, you can use this value to ensure that you handle messages in the correct order.
501
+ * To do so, you will need to persist this number on your end, and compare the sequence number from the
502
+ * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
503
+ */
504
+ entityEventSequence?: string | null;
505
+ }
506
+ interface EntityMapperCreatedEnvelope {
507
+ entity: Mapper;
508
+ metadata: EventMetadata$1;
509
+ }
510
+ interface EntityMapperUpdatedEnvelope {
511
+ entity: Mapper;
512
+ metadata: EventMetadata$1;
513
+ }
514
+ interface EntityMapperDeletedEnvelope {
515
+ metadata: EventMetadata$1;
516
+ }
458
517
  interface SyncEditorDataOptions {
459
518
  /** an optional filter for syncing the content */
460
519
  syncFilter?: SyncFilter;
@@ -467,9 +526,26 @@ interface SyncEditorDataSignature {
467
526
  */
468
527
  (options?: SyncEditorDataOptions | undefined): Promise<void>;
469
528
  }
529
+ declare const onEntityMapperCreated$1: EventDefinition<EntityMapperCreatedEnvelope, "wix.multilingual.genericconverter.v1.entity_mapper_created">;
530
+ declare const onEntityMapperUpdated$1: EventDefinition<EntityMapperUpdatedEnvelope, "wix.multilingual.genericconverter.v1.entity_mapper_updated">;
531
+ declare const onEntityMapperDeleted$1: EventDefinition<EntityMapperDeletedEnvelope, "wix.multilingual.genericconverter.v1.entity_mapper_deleted">;
532
+
533
+ declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
470
534
 
471
535
  declare const syncEditorData: BuildRESTFunction<typeof syncEditorData$1> & typeof syncEditorData$1;
472
536
 
537
+ type _publicOnEntityMapperCreatedType = typeof onEntityMapperCreated$1;
538
+ /** */
539
+ declare const onEntityMapperCreated: ReturnType<typeof createEventModule$1<_publicOnEntityMapperCreatedType>>;
540
+
541
+ type _publicOnEntityMapperUpdatedType = typeof onEntityMapperUpdated$1;
542
+ /** */
543
+ declare const onEntityMapperUpdated: ReturnType<typeof createEventModule$1<_publicOnEntityMapperUpdatedType>>;
544
+
545
+ type _publicOnEntityMapperDeletedType = typeof onEntityMapperDeleted$1;
546
+ /** */
547
+ declare const onEntityMapperDeleted: ReturnType<typeof createEventModule$1<_publicOnEntityMapperDeletedType>>;
548
+
473
549
  type context$5_ChangedPages = ChangedPages;
474
550
  type context$5_CreateOrUpdateAction = CreateOrUpdateAction;
475
551
  type context$5_CreateOrUpdateEditorMapperRequest = CreateOrUpdateEditorMapperRequest;
@@ -481,6 +557,9 @@ type context$5_DeleteEntityMapperRequest = DeleteEntityMapperRequest;
481
557
  type context$5_DeleteEntityMapperResponse = DeleteEntityMapperResponse;
482
558
  type context$5_DeleteMapperRequest = DeleteMapperRequest;
483
559
  type context$5_DeleteMapperResponse = DeleteMapperResponse;
560
+ type context$5_EntityMapperCreatedEnvelope = EntityMapperCreatedEnvelope;
561
+ type context$5_EntityMapperDeletedEnvelope = EntityMapperDeletedEnvelope;
562
+ type context$5_EntityMapperUpdatedEnvelope = EntityMapperUpdatedEnvelope;
484
563
  type context$5_FieldSequence = FieldSequence;
485
564
  type context$5_GetEntityMapperRequest = GetEntityMapperRequest;
486
565
  type context$5_GetEntityMapperResponse = GetEntityMapperResponse;
@@ -513,9 +592,15 @@ type context$5_SyncEditorDataOptions = SyncEditorDataOptions;
513
592
  type context$5_SyncEditorDataRequest = SyncEditorDataRequest;
514
593
  type context$5_SyncEditorDataResponse = SyncEditorDataResponse;
515
594
  type context$5_SyncFilter = SyncFilter;
595
+ type context$5__publicOnEntityMapperCreatedType = _publicOnEntityMapperCreatedType;
596
+ type context$5__publicOnEntityMapperDeletedType = _publicOnEntityMapperDeletedType;
597
+ type context$5__publicOnEntityMapperUpdatedType = _publicOnEntityMapperUpdatedType;
598
+ declare const context$5_onEntityMapperCreated: typeof onEntityMapperCreated;
599
+ declare const context$5_onEntityMapperDeleted: typeof onEntityMapperDeleted;
600
+ declare const context$5_onEntityMapperUpdated: typeof onEntityMapperUpdated;
516
601
  declare const context$5_syncEditorData: typeof syncEditorData;
517
602
  declare namespace context$5 {
518
- export { type ActionEvent$3 as ActionEvent, type context$5_ChangedPages as ChangedPages, type context$5_CreateOrUpdateAction as CreateOrUpdateAction, type context$5_CreateOrUpdateEditorMapperRequest as CreateOrUpdateEditorMapperRequest, type context$5_CreateOrUpdateEditorMapperResponse as CreateOrUpdateEditorMapperResponse, type context$5_CreateOrUpdateNileMapperRequest as CreateOrUpdateNileMapperRequest, type context$5_CreateOrUpdateNileMapperResponse as CreateOrUpdateNileMapperResponse, type context$5_DeleteAction as DeleteAction, type context$5_DeleteEntityMapperRequest as DeleteEntityMapperRequest, type context$5_DeleteEntityMapperResponse as DeleteEntityMapperResponse, type context$5_DeleteMapperRequest as DeleteMapperRequest, type context$5_DeleteMapperResponse as DeleteMapperResponse, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type context$5_FieldSequence as FieldSequence, FieldType$1 as FieldType, type context$5_GetEntityMapperRequest as GetEntityMapperRequest, type context$5_GetEntityMapperResponse as GetEntityMapperResponse, type context$5_GetMapperRequest as GetMapperRequest, type context$5_GetMapperResponse as GetMapperResponse, type context$5_GetSubscribedTopicsRequest as GetSubscribedTopicsRequest, type context$5_GetSubscribedTopicsResponse as GetSubscribedTopicsResponse, type context$5_HtmlNewRevisionSavedMessage as HtmlNewRevisionSavedMessage, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type context$5_ListMappersRequest as ListMappersRequest, type context$5_ListMappersResponse as ListMappersResponse, type context$5_LocalizationPublicAction as LocalizationPublicAction, type context$5_LocalizationPublicActionActionOneOf as LocalizationPublicActionActionOneOf, type context$5_LocalizedContentKey as LocalizedContentKey, type context$5_LocalizedPublishedContent as LocalizedPublishedContent, type context$5_LocalizedPublishedContentField as LocalizedPublishedContentField, type context$5_LocalizedPublishedContentFieldValueOneOf as LocalizedPublishedContentFieldValueOneOf, type context$5_LocalizedPublishedLanguageContentChanged as LocalizedPublishedLanguageContentChanged, type context$5_Mapper as Mapper, type context$5_MapperField as MapperField, type context$5_MediaItem as MediaItem, type context$5_MediaItemMediaOneOf as MediaItemMediaOneOf, type MessageEnvelope$3 as MessageEnvelope, type context$5_Page as Page, type context$5_PublishSiteTranslationsRequest as PublishSiteTranslationsRequest, type context$5_PublishSiteTranslationsResponse as PublishSiteTranslationsResponse, type RestoreInfo$3 as RestoreInfo, type context$5_RevisionInfo as RevisionInfo, type SchemaKey$2 as SchemaKey, SchemaScope$2 as SchemaScope, type context$5_SequencePath as SequencePath, type context$5_StressDMRequest as StressDMRequest, type context$5_StressDMResponse as StressDMResponse, type context$5_SyncEditorDataOptions as SyncEditorDataOptions, type context$5_SyncEditorDataRequest as SyncEditorDataRequest, type context$5_SyncEditorDataResponse as SyncEditorDataResponse, type context$5_SyncFilter as SyncFilter, type VideoResolution$2 as VideoResolution, WebhookIdentityType$3 as WebhookIdentityType, context$5_syncEditorData as syncEditorData };
603
+ export { type ActionEvent$3 as ActionEvent, type BaseEventMetadata$1 as BaseEventMetadata, type context$5_ChangedPages as ChangedPages, type context$5_CreateOrUpdateAction as CreateOrUpdateAction, type context$5_CreateOrUpdateEditorMapperRequest as CreateOrUpdateEditorMapperRequest, type context$5_CreateOrUpdateEditorMapperResponse as CreateOrUpdateEditorMapperResponse, type context$5_CreateOrUpdateNileMapperRequest as CreateOrUpdateNileMapperRequest, type context$5_CreateOrUpdateNileMapperResponse as CreateOrUpdateNileMapperResponse, type context$5_DeleteAction as DeleteAction, type context$5_DeleteEntityMapperRequest as DeleteEntityMapperRequest, type context$5_DeleteEntityMapperResponse as DeleteEntityMapperResponse, type context$5_DeleteMapperRequest as DeleteMapperRequest, type context$5_DeleteMapperResponse as DeleteMapperResponse, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type context$5_EntityMapperCreatedEnvelope as EntityMapperCreatedEnvelope, type context$5_EntityMapperDeletedEnvelope as EntityMapperDeletedEnvelope, type context$5_EntityMapperUpdatedEnvelope as EntityMapperUpdatedEnvelope, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type context$5_FieldSequence as FieldSequence, FieldType$1 as FieldType, type context$5_GetEntityMapperRequest as GetEntityMapperRequest, type context$5_GetEntityMapperResponse as GetEntityMapperResponse, type context$5_GetMapperRequest as GetMapperRequest, type context$5_GetMapperResponse as GetMapperResponse, type context$5_GetSubscribedTopicsRequest as GetSubscribedTopicsRequest, type context$5_GetSubscribedTopicsResponse as GetSubscribedTopicsResponse, type context$5_HtmlNewRevisionSavedMessage as HtmlNewRevisionSavedMessage, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type context$5_ListMappersRequest as ListMappersRequest, type context$5_ListMappersResponse as ListMappersResponse, type context$5_LocalizationPublicAction as LocalizationPublicAction, type context$5_LocalizationPublicActionActionOneOf as LocalizationPublicActionActionOneOf, type context$5_LocalizedContentKey as LocalizedContentKey, type context$5_LocalizedPublishedContent as LocalizedPublishedContent, type context$5_LocalizedPublishedContentField as LocalizedPublishedContentField, type context$5_LocalizedPublishedContentFieldValueOneOf as LocalizedPublishedContentFieldValueOneOf, type context$5_LocalizedPublishedLanguageContentChanged as LocalizedPublishedLanguageContentChanged, type context$5_Mapper as Mapper, type context$5_MapperField as MapperField, type context$5_MediaItem as MediaItem, type context$5_MediaItemMediaOneOf as MediaItemMediaOneOf, type MessageEnvelope$3 as MessageEnvelope, type context$5_Page as Page, type context$5_PublishSiteTranslationsRequest as PublishSiteTranslationsRequest, type context$5_PublishSiteTranslationsResponse as PublishSiteTranslationsResponse, type RestoreInfo$3 as RestoreInfo, type context$5_RevisionInfo as RevisionInfo, type SchemaKey$2 as SchemaKey, SchemaScope$2 as SchemaScope, type context$5_SequencePath as SequencePath, type context$5_StressDMRequest as StressDMRequest, type context$5_StressDMResponse as StressDMResponse, type context$5_SyncEditorDataOptions as SyncEditorDataOptions, type context$5_SyncEditorDataRequest as SyncEditorDataRequest, type context$5_SyncEditorDataResponse as SyncEditorDataResponse, type context$5_SyncFilter as SyncFilter, type VideoResolution$2 as VideoResolution, WebhookIdentityType$3 as WebhookIdentityType, type context$5__publicOnEntityMapperCreatedType as _publicOnEntityMapperCreatedType, type context$5__publicOnEntityMapperDeletedType as _publicOnEntityMapperDeletedType, type context$5__publicOnEntityMapperUpdatedType as _publicOnEntityMapperUpdatedType, context$5_onEntityMapperCreated as onEntityMapperCreated, context$5_onEntityMapperDeleted as onEntityMapperDeleted, context$5_onEntityMapperUpdated as onEntityMapperUpdated, onEntityMapperCreated$1 as publicOnEntityMapperCreated, onEntityMapperDeleted$1 as publicOnEntityMapperDeleted, onEntityMapperUpdated$1 as publicOnEntityMapperUpdated, context$5_syncEditorData as syncEditorData };
519
604
  }
520
605
 
521
606
  /** Represents a content of an entity with its published translations */
@@ -58,6 +58,8 @@ interface Mapper {
58
58
  ignoreDomainEvents?: boolean | null;
59
59
  /** The segment of the entity */
60
60
  segment?: string | null;
61
+ /** flag that indicate the removing a repeated field in main language should remove it in all languages */
62
+ deleteRepeatedFields?: boolean | null;
61
63
  }
62
64
  interface MapperField {
63
65
  /** The field FQN */
@@ -455,6 +457,63 @@ interface StressDMRequest {
455
457
  }
456
458
  interface StressDMResponse {
457
459
  }
460
+ interface BaseEventMetadata$1 {
461
+ /** App instance ID. */
462
+ instanceId?: string | null;
463
+ /** Event type. */
464
+ eventType?: string;
465
+ /** The identification type and identity data. */
466
+ identity?: IdentificationData$3;
467
+ }
468
+ interface EventMetadata$1 extends BaseEventMetadata$1 {
469
+ /**
470
+ * Unique event ID.
471
+ * Allows clients to ignore duplicate webhooks.
472
+ */
473
+ _id?: string;
474
+ /**
475
+ * Assumes actions are also always typed to an entity_type
476
+ * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
477
+ */
478
+ entityFqdn?: string;
479
+ /**
480
+ * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
481
+ * This is although the created/updated/deleted notion is duplication of the oneof types
482
+ * Example: created/updated/deleted/started/completed/email_opened
483
+ */
484
+ slug?: string;
485
+ /** ID of the entity associated with the event. */
486
+ entityId?: string;
487
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
488
+ eventTime?: Date;
489
+ /**
490
+ * Whether the event was triggered as a result of a privacy regulation application
491
+ * (for example, GDPR).
492
+ */
493
+ triggeredByAnonymizeRequest?: boolean | null;
494
+ /** If present, indicates the action that triggered the event. */
495
+ originatedFrom?: string | null;
496
+ /**
497
+ * A sequence number defining the order of updates to the underlying entity.
498
+ * For example, given that some entity was updated at 16:00 and than again at 16:01,
499
+ * it is guaranteed that the sequence number of the second update is strictly higher than the first.
500
+ * As the consumer, you can use this value to ensure that you handle messages in the correct order.
501
+ * To do so, you will need to persist this number on your end, and compare the sequence number from the
502
+ * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
503
+ */
504
+ entityEventSequence?: string | null;
505
+ }
506
+ interface EntityMapperCreatedEnvelope {
507
+ entity: Mapper;
508
+ metadata: EventMetadata$1;
509
+ }
510
+ interface EntityMapperUpdatedEnvelope {
511
+ entity: Mapper;
512
+ metadata: EventMetadata$1;
513
+ }
514
+ interface EntityMapperDeletedEnvelope {
515
+ metadata: EventMetadata$1;
516
+ }
458
517
  interface SyncEditorDataOptions {
459
518
  /** an optional filter for syncing the content */
460
519
  syncFilter?: SyncFilter;
@@ -467,9 +526,26 @@ interface SyncEditorDataSignature {
467
526
  */
468
527
  (options?: SyncEditorDataOptions | undefined): Promise<void>;
469
528
  }
529
+ declare const onEntityMapperCreated$1: EventDefinition<EntityMapperCreatedEnvelope, "wix.multilingual.genericconverter.v1.entity_mapper_created">;
530
+ declare const onEntityMapperUpdated$1: EventDefinition<EntityMapperUpdatedEnvelope, "wix.multilingual.genericconverter.v1.entity_mapper_updated">;
531
+ declare const onEntityMapperDeleted$1: EventDefinition<EntityMapperDeletedEnvelope, "wix.multilingual.genericconverter.v1.entity_mapper_deleted">;
532
+
533
+ declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
470
534
 
471
535
  declare const syncEditorData: BuildRESTFunction<typeof syncEditorData$1> & typeof syncEditorData$1;
472
536
 
537
+ type _publicOnEntityMapperCreatedType = typeof onEntityMapperCreated$1;
538
+ /** */
539
+ declare const onEntityMapperCreated: ReturnType<typeof createEventModule$1<_publicOnEntityMapperCreatedType>>;
540
+
541
+ type _publicOnEntityMapperUpdatedType = typeof onEntityMapperUpdated$1;
542
+ /** */
543
+ declare const onEntityMapperUpdated: ReturnType<typeof createEventModule$1<_publicOnEntityMapperUpdatedType>>;
544
+
545
+ type _publicOnEntityMapperDeletedType = typeof onEntityMapperDeleted$1;
546
+ /** */
547
+ declare const onEntityMapperDeleted: ReturnType<typeof createEventModule$1<_publicOnEntityMapperDeletedType>>;
548
+
473
549
  type index_d$5_ChangedPages = ChangedPages;
474
550
  type index_d$5_CreateOrUpdateAction = CreateOrUpdateAction;
475
551
  type index_d$5_CreateOrUpdateEditorMapperRequest = CreateOrUpdateEditorMapperRequest;
@@ -481,6 +557,9 @@ type index_d$5_DeleteEntityMapperRequest = DeleteEntityMapperRequest;
481
557
  type index_d$5_DeleteEntityMapperResponse = DeleteEntityMapperResponse;
482
558
  type index_d$5_DeleteMapperRequest = DeleteMapperRequest;
483
559
  type index_d$5_DeleteMapperResponse = DeleteMapperResponse;
560
+ type index_d$5_EntityMapperCreatedEnvelope = EntityMapperCreatedEnvelope;
561
+ type index_d$5_EntityMapperDeletedEnvelope = EntityMapperDeletedEnvelope;
562
+ type index_d$5_EntityMapperUpdatedEnvelope = EntityMapperUpdatedEnvelope;
484
563
  type index_d$5_FieldSequence = FieldSequence;
485
564
  type index_d$5_GetEntityMapperRequest = GetEntityMapperRequest;
486
565
  type index_d$5_GetEntityMapperResponse = GetEntityMapperResponse;
@@ -513,9 +592,15 @@ type index_d$5_SyncEditorDataOptions = SyncEditorDataOptions;
513
592
  type index_d$5_SyncEditorDataRequest = SyncEditorDataRequest;
514
593
  type index_d$5_SyncEditorDataResponse = SyncEditorDataResponse;
515
594
  type index_d$5_SyncFilter = SyncFilter;
595
+ type index_d$5__publicOnEntityMapperCreatedType = _publicOnEntityMapperCreatedType;
596
+ type index_d$5__publicOnEntityMapperDeletedType = _publicOnEntityMapperDeletedType;
597
+ type index_d$5__publicOnEntityMapperUpdatedType = _publicOnEntityMapperUpdatedType;
598
+ declare const index_d$5_onEntityMapperCreated: typeof onEntityMapperCreated;
599
+ declare const index_d$5_onEntityMapperDeleted: typeof onEntityMapperDeleted;
600
+ declare const index_d$5_onEntityMapperUpdated: typeof onEntityMapperUpdated;
516
601
  declare const index_d$5_syncEditorData: typeof syncEditorData;
517
602
  declare namespace index_d$5 {
518
- export { type ActionEvent$3 as ActionEvent, type index_d$5_ChangedPages as ChangedPages, type index_d$5_CreateOrUpdateAction as CreateOrUpdateAction, type index_d$5_CreateOrUpdateEditorMapperRequest as CreateOrUpdateEditorMapperRequest, type index_d$5_CreateOrUpdateEditorMapperResponse as CreateOrUpdateEditorMapperResponse, type index_d$5_CreateOrUpdateNileMapperRequest as CreateOrUpdateNileMapperRequest, type index_d$5_CreateOrUpdateNileMapperResponse as CreateOrUpdateNileMapperResponse, type index_d$5_DeleteAction as DeleteAction, type index_d$5_DeleteEntityMapperRequest as DeleteEntityMapperRequest, type index_d$5_DeleteEntityMapperResponse as DeleteEntityMapperResponse, type index_d$5_DeleteMapperRequest as DeleteMapperRequest, type index_d$5_DeleteMapperResponse as DeleteMapperResponse, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type index_d$5_FieldSequence as FieldSequence, FieldType$1 as FieldType, type index_d$5_GetEntityMapperRequest as GetEntityMapperRequest, type index_d$5_GetEntityMapperResponse as GetEntityMapperResponse, type index_d$5_GetMapperRequest as GetMapperRequest, type index_d$5_GetMapperResponse as GetMapperResponse, type index_d$5_GetSubscribedTopicsRequest as GetSubscribedTopicsRequest, type index_d$5_GetSubscribedTopicsResponse as GetSubscribedTopicsResponse, type index_d$5_HtmlNewRevisionSavedMessage as HtmlNewRevisionSavedMessage, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type index_d$5_ListMappersRequest as ListMappersRequest, type index_d$5_ListMappersResponse as ListMappersResponse, type index_d$5_LocalizationPublicAction as LocalizationPublicAction, type index_d$5_LocalizationPublicActionActionOneOf as LocalizationPublicActionActionOneOf, type index_d$5_LocalizedContentKey as LocalizedContentKey, type index_d$5_LocalizedPublishedContent as LocalizedPublishedContent, type index_d$5_LocalizedPublishedContentField as LocalizedPublishedContentField, type index_d$5_LocalizedPublishedContentFieldValueOneOf as LocalizedPublishedContentFieldValueOneOf, type index_d$5_LocalizedPublishedLanguageContentChanged as LocalizedPublishedLanguageContentChanged, type index_d$5_Mapper as Mapper, type index_d$5_MapperField as MapperField, type index_d$5_MediaItem as MediaItem, type index_d$5_MediaItemMediaOneOf as MediaItemMediaOneOf, type MessageEnvelope$3 as MessageEnvelope, type index_d$5_Page as Page, type index_d$5_PublishSiteTranslationsRequest as PublishSiteTranslationsRequest, type index_d$5_PublishSiteTranslationsResponse as PublishSiteTranslationsResponse, type RestoreInfo$3 as RestoreInfo, type index_d$5_RevisionInfo as RevisionInfo, type SchemaKey$2 as SchemaKey, SchemaScope$2 as SchemaScope, type index_d$5_SequencePath as SequencePath, type index_d$5_StressDMRequest as StressDMRequest, type index_d$5_StressDMResponse as StressDMResponse, type index_d$5_SyncEditorDataOptions as SyncEditorDataOptions, type index_d$5_SyncEditorDataRequest as SyncEditorDataRequest, type index_d$5_SyncEditorDataResponse as SyncEditorDataResponse, type index_d$5_SyncFilter as SyncFilter, type VideoResolution$2 as VideoResolution, WebhookIdentityType$3 as WebhookIdentityType, index_d$5_syncEditorData as syncEditorData };
603
+ export { type ActionEvent$3 as ActionEvent, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$5_ChangedPages as ChangedPages, type index_d$5_CreateOrUpdateAction as CreateOrUpdateAction, type index_d$5_CreateOrUpdateEditorMapperRequest as CreateOrUpdateEditorMapperRequest, type index_d$5_CreateOrUpdateEditorMapperResponse as CreateOrUpdateEditorMapperResponse, type index_d$5_CreateOrUpdateNileMapperRequest as CreateOrUpdateNileMapperRequest, type index_d$5_CreateOrUpdateNileMapperResponse as CreateOrUpdateNileMapperResponse, type index_d$5_DeleteAction as DeleteAction, type index_d$5_DeleteEntityMapperRequest as DeleteEntityMapperRequest, type index_d$5_DeleteEntityMapperResponse as DeleteEntityMapperResponse, type index_d$5_DeleteMapperRequest as DeleteMapperRequest, type index_d$5_DeleteMapperResponse as DeleteMapperResponse, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type index_d$5_EntityMapperCreatedEnvelope as EntityMapperCreatedEnvelope, type index_d$5_EntityMapperDeletedEnvelope as EntityMapperDeletedEnvelope, type index_d$5_EntityMapperUpdatedEnvelope as EntityMapperUpdatedEnvelope, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type index_d$5_FieldSequence as FieldSequence, FieldType$1 as FieldType, type index_d$5_GetEntityMapperRequest as GetEntityMapperRequest, type index_d$5_GetEntityMapperResponse as GetEntityMapperResponse, type index_d$5_GetMapperRequest as GetMapperRequest, type index_d$5_GetMapperResponse as GetMapperResponse, type index_d$5_GetSubscribedTopicsRequest as GetSubscribedTopicsRequest, type index_d$5_GetSubscribedTopicsResponse as GetSubscribedTopicsResponse, type index_d$5_HtmlNewRevisionSavedMessage as HtmlNewRevisionSavedMessage, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type index_d$5_ListMappersRequest as ListMappersRequest, type index_d$5_ListMappersResponse as ListMappersResponse, type index_d$5_LocalizationPublicAction as LocalizationPublicAction, type index_d$5_LocalizationPublicActionActionOneOf as LocalizationPublicActionActionOneOf, type index_d$5_LocalizedContentKey as LocalizedContentKey, type index_d$5_LocalizedPublishedContent as LocalizedPublishedContent, type index_d$5_LocalizedPublishedContentField as LocalizedPublishedContentField, type index_d$5_LocalizedPublishedContentFieldValueOneOf as LocalizedPublishedContentFieldValueOneOf, type index_d$5_LocalizedPublishedLanguageContentChanged as LocalizedPublishedLanguageContentChanged, type index_d$5_Mapper as Mapper, type index_d$5_MapperField as MapperField, type index_d$5_MediaItem as MediaItem, type index_d$5_MediaItemMediaOneOf as MediaItemMediaOneOf, type MessageEnvelope$3 as MessageEnvelope, type index_d$5_Page as Page, type index_d$5_PublishSiteTranslationsRequest as PublishSiteTranslationsRequest, type index_d$5_PublishSiteTranslationsResponse as PublishSiteTranslationsResponse, type RestoreInfo$3 as RestoreInfo, type index_d$5_RevisionInfo as RevisionInfo, type SchemaKey$2 as SchemaKey, SchemaScope$2 as SchemaScope, type index_d$5_SequencePath as SequencePath, type index_d$5_StressDMRequest as StressDMRequest, type index_d$5_StressDMResponse as StressDMResponse, type index_d$5_SyncEditorDataOptions as SyncEditorDataOptions, type index_d$5_SyncEditorDataRequest as SyncEditorDataRequest, type index_d$5_SyncEditorDataResponse as SyncEditorDataResponse, type index_d$5_SyncFilter as SyncFilter, type VideoResolution$2 as VideoResolution, WebhookIdentityType$3 as WebhookIdentityType, type index_d$5__publicOnEntityMapperCreatedType as _publicOnEntityMapperCreatedType, type index_d$5__publicOnEntityMapperDeletedType as _publicOnEntityMapperDeletedType, type index_d$5__publicOnEntityMapperUpdatedType as _publicOnEntityMapperUpdatedType, index_d$5_onEntityMapperCreated as onEntityMapperCreated, index_d$5_onEntityMapperDeleted as onEntityMapperDeleted, index_d$5_onEntityMapperUpdated as onEntityMapperUpdated, onEntityMapperCreated$1 as publicOnEntityMapperCreated, onEntityMapperDeleted$1 as publicOnEntityMapperDeleted, onEntityMapperUpdated$1 as publicOnEntityMapperUpdated, index_d$5_syncEditorData as syncEditorData };
519
604
  }
520
605
 
521
606
  /** Represents a content of an entity with its published translations */