@reventlessdev/online-shop-dcb-ordering-spec 1.0.0-alpha.117 → 1.0.0-alpha.119
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/CHANGELOG.md +20 -0
- package/lib/bs/.compiler.log +2 -2
- package/lib/bs/compiler-info.json +1 -1
- package/lib/bs/src/Orders_ExtensionPoint-OrderingSpec.cmi +0 -0
- package/lib/bs/src/Orders_ExtensionPoint-OrderingSpec.cmj +0 -0
- package/lib/bs/src/Orders_ExtensionPoint-OrderingSpec.cmt +0 -0
- package/lib/bs/src/Orders_ExtensionPoint.ast +0 -0
- package/lib/bs/src/Orders_ExtensionPoint.res.mjs +14 -14
- package/lib/ocaml/.compiler.log +2 -2
- package/lib/ocaml/Orders_ExtensionPoint-OrderingSpec.cmi +0 -0
- package/lib/ocaml/Orders_ExtensionPoint-OrderingSpec.cmj +0 -0
- package/lib/ocaml/Orders_ExtensionPoint-OrderingSpec.cmt +0 -0
- package/lib/ocaml/Orders_ExtensionPoint.ast +0 -0
- package/package.json +5 -5
- package/src/Orders_ExtensionPoint.res.mjs +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 1.0.0-alpha.119 (2026-08-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @reventlessdev/online-shop-dcb-ordering-spec
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# 1.0.0-alpha.118 (2026-08-18)
|
|
15
|
+
|
|
16
|
+
* feat(sury)!: migrate to sury 11.0.0-rc.1 ([2cf8969](https://github.com/ReventlessDev/reventless-core/commit/2cf8969a222ce1b775563668a4126cb20611966c))
|
|
17
|
+
|
|
18
|
+
### BREAKING CHANGES
|
|
19
|
+
|
|
20
|
+
* sury is a direct dependency of the published packages and
|
|
21
|
+
its schema and serialization surface changed; consumers must migrate to
|
|
22
|
+
sury 11.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
6
26
|
# 1.0.0-alpha.117 (2026-08-18)
|
|
7
27
|
|
|
8
28
|
**Note:** Version bump only for package @reventlessdev/online-shop-dcb-ordering-spec
|
package/lib/bs/.compiler.log
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#Start(
|
|
2
|
-
#Done(
|
|
1
|
+
#Start(1787230535745)
|
|
2
|
+
#Done(1787230538545)
|
|
@@ -4,5 +4,5 @@
|
|
|
4
4
|
"bsc_hash": "75e3a59c95cc953608fd3dd6ea6ed68141bba4414a20a52f114261b8a48385fa",
|
|
5
5
|
"rescript_config_hash": "f47066f2b4f8eb28b32efbcdf7310223851f169828feb2e0a321e4ab58f6ae84",
|
|
6
6
|
"runtime_path": "/home/runner/work/reventless-core/reventless-core/node_modules/@rescript/runtime",
|
|
7
|
-
"generated_at": "
|
|
7
|
+
"generated_at": "1787230538550"
|
|
8
8
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
// Generated by ReScript, PLEASE EDIT WITH CARE
|
|
2
2
|
|
|
3
|
-
import * as
|
|
3
|
+
import * as Sury from "sury";
|
|
4
4
|
|
|
5
|
-
let
|
|
6
|
-
|
|
5
|
+
let commandSchema = Sury.$unit;
|
|
6
|
+
|
|
7
|
+
let eventSchema = Sury.union([
|
|
8
|
+
Sury.$schema(s => ({
|
|
7
9
|
TAG: "ItemOrdered",
|
|
8
|
-
productId: s.m(
|
|
9
|
-
orderId: s.m(
|
|
10
|
-
customerId: s.m(
|
|
10
|
+
productId: s.m(Sury.string),
|
|
11
|
+
orderId: s.m(Sury.string),
|
|
12
|
+
customerId: s.m(Sury.string)
|
|
11
13
|
})),
|
|
12
|
-
|
|
14
|
+
Sury.$schema(s => ({
|
|
13
15
|
TAG: "ItemOrderCancelled",
|
|
14
|
-
productId: s.m(
|
|
15
|
-
orderId: s.m(
|
|
16
|
+
productId: s.m(Sury.string),
|
|
17
|
+
orderId: s.m(Sury.string)
|
|
16
18
|
}))
|
|
17
19
|
]);
|
|
18
20
|
|
|
19
|
-
let
|
|
20
|
-
|
|
21
|
-
let commandSchema = S.unit;
|
|
21
|
+
let directiveSchema = Sury.$unit;
|
|
22
22
|
|
|
23
|
-
let
|
|
23
|
+
let name = "Ordering.Orders";
|
|
24
24
|
|
|
25
25
|
let moduleUrl = "@reventlessdev/online-shop-dcb-ordering-spec/src/Orders_ExtensionPoint.res.mjs";
|
|
26
26
|
|
|
@@ -31,4 +31,4 @@ export {
|
|
|
31
31
|
directiveSchema,
|
|
32
32
|
moduleUrl,
|
|
33
33
|
}
|
|
34
|
-
/*
|
|
34
|
+
/* commandSchema Not a pure module */
|
package/lib/ocaml/.compiler.log
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#Start(
|
|
2
|
-
#Done(
|
|
1
|
+
#Start(1787230535745)
|
|
2
|
+
#Done(1787230538545)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reventlessdev/online-shop-dcb-ordering-spec",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.119",
|
|
4
4
|
"description": "Online Shop DCB example — Ordering plugin specification (extension point specs)",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"sury": "
|
|
8
|
-
"@reventlessdev/reventless-spec": "3.0.0-alpha.
|
|
7
|
+
"sury": "11.0.0-rc.1",
|
|
8
|
+
"@reventlessdev/reventless-spec": "3.0.0-alpha.119"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"rescript": "12.3.0",
|
|
12
|
-
"sury-ppx": "11.0.0-
|
|
13
|
-
"@reventlessdev/reventless-ppx": "1.0.0-alpha.
|
|
12
|
+
"sury-ppx": "11.0.0-rc.1",
|
|
13
|
+
"@reventlessdev/reventless-ppx": "1.0.0-alpha.72"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
16
|
"rescript": "12.3.0"
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
// Generated by ReScript, PLEASE EDIT WITH CARE
|
|
2
2
|
|
|
3
|
-
import * as
|
|
3
|
+
import * as Sury from "sury";
|
|
4
4
|
|
|
5
|
-
let
|
|
6
|
-
|
|
5
|
+
let commandSchema = Sury.$unit;
|
|
6
|
+
|
|
7
|
+
let eventSchema = Sury.union([
|
|
8
|
+
Sury.$schema(s => ({
|
|
7
9
|
TAG: "ItemOrdered",
|
|
8
|
-
productId: s.m(
|
|
9
|
-
orderId: s.m(
|
|
10
|
-
customerId: s.m(
|
|
10
|
+
productId: s.m(Sury.string),
|
|
11
|
+
orderId: s.m(Sury.string),
|
|
12
|
+
customerId: s.m(Sury.string)
|
|
11
13
|
})),
|
|
12
|
-
|
|
14
|
+
Sury.$schema(s => ({
|
|
13
15
|
TAG: "ItemOrderCancelled",
|
|
14
|
-
productId: s.m(
|
|
15
|
-
orderId: s.m(
|
|
16
|
+
productId: s.m(Sury.string),
|
|
17
|
+
orderId: s.m(Sury.string)
|
|
16
18
|
}))
|
|
17
19
|
]);
|
|
18
20
|
|
|
19
|
-
let
|
|
20
|
-
|
|
21
|
-
let commandSchema = S.unit;
|
|
21
|
+
let directiveSchema = Sury.$unit;
|
|
22
22
|
|
|
23
|
-
let
|
|
23
|
+
let name = "Ordering.Orders";
|
|
24
24
|
|
|
25
25
|
let moduleUrl = "@reventlessdev/online-shop-dcb-ordering-spec/src/Orders_ExtensionPoint.res.mjs";
|
|
26
26
|
|
|
@@ -31,4 +31,4 @@ export {
|
|
|
31
31
|
directiveSchema,
|
|
32
32
|
moduleUrl,
|
|
33
33
|
}
|
|
34
|
-
/*
|
|
34
|
+
/* commandSchema Not a pure module */
|