@wix/auto_sdk_multilingual_translation-schemas 1.0.21 → 1.0.23

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.
Files changed (21) hide show
  1. package/build/cjs/src/multilingual-translation-v1-schema-translation-schemas.types.d.ts +36 -28
  2. package/build/cjs/src/multilingual-translation-v1-schema-translation-schemas.types.js.map +1 -1
  3. package/build/cjs/src/multilingual-translation-v1-schema-translation-schemas.universal.d.ts +62 -46
  4. package/build/cjs/src/multilingual-translation-v1-schema-translation-schemas.universal.js +3 -1
  5. package/build/cjs/src/multilingual-translation-v1-schema-translation-schemas.universal.js.map +1 -1
  6. package/build/es/src/multilingual-translation-v1-schema-translation-schemas.types.d.ts +36 -28
  7. package/build/es/src/multilingual-translation-v1-schema-translation-schemas.types.js.map +1 -1
  8. package/build/es/src/multilingual-translation-v1-schema-translation-schemas.universal.d.ts +62 -46
  9. package/build/es/src/multilingual-translation-v1-schema-translation-schemas.universal.js +3 -1
  10. package/build/es/src/multilingual-translation-v1-schema-translation-schemas.universal.js.map +1 -1
  11. package/build/internal/cjs/src/multilingual-translation-v1-schema-translation-schemas.types.d.ts +36 -28
  12. package/build/internal/cjs/src/multilingual-translation-v1-schema-translation-schemas.types.js.map +1 -1
  13. package/build/internal/cjs/src/multilingual-translation-v1-schema-translation-schemas.universal.d.ts +62 -46
  14. package/build/internal/cjs/src/multilingual-translation-v1-schema-translation-schemas.universal.js +3 -1
  15. package/build/internal/cjs/src/multilingual-translation-v1-schema-translation-schemas.universal.js.map +1 -1
  16. package/build/internal/es/src/multilingual-translation-v1-schema-translation-schemas.types.d.ts +36 -28
  17. package/build/internal/es/src/multilingual-translation-v1-schema-translation-schemas.types.js.map +1 -1
  18. package/build/internal/es/src/multilingual-translation-v1-schema-translation-schemas.universal.d.ts +62 -46
  19. package/build/internal/es/src/multilingual-translation-v1-schema-translation-schemas.universal.js +3 -1
  20. package/build/internal/es/src/multilingual-translation-v1-schema-translation-schemas.universal.js.map +1 -1
  21. package/package.json +3 -3
@@ -74,7 +74,7 @@ export interface SchemaKey {
74
74
  * + `SITE`: A custom schema for a specific site.
75
75
  * @immutable
76
76
  */
77
- scope?: SchemaScope;
77
+ scope?: SchemaScopeWithLiterals;
78
78
  }
79
79
  export declare enum SchemaScope {
80
80
  UNKNOWN_SCOPE = "UNKNOWN_SCOPE",
@@ -83,6 +83,8 @@ export declare enum SchemaScope {
83
83
  /** Custom schema for a specific site. */
84
84
  SITE = "SITE"
85
85
  }
86
+ /** @enumType */
87
+ export type SchemaScopeWithLiterals = SchemaScope | 'UNKNOWN_SCOPE' | 'GLOBAL' | 'SITE';
86
88
  export interface SchemaField {
87
89
  /**
88
90
  * Field ID. Validated according to Regex `^[A-Za-z0-9-_)(]+$`. Field IDs may contain parentheses to reference repeated items, such as images. These parentheses can't be nested and each opening parenthesis must be followed by a closing one. For example, `title()()` is valid, while `title)(` and `title(())` aren't valid. The value inside the parenthesis is validated according to Regex `^[^)(\\]\\[\\.]+$`.
@@ -92,7 +94,7 @@ export interface SchemaField {
92
94
  */
93
95
  id?: string;
94
96
  /** **Required.** Field type. */
95
- type?: FieldType;
97
+ type?: FieldTypeWithLiterals;
96
98
  /**
97
99
  * Field name displayed in the [Translation Manager](https://support.wix.com/en/article/wix-multilingual-using-the-translation-manager).
98
100
  * @maxLength 1000
@@ -146,6 +148,8 @@ export declare enum FieldType {
146
148
  /** Wix Media Manager document. */
147
149
  DOCUMENT = "DOCUMENT"
148
150
  }
151
+ /** @enumType */
152
+ export type FieldTypeWithLiterals = FieldType | 'UNDEFINED_TYPE' | 'SHORT_TEXT' | 'LONG_TEXT' | 'HTML' | 'RICH_CONTENT' | 'IMAGE' | 'IMAGE_LINK' | 'VIDEO' | 'DOCUMENT';
149
153
  export interface PreviewFields {
150
154
  /**
151
155
  * ID of the field representing the schema's title.
@@ -243,12 +247,14 @@ export interface Sorting {
243
247
  */
244
248
  fieldName?: string;
245
249
  /** Sort order. */
246
- order?: SortOrder;
250
+ order?: SortOrderWithLiterals;
247
251
  }
248
252
  export declare enum SortOrder {
249
253
  ASC = "ASC",
250
254
  DESC = "DESC"
251
255
  }
256
+ /** @enumType */
257
+ export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
252
258
  export interface CursorPaging {
253
259
  /**
254
260
  * Maximum number of items to return in the results.
@@ -315,7 +321,7 @@ export interface ListSiteSchemasRequest {
315
321
  * + `GLOBAL`: A global schema for all sites.
316
322
  * + `SITE`: A custom schema for a specific site.
317
323
  */
318
- scope?: SchemaScope;
324
+ scope?: SchemaScopeWithLiterals;
319
325
  }
320
326
  export interface ListSiteSchemasResponse {
321
327
  /** List of translation schemas. */
@@ -451,7 +457,7 @@ export interface Asset {
451
457
  */
452
458
  instanceId?: string;
453
459
  /** An application state. */
454
- state?: State;
460
+ state?: StateWithLiterals;
455
461
  }
456
462
  export declare enum State {
457
463
  UNKNOWN = "UNKNOWN",
@@ -460,6 +466,8 @@ export declare enum State {
460
466
  PENDING = "PENDING",
461
467
  DEMO = "DEMO"
462
468
  }
469
+ /** @enumType */
470
+ export type StateWithLiterals = State | 'UNKNOWN' | 'ENABLED' | 'DISABLED' | 'PENDING' | 'DEMO';
463
471
  export interface SiteCreated {
464
472
  /**
465
473
  * A template identifier (empty if not created from a template).
@@ -472,7 +480,7 @@ export interface SiteCreated {
472
480
  */
473
481
  ownerId?: string;
474
482
  /** A context in which meta site was created. */
475
- context?: SiteCreatedContext;
483
+ context?: SiteCreatedContextWithLiterals;
476
484
  /**
477
485
  * A meta site id from which this site was created.
478
486
  *
@@ -487,7 +495,7 @@ export interface SiteCreated {
487
495
  */
488
496
  siteName?: string;
489
497
  /** A namespace. */
490
- namespace?: Namespace;
498
+ namespace?: NamespaceWithLiterals;
491
499
  }
492
500
  export declare enum SiteCreatedContext {
493
501
  /** A valid option, we don't expose all reasons why site might be created. */
@@ -503,6 +511,8 @@ export declare enum SiteCreatedContext {
503
511
  /** deprecated A meta site was created for Flash editor. */
504
512
  FLASH = "FLASH"
505
513
  }
514
+ /** @enumType */
515
+ export type SiteCreatedContextWithLiterals = SiteCreatedContext | 'OTHER' | 'FROM_TEMPLATE' | 'DUPLICATE_BY_SITE_TRANSFER' | 'DUPLICATE' | 'OLD_SITE_TRANSFER' | 'FLASH';
506
516
  export declare enum Namespace {
507
517
  UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
508
518
  /** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
@@ -585,6 +595,8 @@ export declare enum Namespace {
585
595
  /** MIMIR - Siteless account for MIMIR Ai Job runner. */
586
596
  MIMIR = "MIMIR"
587
597
  }
598
+ /** @enumType */
599
+ export type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR';
588
600
  /** Site transferred to another user. */
589
601
  export interface SiteTransferred {
590
602
  /**
@@ -607,7 +619,7 @@ export interface DeleteContext {
607
619
  /** When the meta site was deleted. */
608
620
  dateDeleted?: Date | null;
609
621
  /** A status. */
610
- deleteStatus?: DeleteStatus;
622
+ deleteStatus?: DeleteStatusWithLiterals;
611
623
  /**
612
624
  * A reason (flow).
613
625
  * @maxLength 255
@@ -626,6 +638,8 @@ export declare enum DeleteStatus {
626
638
  PENDING_PURGE = "PENDING_PURGE",
627
639
  PURGED_EXTERNALLY = "PURGED_EXTERNALLY"
628
640
  }
641
+ /** @enumType */
642
+ export type DeleteStatusWithLiterals = DeleteStatus | 'UNKNOWN' | 'TRASH' | 'DELETED' | 'PENDING_PURGE' | 'PURGED_EXTERNALLY';
629
643
  /** Restoration of the meta site. */
630
644
  export interface SiteUndeleted {
631
645
  }
@@ -727,9 +741,9 @@ export interface SiteHardDeleted {
727
741
  }
728
742
  export interface NamespaceChanged {
729
743
  /** A previous namespace. */
730
- oldNamespace?: Namespace;
744
+ oldNamespace?: NamespaceWithLiterals;
731
745
  /** A new namespace. */
732
- newNamespace?: Namespace;
746
+ newNamespace?: NamespaceWithLiterals;
733
747
  }
734
748
  /** Assigned Studio editor */
735
749
  export interface StudioAssigned {
@@ -779,25 +793,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
779
793
  updatedEvent?: EntityUpdatedEvent;
780
794
  deletedEvent?: EntityDeletedEvent;
781
795
  actionEvent?: ActionEvent;
782
- /**
783
- * Unique event ID.
784
- * Allows clients to ignore duplicate webhooks.
785
- */
796
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
786
797
  id?: string;
787
798
  /**
788
- * Assumes actions are also always typed to an entity_type
789
- * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
799
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
800
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
790
801
  */
791
802
  entityFqdn?: string;
792
803
  /**
793
- * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
794
- * This is although the created/updated/deleted notion is duplication of the oneof types
795
- * Example: created/updated/deleted/started/completed/email_opened
804
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
805
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
796
806
  */
797
807
  slug?: string;
798
808
  /** ID of the entity associated with the event. */
799
809
  entityId?: string;
800
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
810
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
801
811
  eventTime?: Date | null;
802
812
  /**
803
813
  * Whether the event was triggered as a result of a privacy regulation application
@@ -807,12 +817,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
807
817
  /** If present, indicates the action that triggered the event. */
808
818
  originatedFrom?: string | null;
809
819
  /**
810
- * A sequence number defining the order of updates to the underlying entity.
811
- * For example, given that some entity was updated at 16:00 and than again at 16:01,
812
- * it is guaranteed that the sequence number of the second update is strictly higher than the first.
813
- * As the consumer, you can use this value to ensure that you handle messages in the correct order.
814
- * To do so, you will need to persist this number on your end, and compare the sequence number from the
815
- * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
820
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
821
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
816
822
  */
817
823
  entityEventSequence?: string | null;
818
824
  }
@@ -840,7 +846,7 @@ export interface EntityUpdatedEvent {
840
846
  currentEntityAsJson?: string;
841
847
  }
842
848
  export interface EntityDeletedEvent {
843
- /** Entity that was deleted */
849
+ /** Entity that was deleted. */
844
850
  deletedEntityAsJson?: string | null;
845
851
  }
846
852
  export interface ActionEvent {
@@ -884,7 +890,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
884
890
  */
885
891
  appId?: string;
886
892
  /** @readonly */
887
- identityType?: WebhookIdentityType;
893
+ identityType?: WebhookIdentityTypeWithLiterals;
888
894
  }
889
895
  /** @oneof */
890
896
  export interface IdentificationDataIdOneOf {
@@ -916,3 +922,5 @@ export declare enum WebhookIdentityType {
916
922
  WIX_USER = "WIX_USER",
917
923
  APP = "APP"
918
924
  }
925
+ /** @enumType */
926
+ export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
@@ -1 +1 @@
1
- {"version":3,"file":"multilingual-translation-v1-schema-translation-schemas.types.js","sourceRoot":"","sources":["../../../src/multilingual-translation-v1-schema-translation-schemas.types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"multilingual-translation-v1-schema-translation-schemas.types.js","sourceRoot":"","sources":["../../../src/multilingual-translation-v1-schema-translation-schemas.types.ts"],"names":[],"mappings":"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"}
@@ -75,7 +75,7 @@ export interface SchemaKey {
75
75
  * + `SITE`: A custom schema for a specific site.
76
76
  * @immutable
77
77
  */
78
- scope?: SchemaScope;
78
+ scope?: SchemaScopeWithLiterals;
79
79
  }
80
80
  export declare enum SchemaScope {
81
81
  UNKNOWN_SCOPE = "UNKNOWN_SCOPE",
@@ -84,6 +84,8 @@ export declare enum SchemaScope {
84
84
  /** Custom schema for a specific site. */
85
85
  SITE = "SITE"
86
86
  }
87
+ /** @enumType */
88
+ export type SchemaScopeWithLiterals = SchemaScope | 'UNKNOWN_SCOPE' | 'GLOBAL' | 'SITE';
87
89
  export interface SchemaField {
88
90
  /**
89
91
  * Field ID. Validated according to Regex `^[A-Za-z0-9-_)(]+$`. Field IDs may contain parentheses to reference repeated items, such as images. These parentheses can't be nested and each opening parenthesis must be followed by a closing one. For example, `title()()` is valid, while `title)(` and `title(())` aren't valid. The value inside the parenthesis is validated according to Regex `^[^)(\\]\\[\\.]+$`.
@@ -93,7 +95,7 @@ export interface SchemaField {
93
95
  */
94
96
  _id?: string;
95
97
  /** **Required.** Field type. */
96
- type?: FieldType;
98
+ type?: FieldTypeWithLiterals;
97
99
  /**
98
100
  * Field name displayed in the [Translation Manager](https://support.wix.com/en/article/wix-multilingual-using-the-translation-manager).
99
101
  * @maxLength 1000
@@ -147,6 +149,8 @@ export declare enum FieldType {
147
149
  /** Wix Media Manager document. */
148
150
  DOCUMENT = "DOCUMENT"
149
151
  }
152
+ /** @enumType */
153
+ export type FieldTypeWithLiterals = FieldType | 'UNDEFINED_TYPE' | 'SHORT_TEXT' | 'LONG_TEXT' | 'HTML' | 'RICH_CONTENT' | 'IMAGE' | 'IMAGE_LINK' | 'VIDEO' | 'DOCUMENT';
150
154
  export interface PreviewFields {
151
155
  /**
152
156
  * ID of the field representing the schema's title.
@@ -244,12 +248,14 @@ export interface Sorting {
244
248
  */
245
249
  fieldName?: string;
246
250
  /** Sort order. */
247
- order?: SortOrder;
251
+ order?: SortOrderWithLiterals;
248
252
  }
249
253
  export declare enum SortOrder {
250
254
  ASC = "ASC",
251
255
  DESC = "DESC"
252
256
  }
257
+ /** @enumType */
258
+ export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
253
259
  export interface CursorPaging {
254
260
  /**
255
261
  * Maximum number of items to return in the results.
@@ -316,7 +322,7 @@ export interface ListSiteSchemasRequest {
316
322
  * + `GLOBAL`: A global schema for all sites.
317
323
  * + `SITE`: A custom schema for a specific site.
318
324
  */
319
- scope?: SchemaScope;
325
+ scope?: SchemaScopeWithLiterals;
320
326
  }
321
327
  export interface ListSiteSchemasResponse {
322
328
  /** List of translation schemas. */
@@ -452,7 +458,7 @@ export interface Asset {
452
458
  */
453
459
  instanceId?: string;
454
460
  /** An application state. */
455
- state?: State;
461
+ state?: StateWithLiterals;
456
462
  }
457
463
  export declare enum State {
458
464
  UNKNOWN = "UNKNOWN",
@@ -461,6 +467,8 @@ export declare enum State {
461
467
  PENDING = "PENDING",
462
468
  DEMO = "DEMO"
463
469
  }
470
+ /** @enumType */
471
+ export type StateWithLiterals = State | 'UNKNOWN' | 'ENABLED' | 'DISABLED' | 'PENDING' | 'DEMO';
464
472
  export interface SiteCreated {
465
473
  /**
466
474
  * A template identifier (empty if not created from a template).
@@ -473,7 +481,7 @@ export interface SiteCreated {
473
481
  */
474
482
  ownerId?: string;
475
483
  /** A context in which meta site was created. */
476
- context?: SiteCreatedContext;
484
+ context?: SiteCreatedContextWithLiterals;
477
485
  /**
478
486
  * A meta site id from which this site was created.
479
487
  *
@@ -488,7 +496,7 @@ export interface SiteCreated {
488
496
  */
489
497
  siteName?: string;
490
498
  /** A namespace. */
491
- namespace?: Namespace;
499
+ namespace?: NamespaceWithLiterals;
492
500
  }
493
501
  export declare enum SiteCreatedContext {
494
502
  /** A valid option, we don't expose all reasons why site might be created. */
@@ -504,6 +512,8 @@ export declare enum SiteCreatedContext {
504
512
  /** deprecated A meta site was created for Flash editor. */
505
513
  FLASH = "FLASH"
506
514
  }
515
+ /** @enumType */
516
+ export type SiteCreatedContextWithLiterals = SiteCreatedContext | 'OTHER' | 'FROM_TEMPLATE' | 'DUPLICATE_BY_SITE_TRANSFER' | 'DUPLICATE' | 'OLD_SITE_TRANSFER' | 'FLASH';
507
517
  export declare enum Namespace {
508
518
  UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
509
519
  /** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
@@ -586,6 +596,8 @@ export declare enum Namespace {
586
596
  /** MIMIR - Siteless account for MIMIR Ai Job runner. */
587
597
  MIMIR = "MIMIR"
588
598
  }
599
+ /** @enumType */
600
+ export type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR';
589
601
  /** Site transferred to another user. */
590
602
  export interface SiteTransferred {
591
603
  /**
@@ -608,7 +620,7 @@ export interface DeleteContext {
608
620
  /** When the meta site was deleted. */
609
621
  dateDeleted?: Date | null;
610
622
  /** A status. */
611
- deleteStatus?: DeleteStatus;
623
+ deleteStatus?: DeleteStatusWithLiterals;
612
624
  /**
613
625
  * A reason (flow).
614
626
  * @maxLength 255
@@ -627,6 +639,8 @@ export declare enum DeleteStatus {
627
639
  PENDING_PURGE = "PENDING_PURGE",
628
640
  PURGED_EXTERNALLY = "PURGED_EXTERNALLY"
629
641
  }
642
+ /** @enumType */
643
+ export type DeleteStatusWithLiterals = DeleteStatus | 'UNKNOWN' | 'TRASH' | 'DELETED' | 'PENDING_PURGE' | 'PURGED_EXTERNALLY';
630
644
  /** Restoration of the meta site. */
631
645
  export interface SiteUndeleted {
632
646
  }
@@ -728,9 +742,9 @@ export interface SiteHardDeleted {
728
742
  }
729
743
  export interface NamespaceChanged {
730
744
  /** A previous namespace. */
731
- oldNamespace?: Namespace;
745
+ oldNamespace?: NamespaceWithLiterals;
732
746
  /** A new namespace. */
733
- newNamespace?: Namespace;
747
+ newNamespace?: NamespaceWithLiterals;
734
748
  }
735
749
  /** Assigned Studio editor */
736
750
  export interface StudioAssigned {
@@ -780,25 +794,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
780
794
  updatedEvent?: EntityUpdatedEvent;
781
795
  deletedEvent?: EntityDeletedEvent;
782
796
  actionEvent?: ActionEvent;
783
- /**
784
- * Unique event ID.
785
- * Allows clients to ignore duplicate webhooks.
786
- */
797
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
787
798
  _id?: string;
788
799
  /**
789
- * Assumes actions are also always typed to an entity_type
790
- * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
800
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
801
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
791
802
  */
792
803
  entityFqdn?: string;
793
804
  /**
794
- * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
795
- * This is although the created/updated/deleted notion is duplication of the oneof types
796
- * Example: created/updated/deleted/started/completed/email_opened
805
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
806
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
797
807
  */
798
808
  slug?: string;
799
809
  /** ID of the entity associated with the event. */
800
810
  entityId?: string;
801
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
811
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
802
812
  eventTime?: Date | null;
803
813
  /**
804
814
  * Whether the event was triggered as a result of a privacy regulation application
@@ -808,12 +818,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
808
818
  /** If present, indicates the action that triggered the event. */
809
819
  originatedFrom?: string | null;
810
820
  /**
811
- * A sequence number defining the order of updates to the underlying entity.
812
- * For example, given that some entity was updated at 16:00 and than again at 16:01,
813
- * it is guaranteed that the sequence number of the second update is strictly higher than the first.
814
- * As the consumer, you can use this value to ensure that you handle messages in the correct order.
815
- * To do so, you will need to persist this number on your end, and compare the sequence number from the
816
- * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
821
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
822
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
817
823
  */
818
824
  entityEventSequence?: string | null;
819
825
  }
@@ -839,7 +845,7 @@ export interface EntityUpdatedEvent {
839
845
  currentEntity?: string;
840
846
  }
841
847
  export interface EntityDeletedEvent {
842
- /** Entity that was deleted */
848
+ /** Entity that was deleted. */
843
849
  deletedEntity?: string | null;
844
850
  }
845
851
  export interface ActionEvent {
@@ -883,7 +889,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
883
889
  */
884
890
  appId?: string;
885
891
  /** @readonly */
886
- identityType?: WebhookIdentityType;
892
+ identityType?: WebhookIdentityTypeWithLiterals;
887
893
  }
888
894
  /** @oneof */
889
895
  export interface IdentificationDataIdOneOf {
@@ -915,6 +921,8 @@ export declare enum WebhookIdentityType {
915
921
  WIX_USER = "WIX_USER",
916
922
  APP = "APP"
917
923
  }
924
+ /** @enumType */
925
+ export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
918
926
  export interface BaseEventMetadata {
919
927
  /**
920
928
  * App instance ID.
@@ -930,25 +938,21 @@ export interface BaseEventMetadata {
930
938
  identity?: IdentificationData;
931
939
  }
932
940
  export interface EventMetadata extends BaseEventMetadata {
933
- /**
934
- * Unique event ID.
935
- * Allows clients to ignore duplicate webhooks.
936
- */
941
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
937
942
  _id?: string;
938
943
  /**
939
- * Assumes actions are also always typed to an entity_type
940
- * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
944
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
945
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
941
946
  */
942
947
  entityFqdn?: string;
943
948
  /**
944
- * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
945
- * This is although the created/updated/deleted notion is duplication of the oneof types
946
- * Example: created/updated/deleted/started/completed/email_opened
949
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
950
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
947
951
  */
948
952
  slug?: string;
949
953
  /** ID of the entity associated with the event. */
950
954
  entityId?: string;
951
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
955
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
952
956
  eventTime?: Date | null;
953
957
  /**
954
958
  * Whether the event was triggered as a result of a privacy regulation application
@@ -958,12 +962,8 @@ export interface EventMetadata extends BaseEventMetadata {
958
962
  /** If present, indicates the action that triggered the event. */
959
963
  originatedFrom?: string | null;
960
964
  /**
961
- * A sequence number defining the order of updates to the underlying entity.
962
- * For example, given that some entity was updated at 16:00 and than again at 16:01,
963
- * it is guaranteed that the sequence number of the second update is strictly higher than the first.
964
- * As the consumer, you can use this value to ensure that you handle messages in the correct order.
965
- * To do so, you will need to persist this number on your end, and compare the sequence number from the
966
- * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
965
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
966
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
967
967
  */
968
968
  entityEventSequence?: string | null;
969
969
  }
@@ -1076,7 +1076,7 @@ export interface GetSchemaByKeyIdentifiers {
1076
1076
  * + `SITE`: A custom schema for a specific site.
1077
1077
  * @immutable
1078
1078
  */
1079
- keyScope?: SchemaScope;
1079
+ keyScope?: SchemaScopeWithLiterals;
1080
1080
  }
1081
1081
  /**
1082
1082
  * Updates a translation schema.
@@ -1227,6 +1227,22 @@ export interface SchemasQueryBuilder {
1227
1227
  * @param value - Value to compare against.
1228
1228
  */
1229
1229
  ne: (propertyName: '_id' | 'key.appId' | 'key.entityType' | 'key.scope' | 'hidden' | 'parentId', value: any) => SchemasQueryBuilder;
1230
+ /** @param propertyName - Property whose value is compared with `value`.
1231
+ * @param value - Value to compare against.
1232
+ */
1233
+ ge: (propertyName: '_id' | 'key.appId' | 'key.entityType' | 'parentId', value: any) => SchemasQueryBuilder;
1234
+ /** @param propertyName - Property whose value is compared with `value`.
1235
+ * @param value - Value to compare against.
1236
+ */
1237
+ gt: (propertyName: '_id' | 'key.appId' | 'key.entityType' | 'parentId', value: any) => SchemasQueryBuilder;
1238
+ /** @param propertyName - Property whose value is compared with `value`.
1239
+ * @param value - Value to compare against.
1240
+ */
1241
+ le: (propertyName: '_id' | 'key.appId' | 'key.entityType' | 'parentId', value: any) => SchemasQueryBuilder;
1242
+ /** @param propertyName - Property whose value is compared with `value`.
1243
+ * @param value - Value to compare against.
1244
+ */
1245
+ lt: (propertyName: '_id' | 'key.appId' | 'key.entityType' | 'parentId', value: any) => SchemasQueryBuilder;
1230
1246
  /** @param propertyName - Property whose value is compared with `string`.
1231
1247
  * @param string - String to compare against. Case-insensitive.
1232
1248
  */
@@ -1283,6 +1299,6 @@ export interface ListSiteSchemasOptions {
1283
1299
  * + `GLOBAL`: A global schema for all sites.
1284
1300
  * + `SITE`: A custom schema for a specific site.
1285
1301
  */
1286
- scope?: SchemaScope;
1302
+ scope?: SchemaScopeWithLiterals;
1287
1303
  }
1288
1304
  export {};
@@ -2,6 +2,8 @@ import { transformError as sdkTransformError } from '@wix/sdk-runtime/transform-
2
2
  import { queryBuilder } from '@wix/sdk-runtime/query-builder';
3
3
  import { renameKeysFromSDKRequestToRESTRequest, renameKeysFromRESTResponseToSDKResponse, } from '@wix/sdk-runtime/rename-all-nested-keys';
4
4
  import * as ambassadorWixMultilingualTranslationV1Schema from './multilingual-translation-v1-schema-translation-schemas.http.js';
5
+ // @ts-ignore
6
+ import { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';
5
7
  export var SchemaScope;
6
8
  (function (SchemaScope) {
7
9
  SchemaScope["UNKNOWN_SCOPE"] = "UNKNOWN_SCOPE";
@@ -407,7 +409,7 @@ export function querySchemas(options) {
407
409
  });
408
410
  },
409
411
  responseTransformer: ({ data }) => {
410
- const transformedData = renameKeysFromRESTResponseToSDKResponse(data);
412
+ const transformedData = renameKeysFromRESTResponseToSDKResponse(transformPaths(data, []));
411
413
  return {
412
414
  items: transformedData?.schemas,
413
415
  pagingMetadata: transformedData?.pagingMetadata,
@@ -1 +1 @@
1
- {"version":3,"file":"multilingual-translation-v1-schema-translation-schemas.universal.js","sourceRoot":"","sources":["../../../src/multilingual-translation-v1-schema-translation-schemas.universal.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"multilingual-translation-v1-schema-translation-schemas.universal.js","sourceRoot":"","sources":["../../../src/multilingual-translation-v1-schema-translation-schemas.universal.ts"],"names":[],"mappings":"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"}