@wix/auto_sdk_restaurants_item-modifier-groups 1.0.17 → 1.0.19
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/build/cjs/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.d.ts +10 -18
- package/build/cjs/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.js.map +1 -1
- package/build/cjs/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.d.ts +19 -35
- package/build/cjs/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.js.map +1 -1
- package/build/es/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.d.ts +10 -18
- package/build/es/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.js.map +1 -1
- package/build/es/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.d.ts +19 -35
- package/build/es/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.js.map +1 -1
- package/build/internal/cjs/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.d.ts +10 -18
- package/build/internal/cjs/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.js.map +1 -1
- package/build/internal/cjs/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.d.ts +19 -35
- package/build/internal/cjs/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.js.map +1 -1
- package/build/internal/es/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.d.ts +10 -18
- package/build/internal/es/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.js.map +1 -1
- package/build/internal/es/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.d.ts +19 -35
- package/build/internal/es/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.js.map +1 -1
- package/package.json +3 -3
package/build/cjs/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export interface ModifierGroup {
|
|
|
28
28
|
name?: string | null;
|
|
29
29
|
/**
|
|
30
30
|
* Group of item modifiers.
|
|
31
|
-
* @maxSize
|
|
31
|
+
* @maxSize 50
|
|
32
32
|
*/
|
|
33
33
|
modifiers?: Modifier[];
|
|
34
34
|
/** Modifier group details. */
|
|
@@ -526,25 +526,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
526
526
|
updatedEvent?: EntityUpdatedEvent;
|
|
527
527
|
deletedEvent?: EntityDeletedEvent;
|
|
528
528
|
actionEvent?: ActionEvent;
|
|
529
|
-
/**
|
|
530
|
-
* Unique event ID.
|
|
531
|
-
* Allows clients to ignore duplicate webhooks.
|
|
532
|
-
*/
|
|
529
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
533
530
|
id?: string;
|
|
534
531
|
/**
|
|
535
|
-
*
|
|
536
|
-
*
|
|
532
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
533
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
537
534
|
*/
|
|
538
535
|
entityFqdn?: string;
|
|
539
536
|
/**
|
|
540
|
-
*
|
|
541
|
-
*
|
|
542
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
537
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
538
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
543
539
|
*/
|
|
544
540
|
slug?: string;
|
|
545
541
|
/** ID of the entity associated with the event. */
|
|
546
542
|
entityId?: string;
|
|
547
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
543
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
548
544
|
eventTime?: Date | null;
|
|
549
545
|
/**
|
|
550
546
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -554,12 +550,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
554
550
|
/** If present, indicates the action that triggered the event. */
|
|
555
551
|
originatedFrom?: string | null;
|
|
556
552
|
/**
|
|
557
|
-
* A sequence number
|
|
558
|
-
*
|
|
559
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
560
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
561
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
562
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
553
|
+
* 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.
|
|
554
|
+
* 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.
|
|
563
555
|
*/
|
|
564
556
|
entityEventSequence?: string | null;
|
|
565
557
|
}
|
|
@@ -587,7 +579,7 @@ export interface EntityUpdatedEvent {
|
|
|
587
579
|
currentEntityAsJson?: string;
|
|
588
580
|
}
|
|
589
581
|
export interface EntityDeletedEvent {
|
|
590
|
-
/** Entity that was deleted */
|
|
582
|
+
/** Entity that was deleted. */
|
|
591
583
|
deletedEntityAsJson?: string | null;
|
|
592
584
|
}
|
|
593
585
|
export interface ActionEvent {
|
package/build/cjs/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.js","sourceRoot":"","sources":["../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.ts"],"names":[],"mappings":";;;AA6VA,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;
|
|
1
|
+
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.js","sourceRoot":"","sources":["../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.ts"],"names":[],"mappings":";;;AA6VA,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AA4WD,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B"}
|
package/build/cjs/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export interface ModifierGroup {
|
|
|
29
29
|
name?: string | null;
|
|
30
30
|
/**
|
|
31
31
|
* Group of item modifiers.
|
|
32
|
-
* @maxSize
|
|
32
|
+
* @maxSize 50
|
|
33
33
|
*/
|
|
34
34
|
modifiers?: Modifier[];
|
|
35
35
|
/** Modifier group details. */
|
|
@@ -527,25 +527,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
527
527
|
updatedEvent?: EntityUpdatedEvent;
|
|
528
528
|
deletedEvent?: EntityDeletedEvent;
|
|
529
529
|
actionEvent?: ActionEvent;
|
|
530
|
-
/**
|
|
531
|
-
* Unique event ID.
|
|
532
|
-
* Allows clients to ignore duplicate webhooks.
|
|
533
|
-
*/
|
|
530
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
534
531
|
_id?: string;
|
|
535
532
|
/**
|
|
536
|
-
*
|
|
537
|
-
*
|
|
533
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
534
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
538
535
|
*/
|
|
539
536
|
entityFqdn?: string;
|
|
540
537
|
/**
|
|
541
|
-
*
|
|
542
|
-
*
|
|
543
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
538
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
539
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
544
540
|
*/
|
|
545
541
|
slug?: string;
|
|
546
542
|
/** ID of the entity associated with the event. */
|
|
547
543
|
entityId?: string;
|
|
548
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
544
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
549
545
|
eventTime?: Date | null;
|
|
550
546
|
/**
|
|
551
547
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -555,12 +551,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
555
551
|
/** If present, indicates the action that triggered the event. */
|
|
556
552
|
originatedFrom?: string | null;
|
|
557
553
|
/**
|
|
558
|
-
* A sequence number
|
|
559
|
-
*
|
|
560
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
561
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
562
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
563
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
554
|
+
* 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.
|
|
555
|
+
* 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.
|
|
564
556
|
*/
|
|
565
557
|
entityEventSequence?: string | null;
|
|
566
558
|
}
|
|
@@ -586,7 +578,7 @@ export interface EntityUpdatedEvent {
|
|
|
586
578
|
currentEntity?: string;
|
|
587
579
|
}
|
|
588
580
|
export interface EntityDeletedEvent {
|
|
589
|
-
/** Entity that was deleted */
|
|
581
|
+
/** Entity that was deleted. */
|
|
590
582
|
deletedEntity?: string | null;
|
|
591
583
|
}
|
|
592
584
|
export interface ActionEvent {
|
|
@@ -679,25 +671,21 @@ export interface BaseEventMetadata {
|
|
|
679
671
|
identity?: IdentificationData;
|
|
680
672
|
}
|
|
681
673
|
export interface EventMetadata extends BaseEventMetadata {
|
|
682
|
-
/**
|
|
683
|
-
* Unique event ID.
|
|
684
|
-
* Allows clients to ignore duplicate webhooks.
|
|
685
|
-
*/
|
|
674
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
686
675
|
_id?: string;
|
|
687
676
|
/**
|
|
688
|
-
*
|
|
689
|
-
*
|
|
677
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
678
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
690
679
|
*/
|
|
691
680
|
entityFqdn?: string;
|
|
692
681
|
/**
|
|
693
|
-
*
|
|
694
|
-
*
|
|
695
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
682
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
683
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
696
684
|
*/
|
|
697
685
|
slug?: string;
|
|
698
686
|
/** ID of the entity associated with the event. */
|
|
699
687
|
entityId?: string;
|
|
700
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
688
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
701
689
|
eventTime?: Date | null;
|
|
702
690
|
/**
|
|
703
691
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -707,12 +695,8 @@ export interface EventMetadata extends BaseEventMetadata {
|
|
|
707
695
|
/** If present, indicates the action that triggered the event. */
|
|
708
696
|
originatedFrom?: string | null;
|
|
709
697
|
/**
|
|
710
|
-
* A sequence number
|
|
711
|
-
*
|
|
712
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
713
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
714
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
715
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
698
|
+
* 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.
|
|
699
|
+
* 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.
|
|
716
700
|
*/
|
|
717
701
|
entityEventSequence?: string | null;
|
|
718
702
|
}
|
|
@@ -983,7 +967,7 @@ export interface UpdateModifierGroup {
|
|
|
983
967
|
name?: string | null;
|
|
984
968
|
/**
|
|
985
969
|
* Group of item modifiers.
|
|
986
|
-
* @maxSize
|
|
970
|
+
* @maxSize 50
|
|
987
971
|
*/
|
|
988
972
|
modifiers?: Modifier[];
|
|
989
973
|
/** Modifier group details. */
|
package/build/cjs/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.js","sourceRoot":"","sources":["../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,kEAA8D;AAC9D,oFAGiD;AAEjD,0JAA4I;AAgW5I,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;
|
|
1
|
+
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.js","sourceRoot":"","sources":["../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.ts"],"names":[],"mappings":"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"}
|
package/build/es/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export interface ModifierGroup {
|
|
|
28
28
|
name?: string | null;
|
|
29
29
|
/**
|
|
30
30
|
* Group of item modifiers.
|
|
31
|
-
* @maxSize
|
|
31
|
+
* @maxSize 50
|
|
32
32
|
*/
|
|
33
33
|
modifiers?: Modifier[];
|
|
34
34
|
/** Modifier group details. */
|
|
@@ -526,25 +526,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
526
526
|
updatedEvent?: EntityUpdatedEvent;
|
|
527
527
|
deletedEvent?: EntityDeletedEvent;
|
|
528
528
|
actionEvent?: ActionEvent;
|
|
529
|
-
/**
|
|
530
|
-
* Unique event ID.
|
|
531
|
-
* Allows clients to ignore duplicate webhooks.
|
|
532
|
-
*/
|
|
529
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
533
530
|
id?: string;
|
|
534
531
|
/**
|
|
535
|
-
*
|
|
536
|
-
*
|
|
532
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
533
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
537
534
|
*/
|
|
538
535
|
entityFqdn?: string;
|
|
539
536
|
/**
|
|
540
|
-
*
|
|
541
|
-
*
|
|
542
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
537
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
538
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
543
539
|
*/
|
|
544
540
|
slug?: string;
|
|
545
541
|
/** ID of the entity associated with the event. */
|
|
546
542
|
entityId?: string;
|
|
547
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
543
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
548
544
|
eventTime?: Date | null;
|
|
549
545
|
/**
|
|
550
546
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -554,12 +550,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
554
550
|
/** If present, indicates the action that triggered the event. */
|
|
555
551
|
originatedFrom?: string | null;
|
|
556
552
|
/**
|
|
557
|
-
* A sequence number
|
|
558
|
-
*
|
|
559
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
560
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
561
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
562
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
553
|
+
* 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.
|
|
554
|
+
* 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.
|
|
563
555
|
*/
|
|
564
556
|
entityEventSequence?: string | null;
|
|
565
557
|
}
|
|
@@ -587,7 +579,7 @@ export interface EntityUpdatedEvent {
|
|
|
587
579
|
currentEntityAsJson?: string;
|
|
588
580
|
}
|
|
589
581
|
export interface EntityDeletedEvent {
|
|
590
|
-
/** Entity that was deleted */
|
|
582
|
+
/** Entity that was deleted. */
|
|
591
583
|
deletedEntityAsJson?: string | null;
|
|
592
584
|
}
|
|
593
585
|
export interface ActionEvent {
|
package/build/es/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.js","sourceRoot":"","sources":["../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.ts"],"names":[],"mappings":"AA6VA,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;
|
|
1
|
+
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.js","sourceRoot":"","sources":["../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.ts"],"names":[],"mappings":"AA6VA,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AA4WD,MAAM,CAAN,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,KAAnB,mBAAmB,QAM9B"}
|
package/build/es/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export interface ModifierGroup {
|
|
|
29
29
|
name?: string | null;
|
|
30
30
|
/**
|
|
31
31
|
* Group of item modifiers.
|
|
32
|
-
* @maxSize
|
|
32
|
+
* @maxSize 50
|
|
33
33
|
*/
|
|
34
34
|
modifiers?: Modifier[];
|
|
35
35
|
/** Modifier group details. */
|
|
@@ -527,25 +527,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
527
527
|
updatedEvent?: EntityUpdatedEvent;
|
|
528
528
|
deletedEvent?: EntityDeletedEvent;
|
|
529
529
|
actionEvent?: ActionEvent;
|
|
530
|
-
/**
|
|
531
|
-
* Unique event ID.
|
|
532
|
-
* Allows clients to ignore duplicate webhooks.
|
|
533
|
-
*/
|
|
530
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
534
531
|
_id?: string;
|
|
535
532
|
/**
|
|
536
|
-
*
|
|
537
|
-
*
|
|
533
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
534
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
538
535
|
*/
|
|
539
536
|
entityFqdn?: string;
|
|
540
537
|
/**
|
|
541
|
-
*
|
|
542
|
-
*
|
|
543
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
538
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
539
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
544
540
|
*/
|
|
545
541
|
slug?: string;
|
|
546
542
|
/** ID of the entity associated with the event. */
|
|
547
543
|
entityId?: string;
|
|
548
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
544
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
549
545
|
eventTime?: Date | null;
|
|
550
546
|
/**
|
|
551
547
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -555,12 +551,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
555
551
|
/** If present, indicates the action that triggered the event. */
|
|
556
552
|
originatedFrom?: string | null;
|
|
557
553
|
/**
|
|
558
|
-
* A sequence number
|
|
559
|
-
*
|
|
560
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
561
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
562
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
563
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
554
|
+
* 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.
|
|
555
|
+
* 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.
|
|
564
556
|
*/
|
|
565
557
|
entityEventSequence?: string | null;
|
|
566
558
|
}
|
|
@@ -586,7 +578,7 @@ export interface EntityUpdatedEvent {
|
|
|
586
578
|
currentEntity?: string;
|
|
587
579
|
}
|
|
588
580
|
export interface EntityDeletedEvent {
|
|
589
|
-
/** Entity that was deleted */
|
|
581
|
+
/** Entity that was deleted. */
|
|
590
582
|
deletedEntity?: string | null;
|
|
591
583
|
}
|
|
592
584
|
export interface ActionEvent {
|
|
@@ -679,25 +671,21 @@ export interface BaseEventMetadata {
|
|
|
679
671
|
identity?: IdentificationData;
|
|
680
672
|
}
|
|
681
673
|
export interface EventMetadata extends BaseEventMetadata {
|
|
682
|
-
/**
|
|
683
|
-
* Unique event ID.
|
|
684
|
-
* Allows clients to ignore duplicate webhooks.
|
|
685
|
-
*/
|
|
674
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
686
675
|
_id?: string;
|
|
687
676
|
/**
|
|
688
|
-
*
|
|
689
|
-
*
|
|
677
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
678
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
690
679
|
*/
|
|
691
680
|
entityFqdn?: string;
|
|
692
681
|
/**
|
|
693
|
-
*
|
|
694
|
-
*
|
|
695
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
682
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
683
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
696
684
|
*/
|
|
697
685
|
slug?: string;
|
|
698
686
|
/** ID of the entity associated with the event. */
|
|
699
687
|
entityId?: string;
|
|
700
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
688
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
701
689
|
eventTime?: Date | null;
|
|
702
690
|
/**
|
|
703
691
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -707,12 +695,8 @@ export interface EventMetadata extends BaseEventMetadata {
|
|
|
707
695
|
/** If present, indicates the action that triggered the event. */
|
|
708
696
|
originatedFrom?: string | null;
|
|
709
697
|
/**
|
|
710
|
-
* A sequence number
|
|
711
|
-
*
|
|
712
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
713
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
714
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
715
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
698
|
+
* 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.
|
|
699
|
+
* 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.
|
|
716
700
|
*/
|
|
717
701
|
entityEventSequence?: string | null;
|
|
718
702
|
}
|
|
@@ -983,7 +967,7 @@ export interface UpdateModifierGroup {
|
|
|
983
967
|
name?: string | null;
|
|
984
968
|
/**
|
|
985
969
|
* Group of item modifiers.
|
|
986
|
-
* @maxSize
|
|
970
|
+
* @maxSize 50
|
|
987
971
|
*/
|
|
988
972
|
modifiers?: Modifier[];
|
|
989
973
|
/** Modifier group details. */
|
package/build/es/src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.js","sourceRoot":"","sources":["../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,IAAI,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACvF,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EACL,qCAAqC,EACrC,uCAAuC,GACxC,MAAM,yCAAyC,CAAC;AAEjD,OAAO,KAAK,gDAAgD,MAAM,yEAAyE,CAAC;AAgW5I,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;
|
|
1
|
+
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.js","sourceRoot":"","sources":["../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -28,7 +28,7 @@ export interface ModifierGroup {
|
|
|
28
28
|
name?: string | null;
|
|
29
29
|
/**
|
|
30
30
|
* Group of item modifiers.
|
|
31
|
-
* @maxSize
|
|
31
|
+
* @maxSize 50
|
|
32
32
|
*/
|
|
33
33
|
modifiers?: Modifier[];
|
|
34
34
|
/** Modifier group details. */
|
|
@@ -526,25 +526,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
526
526
|
updatedEvent?: EntityUpdatedEvent;
|
|
527
527
|
deletedEvent?: EntityDeletedEvent;
|
|
528
528
|
actionEvent?: ActionEvent;
|
|
529
|
-
/**
|
|
530
|
-
* Unique event ID.
|
|
531
|
-
* Allows clients to ignore duplicate webhooks.
|
|
532
|
-
*/
|
|
529
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
533
530
|
id?: string;
|
|
534
531
|
/**
|
|
535
|
-
*
|
|
536
|
-
*
|
|
532
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
533
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
537
534
|
*/
|
|
538
535
|
entityFqdn?: string;
|
|
539
536
|
/**
|
|
540
|
-
*
|
|
541
|
-
*
|
|
542
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
537
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
538
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
543
539
|
*/
|
|
544
540
|
slug?: string;
|
|
545
541
|
/** ID of the entity associated with the event. */
|
|
546
542
|
entityId?: string;
|
|
547
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
543
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
548
544
|
eventTime?: Date | null;
|
|
549
545
|
/**
|
|
550
546
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -554,12 +550,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
554
550
|
/** If present, indicates the action that triggered the event. */
|
|
555
551
|
originatedFrom?: string | null;
|
|
556
552
|
/**
|
|
557
|
-
* A sequence number
|
|
558
|
-
*
|
|
559
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
560
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
561
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
562
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
553
|
+
* 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.
|
|
554
|
+
* 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.
|
|
563
555
|
*/
|
|
564
556
|
entityEventSequence?: string | null;
|
|
565
557
|
}
|
|
@@ -587,7 +579,7 @@ export interface EntityUpdatedEvent {
|
|
|
587
579
|
currentEntityAsJson?: string;
|
|
588
580
|
}
|
|
589
581
|
export interface EntityDeletedEvent {
|
|
590
|
-
/** Entity that was deleted */
|
|
582
|
+
/** Entity that was deleted. */
|
|
591
583
|
deletedEntityAsJson?: string | null;
|
|
592
584
|
}
|
|
593
585
|
export interface ActionEvent {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.js","sourceRoot":"","sources":["../../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.ts"],"names":[],"mappings":";;;AA6VA,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;
|
|
1
|
+
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.js","sourceRoot":"","sources":["../../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.ts"],"names":[],"mappings":";;;AA6VA,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AA4WD,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B"}
|
|
@@ -29,7 +29,7 @@ export interface ModifierGroup {
|
|
|
29
29
|
name?: string | null;
|
|
30
30
|
/**
|
|
31
31
|
* Group of item modifiers.
|
|
32
|
-
* @maxSize
|
|
32
|
+
* @maxSize 50
|
|
33
33
|
*/
|
|
34
34
|
modifiers?: Modifier[];
|
|
35
35
|
/** Modifier group details. */
|
|
@@ -527,25 +527,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
527
527
|
updatedEvent?: EntityUpdatedEvent;
|
|
528
528
|
deletedEvent?: EntityDeletedEvent;
|
|
529
529
|
actionEvent?: ActionEvent;
|
|
530
|
-
/**
|
|
531
|
-
* Unique event ID.
|
|
532
|
-
* Allows clients to ignore duplicate webhooks.
|
|
533
|
-
*/
|
|
530
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
534
531
|
_id?: string;
|
|
535
532
|
/**
|
|
536
|
-
*
|
|
537
|
-
*
|
|
533
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
534
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
538
535
|
*/
|
|
539
536
|
entityFqdn?: string;
|
|
540
537
|
/**
|
|
541
|
-
*
|
|
542
|
-
*
|
|
543
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
538
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
539
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
544
540
|
*/
|
|
545
541
|
slug?: string;
|
|
546
542
|
/** ID of the entity associated with the event. */
|
|
547
543
|
entityId?: string;
|
|
548
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
544
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
549
545
|
eventTime?: Date | null;
|
|
550
546
|
/**
|
|
551
547
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -555,12 +551,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
555
551
|
/** If present, indicates the action that triggered the event. */
|
|
556
552
|
originatedFrom?: string | null;
|
|
557
553
|
/**
|
|
558
|
-
* A sequence number
|
|
559
|
-
*
|
|
560
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
561
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
562
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
563
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
554
|
+
* 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.
|
|
555
|
+
* 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.
|
|
564
556
|
*/
|
|
565
557
|
entityEventSequence?: string | null;
|
|
566
558
|
}
|
|
@@ -586,7 +578,7 @@ export interface EntityUpdatedEvent {
|
|
|
586
578
|
currentEntity?: string;
|
|
587
579
|
}
|
|
588
580
|
export interface EntityDeletedEvent {
|
|
589
|
-
/** Entity that was deleted */
|
|
581
|
+
/** Entity that was deleted. */
|
|
590
582
|
deletedEntity?: string | null;
|
|
591
583
|
}
|
|
592
584
|
export interface ActionEvent {
|
|
@@ -679,25 +671,21 @@ export interface BaseEventMetadata {
|
|
|
679
671
|
identity?: IdentificationData;
|
|
680
672
|
}
|
|
681
673
|
export interface EventMetadata extends BaseEventMetadata {
|
|
682
|
-
/**
|
|
683
|
-
* Unique event ID.
|
|
684
|
-
* Allows clients to ignore duplicate webhooks.
|
|
685
|
-
*/
|
|
674
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
686
675
|
_id?: string;
|
|
687
676
|
/**
|
|
688
|
-
*
|
|
689
|
-
*
|
|
677
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
678
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
690
679
|
*/
|
|
691
680
|
entityFqdn?: string;
|
|
692
681
|
/**
|
|
693
|
-
*
|
|
694
|
-
*
|
|
695
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
682
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
683
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
696
684
|
*/
|
|
697
685
|
slug?: string;
|
|
698
686
|
/** ID of the entity associated with the event. */
|
|
699
687
|
entityId?: string;
|
|
700
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
688
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
701
689
|
eventTime?: Date | null;
|
|
702
690
|
/**
|
|
703
691
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -707,12 +695,8 @@ export interface EventMetadata extends BaseEventMetadata {
|
|
|
707
695
|
/** If present, indicates the action that triggered the event. */
|
|
708
696
|
originatedFrom?: string | null;
|
|
709
697
|
/**
|
|
710
|
-
* A sequence number
|
|
711
|
-
*
|
|
712
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
713
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
714
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
715
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
698
|
+
* 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.
|
|
699
|
+
* 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.
|
|
716
700
|
*/
|
|
717
701
|
entityEventSequence?: string | null;
|
|
718
702
|
}
|
|
@@ -983,7 +967,7 @@ export interface UpdateModifierGroup {
|
|
|
983
967
|
name?: string | null;
|
|
984
968
|
/**
|
|
985
969
|
* Group of item modifiers.
|
|
986
|
-
* @maxSize
|
|
970
|
+
* @maxSize 50
|
|
987
971
|
*/
|
|
988
972
|
modifiers?: Modifier[];
|
|
989
973
|
/** Modifier group details. */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.js","sourceRoot":"","sources":["../../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,kEAA8D;AAC9D,oFAGiD;AAEjD,0JAA4I;AAgW5I,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;
|
|
1
|
+
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.js","sourceRoot":"","sources":["../../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -28,7 +28,7 @@ export interface ModifierGroup {
|
|
|
28
28
|
name?: string | null;
|
|
29
29
|
/**
|
|
30
30
|
* Group of item modifiers.
|
|
31
|
-
* @maxSize
|
|
31
|
+
* @maxSize 50
|
|
32
32
|
*/
|
|
33
33
|
modifiers?: Modifier[];
|
|
34
34
|
/** Modifier group details. */
|
|
@@ -526,25 +526,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
526
526
|
updatedEvent?: EntityUpdatedEvent;
|
|
527
527
|
deletedEvent?: EntityDeletedEvent;
|
|
528
528
|
actionEvent?: ActionEvent;
|
|
529
|
-
/**
|
|
530
|
-
* Unique event ID.
|
|
531
|
-
* Allows clients to ignore duplicate webhooks.
|
|
532
|
-
*/
|
|
529
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
533
530
|
id?: string;
|
|
534
531
|
/**
|
|
535
|
-
*
|
|
536
|
-
*
|
|
532
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
533
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
537
534
|
*/
|
|
538
535
|
entityFqdn?: string;
|
|
539
536
|
/**
|
|
540
|
-
*
|
|
541
|
-
*
|
|
542
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
537
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
538
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
543
539
|
*/
|
|
544
540
|
slug?: string;
|
|
545
541
|
/** ID of the entity associated with the event. */
|
|
546
542
|
entityId?: string;
|
|
547
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
543
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
548
544
|
eventTime?: Date | null;
|
|
549
545
|
/**
|
|
550
546
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -554,12 +550,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
554
550
|
/** If present, indicates the action that triggered the event. */
|
|
555
551
|
originatedFrom?: string | null;
|
|
556
552
|
/**
|
|
557
|
-
* A sequence number
|
|
558
|
-
*
|
|
559
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
560
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
561
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
562
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
553
|
+
* 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.
|
|
554
|
+
* 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.
|
|
563
555
|
*/
|
|
564
556
|
entityEventSequence?: string | null;
|
|
565
557
|
}
|
|
@@ -587,7 +579,7 @@ export interface EntityUpdatedEvent {
|
|
|
587
579
|
currentEntityAsJson?: string;
|
|
588
580
|
}
|
|
589
581
|
export interface EntityDeletedEvent {
|
|
590
|
-
/** Entity that was deleted */
|
|
582
|
+
/** Entity that was deleted. */
|
|
591
583
|
deletedEntityAsJson?: string | null;
|
|
592
584
|
}
|
|
593
585
|
export interface ActionEvent {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.js","sourceRoot":"","sources":["../../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.ts"],"names":[],"mappings":"AA6VA,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;
|
|
1
|
+
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.js","sourceRoot":"","sources":["../../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.types.ts"],"names":[],"mappings":"AA6VA,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AA4WD,MAAM,CAAN,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,KAAnB,mBAAmB,QAM9B"}
|
|
@@ -29,7 +29,7 @@ export interface ModifierGroup {
|
|
|
29
29
|
name?: string | null;
|
|
30
30
|
/**
|
|
31
31
|
* Group of item modifiers.
|
|
32
|
-
* @maxSize
|
|
32
|
+
* @maxSize 50
|
|
33
33
|
*/
|
|
34
34
|
modifiers?: Modifier[];
|
|
35
35
|
/** Modifier group details. */
|
|
@@ -527,25 +527,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
527
527
|
updatedEvent?: EntityUpdatedEvent;
|
|
528
528
|
deletedEvent?: EntityDeletedEvent;
|
|
529
529
|
actionEvent?: ActionEvent;
|
|
530
|
-
/**
|
|
531
|
-
* Unique event ID.
|
|
532
|
-
* Allows clients to ignore duplicate webhooks.
|
|
533
|
-
*/
|
|
530
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
534
531
|
_id?: string;
|
|
535
532
|
/**
|
|
536
|
-
*
|
|
537
|
-
*
|
|
533
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
534
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
538
535
|
*/
|
|
539
536
|
entityFqdn?: string;
|
|
540
537
|
/**
|
|
541
|
-
*
|
|
542
|
-
*
|
|
543
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
538
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
539
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
544
540
|
*/
|
|
545
541
|
slug?: string;
|
|
546
542
|
/** ID of the entity associated with the event. */
|
|
547
543
|
entityId?: string;
|
|
548
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
544
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
549
545
|
eventTime?: Date | null;
|
|
550
546
|
/**
|
|
551
547
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -555,12 +551,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
555
551
|
/** If present, indicates the action that triggered the event. */
|
|
556
552
|
originatedFrom?: string | null;
|
|
557
553
|
/**
|
|
558
|
-
* A sequence number
|
|
559
|
-
*
|
|
560
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
561
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
562
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
563
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
554
|
+
* 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.
|
|
555
|
+
* 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.
|
|
564
556
|
*/
|
|
565
557
|
entityEventSequence?: string | null;
|
|
566
558
|
}
|
|
@@ -586,7 +578,7 @@ export interface EntityUpdatedEvent {
|
|
|
586
578
|
currentEntity?: string;
|
|
587
579
|
}
|
|
588
580
|
export interface EntityDeletedEvent {
|
|
589
|
-
/** Entity that was deleted */
|
|
581
|
+
/** Entity that was deleted. */
|
|
590
582
|
deletedEntity?: string | null;
|
|
591
583
|
}
|
|
592
584
|
export interface ActionEvent {
|
|
@@ -679,25 +671,21 @@ export interface BaseEventMetadata {
|
|
|
679
671
|
identity?: IdentificationData;
|
|
680
672
|
}
|
|
681
673
|
export interface EventMetadata extends BaseEventMetadata {
|
|
682
|
-
/**
|
|
683
|
-
* Unique event ID.
|
|
684
|
-
* Allows clients to ignore duplicate webhooks.
|
|
685
|
-
*/
|
|
674
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
686
675
|
_id?: string;
|
|
687
676
|
/**
|
|
688
|
-
*
|
|
689
|
-
*
|
|
677
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
678
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
690
679
|
*/
|
|
691
680
|
entityFqdn?: string;
|
|
692
681
|
/**
|
|
693
|
-
*
|
|
694
|
-
*
|
|
695
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
682
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
683
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
696
684
|
*/
|
|
697
685
|
slug?: string;
|
|
698
686
|
/** ID of the entity associated with the event. */
|
|
699
687
|
entityId?: string;
|
|
700
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
688
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
701
689
|
eventTime?: Date | null;
|
|
702
690
|
/**
|
|
703
691
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -707,12 +695,8 @@ export interface EventMetadata extends BaseEventMetadata {
|
|
|
707
695
|
/** If present, indicates the action that triggered the event. */
|
|
708
696
|
originatedFrom?: string | null;
|
|
709
697
|
/**
|
|
710
|
-
* A sequence number
|
|
711
|
-
*
|
|
712
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
713
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
714
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
715
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
698
|
+
* 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.
|
|
699
|
+
* 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.
|
|
716
700
|
*/
|
|
717
701
|
entityEventSequence?: string | null;
|
|
718
702
|
}
|
|
@@ -983,7 +967,7 @@ export interface UpdateModifierGroup {
|
|
|
983
967
|
name?: string | null;
|
|
984
968
|
/**
|
|
985
969
|
* Group of item modifiers.
|
|
986
|
-
* @maxSize
|
|
970
|
+
* @maxSize 50
|
|
987
971
|
*/
|
|
988
972
|
modifiers?: Modifier[];
|
|
989
973
|
/** Modifier group details. */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.js","sourceRoot":"","sources":["../../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,IAAI,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACvF,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EACL,qCAAqC,EACrC,uCAAuC,GACxC,MAAM,yCAAyC,CAAC;AAEjD,OAAO,KAAK,gDAAgD,MAAM,yEAAyE,CAAC;AAgW5I,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;
|
|
1
|
+
{"version":3,"file":"restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.js","sourceRoot":"","sources":["../../../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.universal.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_restaurants_item-modifier-groups",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.19",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@wix/sdk-runtime": "^0.3.49",
|
|
32
|
-
"@wix/sdk-types": "^1.13.
|
|
32
|
+
"@wix/sdk-types": "^1.13.23"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"typescript": "^5.3.2"
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": "wix.restaurants.menus.v1.item_modifier_group"
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "1ef58f745374666956fd8e8c7e39665ad20f0b1cc3380522b7f8978b"
|
|
52
52
|
}
|