@reventlessdev/online-shop-hybrid-ordering 1.0.0-alpha.100

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. package/CHANGELOG.md +904 -0
  2. package/LICENSE +202 -0
  3. package/__mocks__/emptyModule.js +1 -0
  4. package/package.json +57 -0
  5. package/rescript.json +37 -0
  6. package/src/CatalogProduct/StateChangeSlice/SyncCatalogProduct.res +29 -0
  7. package/src/CatalogProduct/StateChangeSlice/SyncCatalogProduct.res.mjs +71 -0
  8. package/src/CatalogProduct/StateChangeSlice/SyncCatalogProduct_Behavior.res +27 -0
  9. package/src/CatalogProduct/StateChangeSlice/SyncCatalogProduct_Behavior.res.mjs +73 -0
  10. package/src/CatalogProduct/StateViewSliceStream/AvailableProducts.res +15 -0
  11. package/src/CatalogProduct/StateViewSliceStream/AvailableProducts.res.mjs +69 -0
  12. package/src/CatalogProduct/StateViewSliceStream/AvailableProducts_Projection.res +8 -0
  13. package/src/CatalogProduct/StateViewSliceStream/AvailableProducts_Projection.res.mjs +38 -0
  14. package/src/Customer/Aggregate/Customer.res +24 -0
  15. package/src/Customer/Aggregate/Customer.res.mjs +64 -0
  16. package/src/Customer/Aggregate/Customer_Behavior.res +41 -0
  17. package/src/Customer/Aggregate/Customer_Behavior.res.mjs +143 -0
  18. package/src/Customer/ReadModelStream/Customers.res +15 -0
  19. package/src/Customer/ReadModelStream/Customers.res.mjs +44 -0
  20. package/src/Customer/ReadModelStream/Customers_Projections.res +78 -0
  21. package/src/Customer/ReadModelStream/Customers_Projections.res.mjs +153 -0
  22. package/src/Extension/Products_Extension.res +23 -0
  23. package/src/Extension/Products_Extension.res.mjs +43 -0
  24. package/src/ExtensionPoint/Orders_ExtensionPointMapping.res +33 -0
  25. package/src/ExtensionPoint/Orders_ExtensionPointMapping.res.mjs +82 -0
  26. package/src/Order/AutomationSlice/AutoShipOrder.res +19 -0
  27. package/src/Order/AutomationSlice/AutoShipOrder.res.mjs +42 -0
  28. package/src/Order/AutomationSlice/AutoShipOrder_Automation.res +37 -0
  29. package/src/Order/AutomationSlice/AutoShipOrder_Automation.res.mjs +101 -0
  30. package/src/Order/OutboundTranslationSlice/SendOrderConfirmation.res +22 -0
  31. package/src/Order/OutboundTranslationSlice/SendOrderConfirmation.res.mjs +45 -0
  32. package/src/Order/OutboundTranslationSlice/SendOrderConfirmation_Translation.res +24 -0
  33. package/src/Order/OutboundTranslationSlice/SendOrderConfirmation_Translation.res.mjs +46 -0
  34. package/src/Order/StateChangeSlice/CancelOrder.res +29 -0
  35. package/src/Order/StateChangeSlice/CancelOrder.res.mjs +75 -0
  36. package/src/Order/StateChangeSlice/CancelOrder_Behavior.res +35 -0
  37. package/src/Order/StateChangeSlice/CancelOrder_Behavior.res.mjs +110 -0
  38. package/src/Order/StateChangeSlice/PlaceOrder.res +28 -0
  39. package/src/Order/StateChangeSlice/PlaceOrder.res.mjs +63 -0
  40. package/src/Order/StateChangeSlice/PlaceOrder_Behavior.res +39 -0
  41. package/src/Order/StateChangeSlice/PlaceOrder_Behavior.res.mjs +70 -0
  42. package/src/Order/StateChangeSlice/RefundOrder.res +27 -0
  43. package/src/Order/StateChangeSlice/RefundOrder.res.mjs +59 -0
  44. package/src/Order/StateChangeSlice/RefundOrder_Behavior.res +26 -0
  45. package/src/Order/StateChangeSlice/RefundOrder_Behavior.res.mjs +77 -0
  46. package/src/Order/StateChangeSlice/ShipOrder.res +23 -0
  47. package/src/Order/StateChangeSlice/ShipOrder.res.mjs +56 -0
  48. package/src/Order/StateChangeSlice/ShipOrder_Behavior.res +26 -0
  49. package/src/Order/StateChangeSlice/ShipOrder_Behavior.res.mjs +73 -0
  50. package/src/Order/StateViewSliceStream/Orders.res +24 -0
  51. package/src/Order/StateViewSliceStream/Orders.res.mjs +80 -0
  52. package/src/Order/StateViewSliceStream/Orders_Projection.res +10 -0
  53. package/src/Order/StateViewSliceStream/Orders_Projection.res.mjs +52 -0
  54. package/src/Plugin.res +74 -0
  55. package/src/Plugin.res.mjs +304 -0
  56. package/src/Service/EmailService.res +3 -0
  57. package/src/Service/EmailService.res.mjs +11 -0
  58. package/src/plugin.json +1 -0
  59. package/tests/CatalogProduct/StateChangeSlice/SyncCatalogProduct_GWT.res +27 -0
  60. package/tests/CatalogProduct/StateChangeSlice/SyncCatalogProduct_GWT.res.mjs +109 -0
  61. package/tests/CatalogProduct/StateViewSliceStream/AvailableProducts_GWT.res +15 -0
  62. package/tests/CatalogProduct/StateViewSliceStream/AvailableProducts_GWT.res.mjs +93 -0
  63. package/tests/Customer/Aggregate/Customer_GWT.res +63 -0
  64. package/tests/Customer/Aggregate/Customer_GWT.res.mjs +153 -0
  65. package/tests/Customer/ReadModelStream/Customers_GWT.res +84 -0
  66. package/tests/Customer/ReadModelStream/Customers_GWT.res.mjs +90 -0
  67. package/tests/Extension/Products_Extension_GWT.res +23 -0
  68. package/tests/Extension/Products_Extension_GWT.res.mjs +108 -0
  69. package/tests/ExtensionPoint/Orders_ExtensionPointMapping_GWT.res +23 -0
  70. package/tests/ExtensionPoint/Orders_ExtensionPointMapping_GWT.res.mjs +139 -0
  71. package/tests/Flow/OrderingFlow_GWT.res +69 -0
  72. package/tests/Flow/OrderingFlow_GWT.res.mjs +184 -0
  73. package/tests/Order/AutomationSlice/AutoShipOrder_GWT.res +55 -0
  74. package/tests/Order/AutomationSlice/AutoShipOrder_GWT.res.mjs +133 -0
  75. package/tests/Order/OutboundTranslationSlice/SendOrderConfirmation_GWT.res +30 -0
  76. package/tests/Order/OutboundTranslationSlice/SendOrderConfirmation_GWT.res.mjs +102 -0
  77. package/tests/Order/StateChangeSlice/CancelOrder_GWT.res +45 -0
  78. package/tests/Order/StateChangeSlice/CancelOrder_GWT.res.mjs +131 -0
  79. package/tests/Order/StateChangeSlice/PlaceOrder_GWT.res +33 -0
  80. package/tests/Order/StateChangeSlice/PlaceOrder_GWT.res.mjs +139 -0
  81. package/tests/Order/StateChangeSlice/RefundOrder_GWT.res +31 -0
  82. package/tests/Order/StateChangeSlice/RefundOrder_GWT.res.mjs +100 -0
  83. package/tests/Order/StateChangeSlice/ShipOrder_GWT.res +27 -0
  84. package/tests/Order/StateChangeSlice/ShipOrder_GWT.res.mjs +91 -0
  85. package/tests/Order/StateViewSliceStream/Orders_GWT.res +36 -0
  86. package/tests/Order/StateViewSliceStream/Orders_GWT.res.mjs +114 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,904 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # 1.0.0-alpha.100 (2026-06-29)
7
+
8
+ ### Features
9
+
10
+ * external-system boxes for translation slices (Event Graph data) ([3f8ad39](https://github.com/ReventlessDev/reventless-core/commit/3f8ad39b78a3cb1182d59a0e1fb203b7dcb7379b))
11
+
12
+
13
+ # 1.0.0-alpha.99 (2026-06-27)
14
+
15
+ ### Features
16
+
17
+ * verify category exists in AddProduct via cross-partition DCB read ([074d4fa](https://github.com/ReventlessDev/reventless-core/commit/074d4faecf694164f2e0c789c4d94cae402b03e1))
18
+
19
+
20
+ # 1.0.0-alpha.98 (2026-06-22)
21
+
22
+ ### Bug Fixes
23
+
24
+ * **ppx:** compose [@ref](https://github.com/ref) with the DCB tag key for plural *Ids fields ([cba2193](https://github.com/ReventlessDev/reventless-core/commit/cba2193d1c377c1bf91dee1f01da2a91a82ab488))
25
+ ### Features
26
+
27
+ * **ordering-example:** pin PlaceOrder product picker to same-plugin AvailableProducts ([a1b78d1](https://github.com/ReventlessDev/reventless-core/commit/a1b78d17fe4e65d634429f02cf7c7b7b275a9bf8))
28
+
29
+
30
+ # 1.0.0-alpha.97 (2026-06-21)
31
+
32
+ ### Features
33
+
34
+ * **dcb:** cross-partition secondary-tag reads (Phase 7) ([9e1f8b3](https://github.com/ReventlessDev/reventless-core/commit/9e1f8b3595004b92148dd053aae380078baa42a3))
35
+
36
+
37
+ # 1.0.0-alpha.96 (2026-06-21)
38
+
39
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
40
+
41
+
42
+
43
+
44
+
45
+ # 1.0.0-alpha.95 (2026-06-21)
46
+
47
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
48
+
49
+
50
+
51
+
52
+
53
+ # 1.0.0-alpha.94 (2026-06-20)
54
+
55
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
56
+
57
+
58
+
59
+
60
+
61
+ # 1.0.0-alpha.93 (2026-06-20)
62
+
63
+ ### Bug Fixes
64
+
65
+ * **dcb:** scope DynamoDB consistency fences to the partition tag ([2ecbd85](https://github.com/ReventlessDev/reventless-core/commit/2ecbd8599a6466c3a25299f4506dd5c5993367a8))
66
+ * **packaging:** publish online-shop-hybrid examples source-only via .npmignore ([a2b3cbf](https://github.com/ReventlessDev/reventless-core/commit/a2b3cbf6067b006647aefee2bf1f4daf182c98e9))
67
+
68
+
69
+ # 1.0.0-alpha.92 (2026-06-20)
70
+
71
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
72
+
73
+
74
+
75
+
76
+
77
+ # 1.0.0-alpha.91 (2026-06-20)
78
+
79
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
80
+
81
+
82
+
83
+
84
+
85
+ # 1.0.0-alpha.90 (2026-06-20)
86
+
87
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
88
+
89
+
90
+
91
+
92
+
93
+ # 1.0.0-alpha.89 (2026-06-18)
94
+
95
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
96
+
97
+
98
+
99
+
100
+
101
+ # 1.0.0-alpha.88 (2026-06-18)
102
+
103
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
104
+
105
+
106
+
107
+
108
+
109
+ # 1.0.0-alpha.87 (2026-06-18)
110
+
111
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
112
+
113
+
114
+
115
+
116
+
117
+ # 1.0.0-alpha.86 (2026-06-18)
118
+
119
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
120
+
121
+
122
+
123
+
124
+
125
+ # 1.0.0-alpha.85 (2026-06-17)
126
+
127
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
128
+
129
+
130
+
131
+
132
+
133
+ # 1.0.0-alpha.84 (2026-06-17)
134
+
135
+ ### Bug Fixes
136
+
137
+ * **packaging:** executable ppx binaries + promote phantom deps for standalone installs ([9b6bea2](https://github.com/ReventlessDev/reventless-core/commit/9b6bea24570b0b0654c825d560ef781c0295512a))
138
+ * feat(example)!: type the directive channel in the hybrid example ([7ee7527](https://github.com/ReventlessDev/reventless-core/commit/7ee75275a01808c83df3e5c4f309c1be851bcffb))
139
+ * feat!: rename Call directive to HandleDirective for naming consistency ([3fdf84a](https://github.com/ReventlessDev/reventless-core/commit/3fdf84a503b8ee9b07d0774e34c911f5d90d45d0))
140
+ * feat!: harmonize plugin make() across aggregate/DCB/hybrid; AutoUI default-on ([6f3b95e](https://github.com/ReventlessDev/reventless-core/commit/6f3b95e6aa8a136c6e837346c41a3a4dff0f9405))
141
+ ### Features
142
+
143
+ * **gwt:** bidirectional Delegate_GWT drivers with direction-named verbs ([bb5de9e](https://github.com/ReventlessDev/reventless-core/commit/bb5de9eff2b06cedd72bc6c70747c8159937044e))
144
+
145
+ ### BREAKING CHANGES
146
+
147
+ * `Products_ExtensionPoint.directive` and
148
+ `Orders_ExtensionPoint.directive` are no longer `unit`. Out-of-tree
149
+ consumers that declared `type directive = unit` and then referenced it
150
+ in code need a one-line rename. In-repo callers are updated.
151
+ * out-of-tree plugins emitting Call(handler, msg) from
152
+ commandAction / eventAction / incomingCommandAction / outgoingCommandAction
153
+ must rename to HandleDirective(handler, directive). The callHandler<'msg>
154
+ type alias is now directiveHandler<'directive>.
155
+
156
+ Plan: docs/plans/done/directive-naming-consistency.md
157
+ * makeAutoUIManifest signature dropped ~aggregates and
158
+ ~readModels; replaced with ~pluginStructure. Hand-written Plugin.res files
159
+ that pass ~uiBundleUrl to plugin.make must drop the arg and rely on the
160
+ generator-emitted env var read.
161
+
162
+
163
+
164
+ # 1.0.0-alpha.83 (2026-06-12)
165
+
166
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
167
+
168
+
169
+
170
+
171
+
172
+ # 1.0.0-alpha.82 (2026-06-12)
173
+
174
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
175
+
176
+
177
+
178
+
179
+
180
+ # 1.0.0-alpha.81 (2026-06-11)
181
+
182
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
183
+
184
+
185
+
186
+
187
+
188
+ # 1.0.0-alpha.80 (2026-06-10)
189
+
190
+ ### Bug Fixes
191
+
192
+ * **examples:** restore publishing of online-shop-hybrid packages ([8fa95d3](https://github.com/ReventlessDev/reventless-core/commit/8fa95d3e6de4f10284afdde4aa24a10dcffe202b))
193
+ * refactor(reventless-local)!: rename reventless-in-memory to reventless-local ([f36e17c](https://github.com/ReventlessDev/reventless-core/commit/f36e17c407714ab9740393fac96865d6a5c143c9))
194
+ ### Features
195
+
196
+ * **reventless-core:** extension-point source events in pluginStructure ([9c47a0e](https://github.com/ReventlessDev/reventless-core/commit/9c47a0ea9a1643ac12fbe8dc1c43244e580de024))
197
+
198
+ ### BREAKING CHANGES
199
+
200
+ * @reventlessdev/reventless-in-memory -> @reventlessdev/reventless-local;
201
+ namespace ReventlessInMemory -> ReventlessLocal.
202
+
203
+
204
+
205
+ # 1.0.0-alpha.79 (2026-06-09)
206
+
207
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
208
+
209
+
210
+
211
+
212
+
213
+ # 1.0.0-alpha.78 (2026-06-08)
214
+
215
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
216
+
217
+
218
+
219
+
220
+
221
+ # 1.0.0-alpha.77 (2026-06-08)
222
+
223
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
224
+
225
+
226
+
227
+
228
+
229
+ # 1.0.0-alpha.76 (2026-06-08)
230
+
231
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
232
+
233
+
234
+
235
+
236
+
237
+ # 1.0.0-alpha.75 (2026-06-08)
238
+
239
+ ### Features
240
+
241
+ * **reventless-core:** extension-point source events in pluginStructure ([1e1d925](https://github.com/ReventlessDev/reventless-core/commit/1e1d9258b5a228b9fdfa003348a5367281573b3c))
242
+
243
+
244
+ # 1.0.0-alpha.74 (2026-06-07)
245
+
246
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
247
+
248
+
249
+
250
+
251
+
252
+ # 1.0.0-alpha.73 (2026-06-06)
253
+
254
+ ### Bug Fixes
255
+
256
+ * **examples:** restore publishing of online-shop-hybrid packages ([8cc6b9d](https://github.com/ReventlessDev/reventless-core/commit/8cc6b9d934cc96e0841f4f2802399f7f75e49d71))
257
+ * refactor(reventless-local)!: rename reventless-in-memory to reventless-local ([966855f](https://github.com/ReventlessDev/reventless-core/commit/966855fd31e518d56a381bf40204735809cead15))
258
+
259
+ ### BREAKING CHANGES
260
+
261
+ * @reventlessdev/reventless-in-memory -> @reventlessdev/reventless-local;
262
+ namespace ReventlessInMemory -> ReventlessLocal.
263
+
264
+
265
+
266
+ # 1.0.0-alpha.72 (2026-06-04)
267
+
268
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
269
+
270
+
271
+
272
+
273
+
274
+ # 1.0.0-alpha.71 (2026-06-04)
275
+
276
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
277
+
278
+
279
+
280
+
281
+
282
+ # 1.0.0-alpha.70 (2026-06-04)
283
+
284
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
285
+
286
+
287
+
288
+
289
+
290
+ # 1.0.0-alpha.69 (2026-06-04)
291
+
292
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
293
+
294
+
295
+
296
+
297
+
298
+ # 1.0.0-alpha.68 (2026-06-04)
299
+
300
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
301
+
302
+
303
+
304
+
305
+
306
+ # 1.0.0-alpha.67 (2026-05-28)
307
+
308
+ ### Bug Fixes
309
+
310
+ * **example:** suppress customerId auto-tag on PlaceOrder command ([a4d8191](https://github.com/ReventlessDev/reventless-core/commit/a4d819197fef619a7e15f305bcdbe4341046ee4c))
311
+
312
+
313
+ # 1.0.0-alpha.66 (2026-05-28)
314
+
315
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
316
+
317
+
318
+
319
+
320
+
321
+ # 1.0.0-alpha.65 (2026-05-27)
322
+
323
+ ### Bug Fixes
324
+
325
+ * **framework:** wire plugin ExtensionPoints into EventCollector runtime context ([2ce8dff](https://github.com/ReventlessDev/reventless-core/commit/2ce8dff426b576811a28c012934d77ecba8a33c0))
326
+
327
+
328
+ # 1.0.0-alpha.64 (2026-05-27)
329
+
330
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
331
+
332
+
333
+
334
+
335
+
336
+ # 1.0.0-alpha.63 (2026-05-27)
337
+
338
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
339
+
340
+
341
+
342
+
343
+
344
+ # 1.0.0-alpha.62 (2026-05-27)
345
+
346
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
347
+
348
+
349
+
350
+
351
+
352
+ # 1.0.0-alpha.61 (2026-05-26)
353
+
354
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
355
+
356
+
357
+
358
+
359
+
360
+ # 1.0.0-alpha.60 (2026-05-26)
361
+
362
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
363
+
364
+
365
+
366
+
367
+
368
+ # 1.0.0-alpha.59 (2026-05-25)
369
+
370
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
371
+
372
+
373
+
374
+
375
+
376
+ # 1.0.0-alpha.58 (2026-05-25)
377
+
378
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
379
+
380
+
381
+
382
+
383
+
384
+ # 1.0.0-alpha.57 (2026-05-25)
385
+
386
+ ### Features
387
+
388
+ * **examples:** DCB PlaceOrder availability check, idempotency guards, and convention cleanup ([c5b4e3e](https://github.com/ReventlessDev/reventless-core/commit/c5b4e3e6a45faf75c1cc0469290df6926834558d))
389
+ * **readmodel:** add ReadModelStream variant for live-updating read models ([3d816fb](https://github.com/ReventlessDev/reventless-core/commit/3d816fb50e0e66693ae4a0a626f4d5b4e496c3b1))
390
+
391
+
392
+ # 1.0.0-alpha.56 (2026-05-21)
393
+
394
+ ### Features
395
+
396
+ * **gwt:** add Delegate_GWT + Flow_GWT cross-slice/cross-plugin test kinds ([19f89a6](https://github.com/ReventlessDev/reventless-core/commit/19f89a6baba3acddb683c81952692fb1a695681d))
397
+
398
+
399
+ # 1.0.0-alpha.55 (2026-05-21)
400
+
401
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
402
+
403
+
404
+
405
+
406
+
407
+ # 1.0.0-alpha.54 (2026-05-21)
408
+
409
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
410
+
411
+
412
+
413
+
414
+
415
+ # 1.0.0-alpha.53 (2026-05-20)
416
+
417
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
418
+
419
+
420
+
421
+
422
+
423
+ # 1.0.0-alpha.52 (2026-05-20)
424
+
425
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
426
+
427
+
428
+
429
+
430
+
431
+ # 1.0.0-alpha.51 (2026-05-20)
432
+
433
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
434
+
435
+
436
+
437
+
438
+
439
+ # 1.0.0-alpha.50 (2026-05-19)
440
+
441
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
442
+
443
+
444
+
445
+
446
+
447
+ # 1.0.0-alpha.49 (2026-05-19)
448
+
449
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
450
+
451
+
452
+
453
+
454
+
455
+ # 1.0.0-alpha.48 (2026-05-19)
456
+
457
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
458
+
459
+
460
+
461
+
462
+
463
+ # 1.0.0-alpha.47 (2026-05-19)
464
+
465
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
466
+
467
+
468
+
469
+
470
+
471
+ # 1.0.0-alpha.46 (2026-05-18)
472
+
473
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
474
+
475
+
476
+
477
+
478
+
479
+ # 1.0.0-alpha.45 (2026-05-18)
480
+
481
+ ### Features
482
+
483
+ * **plugin:** wire end-to-end user-extension dispatch through plugin EventCollectors ([f616abe](https://github.com/ReventlessDev/reventless-core/commit/f616abe169289f836f8e538b5419cb82cda886d7))
484
+
485
+
486
+ # 1.0.0-alpha.44 (2026-05-17)
487
+
488
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
489
+
490
+
491
+
492
+
493
+
494
+ # 1.0.0-alpha.43 (2026-05-17)
495
+
496
+ ### Bug Fixes
497
+
498
+ * **deps:** pin sury-ppx to 11.0.0-alpha.2 to prevent prerelease drift ([c9d05fe](https://github.com/ReventlessDev/reventless-core/commit/c9d05fe5118a9c0442ca3e071f2606b3a139fc81))
499
+
500
+
501
+ # 1.0.0-alpha.42 (2026-05-17)
502
+
503
+ ### Bug Fixes
504
+
505
+ * **aws:** wire schedulerRoleArn through admin registers; default heartbeat to 5 min ([f9580a2](https://github.com/ReventlessDev/reventless-core/commit/f9580a2fc7f85a67747ccaab87358f303bd90ab9))
506
+
507
+
508
+ # 1.0.0-alpha.41 (2026-05-17)
509
+
510
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
511
+
512
+
513
+
514
+
515
+
516
+ # 1.0.0-alpha.40 (2026-05-17)
517
+
518
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
519
+
520
+
521
+
522
+
523
+
524
+ # 1.0.0-alpha.39 (2026-05-17)
525
+
526
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
527
+
528
+
529
+
530
+
531
+
532
+ # 1.0.0-alpha.38 (2026-05-16)
533
+
534
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
535
+
536
+
537
+
538
+
539
+
540
+ # 1.0.0-alpha.37 (2026-05-16)
541
+
542
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
543
+
544
+
545
+
546
+
547
+
548
+ # 1.0.0-alpha.36 (2026-05-16)
549
+
550
+ ### Bug Fixes
551
+
552
+ * **example:** hide hybrid AvailableProducts StateViewSlice from AutoUI ([a7a5d4f](https://github.com/ReventlessDev/reventless-core/commit/a7a5d4f0d823342dc26cf588f063cd662f20246a))
553
+ ### Features
554
+
555
+ * **ppx:** add @[@reventless](https://github.com/reventless).visibility to hide components from AutoUI ([bd302cf](https://github.com/ReventlessDev/reventless-core/commit/bd302cfc5bd5d4dfe50c8e1bf8596ab67e36c74e))
556
+
557
+
558
+ # 1.0.0-alpha.35 (2026-05-16)
559
+
560
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
561
+
562
+
563
+
564
+
565
+
566
+ # 1.0.0-alpha.34 (2026-05-16)
567
+
568
+ ### Features
569
+
570
+ * **examples:** annotate Order [@allowed](https://github.com/allowed)States + [@status](https://github.com/status) across online-shop examples ([b63a6c1](https://github.com/ReventlessDev/reventless-core/commit/b63a6c184e74443df21cb5abdefdafca5a143668))
571
+
572
+
573
+ # 1.0.0-alpha.33 (2026-05-14)
574
+
575
+ ### Features
576
+
577
+ * **ppx:** inline-spec walk + Spec module types require authorization ([7db9ec0](https://github.com/ReventlessDev/reventless-core/commit/7db9ec0f186578ce0088973dba22da9257be6a61))
578
+
579
+
580
+ # 1.0.0-alpha.32 (2026-05-13)
581
+
582
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
583
+
584
+
585
+
586
+
587
+
588
+ # 1.0.0-alpha.31 (2026-05-10)
589
+
590
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
591
+
592
+
593
+
594
+
595
+
596
+ # 1.0.0-alpha.30 (2026-05-05)
597
+
598
+ ### Features
599
+
600
+ * **dcb:** allow plural *Ids field names with shared singular tag key ([19a5167](https://github.com/ReventlessDev/reventless-core/commit/19a5167ed904c6152c137af738f869ee4d26287e))
601
+ * **extension:** add PublishStateChangeSliceCommand for slice delegates ([0500b79](https://github.com/ReventlessDev/reventless-core/commit/0500b79d80632611e52ff0565e3e04472330a51e))
602
+
603
+
604
+ # 1.0.0-alpha.29 (2026-05-04)
605
+
606
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
607
+
608
+
609
+
610
+
611
+
612
+ # 1.0.0-alpha.28 (2026-05-03)
613
+
614
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
615
+
616
+
617
+
618
+
619
+
620
+ # 1.0.0-alpha.27 (2026-05-03)
621
+
622
+ ### Bug Fixes
623
+
624
+ * **examples:** Orders EP Delegate.name must match DCB log convention ([1f6c094](https://github.com/ReventlessDev/reventless-core/commit/1f6c09494bf295ae4743cdedc01c16f97e9ff8d6))
625
+
626
+
627
+ # 1.0.0-alpha.26 (2026-05-03)
628
+
629
+ ### Bug Fixes
630
+
631
+ * **examples:** hybrid PlaceOrder must discriminate OrderPlaced by orderId ([ad25e17](https://github.com/ReventlessDev/reventless-core/commit/ad25e17f94c7217f5cb0fa713b85121eb43bfc11))
632
+ * three follow-ups from the GWT-coverage migration ([3be14a4](https://github.com/ReventlessDev/reventless-core/commit/3be14a4cab276a989ae4a93aa650a6086ec118cf))
633
+ * feat(ppx)!: add @@reventless.mappings/extension/task; collapse AutomationSlice.Make to 2 args ([c0268ac](https://github.com/ReventlessDev/reventless-core/commit/c0268ac42c1c887fe25467af61b412ab2e27a5a7))
634
+ ### Features
635
+
636
+ * **ppx,examples:** full GWT coverage for example plugins ([9331744](https://github.com/ReventlessDev/reventless-core/commit/9331744d232802d996f3897d7eca6e8c6b735f68))
637
+
638
+ ### BREAKING CHANGES
639
+
640
+ * Platform.AutomationSlice.Make is now 2-arg (Spec, Automation).
641
+ External callers must either rerun generate-plugin or merge their _Mappings
642
+ contents into _Automation (or add the same two-line bridge).
643
+
644
+ Verified: zero warnings, 1174/1175 tests pass — the single failing test
645
+ (OrderingE2ETest "after syncing missing product, PlaceOrder succeeds") was
646
+ confirmed pre-existing on alpha (the known testPromise concurrency race).
647
+
648
+
649
+
650
+ # 1.0.0-alpha.25 (2026-04-28)
651
+
652
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
653
+
654
+
655
+
656
+
657
+
658
+ # 1.0.0-alpha.24 (2026-04-27)
659
+
660
+ ### Bug Fixes
661
+
662
+ * **spec:** regenerate plugins; simplify codegen, drop Maker suffix ([8d81302](https://github.com/ReventlessDev/reventless-core/commit/8d81302a9dc3403f98298ff69b19901d625dff7e))
663
+
664
+
665
+ # 1.0.0-alpha.23 (2026-04-26)
666
+
667
+ * refactor(automation)!: drop tagSet and toTags from Mapping API ([c9cd7f2](https://github.com/ReventlessDev/reventless-core/commit/c9cd7f2a1c1758990cb3d83a6876348477fe89d6))
668
+ * feat!: mixed-source AutomationSlice — Plan 04 ([fae3fbf](https://github.com/ReventlessDev/reventless-core/commit/fae3fbf93b12ecf62d0883fe7335ed73c6f52d67))
669
+
670
+ ### BREAKING CHANGES
671
+
672
+ * Mapping/MappingImpl no longer have `type tagSet`
673
+ or `let toTags`. Mappings declared in user code with `type tagSet`
674
+ or `let toTags` need those lines removed. Migrate any toTags
675
+ validation logic to `collect` (filter) or to `@s.matches` /
676
+ `@compositePartitionTag` annotations on the command schema.
677
+ * AutomationSlice.Spec drops consumedEvent;
678
+ AutomationSlice_Builder.Make takes Mappings as 3rd arg; make signature
679
+ swaps ~dcbEventLog for ~allEventTopics + ~context; Plugin_Builder.Spec
680
+ gains platformName. Existing slices need a sibling _Mappings.res file
681
+ and updated Plugin.res (regenerate via prebuild hook).
682
+
683
+ Tests: 362/362 pass. Build clean, zero warnings.
684
+
685
+ Plan: docs/plans/done/mixed-source-automationslice.md
686
+ Guide: docs/guides/mixed-source-automationslice.md
687
+
688
+
689
+
690
+ # 1.0.0-alpha.22 (2026-04-24)
691
+
692
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
693
+
694
+
695
+
696
+
697
+
698
+ # 1.0.0-alpha.21 (2026-04-24)
699
+
700
+ ### Features
701
+
702
+ * **gwt:** add 5 DCB slice DSLs and thread slice name into hints (Stage 3) ([62b59fd](https://github.com/ReventlessDev/reventless-core/commit/62b59fdaa745d7799209ec3c24c50a8d443670b5))
703
+ * **gwt:** add Stage 4 AppendConditionMismatch + Stage 5 Mapping_GWT ([24fa835](https://github.com/ReventlessDev/reventless-core/commit/24fa8353657329e73a04cfed8e0a390806ff3395))
704
+ * **gwt:** extract GWT test DSLs into @reventlessdev/reventless-gwt package ([dd64b4e](https://github.com/ReventlessDev/reventless-core/commit/dd64b4e1fd0bb203821d055b6743a52aec1836fb))
705
+
706
+
707
+ # 1.0.0-alpha.20 (2026-04-22)
708
+
709
+ ### Features
710
+
711
+ * add composite [@display](https://github.com/display)Name annotation with projected displayName column ([115f550](https://github.com/ReventlessDev/reventless-core/commit/115f5506231f635e261d977da0ca32bdabef817f))
712
+ * **build:** migrate from npm to pnpm (hoisted layout) ([1de8b77](https://github.com/ReventlessDev/reventless-core/commit/1de8b7753b8f45c63ea3c8d9f64de2f27febd029))
713
+ * **spec:** wire UI fragment manifest through plugin make via ~uiBundleUrl ([e07fa3a](https://github.com/ReventlessDev/reventless-core/commit/e07fa3a05d6effdd4c6c6686ab1f7e4e4312c438))
714
+
715
+
716
+ # 1.0.0-alpha.19 (2026-04-20)
717
+
718
+ ### Features
719
+
720
+ * add automationSlices, translation slices, and extensions to pluginStructure ([631e2f3](https://github.com/ReventlessDev/reventless-core/commit/631e2f3636f0a422e58712f70106c0df8effc1e9))
721
+
722
+
723
+ # 1.0.0-alpha.18 (2026-04-18)
724
+
725
+ ### Features
726
+
727
+ * **core:** AutoUI definition — makeAutoUIDefinition, Platform_UIDefinitions query, generator support ([513ca53](https://github.com/ReventlessDev/reventless-core/commit/513ca5399b0b6e5ae6a982fd15693de2ea208b8d))
728
+ * **core:** uiFragments manifest — Phase 1 implementation with generic types ([1e73f62](https://github.com/ReventlessDev/reventless-core/commit/1e73f623984118081d2b985c48521812e4f8417e))
729
+
730
+
731
+ # 1.0.0-alpha.17 (2026-04-15)
732
+
733
+ ### Features
734
+
735
+ * zero-touch plugin assembly — generate Plugin.res from folder structure ([73ea654](https://github.com/ReventlessDev/reventless-core/commit/73ea654ab9a73f15ea7e18631e8194bfe0f4580f))
736
+
737
+
738
+ # 1.0.0-alpha.16 (2026-04-09)
739
+
740
+ ### Features
741
+
742
+ * **ppx:** implement [@no](https://github.com/no)Api to exclude commands from GraphQL/MCP exposure ([079b686](https://github.com/ReventlessDev/reventless-core/commit/079b68693976a53f8094f1233ebf8b67a86a65c0))
743
+
744
+
745
+ # 1.0.0-alpha.15 (2026-04-07)
746
+
747
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
748
+
749
+
750
+
751
+
752
+
753
+ # 1.0.0-alpha.14 (2026-04-07)
754
+
755
+ ### Features
756
+
757
+ * **ppx+querydb:** annotation-driven key design and sort key queries ([dee6de8](https://github.com/ReventlessDev/reventless-core/commit/dee6de84c2d2de5431d064f18ac7132bc8c23110))
758
+
759
+
760
+ # 1.0.0-alpha.13 (2026-04-06)
761
+
762
+ ### Bug Fixes
763
+
764
+ * add package-specs to all rescript.json to prevent CJS .js output ([780f1e0](https://github.com/ReventlessDev/reventless-core/commit/780f1e035173b73b17b78466ad01fb69c7cca350))
765
+ * **ppx:** preserve full entity name for files in slice folders ([5471b3f](https://github.com/ReventlessDev/reventless-core/commit/5471b3f2a64e5dbc85441ae22bfa53c194f84689))
766
+ * **ppx:** update compiled output for View suffix stripping in StateViewSlice ([857cb89](https://github.com/ReventlessDev/reventless-core/commit/857cb896fcb30d4a52585276dabbbcf80b3403a4))
767
+
768
+
769
+ # 1.0.0-alpha.12 (2026-04-06)
770
+
771
+ ### Bug Fixes
772
+
773
+ * **examples:** suppress [@no](https://github.com/no)Tag on customerId in PlaceOrder command to prevent cross-order DCB query contamination ([f9d674e](https://github.com/ReventlessDev/reventless-core/commit/f9d674eb425989b2b49231ec0fedc9833e76485b))
774
+ ### Features
775
+
776
+ * implement [@composite](https://github.com/composite)PartitionTag PPX annotation for multi-field DCB partition keys ([cf26b15](https://github.com/ReventlessDev/reventless-core/commit/cf26b15f639d151451c9aa04d32603ef9d5df315))
777
+
778
+
779
+ # 1.0.0-alpha.11 (2026-04-05)
780
+
781
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
782
+
783
+
784
+
785
+
786
+
787
+ # 1.0.0-alpha.10 (2026-04-04)
788
+
789
+ ### Bug Fixes
790
+
791
+ * DCB [@partition](https://github.com/partition)Tag runtime errors, GraphQL Node interface, and ESM config ([dc4c4e1](https://github.com/ReventlessDev/reventless-core/commit/dc4c4e10f1ef09aba840e7b359df453b122c6aa4))
792
+ ### Features
793
+
794
+ * migrate online-shop-hybrid example to reventless-ppx ([ac66980](https://github.com/ReventlessDev/reventless-core/commit/ac669807bf94b061b85e0217f1ec76af50d12a44))
795
+
796
+
797
+ # 1.0.0-alpha.9 (2026-03-30)
798
+
799
+ ### Features
800
+
801
+ * **examples:** publish example packages to GitHub Package Registry ([2495ba5](https://github.com/ReventlessDev/reventless-core/commit/2495ba5c4436613d58964f9948c1bacbde61965f))
802
+
803
+
804
+ # [1.0.0-alpha.8](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.6...@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.8) (2026-03-28)
805
+
806
+ ### Bug Fixes
807
+
808
+ * **examples:** regenerate stale .mjs for aggregate, dcb, and hybrid plugins ([b5b4de5](https://github.com/ReventlessDev/reventless-core/commit/b5b4de5c4db7f5f8eb9071157302c4f0796b1889))
809
+ * feat!: flatten DcbSpec module type into direct Plugin.make parameters ([1c0bc57](https://github.com/ReventlessDev/reventless-core/commit/1c0bc576fcd88b92510900c16f5f117e864d9d7f))
810
+
811
+ ### BREAKING CHANGES
812
+
813
+ * Plugin.make no longer accepts ~dcbSpec=module(DcbSpec).
814
+ Pass slice arrays directly instead. Empty arrays can be omitted.
815
+
816
+
817
+
818
+ # [1.0.0-alpha.7](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.6...@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.7) (2026-03-27)
819
+
820
+ * feat!: flatten DcbSpec module type into direct Plugin.make parameters ([1c0bc57](https://github.com/ReventlessDev/reventless-core/commit/1c0bc576fcd88b92510900c16f5f117e864d9d7f))
821
+
822
+ ### BREAKING CHANGES
823
+
824
+ * Plugin.make no longer accepts ~dcbSpec=module(DcbSpec).
825
+ Pass slice arrays directly instead. Empty arrays can be omitted.
826
+
827
+
828
+
829
+ # [1.0.0-alpha.6](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.3...@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.6) (2026-03-27)
830
+
831
+ * feat!: remove resolverConfig from Behavior module type ([6f54015](https://github.com/ReventlessDev/reventless-core/commit/6f54015e3abc1c5c05472c8f54645723a0f5ed28))
832
+ * feat!: decouple DCB slices from shared event log union type ([2a40e8d](https://github.com/ReventlessDev/reventless-core/commit/2a40e8dd9babfb88440fcaccde6fb667b60e0ba9))
833
+
834
+ ### BREAKING CHANGES
835
+
836
+ * Behavior.T no longer requires resolverConfig. Remove it
837
+ from all Behavior implementations.
838
+ * All DCB slice specs must use `producedEvent`/`consumedEvent`
839
+ instead of `module DcbEventLogSpec`. Plugin `DcbSpec` no longer has `type event`
840
+ or `with type dcbEvent` constraints.
841
+
842
+
843
+
844
+ # [1.0.0-alpha.5](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.3...@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.5) (2026-03-26)
845
+
846
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
847
+
848
+
849
+
850
+
851
+
852
+ # [1.0.0-alpha.4](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.3...@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.4) (2026-03-26)
853
+
854
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
855
+
856
+
857
+
858
+
859
+
860
+ # [1.0.0-alpha.3](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.2...@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.3) (2026-03-23)
861
+
862
+ * refactor!: streamline component function naming to unified two-function pattern ([06814fd](https://github.com/ReventlessDev/reventless-core/commit/06814fd8589cf05ce8a9f9654552e7d5cd9c6bf2))
863
+ * fix(reventless-aws)!: resolve DcbEventLogSpec undefined at runtime and add AppSync routing ([85138a3](https://github.com/ReventlessDev/reventless-core/commit/85138a39afe97047ea5f063508994e20544eb780))
864
+
865
+ ### BREAKING CHANGES
866
+
867
+ * All component function signatures changed. Behavior.decide
868
+ now returns result<array<event>, error> instead of using errorHandler callback.
869
+ StateChangeSlice type decisionModel renamed to state. Projection.Mapping.map
870
+ renamed to project. StateViewSlice.project takes one argument instead of two.
871
+
872
+ * DcbEventLog.Spec now requires `let moduleUrl: string` field.
873
+ Add `let moduleUrl: string = %raw(\`import.meta.url\`)` to event log modules.
874
+ # [1.0.0-alpha.2](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.1...@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.2) (2026-03-22)
875
+
876
+ * feat(reventless-aws)!: replace esbuild pipeline with compiled ReScript entry points ([6cb3133](https://github.com/ReventlessDev/reventless-core/commit/6cb313323c73a078d0922fa6b977466f61de74ea))
877
+
878
+ ### BREAKING CHANGES
879
+
880
+ * esbuild removed from dependencies, `makeBundled` and
881
+ `makeBundledFromEntryPoint` removed from RuntimeEnvironment_Lambda,
882
+ `BundledEnvironment` module type removed from Runtime.
883
+ # [1.0.0-alpha.1](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.0...@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.1) (2026-03-17)
884
+
885
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-ordering
886
+
887
+ # [1.0.0-alpha.0](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-ordering@0.1.0-alpha.1...@reventlessdev/online-shop-hybrid-ordering@1.0.0-alpha.0) (2026-03-16)
888
+
889
+ * feat!: auto-detect plugin version from package.json via V8 stack trace ([e172673](https://github.com/ReventlessDev/reventless-core/commit/e17267390c197fa34052cef8325c579bb781419f))
890
+
891
+ ### BREAKING CHANGES
892
+
893
+ * Plugin.make no longer accepts ~version.
894
+ # [0.1.0-alpha.1](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-ordering@0.1.0-alpha.0...@reventlessdev/online-shop-hybrid-ordering@0.1.0-alpha.1) (2026-03-12)
895
+
896
+ ### Features
897
+
898
+ * **deps:** upgrade rescript to 12.2 and migrate Belt usages to stdlib ([eaa96ea](https://github.com/ReventlessDev/reventless-core/commit/eaa96ea61ca40d61573fb5fe2002a1f73d43ce3e))
899
+ # 0.1.0-alpha.0 (2026-03-08)
900
+
901
+ ### Features
902
+
903
+ * **examples:** add online-shop-hybrid example with aggregate + DCB composition ([296ad05](https://github.com/ReventlessDev/reventless-core/commit/296ad05f067c53854d4cf0a5d4a8deb91d751b04))
904
+ * replace explicit queryMode with automatic schema-driven DCB query construction ([8df4350](https://github.com/ReventlessDev/reventless-core/commit/8df4350c37f1f15678f4796f229647eaeb3e8222))