@wix/papyrus 1.0.13 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/papyrus",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"schemas"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@wix/auto_sdk_papyrus_templates": "1.0.
|
|
25
|
+
"@wix/auto_sdk_papyrus_templates": "1.0.1",
|
|
26
26
|
"@wix/papyrus_documents": "^1.0.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"types": "./build/es/schemas.d.mts"
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
|
-
"falconPackageHash": "
|
|
57
|
+
"falconPackageHash": "a94fd8246c3605c02ede54221f368d8307dc998466a772568d55d0bc"
|
|
58
58
|
}
|
|
@@ -2334,7 +2334,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
|
|
|
2334
2334
|
/** If present, indicates the action that triggered the event. */
|
|
2335
2335
|
originatedFrom?: string | null;
|
|
2336
2336
|
/**
|
|
2337
|
-
* 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
|
|
2337
|
+
* 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.
|
|
2338
2338
|
* 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.
|
|
2339
2339
|
*/
|
|
2340
2340
|
entityEventSequence?: string | null;
|
|
@@ -2511,7 +2511,7 @@ interface EventMetadata$1 extends BaseEventMetadata$1 {
|
|
|
2511
2511
|
/** If present, indicates the action that triggered the event. */
|
|
2512
2512
|
originatedFrom?: string | null;
|
|
2513
2513
|
/**
|
|
2514
|
-
* 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
|
|
2514
|
+
* 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.
|
|
2515
2515
|
* 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.
|
|
2516
2516
|
*/
|
|
2517
2517
|
entityEventSequence?: string | null;
|
|
@@ -1512,7 +1512,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
1512
1512
|
/** If present, indicates the action that triggered the event. */
|
|
1513
1513
|
originatedFrom?: string | null;
|
|
1514
1514
|
/**
|
|
1515
|
-
* 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
|
|
1515
|
+
* 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.
|
|
1516
1516
|
* 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.
|
|
1517
1517
|
*/
|
|
1518
1518
|
entityEventSequence?: string | null;
|