@wix/auto_sdk_blog_categories 1.0.8 → 1.0.10
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/blog-v3-category-categories.types.d.ts +9 -17
- package/build/cjs/src/blog-v3-category-categories.types.js.map +1 -1
- package/build/cjs/src/blog-v3-category-categories.universal.d.ts +17 -33
- package/build/cjs/src/blog-v3-category-categories.universal.js.map +1 -1
- package/build/es/src/blog-v3-category-categories.types.d.ts +9 -17
- package/build/es/src/blog-v3-category-categories.types.js.map +1 -1
- package/build/es/src/blog-v3-category-categories.universal.d.ts +17 -33
- package/build/es/src/blog-v3-category-categories.universal.js.map +1 -1
- package/build/internal/cjs/src/blog-v3-category-categories.types.d.ts +9 -17
- package/build/internal/cjs/src/blog-v3-category-categories.types.js.map +1 -1
- package/build/internal/cjs/src/blog-v3-category-categories.universal.d.ts +17 -33
- package/build/internal/cjs/src/blog-v3-category-categories.universal.js.map +1 -1
- package/build/internal/es/src/blog-v3-category-categories.types.d.ts +9 -17
- package/build/internal/es/src/blog-v3-category-categories.types.js.map +1 -1
- package/build/internal/es/src/blog-v3-category-categories.universal.d.ts +17 -33
- package/build/internal/es/src/blog-v3-category-categories.universal.js.map +1 -1
- package/package.json +4 -4
@@ -579,25 +579,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
579
579
|
updatedEvent?: EntityUpdatedEvent;
|
580
580
|
deletedEvent?: EntityDeletedEvent;
|
581
581
|
actionEvent?: ActionEvent;
|
582
|
-
/**
|
583
|
-
* Unique event ID.
|
584
|
-
* Allows clients to ignore duplicate webhooks.
|
585
|
-
*/
|
582
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
586
583
|
id?: string;
|
587
584
|
/**
|
588
|
-
*
|
589
|
-
*
|
585
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
586
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
590
587
|
*/
|
591
588
|
entityFqdn?: string;
|
592
589
|
/**
|
593
|
-
*
|
594
|
-
*
|
595
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
590
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
591
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
596
592
|
*/
|
597
593
|
slug?: string;
|
598
594
|
/** ID of the entity associated with the event. */
|
599
595
|
entityId?: string;
|
600
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
596
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
601
597
|
eventTime?: Date | null;
|
602
598
|
/**
|
603
599
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -607,12 +603,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
607
603
|
/** If present, indicates the action that triggered the event. */
|
608
604
|
originatedFrom?: string | null;
|
609
605
|
/**
|
610
|
-
* A sequence number
|
611
|
-
*
|
612
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
613
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
614
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
615
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
606
|
+
* 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.
|
607
|
+
* 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.
|
616
608
|
*/
|
617
609
|
entityEventSequence?: string | null;
|
618
610
|
}
|
@@ -640,7 +632,7 @@ export interface EntityUpdatedEvent {
|
|
640
632
|
currentEntityAsJson?: string;
|
641
633
|
}
|
642
634
|
export interface EntityDeletedEvent {
|
643
|
-
/** Entity that was deleted */
|
635
|
+
/** Entity that was deleted. */
|
644
636
|
deletedEntityAsJson?: string | null;
|
645
637
|
}
|
646
638
|
export interface ActionEvent {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"blog-v3-category-categories.types.js","sourceRoot":"","sources":["../../../src/blog-v3-category-categories.types.ts"],"names":[],"mappings":";;;AAoNA,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,qBAAL,KAAK,QAMhB;AA0TD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;
|
1
|
+
{"version":3,"file":"blog-v3-category-categories.types.js","sourceRoot":"","sources":["../../../src/blog-v3-category-categories.types.ts"],"names":[],"mappings":";;;AAoNA,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,qBAAL,KAAK,QAMhB;AA0TD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AAgOD,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"}
|
@@ -552,25 +552,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
552
552
|
updatedEvent?: EntityUpdatedEvent;
|
553
553
|
deletedEvent?: EntityDeletedEvent;
|
554
554
|
actionEvent?: ActionEvent;
|
555
|
-
/**
|
556
|
-
* Unique event ID.
|
557
|
-
* Allows clients to ignore duplicate webhooks.
|
558
|
-
*/
|
555
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
559
556
|
_id?: string;
|
560
557
|
/**
|
561
|
-
*
|
562
|
-
*
|
558
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
559
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
563
560
|
*/
|
564
561
|
entityFqdn?: string;
|
565
562
|
/**
|
566
|
-
*
|
567
|
-
*
|
568
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
563
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
564
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
569
565
|
*/
|
570
566
|
slug?: string;
|
571
567
|
/** ID of the entity associated with the event. */
|
572
568
|
entityId?: string;
|
573
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
569
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
574
570
|
eventTime?: Date | null;
|
575
571
|
/**
|
576
572
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -580,12 +576,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
580
576
|
/** If present, indicates the action that triggered the event. */
|
581
577
|
originatedFrom?: string | null;
|
582
578
|
/**
|
583
|
-
* A sequence number
|
584
|
-
*
|
585
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
586
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
587
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
588
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
579
|
+
* 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.
|
580
|
+
* 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.
|
589
581
|
*/
|
590
582
|
entityEventSequence?: string | null;
|
591
583
|
}
|
@@ -611,7 +603,7 @@ export interface EntityUpdatedEvent {
|
|
611
603
|
currentEntity?: string;
|
612
604
|
}
|
613
605
|
export interface EntityDeletedEvent {
|
614
|
-
/** Entity that was deleted */
|
606
|
+
/** Entity that was deleted. */
|
615
607
|
deletedEntity?: string | null;
|
616
608
|
}
|
617
609
|
export interface ActionEvent {
|
@@ -702,25 +694,21 @@ export interface BaseEventMetadata {
|
|
702
694
|
identity?: IdentificationData;
|
703
695
|
}
|
704
696
|
export interface EventMetadata extends BaseEventMetadata {
|
705
|
-
/**
|
706
|
-
* Unique event ID.
|
707
|
-
* Allows clients to ignore duplicate webhooks.
|
708
|
-
*/
|
697
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
709
698
|
_id?: string;
|
710
699
|
/**
|
711
|
-
*
|
712
|
-
*
|
700
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
701
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
713
702
|
*/
|
714
703
|
entityFqdn?: string;
|
715
704
|
/**
|
716
|
-
*
|
717
|
-
*
|
718
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
705
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
706
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
719
707
|
*/
|
720
708
|
slug?: string;
|
721
709
|
/** ID of the entity associated with the event. */
|
722
710
|
entityId?: string;
|
723
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
711
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
724
712
|
eventTime?: Date | null;
|
725
713
|
/**
|
726
714
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -730,12 +718,8 @@ export interface EventMetadata extends BaseEventMetadata {
|
|
730
718
|
/** If present, indicates the action that triggered the event. */
|
731
719
|
originatedFrom?: string | null;
|
732
720
|
/**
|
733
|
-
* A sequence number
|
734
|
-
*
|
735
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
736
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
737
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
738
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
721
|
+
* 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.
|
722
|
+
* 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.
|
739
723
|
*/
|
740
724
|
entityEventSequence?: string | null;
|
741
725
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"blog-v3-category-categories.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-category-categories.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,kEAA8D;AAC9D,oFAGiD;AAEjD,mGAAqF;AACrF,aAAa;AACb,kEAAsF;AACtF,kEAAsF;AACtF,wEAA6F;AAC7F,wEAA6F;AAC7F,sFAAkF;AAuLlF,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,qBAAL,KAAK,QAMhB;AA2TD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;
|
1
|
+
{"version":3,"file":"blog-v3-category-categories.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-category-categories.universal.ts"],"names":[],"mappings":"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"}
|
@@ -579,25 +579,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
579
579
|
updatedEvent?: EntityUpdatedEvent;
|
580
580
|
deletedEvent?: EntityDeletedEvent;
|
581
581
|
actionEvent?: ActionEvent;
|
582
|
-
/**
|
583
|
-
* Unique event ID.
|
584
|
-
* Allows clients to ignore duplicate webhooks.
|
585
|
-
*/
|
582
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
586
583
|
id?: string;
|
587
584
|
/**
|
588
|
-
*
|
589
|
-
*
|
585
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
586
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
590
587
|
*/
|
591
588
|
entityFqdn?: string;
|
592
589
|
/**
|
593
|
-
*
|
594
|
-
*
|
595
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
590
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
591
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
596
592
|
*/
|
597
593
|
slug?: string;
|
598
594
|
/** ID of the entity associated with the event. */
|
599
595
|
entityId?: string;
|
600
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
596
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
601
597
|
eventTime?: Date | null;
|
602
598
|
/**
|
603
599
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -607,12 +603,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
607
603
|
/** If present, indicates the action that triggered the event. */
|
608
604
|
originatedFrom?: string | null;
|
609
605
|
/**
|
610
|
-
* A sequence number
|
611
|
-
*
|
612
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
613
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
614
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
615
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
606
|
+
* 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.
|
607
|
+
* 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.
|
616
608
|
*/
|
617
609
|
entityEventSequence?: string | null;
|
618
610
|
}
|
@@ -640,7 +632,7 @@ export interface EntityUpdatedEvent {
|
|
640
632
|
currentEntityAsJson?: string;
|
641
633
|
}
|
642
634
|
export interface EntityDeletedEvent {
|
643
|
-
/** Entity that was deleted */
|
635
|
+
/** Entity that was deleted. */
|
644
636
|
deletedEntityAsJson?: string | null;
|
645
637
|
}
|
646
638
|
export interface ActionEvent {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"blog-v3-category-categories.types.js","sourceRoot":"","sources":["../../../src/blog-v3-category-categories.types.ts"],"names":[],"mappings":"AAoNA,MAAM,CAAN,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,KAAL,KAAK,QAMhB;AA0TD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;
|
1
|
+
{"version":3,"file":"blog-v3-category-categories.types.js","sourceRoot":"","sources":["../../../src/blog-v3-category-categories.types.ts"],"names":[],"mappings":"AAoNA,MAAM,CAAN,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,KAAL,KAAK,QAMhB;AA0TD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AAgOD,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"}
|
@@ -552,25 +552,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
552
552
|
updatedEvent?: EntityUpdatedEvent;
|
553
553
|
deletedEvent?: EntityDeletedEvent;
|
554
554
|
actionEvent?: ActionEvent;
|
555
|
-
/**
|
556
|
-
* Unique event ID.
|
557
|
-
* Allows clients to ignore duplicate webhooks.
|
558
|
-
*/
|
555
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
559
556
|
_id?: string;
|
560
557
|
/**
|
561
|
-
*
|
562
|
-
*
|
558
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
559
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
563
560
|
*/
|
564
561
|
entityFqdn?: string;
|
565
562
|
/**
|
566
|
-
*
|
567
|
-
*
|
568
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
563
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
564
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
569
565
|
*/
|
570
566
|
slug?: string;
|
571
567
|
/** ID of the entity associated with the event. */
|
572
568
|
entityId?: string;
|
573
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
569
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
574
570
|
eventTime?: Date | null;
|
575
571
|
/**
|
576
572
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -580,12 +576,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
580
576
|
/** If present, indicates the action that triggered the event. */
|
581
577
|
originatedFrom?: string | null;
|
582
578
|
/**
|
583
|
-
* A sequence number
|
584
|
-
*
|
585
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
586
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
587
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
588
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
579
|
+
* 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.
|
580
|
+
* 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.
|
589
581
|
*/
|
590
582
|
entityEventSequence?: string | null;
|
591
583
|
}
|
@@ -611,7 +603,7 @@ export interface EntityUpdatedEvent {
|
|
611
603
|
currentEntity?: string;
|
612
604
|
}
|
613
605
|
export interface EntityDeletedEvent {
|
614
|
-
/** Entity that was deleted */
|
606
|
+
/** Entity that was deleted. */
|
615
607
|
deletedEntity?: string | null;
|
616
608
|
}
|
617
609
|
export interface ActionEvent {
|
@@ -702,25 +694,21 @@ export interface BaseEventMetadata {
|
|
702
694
|
identity?: IdentificationData;
|
703
695
|
}
|
704
696
|
export interface EventMetadata extends BaseEventMetadata {
|
705
|
-
/**
|
706
|
-
* Unique event ID.
|
707
|
-
* Allows clients to ignore duplicate webhooks.
|
708
|
-
*/
|
697
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
709
698
|
_id?: string;
|
710
699
|
/**
|
711
|
-
*
|
712
|
-
*
|
700
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
701
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
713
702
|
*/
|
714
703
|
entityFqdn?: string;
|
715
704
|
/**
|
716
|
-
*
|
717
|
-
*
|
718
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
705
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
706
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
719
707
|
*/
|
720
708
|
slug?: string;
|
721
709
|
/** ID of the entity associated with the event. */
|
722
710
|
entityId?: string;
|
723
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
711
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
724
712
|
eventTime?: Date | null;
|
725
713
|
/**
|
726
714
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -730,12 +718,8 @@ export interface EventMetadata extends BaseEventMetadata {
|
|
730
718
|
/** If present, indicates the action that triggered the event. */
|
731
719
|
originatedFrom?: string | null;
|
732
720
|
/**
|
733
|
-
* A sequence number
|
734
|
-
*
|
735
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
736
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
737
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
738
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
721
|
+
* 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.
|
722
|
+
* 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.
|
739
723
|
*/
|
740
724
|
entityEventSequence?: string | null;
|
741
725
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"blog-v3-category-categories.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-category-categories.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,2BAA2B,MAAM,uCAAuC,CAAC;AACrF,aAAa;AACb,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,gCAAgC,EAAE,MAAM,2CAA2C,CAAC;AAC7F,OAAO,EAAE,gCAAgC,EAAE,MAAM,2CAA2C,CAAC;AAC7F,OAAO,EAAE,cAAc,EAAE,MAAM,kDAAkD,CAAC;AAuLlF,MAAM,CAAN,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,KAAL,KAAK,QAMhB;AA2TD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;
|
1
|
+
{"version":3,"file":"blog-v3-category-categories.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-category-categories.universal.ts"],"names":[],"mappings":"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"}
|
@@ -579,25 +579,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
579
579
|
updatedEvent?: EntityUpdatedEvent;
|
580
580
|
deletedEvent?: EntityDeletedEvent;
|
581
581
|
actionEvent?: ActionEvent;
|
582
|
-
/**
|
583
|
-
* Unique event ID.
|
584
|
-
* Allows clients to ignore duplicate webhooks.
|
585
|
-
*/
|
582
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
586
583
|
id?: string;
|
587
584
|
/**
|
588
|
-
*
|
589
|
-
*
|
585
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
586
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
590
587
|
*/
|
591
588
|
entityFqdn?: string;
|
592
589
|
/**
|
593
|
-
*
|
594
|
-
*
|
595
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
590
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
591
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
596
592
|
*/
|
597
593
|
slug?: string;
|
598
594
|
/** ID of the entity associated with the event. */
|
599
595
|
entityId?: string;
|
600
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
596
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
601
597
|
eventTime?: Date | null;
|
602
598
|
/**
|
603
599
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -607,12 +603,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
607
603
|
/** If present, indicates the action that triggered the event. */
|
608
604
|
originatedFrom?: string | null;
|
609
605
|
/**
|
610
|
-
* A sequence number
|
611
|
-
*
|
612
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
613
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
614
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
615
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
606
|
+
* 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.
|
607
|
+
* 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.
|
616
608
|
*/
|
617
609
|
entityEventSequence?: string | null;
|
618
610
|
}
|
@@ -640,7 +632,7 @@ export interface EntityUpdatedEvent {
|
|
640
632
|
currentEntityAsJson?: string;
|
641
633
|
}
|
642
634
|
export interface EntityDeletedEvent {
|
643
|
-
/** Entity that was deleted */
|
635
|
+
/** Entity that was deleted. */
|
644
636
|
deletedEntityAsJson?: string | null;
|
645
637
|
}
|
646
638
|
export interface ActionEvent {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"blog-v3-category-categories.types.js","sourceRoot":"","sources":["../../../../src/blog-v3-category-categories.types.ts"],"names":[],"mappings":";;;AAoNA,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,qBAAL,KAAK,QAMhB;AA0TD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;
|
1
|
+
{"version":3,"file":"blog-v3-category-categories.types.js","sourceRoot":"","sources":["../../../../src/blog-v3-category-categories.types.ts"],"names":[],"mappings":";;;AAoNA,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,qBAAL,KAAK,QAMhB;AA0TD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AAgOD,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"}
|
@@ -552,25 +552,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
552
552
|
updatedEvent?: EntityUpdatedEvent;
|
553
553
|
deletedEvent?: EntityDeletedEvent;
|
554
554
|
actionEvent?: ActionEvent;
|
555
|
-
/**
|
556
|
-
* Unique event ID.
|
557
|
-
* Allows clients to ignore duplicate webhooks.
|
558
|
-
*/
|
555
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
559
556
|
_id?: string;
|
560
557
|
/**
|
561
|
-
*
|
562
|
-
*
|
558
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
559
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
563
560
|
*/
|
564
561
|
entityFqdn?: string;
|
565
562
|
/**
|
566
|
-
*
|
567
|
-
*
|
568
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
563
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
564
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
569
565
|
*/
|
570
566
|
slug?: string;
|
571
567
|
/** ID of the entity associated with the event. */
|
572
568
|
entityId?: string;
|
573
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
569
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
574
570
|
eventTime?: Date | null;
|
575
571
|
/**
|
576
572
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -580,12 +576,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
580
576
|
/** If present, indicates the action that triggered the event. */
|
581
577
|
originatedFrom?: string | null;
|
582
578
|
/**
|
583
|
-
* A sequence number
|
584
|
-
*
|
585
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
586
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
587
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
588
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
579
|
+
* 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.
|
580
|
+
* 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.
|
589
581
|
*/
|
590
582
|
entityEventSequence?: string | null;
|
591
583
|
}
|
@@ -611,7 +603,7 @@ export interface EntityUpdatedEvent {
|
|
611
603
|
currentEntity?: string;
|
612
604
|
}
|
613
605
|
export interface EntityDeletedEvent {
|
614
|
-
/** Entity that was deleted */
|
606
|
+
/** Entity that was deleted. */
|
615
607
|
deletedEntity?: string | null;
|
616
608
|
}
|
617
609
|
export interface ActionEvent {
|
@@ -702,25 +694,21 @@ export interface BaseEventMetadata {
|
|
702
694
|
identity?: IdentificationData;
|
703
695
|
}
|
704
696
|
export interface EventMetadata extends BaseEventMetadata {
|
705
|
-
/**
|
706
|
-
* Unique event ID.
|
707
|
-
* Allows clients to ignore duplicate webhooks.
|
708
|
-
*/
|
697
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
709
698
|
_id?: string;
|
710
699
|
/**
|
711
|
-
*
|
712
|
-
*
|
700
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
701
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
713
702
|
*/
|
714
703
|
entityFqdn?: string;
|
715
704
|
/**
|
716
|
-
*
|
717
|
-
*
|
718
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
705
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
706
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
719
707
|
*/
|
720
708
|
slug?: string;
|
721
709
|
/** ID of the entity associated with the event. */
|
722
710
|
entityId?: string;
|
723
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
711
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
724
712
|
eventTime?: Date | null;
|
725
713
|
/**
|
726
714
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -730,12 +718,8 @@ export interface EventMetadata extends BaseEventMetadata {
|
|
730
718
|
/** If present, indicates the action that triggered the event. */
|
731
719
|
originatedFrom?: string | null;
|
732
720
|
/**
|
733
|
-
* A sequence number
|
734
|
-
*
|
735
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
736
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
737
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
738
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
721
|
+
* 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.
|
722
|
+
* 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.
|
739
723
|
*/
|
740
724
|
entityEventSequence?: string | null;
|
741
725
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"blog-v3-category-categories.universal.js","sourceRoot":"","sources":["../../../../src/blog-v3-category-categories.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,kEAA8D;AAC9D,oFAGiD;AAEjD,mGAAqF;AACrF,aAAa;AACb,kEAAsF;AACtF,kEAAsF;AACtF,wEAA6F;AAC7F,wEAA6F;AAC7F,sFAAkF;AAuLlF,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,qBAAL,KAAK,QAMhB;AA2TD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;
|
1
|
+
{"version":3,"file":"blog-v3-category-categories.universal.js","sourceRoot":"","sources":["../../../../src/blog-v3-category-categories.universal.ts"],"names":[],"mappings":"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"}
|
@@ -579,25 +579,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
579
579
|
updatedEvent?: EntityUpdatedEvent;
|
580
580
|
deletedEvent?: EntityDeletedEvent;
|
581
581
|
actionEvent?: ActionEvent;
|
582
|
-
/**
|
583
|
-
* Unique event ID.
|
584
|
-
* Allows clients to ignore duplicate webhooks.
|
585
|
-
*/
|
582
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
586
583
|
id?: string;
|
587
584
|
/**
|
588
|
-
*
|
589
|
-
*
|
585
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
586
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
590
587
|
*/
|
591
588
|
entityFqdn?: string;
|
592
589
|
/**
|
593
|
-
*
|
594
|
-
*
|
595
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
590
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
591
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
596
592
|
*/
|
597
593
|
slug?: string;
|
598
594
|
/** ID of the entity associated with the event. */
|
599
595
|
entityId?: string;
|
600
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
596
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
601
597
|
eventTime?: Date | null;
|
602
598
|
/**
|
603
599
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -607,12 +603,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
607
603
|
/** If present, indicates the action that triggered the event. */
|
608
604
|
originatedFrom?: string | null;
|
609
605
|
/**
|
610
|
-
* A sequence number
|
611
|
-
*
|
612
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
613
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
614
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
615
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
606
|
+
* 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.
|
607
|
+
* 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.
|
616
608
|
*/
|
617
609
|
entityEventSequence?: string | null;
|
618
610
|
}
|
@@ -640,7 +632,7 @@ export interface EntityUpdatedEvent {
|
|
640
632
|
currentEntityAsJson?: string;
|
641
633
|
}
|
642
634
|
export interface EntityDeletedEvent {
|
643
|
-
/** Entity that was deleted */
|
635
|
+
/** Entity that was deleted. */
|
644
636
|
deletedEntityAsJson?: string | null;
|
645
637
|
}
|
646
638
|
export interface ActionEvent {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"blog-v3-category-categories.types.js","sourceRoot":"","sources":["../../../../src/blog-v3-category-categories.types.ts"],"names":[],"mappings":"AAoNA,MAAM,CAAN,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,KAAL,KAAK,QAMhB;AA0TD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;
|
1
|
+
{"version":3,"file":"blog-v3-category-categories.types.js","sourceRoot":"","sources":["../../../../src/blog-v3-category-categories.types.ts"],"names":[],"mappings":"AAoNA,MAAM,CAAN,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,KAAL,KAAK,QAMhB;AA0TD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AAgOD,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"}
|
@@ -552,25 +552,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
552
552
|
updatedEvent?: EntityUpdatedEvent;
|
553
553
|
deletedEvent?: EntityDeletedEvent;
|
554
554
|
actionEvent?: ActionEvent;
|
555
|
-
/**
|
556
|
-
* Unique event ID.
|
557
|
-
* Allows clients to ignore duplicate webhooks.
|
558
|
-
*/
|
555
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
559
556
|
_id?: string;
|
560
557
|
/**
|
561
|
-
*
|
562
|
-
*
|
558
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
559
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
563
560
|
*/
|
564
561
|
entityFqdn?: string;
|
565
562
|
/**
|
566
|
-
*
|
567
|
-
*
|
568
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
563
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
564
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
569
565
|
*/
|
570
566
|
slug?: string;
|
571
567
|
/** ID of the entity associated with the event. */
|
572
568
|
entityId?: string;
|
573
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
569
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
574
570
|
eventTime?: Date | null;
|
575
571
|
/**
|
576
572
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -580,12 +576,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
580
576
|
/** If present, indicates the action that triggered the event. */
|
581
577
|
originatedFrom?: string | null;
|
582
578
|
/**
|
583
|
-
* A sequence number
|
584
|
-
*
|
585
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
586
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
587
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
588
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
579
|
+
* 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.
|
580
|
+
* 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.
|
589
581
|
*/
|
590
582
|
entityEventSequence?: string | null;
|
591
583
|
}
|
@@ -611,7 +603,7 @@ export interface EntityUpdatedEvent {
|
|
611
603
|
currentEntity?: string;
|
612
604
|
}
|
613
605
|
export interface EntityDeletedEvent {
|
614
|
-
/** Entity that was deleted */
|
606
|
+
/** Entity that was deleted. */
|
615
607
|
deletedEntity?: string | null;
|
616
608
|
}
|
617
609
|
export interface ActionEvent {
|
@@ -702,25 +694,21 @@ export interface BaseEventMetadata {
|
|
702
694
|
identity?: IdentificationData;
|
703
695
|
}
|
704
696
|
export interface EventMetadata extends BaseEventMetadata {
|
705
|
-
/**
|
706
|
-
* Unique event ID.
|
707
|
-
* Allows clients to ignore duplicate webhooks.
|
708
|
-
*/
|
697
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
709
698
|
_id?: string;
|
710
699
|
/**
|
711
|
-
*
|
712
|
-
*
|
700
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
701
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
713
702
|
*/
|
714
703
|
entityFqdn?: string;
|
715
704
|
/**
|
716
|
-
*
|
717
|
-
*
|
718
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
705
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
706
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
719
707
|
*/
|
720
708
|
slug?: string;
|
721
709
|
/** ID of the entity associated with the event. */
|
722
710
|
entityId?: string;
|
723
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
711
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
724
712
|
eventTime?: Date | null;
|
725
713
|
/**
|
726
714
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -730,12 +718,8 @@ export interface EventMetadata extends BaseEventMetadata {
|
|
730
718
|
/** If present, indicates the action that triggered the event. */
|
731
719
|
originatedFrom?: string | null;
|
732
720
|
/**
|
733
|
-
* A sequence number
|
734
|
-
*
|
735
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
736
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
737
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
738
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
721
|
+
* 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.
|
722
|
+
* 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.
|
739
723
|
*/
|
740
724
|
entityEventSequence?: string | null;
|
741
725
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"blog-v3-category-categories.universal.js","sourceRoot":"","sources":["../../../../src/blog-v3-category-categories.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,2BAA2B,MAAM,uCAAuC,CAAC;AACrF,aAAa;AACb,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,gCAAgC,EAAE,MAAM,2CAA2C,CAAC;AAC7F,OAAO,EAAE,gCAAgC,EAAE,MAAM,2CAA2C,CAAC;AAC7F,OAAO,EAAE,cAAc,EAAE,MAAM,kDAAkD,CAAC;AAuLlF,MAAM,CAAN,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,KAAL,KAAK,QAMhB;AA2TD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;
|
1
|
+
{"version":3,"file":"blog-v3-category-categories.universal.js","sourceRoot":"","sources":["../../../../src/blog-v3-category-categories.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,2BAA2B,MAAM,uCAAuC,CAAC;AACrF,aAAa;AACb,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,gCAAgC,EAAE,MAAM,2CAA2C,CAAC;AAC7F,OAAO,EAAE,gCAAgC,EAAE,MAAM,2CAA2C,CAAC;AAC7F,OAAO,EAAE,cAAc,EAAE,MAAM,kDAAkD,CAAC;AAuLlF,MAAM,CAAN,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,KAAL,KAAK,QAMhB;AA2TD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AA8ND,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;AAoID;;;;;;;;;;;;GAYG;AACH,MAAM,CAAC,KAAK,UAAU,cAAc,CAClC,QAA6C,EAC7C,OAA+B;IAE/B,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,cAAc,CAC5B,qCAAqC,CAAC;QACpC,QAAQ,EAAE,QAAQ;QAClB,SAAS,EAAE,OAAO,EAAE,SAAS;KAC9B,CAAC,EACF;QACE;YACE,WAAW,EAAE,gCAAgC;YAC7C,KAAK,EAAE;gBACL,EAAE,IAAI,EAAE,cAAc,EAAE;gBACxB,EAAE,IAAI,EAAE,2BAA2B,EAAE;aACtC;SACF;QACD;YACE,WAAW,EAAE,4BAA4B;YACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;SACzC;KACF,CACF,CAAC;IAEF,MAAM,OAAO,GAAG,2BAA2B,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;IAEpE,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,uCAAuC,CAC5C,cAAc,CAAC,MAAM,CAAC,IAAI,EAAE;YAC1B;gBACE,WAAW,EAAE,gCAAgC;gBAC7C,KAAK,EAAE;oBACL,EAAE,IAAI,EAAE,cAAc,EAAE;oBACxB,EAAE,IAAI,EAAE,2BAA2B,EAAE;iBACtC;aACF;YACD;gBACE,WAAW,EAAE,4BAA4B;gBACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;aACzC;SACF,CAAC,CACH,EAAE,QAAS,CAAC;IACf,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,iBAAiB,CACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE;gBACxB,QAAQ,EAAE,MAAM;gBAChB,SAAS,EAAE,gBAAgB;aAC5B;YACD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,UAAU,EAAE,SAAS,CAAC,CACxB,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AAcD;;;;;;;;;;;;GAYG;AACH,MAAM,CAAC,KAAK,UAAU,cAAc,CAClC,GAAW,EACX,QAAwB,EACxB,OAA+B;IAE/B,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,cAAc,CAC5B,qCAAqC,CAAC;QACpC,QAAQ,EAAE,EAAE,GAAG,QAAQ,EAAE,EAAE,EAAE,GAAG,EAAE;QAClC,SAAS,EAAE,OAAO,EAAE,SAAS;KAC9B,CAAC,EACF;QACE;YACE,WAAW,EAAE,gCAAgC;YAC7C,KAAK,EAAE;gBACL,EAAE,IAAI,EAAE,cAAc,EAAE;gBACxB,EAAE,IAAI,EAAE,2BAA2B,EAAE;aACtC;SACF;QACD;YACE,WAAW,EAAE,4BAA4B;YACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;SACzC;KACF,CACF,CAAC;IAEF,MAAM,OAAO,GAAG,2BAA2B,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;IAEpE,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,uCAAuC,CAC5C,cAAc,CAAC,MAAM,CAAC,IAAI,EAAE;YAC1B;gBACE,WAAW,EAAE,gCAAgC;gBAC7C,KAAK,EAAE;oBACL,EAAE,IAAI,EAAE,cAAc,EAAE;oBACxB,EAAE,IAAI,EAAE,2BAA2B,EAAE;iBACtC;aACF;YACD;gBACE,WAAW,EAAE,4BAA4B;gBACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;aACzC;SACF,CAAC,CACH,EAAE,QAAS,CAAC;IACf,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,iBAAiB,CACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE;YAC5C,wBAAwB,EAAE;gBACxB,aAAa,EAAE,MAAM;gBACrB,SAAS,EAAE,gBAAgB;aAC5B;YACD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,KAAK,EAAE,UAAU,EAAE,SAAS,CAAC,CAC/B,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AAmFD;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,CAAC,KAAK,UAAU,WAAW,CAC/B,UAAkB,EAClB,OAA4B;IAS5B,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,qCAAqC,CAAC;QACpD,UAAU,EAAE,UAAU;QACtB,SAAS,EAAE,OAAO,EAAE,SAAS;KAC9B,CAAC,CAAC;IAEH,MAAM,OAAO,GAAG,2BAA2B,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;IAEjE,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,uCAAuC,CAC5C,cAAc,CAAC,MAAM,CAAC,IAAI,EAAE;YAC1B;gBACE,WAAW,EAAE,gCAAgC;gBAC7C,KAAK,EAAE;oBACL,EAAE,IAAI,EAAE,cAAc,EAAE;oBACxB,EAAE,IAAI,EAAE,2BAA2B,EAAE;iBACtC;aACF;YACD;gBACE,WAAW,EAAE,4BAA4B;gBACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;aACzC;SACF,CAAC,CACF,CAAC;IACL,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,iBAAiB,CACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE;gBACxB,UAAU,EAAE,MAAM;gBAClB,SAAS,EAAE,gBAAgB;aAC5B;YACD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,YAAY,EAAE,SAAS,CAAC,CAC1B,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AAcD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAM,CAAC,KAAK,UAAU,iBAAiB,CACrC,IAAY,EACZ,OAAkC;IASlC,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,qCAAqC,CAAC;QACpD,IAAI,EAAE,IAAI;QACV,SAAS,EAAE,OAAO,EAAE,SAAS;QAC7B,QAAQ,EAAE,OAAO,EAAE,QAAQ;KAC5B,CAAC,CAAC;IAEH,MAAM,OAAO,GAAG,2BAA2B,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC;IAEvE,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,uCAAuC,CAC5C,cAAc,CAAC,MAAM,CAAC,IAAI,EAAE;YAC1B;gBACE,WAAW,EAAE,gCAAgC;gBAC7C,KAAK,EAAE;oBACL,EAAE,IAAI,EAAE,cAAc,EAAE;oBACxB,EAAE,IAAI,EAAE,2BAA2B,EAAE;iBACtC;aACF;YACD;gBACE,WAAW,EAAE,4BAA4B;gBACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;aACzC;SACF,CAAC,CACF,CAAC;IACL,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,iBAAiB,CACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE;gBACxB,IAAI,EAAE,MAAM;gBACZ,SAAS,EAAE,gBAAgB;gBAC3B,QAAQ,EAAE,eAAe;aAC1B;YACD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,MAAM,EAAE,SAAS,CAAC,CACpB,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AAoBD;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAM,CAAC,KAAK,UAAU,cAAc,CAClC,OAA+B;IAY/B,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,qCAAqC,CAAC;QACpD,MAAM,EAAE,OAAO,EAAE,MAAM;QACvB,SAAS,EAAE,OAAO,EAAE,SAAS;QAC7B,QAAQ,EAAE,OAAO,EAAE,QAAQ;KAC5B,CAAC,CAAC;IAEH,MAAM,OAAO,GAAG,2BAA2B,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;IAEpE,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,uCAAuC,CAC5C,cAAc,CAAC,MAAM,CAAC,IAAI,EAAE;YAC1B;gBACE,WAAW,EAAE,gCAAgC;gBAC7C,KAAK,EAAE;oBACL,EAAE,IAAI,EAAE,gBAAgB,EAAE;oBAC1B,EAAE,IAAI,EAAE,6BAA6B,EAAE;iBACxC;aACF;YACD;gBACE,WAAW,EAAE,4BAA4B;gBACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,uBAAuB,EAAE,CAAC;aAC3C;SACF,CAAC,CACF,CAAC;IACL,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,iBAAiB,CACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE;gBACxB,MAAM,EAAE,aAAa;gBACrB,SAAS,EAAE,gBAAgB;gBAC3B,QAAQ,EAAE,eAAe;aAC1B;YACD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,SAAS,CAAC,CACZ,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AAyBD;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,MAAM,UAAU,eAAe,CAC7B,OAAgC;IAEhC,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,OAAO,YAAY,CAKjB;QACA,IAAI,EAAE,KAAK,EAAE,OAA+B,EAAE,EAAE;YAC9C,MAAM,OAAO,GAAG,2BAA2B,CAAC,eAAe,CAAC;gBAC1D,GAAG,OAAO;gBACV,GAAG,CAAC,OAAO,IAAI,EAAE,CAAC;aACnB,CAAC,CAAC;YAEH,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;YAC5B,IAAI,CAAC;gBACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;gBACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;gBACjC,OAAO,MAAM,CAAC;YAChB,CAAC;YAAC,OAAO,GAAG,EAAE,CAAC;gBACb,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;gBAC5B,MAAM,GAAG,CAAC;YACZ,CAAC;QACH,CAAC;QACD,kBAAkB,EAAE,CAAC,KAAsC,EAAE,EAAE;YAC7D,MAAM,IAAI,GAAG,CAAC,KAAK,EAAE,OAAO,CAG3B,CAAC;YACF,OAAO,qCAAqC,CAAC;gBAC3C,GAAG,IAAI,EAAE,CAAC,CAAC,CAAC;gBACZ,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;aACjB,CAAC,CAAC;QACL,CAAC;QACD,mBAAmB,EAAE,CAAC,EAAE,IAAI,EAAyC,EAAE,EAAE;YACvE,MAAM,eAAe,GAAG,uCAAuC,CAC7D,cAAc,CAAC,IAAI,EAAE;gBACnB;oBACE,WAAW,EAAE,gCAAgC;oBAC7C,KAAK,EAAE;wBACL,EAAE,IAAI,EAAE,gBAAgB,EAAE;wBAC1B,EAAE,IAAI,EAAE,6BAA6B,EAAE;qBACxC;iBACF;gBACD;oBACE,WAAW,EAAE,4BAA4B;oBACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,uBAAuB,EAAE,CAAC;iBAC3C;aACF,CAAC,CACH,CAAC;YAEF,OAAO;gBACL,KAAK,EAAE,eAAe,EAAE,UAAU;gBAClC,cAAc,EAAE,eAAe,EAAE,cAAc;aAChD,CAAC;QACJ,CAAC;QACD,gBAAgB,EAAE,CAAC,GAAY,EAAE,EAAE;YACjC,MAAM,gBAAgB,GAAG,iBAAiB,CAAC,GAAG,EAAE;gBAC9C,sBAAsB,EAAE,EAAE;gBAC1B,wBAAwB,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;gBAC3C,uBAAuB,EAAE,KAAK;aAC/B,CAAC,CAAC;YAEH,MAAM,gBAAgB,CAAC;QACzB,CAAC;QACD,YAAY,EAAE,QAAQ;QACtB,mBAAmB,EAAE,EAAE;KACxB,CAAC,CAAC;AACL,CAAC;AA4ID;;;;;;;;;;GAUG;AACH,MAAM,CAAC,KAAK,UAAU,cAAc,CAAC,UAAkB;IACrD,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,qCAAqC,CAAC;QACpD,UAAU,EAAE,UAAU;KACvB,CAAC,CAAC;IAEH,MAAM,OAAO,GAAG,2BAA2B,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;IAEpE,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;IACnC,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,iBAAiB,CACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE,EAAE,UAAU,EAAE,MAAM,EAAE;YAChD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,YAAY,CAAC,CACf,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wix/auto_sdk_blog_categories",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.10",
|
4
4
|
"publishConfig": {
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
6
6
|
"access": "public"
|
@@ -28,8 +28,8 @@
|
|
28
28
|
"service-plugins"
|
29
29
|
],
|
30
30
|
"dependencies": {
|
31
|
-
"@wix/sdk-runtime": "^0.3.
|
32
|
-
"@wix/sdk-types": "^1.13.
|
31
|
+
"@wix/sdk-runtime": "^0.3.49",
|
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.blog.v3.category"
|
49
49
|
}
|
50
50
|
},
|
51
|
-
"falconPackageHash": "
|
51
|
+
"falconPackageHash": "1b197487a650fa9377ddf1eb1d92361b5125afe5b1f761d7e28695c0"
|
52
52
|
}
|