@reventlessdev/online-shop-hybrid-catalog 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 (90) hide show
  1. package/CHANGELOG.md +878 -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/Category/StateChangeSlice/AddCategory.res +17 -0
  7. package/src/Category/StateChangeSlice/AddCategory.res.mjs +48 -0
  8. package/src/Category/StateChangeSlice/AddCategory_Behavior.res +21 -0
  9. package/src/Category/StateChangeSlice/AddCategory_Behavior.res.mjs +52 -0
  10. package/src/Category/StateChangeSlice/ArchiveCategory.res +18 -0
  11. package/src/Category/StateChangeSlice/ArchiveCategory.res.mjs +49 -0
  12. package/src/Category/StateChangeSlice/ArchiveCategory_Behavior.res +23 -0
  13. package/src/Category/StateChangeSlice/ArchiveCategory_Behavior.res.mjs +58 -0
  14. package/src/Category/StateChangeSlice/RenameCategory.res +23 -0
  15. package/src/Category/StateChangeSlice/RenameCategory.res.mjs +58 -0
  16. package/src/Category/StateChangeSlice/RenameCategory_Behavior.res +26 -0
  17. package/src/Category/StateChangeSlice/RenameCategory_Behavior.res.mjs +74 -0
  18. package/src/Category/StateViewSliceStream/Categories.res +13 -0
  19. package/src/Category/StateViewSliceStream/Categories.res.mjs +54 -0
  20. package/src/Category/StateViewSliceStream/Categories_Projection.res +8 -0
  21. package/src/Category/StateViewSliceStream/Categories_Projection.res.mjs +50 -0
  22. package/src/Extension/Orders_Extension.res +48 -0
  23. package/src/Extension/Orders_Extension.res.mjs +76 -0
  24. package/src/ExtensionPoint/Products_ExtensionPointMapping.res +59 -0
  25. package/src/ExtensionPoint/Products_ExtensionPointMapping.res.mjs +99 -0
  26. package/src/Plugin.res +63 -0
  27. package/src/Plugin.res.mjs +335 -0
  28. package/src/Product/InboundTranslationSlice/ImportProduct.res +28 -0
  29. package/src/Product/InboundTranslationSlice/ImportProduct.res.mjs +48 -0
  30. package/src/Product/InboundTranslationSlice/ImportProduct_Translation.res +23 -0
  31. package/src/Product/InboundTranslationSlice/ImportProduct_Translation.res.mjs +52 -0
  32. package/src/Product/StateChangeSlice/AddProduct.res +37 -0
  33. package/src/Product/StateChangeSlice/AddProduct.res.mjs +68 -0
  34. package/src/Product/StateChangeSlice/AddProduct_Behavior.res +35 -0
  35. package/src/Product/StateChangeSlice/AddProduct_Behavior.res.mjs +72 -0
  36. package/src/Product/StateChangeSlice/ChangeProductDescription.res +23 -0
  37. package/src/Product/StateChangeSlice/ChangeProductDescription.res.mjs +54 -0
  38. package/src/Product/StateChangeSlice/ChangeProductDescription_Behavior.res +26 -0
  39. package/src/Product/StateChangeSlice/ChangeProductDescription_Behavior.res.mjs +59 -0
  40. package/src/Product/StateChangeSlice/ChangeProductName.res +19 -0
  41. package/src/Product/StateChangeSlice/ChangeProductName.res.mjs +54 -0
  42. package/src/Product/StateChangeSlice/ChangeProductName_Behavior.res +23 -0
  43. package/src/Product/StateChangeSlice/ChangeProductName_Behavior.res.mjs +59 -0
  44. package/src/Product/StateChangeSlice/ChangeProductPrice.res +19 -0
  45. package/src/Product/StateChangeSlice/ChangeProductPrice.res.mjs +54 -0
  46. package/src/Product/StateChangeSlice/ChangeProductPrice_Behavior.res +23 -0
  47. package/src/Product/StateChangeSlice/ChangeProductPrice_Behavior.res.mjs +59 -0
  48. package/src/Product/StateViewSliceStream/ProductDemand.res +13 -0
  49. package/src/Product/StateViewSliceStream/ProductDemand.res.mjs +55 -0
  50. package/src/Product/StateViewSliceStream/ProductDemand_Projection.res +11 -0
  51. package/src/Product/StateViewSliceStream/ProductDemand_Projection.res.mjs +61 -0
  52. package/src/Product/StateViewSliceStream/Products.res +20 -0
  53. package/src/Product/StateViewSliceStream/Products.res.mjs +65 -0
  54. package/src/Product/StateViewSliceStream/Products_Projection.res +13 -0
  55. package/src/Product/StateViewSliceStream/Products_Projection.res.mjs +70 -0
  56. package/src/ProductDemand/StateChangeSlice/RecordProductDemand.res +24 -0
  57. package/src/ProductDemand/StateChangeSlice/RecordProductDemand.res.mjs +71 -0
  58. package/src/ProductDemand/StateChangeSlice/RecordProductDemand_Behavior.res +30 -0
  59. package/src/ProductDemand/StateChangeSlice/RecordProductDemand_Behavior.res.mjs +68 -0
  60. package/src/Task/ImportProducts.res +15 -0
  61. package/src/Task/ImportProducts.res.mjs +23 -0
  62. package/src/plugin.json +1 -0
  63. package/tests/Category/StateChangeSlice/AddCategory_GWT.res +21 -0
  64. package/tests/Category/StateChangeSlice/AddCategory_GWT.res.mjs +88 -0
  65. package/tests/Category/StateChangeSlice/ArchiveCategory_GWT.res +21 -0
  66. package/tests/Category/StateChangeSlice/ArchiveCategory_GWT.res.mjs +84 -0
  67. package/tests/Category/StateChangeSlice/RenameCategory_GWT.res +27 -0
  68. package/tests/Category/StateChangeSlice/RenameCategory_GWT.res.mjs +102 -0
  69. package/tests/Category/StateViewSliceStream/Categories_GWT.res +21 -0
  70. package/tests/Category/StateViewSliceStream/Categories_GWT.res.mjs +103 -0
  71. package/tests/Extension/Orders_Extension_GWT.res +40 -0
  72. package/tests/Extension/Orders_Extension_GWT.res.mjs +126 -0
  73. package/tests/ExtensionPoint/Products_ExtensionPointMapping_GWT.res +37 -0
  74. package/tests/ExtensionPoint/Products_ExtensionPointMapping_GWT.res.mjs +123 -0
  75. package/tests/Product/InboundTranslationSlice/ImportProduct_GWT.res +53 -0
  76. package/tests/Product/InboundTranslationSlice/ImportProduct_GWT.res.mjs +103 -0
  77. package/tests/Product/StateChangeSlice/AddProduct_GWT.res +64 -0
  78. package/tests/Product/StateChangeSlice/AddProduct_GWT.res.mjs +144 -0
  79. package/tests/Product/StateChangeSlice/ChangeProductDescription_GWT.res +21 -0
  80. package/tests/Product/StateChangeSlice/ChangeProductDescription_GWT.res.mjs +91 -0
  81. package/tests/Product/StateChangeSlice/ChangeProductName_GWT.res +21 -0
  82. package/tests/Product/StateChangeSlice/ChangeProductName_GWT.res.mjs +91 -0
  83. package/tests/Product/StateChangeSlice/ChangeProductPrice_GWT.res +21 -0
  84. package/tests/Product/StateChangeSlice/ChangeProductPrice_GWT.res.mjs +91 -0
  85. package/tests/Product/StateViewSliceStream/ProductDemand_GWT.res +31 -0
  86. package/tests/Product/StateViewSliceStream/ProductDemand_GWT.res.mjs +132 -0
  87. package/tests/Product/StateViewSliceStream/Products_GWT.res +47 -0
  88. package/tests/Product/StateViewSliceStream/Products_GWT.res.mjs +137 -0
  89. package/tests/ProductDemand/StateChangeSlice/RecordProductDemand_GWT.res +39 -0
  90. package/tests/ProductDemand/StateChangeSlice/RecordProductDemand_GWT.res.mjs +120 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,878 @@
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
+ * **dcb:** infer cross-partition scope; drop [@cross](https://github.com/cross)Partition from hybrid catalog ([268c57b](https://github.com/ReventlessDev/reventless-core/commit/268c57b1620b6075d2259f3a312efd04ecd735d5))
18
+ * verify category exists in AddProduct via cross-partition DCB read ([074d4fa](https://github.com/ReventlessDev/reventless-core/commit/074d4faecf694164f2e0c789c4d94cae402b03e1))
19
+
20
+
21
+ # 1.0.0-alpha.98 (2026-06-22)
22
+
23
+ ### Features
24
+
25
+ * **catalog-example:** hide event-driven demand commands from the API via [@no](https://github.com/no)Api ([049e77b](https://github.com/ReventlessDev/reventless-core/commit/049e77b8c3aa1c655aa776d8ca0565e94ca1e64a))
26
+
27
+
28
+ # 1.0.0-alpha.97 (2026-06-21)
29
+
30
+ ### Features
31
+
32
+ * **dcb:** cross-partition secondary-tag reads (Phase 7) ([9e1f8b3](https://github.com/ReventlessDev/reventless-core/commit/9e1f8b3595004b92148dd053aae380078baa42a3))
33
+
34
+
35
+ # 1.0.0-alpha.96 (2026-06-21)
36
+
37
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
38
+
39
+
40
+
41
+
42
+
43
+ # 1.0.0-alpha.95 (2026-06-21)
44
+
45
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
46
+
47
+
48
+
49
+
50
+
51
+ # 1.0.0-alpha.94 (2026-06-20)
52
+
53
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
54
+
55
+
56
+
57
+
58
+
59
+ # 1.0.0-alpha.93 (2026-06-20)
60
+
61
+ ### Bug Fixes
62
+
63
+ * **packaging:** publish online-shop-hybrid examples source-only via .npmignore ([a2b3cbf](https://github.com/ReventlessDev/reventless-core/commit/a2b3cbf6067b006647aefee2bf1f4daf182c98e9))
64
+
65
+
66
+ # 1.0.0-alpha.92 (2026-06-20)
67
+
68
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
69
+
70
+
71
+
72
+
73
+
74
+ # 1.0.0-alpha.91 (2026-06-20)
75
+
76
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
77
+
78
+
79
+
80
+
81
+
82
+ # 1.0.0-alpha.90 (2026-06-20)
83
+
84
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
85
+
86
+
87
+
88
+
89
+
90
+ # 1.0.0-alpha.89 (2026-06-18)
91
+
92
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
93
+
94
+
95
+
96
+
97
+
98
+ # 1.0.0-alpha.88 (2026-06-18)
99
+
100
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
101
+
102
+
103
+
104
+
105
+
106
+ # 1.0.0-alpha.87 (2026-06-18)
107
+
108
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
109
+
110
+
111
+
112
+
113
+
114
+ # 1.0.0-alpha.86 (2026-06-18)
115
+
116
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
117
+
118
+
119
+
120
+
121
+
122
+ # 1.0.0-alpha.85 (2026-06-17)
123
+
124
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
125
+
126
+
127
+
128
+
129
+
130
+ # 1.0.0-alpha.84 (2026-06-17)
131
+
132
+ ### Bug Fixes
133
+
134
+ * **packaging:** executable ppx binaries + promote phantom deps for standalone installs ([9b6bea2](https://github.com/ReventlessDev/reventless-core/commit/9b6bea24570b0b0654c825d560ef781c0295512a))
135
+ * feat(example)!: type the directive channel in the hybrid example ([7ee7527](https://github.com/ReventlessDev/reventless-core/commit/7ee75275a01808c83df3e5c4f309c1be851bcffb))
136
+ * feat!: rename Call directive to HandleDirective for naming consistency ([3fdf84a](https://github.com/ReventlessDev/reventless-core/commit/3fdf84a503b8ee9b07d0774e34c911f5d90d45d0))
137
+ * feat!: harmonize plugin make() across aggregate/DCB/hybrid; AutoUI default-on ([6f3b95e](https://github.com/ReventlessDev/reventless-core/commit/6f3b95e6aa8a136c6e837346c41a3a4dff0f9405))
138
+ ### Features
139
+
140
+ * **gwt:** bidirectional Delegate_GWT drivers with direction-named verbs ([bb5de9e](https://github.com/ReventlessDev/reventless-core/commit/bb5de9eff2b06cedd72bc6c70747c8159937044e))
141
+
142
+ ### BREAKING CHANGES
143
+
144
+ * `Products_ExtensionPoint.directive` and
145
+ `Orders_ExtensionPoint.directive` are no longer `unit`. Out-of-tree
146
+ consumers that declared `type directive = unit` and then referenced it
147
+ in code need a one-line rename. In-repo callers are updated.
148
+ * out-of-tree plugins emitting Call(handler, msg) from
149
+ commandAction / eventAction / incomingCommandAction / outgoingCommandAction
150
+ must rename to HandleDirective(handler, directive). The callHandler<'msg>
151
+ type alias is now directiveHandler<'directive>.
152
+
153
+ Plan: docs/plans/done/directive-naming-consistency.md
154
+ * makeAutoUIManifest signature dropped ~aggregates and
155
+ ~readModels; replaced with ~pluginStructure. Hand-written Plugin.res files
156
+ that pass ~uiBundleUrl to plugin.make must drop the arg and rely on the
157
+ generator-emitted env var read.
158
+
159
+
160
+
161
+ # 1.0.0-alpha.83 (2026-06-12)
162
+
163
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
164
+
165
+
166
+
167
+
168
+
169
+ # 1.0.0-alpha.82 (2026-06-12)
170
+
171
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
172
+
173
+
174
+
175
+
176
+
177
+ # 1.0.0-alpha.81 (2026-06-11)
178
+
179
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
180
+
181
+
182
+
183
+
184
+
185
+ # 1.0.0-alpha.80 (2026-06-10)
186
+
187
+ ### Bug Fixes
188
+
189
+ * **examples:** restore publishing of online-shop-hybrid packages ([8fa95d3](https://github.com/ReventlessDev/reventless-core/commit/8fa95d3e6de4f10284afdde4aa24a10dcffe202b))
190
+ * refactor(reventless-local)!: rename reventless-in-memory to reventless-local ([f36e17c](https://github.com/ReventlessDev/reventless-core/commit/f36e17c407714ab9740393fac96865d6a5c143c9))
191
+ ### Features
192
+
193
+ * **reventless-core:** extension-point source events in pluginStructure ([9c47a0e](https://github.com/ReventlessDev/reventless-core/commit/9c47a0ea9a1643ac12fbe8dc1c43244e580de024))
194
+
195
+ ### BREAKING CHANGES
196
+
197
+ * @reventlessdev/reventless-in-memory -> @reventlessdev/reventless-local;
198
+ namespace ReventlessInMemory -> ReventlessLocal.
199
+
200
+
201
+
202
+ # 1.0.0-alpha.79 (2026-06-09)
203
+
204
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
205
+
206
+
207
+
208
+
209
+
210
+ # 1.0.0-alpha.78 (2026-06-08)
211
+
212
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
213
+
214
+
215
+
216
+
217
+
218
+ # 1.0.0-alpha.77 (2026-06-08)
219
+
220
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
221
+
222
+
223
+
224
+
225
+
226
+ # 1.0.0-alpha.76 (2026-06-08)
227
+
228
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
229
+
230
+
231
+
232
+
233
+
234
+ # 1.0.0-alpha.75 (2026-06-08)
235
+
236
+ ### Features
237
+
238
+ * **reventless-core:** extension-point source events in pluginStructure ([1e1d925](https://github.com/ReventlessDev/reventless-core/commit/1e1d9258b5a228b9fdfa003348a5367281573b3c))
239
+
240
+
241
+ # 1.0.0-alpha.74 (2026-06-07)
242
+
243
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
244
+
245
+
246
+
247
+
248
+
249
+ # 1.0.0-alpha.73 (2026-06-06)
250
+
251
+ ### Bug Fixes
252
+
253
+ * **examples:** restore publishing of online-shop-hybrid packages ([8cc6b9d](https://github.com/ReventlessDev/reventless-core/commit/8cc6b9d934cc96e0841f4f2802399f7f75e49d71))
254
+ * refactor(reventless-local)!: rename reventless-in-memory to reventless-local ([966855f](https://github.com/ReventlessDev/reventless-core/commit/966855fd31e518d56a381bf40204735809cead15))
255
+
256
+ ### BREAKING CHANGES
257
+
258
+ * @reventlessdev/reventless-in-memory -> @reventlessdev/reventless-local;
259
+ namespace ReventlessInMemory -> ReventlessLocal.
260
+
261
+
262
+
263
+ # 1.0.0-alpha.72 (2026-06-04)
264
+
265
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
266
+
267
+
268
+
269
+
270
+
271
+ # 1.0.0-alpha.71 (2026-06-04)
272
+
273
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
274
+
275
+
276
+
277
+
278
+
279
+ # 1.0.0-alpha.70 (2026-06-04)
280
+
281
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
282
+
283
+
284
+
285
+
286
+
287
+ # 1.0.0-alpha.69 (2026-06-04)
288
+
289
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
290
+
291
+
292
+
293
+
294
+
295
+ # 1.0.0-alpha.68 (2026-06-04)
296
+
297
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
298
+
299
+
300
+
301
+
302
+
303
+ # 1.0.0-alpha.67 (2026-05-28)
304
+
305
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
306
+
307
+
308
+
309
+
310
+
311
+ # 1.0.0-alpha.66 (2026-05-28)
312
+
313
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
314
+
315
+
316
+
317
+
318
+
319
+ # 1.0.0-alpha.65 (2026-05-27)
320
+
321
+ ### Bug Fixes
322
+
323
+ * **framework:** wire plugin ExtensionPoints into EventCollector runtime context ([2ce8dff](https://github.com/ReventlessDev/reventless-core/commit/2ce8dff426b576811a28c012934d77ecba8a33c0))
324
+
325
+
326
+ # 1.0.0-alpha.64 (2026-05-27)
327
+
328
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
329
+
330
+
331
+
332
+
333
+
334
+ # 1.0.0-alpha.63 (2026-05-27)
335
+
336
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
337
+
338
+
339
+
340
+
341
+
342
+ # 1.0.0-alpha.62 (2026-05-27)
343
+
344
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
345
+
346
+
347
+
348
+
349
+
350
+ # 1.0.0-alpha.61 (2026-05-26)
351
+
352
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
353
+
354
+
355
+
356
+
357
+
358
+ # 1.0.0-alpha.60 (2026-05-26)
359
+
360
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
361
+
362
+
363
+
364
+
365
+
366
+ # 1.0.0-alpha.59 (2026-05-25)
367
+
368
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
369
+
370
+
371
+
372
+
373
+
374
+ # 1.0.0-alpha.58 (2026-05-25)
375
+
376
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
377
+
378
+
379
+
380
+
381
+
382
+ # 1.0.0-alpha.57 (2026-05-25)
383
+
384
+ ### Features
385
+
386
+ * **examples:** DCB PlaceOrder availability check, idempotency guards, and convention cleanup ([c5b4e3e](https://github.com/ReventlessDev/reventless-core/commit/c5b4e3e6a45faf75c1cc0469290df6926834558d))
387
+
388
+
389
+ # 1.0.0-alpha.56 (2026-05-21)
390
+
391
+ ### Features
392
+
393
+ * **gwt:** add Delegate_GWT + Flow_GWT cross-slice/cross-plugin test kinds ([19f89a6](https://github.com/ReventlessDev/reventless-core/commit/19f89a6baba3acddb683c81952692fb1a695681d))
394
+
395
+
396
+ # 1.0.0-alpha.55 (2026-05-21)
397
+
398
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
399
+
400
+
401
+
402
+
403
+
404
+ # 1.0.0-alpha.54 (2026-05-21)
405
+
406
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
407
+
408
+
409
+
410
+
411
+
412
+ # 1.0.0-alpha.53 (2026-05-20)
413
+
414
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
415
+
416
+
417
+
418
+
419
+
420
+ # 1.0.0-alpha.52 (2026-05-20)
421
+
422
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
423
+
424
+
425
+
426
+
427
+
428
+ # 1.0.0-alpha.51 (2026-05-20)
429
+
430
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
431
+
432
+
433
+
434
+
435
+
436
+ # 1.0.0-alpha.50 (2026-05-19)
437
+
438
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
439
+
440
+
441
+
442
+
443
+
444
+ # 1.0.0-alpha.49 (2026-05-19)
445
+
446
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
447
+
448
+
449
+
450
+
451
+
452
+ # 1.0.0-alpha.48 (2026-05-19)
453
+
454
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
455
+
456
+
457
+
458
+
459
+
460
+ # 1.0.0-alpha.47 (2026-05-19)
461
+
462
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
463
+
464
+
465
+
466
+
467
+
468
+ # 1.0.0-alpha.46 (2026-05-18)
469
+
470
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
471
+
472
+
473
+
474
+
475
+
476
+ # 1.0.0-alpha.45 (2026-05-18)
477
+
478
+ ### Features
479
+
480
+ * **plugin:** wire end-to-end user-extension dispatch through plugin EventCollectors ([f616abe](https://github.com/ReventlessDev/reventless-core/commit/f616abe169289f836f8e538b5419cb82cda886d7))
481
+
482
+
483
+ # 1.0.0-alpha.44 (2026-05-17)
484
+
485
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
486
+
487
+
488
+
489
+
490
+
491
+ # 1.0.0-alpha.43 (2026-05-17)
492
+
493
+ ### Bug Fixes
494
+
495
+ * **deps:** pin sury-ppx to 11.0.0-alpha.2 to prevent prerelease drift ([c9d05fe](https://github.com/ReventlessDev/reventless-core/commit/c9d05fe5118a9c0442ca3e071f2606b3a139fc81))
496
+
497
+
498
+ # 1.0.0-alpha.42 (2026-05-17)
499
+
500
+ ### Bug Fixes
501
+
502
+ * **aws:** wire schedulerRoleArn through admin registers; default heartbeat to 5 min ([f9580a2](https://github.com/ReventlessDev/reventless-core/commit/f9580a2fc7f85a67747ccaab87358f303bd90ab9))
503
+
504
+
505
+ # 1.0.0-alpha.41 (2026-05-17)
506
+
507
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
508
+
509
+
510
+
511
+
512
+
513
+ # 1.0.0-alpha.40 (2026-05-17)
514
+
515
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
516
+
517
+
518
+
519
+
520
+
521
+ # 1.0.0-alpha.39 (2026-05-17)
522
+
523
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
524
+
525
+
526
+
527
+
528
+
529
+ # 1.0.0-alpha.38 (2026-05-16)
530
+
531
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
532
+
533
+
534
+
535
+
536
+
537
+ # 1.0.0-alpha.37 (2026-05-16)
538
+
539
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
540
+
541
+
542
+
543
+
544
+
545
+ # 1.0.0-alpha.36 (2026-05-16)
546
+
547
+ ### Features
548
+
549
+ * **ppx:** add @[@reventless](https://github.com/reventless).visibility to hide components from AutoUI ([bd302cf](https://github.com/ReventlessDev/reventless-core/commit/bd302cfc5bd5d4dfe50c8e1bf8596ab67e36c74e))
550
+
551
+
552
+ # 1.0.0-alpha.35 (2026-05-16)
553
+
554
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
555
+
556
+
557
+
558
+
559
+
560
+ # 1.0.0-alpha.34 (2026-05-16)
561
+
562
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
563
+
564
+
565
+
566
+
567
+
568
+ # 1.0.0-alpha.33 (2026-05-14)
569
+
570
+ ### Features
571
+
572
+ * **auth:** expose payload-less commands to GraphQL + per-constructor authz test ([7a55b27](https://github.com/ReventlessDev/reventless-core/commit/7a55b27ea04e84368909b24fc5ca29f415d108da))
573
+ * **ppx:** @[@reventless](https://github.com/reventless).authorize file-level annotation + auto-inject defaults ([dd188ee](https://github.com/ReventlessDev/reventless-core/commit/dd188ee86999fbb8f47d4badec5e21894c982171))
574
+ * **ppx:** inline-spec walk + Spec module types require authorization ([7db9ec0](https://github.com/ReventlessDev/reventless-core/commit/7db9ec0f186578ce0088973dba22da9257be6a61))
575
+ * **schema:** add partitionTag to productId in command and event schemas ([9dbabe3](https://github.com/ReventlessDev/reventless-core/commit/9dbabe3806eeb5f22c2fd2d2af727a6b441973b4))
576
+
577
+
578
+ # 1.0.0-alpha.32 (2026-05-13)
579
+
580
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
581
+
582
+
583
+
584
+
585
+
586
+ # 1.0.0-alpha.31 (2026-05-10)
587
+
588
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
589
+
590
+
591
+
592
+
593
+
594
+ # 1.0.0-alpha.30 (2026-05-05)
595
+
596
+ ### Features
597
+
598
+ * **extension:** add PublishStateChangeSliceCommand for slice delegates ([0500b79](https://github.com/ReventlessDev/reventless-core/commit/0500b79d80632611e52ff0565e3e04472330a51e))
599
+
600
+
601
+ # 1.0.0-alpha.29 (2026-05-04)
602
+
603
+ ### Bug Fixes
604
+
605
+ * **aws:** drop empty Config functor args; thread per-spec metadata as direct params ([17837a3](https://github.com/ReventlessDev/reventless-core/commit/17837a3fde52581a06516c69c80e6a1ea5689d9a))
606
+ * **catalog-example:** give CatalogActivity a name field for label resolution ([e47c193](https://github.com/ReventlessDev/reventless-core/commit/e47c1937fd073e05b427e4c8311e91385c3c3e64))
607
+
608
+
609
+ # 1.0.0-alpha.28 (2026-05-03)
610
+
611
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
612
+
613
+
614
+
615
+
616
+
617
+ # 1.0.0-alpha.27 (2026-05-03)
618
+
619
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
620
+
621
+
622
+
623
+
624
+
625
+ # 1.0.0-alpha.26 (2026-05-03)
626
+
627
+ ### Bug Fixes
628
+
629
+ * **plugin:** silence false-positive own-DCB-eventlog warning + correct example Delegate.name ([df721b2](https://github.com/ReventlessDev/reventless-core/commit/df721b2ce716fd2952f80177999ca11798a08117))
630
+ ### Features
631
+
632
+ * **ppx,examples:** full GWT coverage for example plugins ([9331744](https://github.com/ReventlessDev/reventless-core/commit/9331744d232802d996f3897d7eca6e8c6b735f68))
633
+
634
+
635
+ # 1.0.0-alpha.25 (2026-04-28)
636
+
637
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
638
+
639
+
640
+
641
+
642
+
643
+ # 1.0.0-alpha.24 (2026-04-27)
644
+
645
+ ### Bug Fixes
646
+
647
+ * **spec:** regenerate plugins; simplify codegen, drop Maker suffix ([8d81302](https://github.com/ReventlessDev/reventless-core/commit/8d81302a9dc3403f98298ff69b19901d625dff7e))
648
+
649
+
650
+ # 1.0.0-alpha.23 (2026-04-26)
651
+
652
+ ### Features
653
+
654
+ * enable mixed-source ReadModel — Aggregate + DCB projections (Plan 03) ([2a5f9de](https://github.com/ReventlessDev/reventless-core/commit/2a5f9de1df23cac39fc292dbad23cf16ad0aece4))
655
+
656
+
657
+ # 1.0.0-alpha.22 (2026-04-24)
658
+
659
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
660
+
661
+
662
+
663
+
664
+
665
+ # 1.0.0-alpha.21 (2026-04-24)
666
+
667
+ ### Features
668
+
669
+ * **gwt:** add 5 DCB slice DSLs and thread slice name into hints (Stage 3) ([62b59fd](https://github.com/ReventlessDev/reventless-core/commit/62b59fdaa745d7799209ec3c24c50a8d443670b5))
670
+ * **gwt:** add Stage 4 AppendConditionMismatch + Stage 5 Mapping_GWT ([24fa835](https://github.com/ReventlessDev/reventless-core/commit/24fa8353657329e73a04cfed8e0a390806ff3395))
671
+ * **gwt:** extract GWT test DSLs into @reventlessdev/reventless-gwt package ([dd64b4e](https://github.com/ReventlessDev/reventless-core/commit/dd64b4e1fd0bb203821d055b6743a52aec1836fb))
672
+
673
+
674
+ # 1.0.0-alpha.20 (2026-04-22)
675
+
676
+ ### Bug Fixes
677
+
678
+ * wire DCB cross-plugin event routing and AutoUI command linking ([8baabad](https://github.com/ReventlessDev/reventless-core/commit/8baabad8bce02ab0954a0eeefffb4cf5f448e1e7))
679
+ ### Features
680
+
681
+ * **build:** migrate from npm to pnpm (hoisted layout) ([1de8b77](https://github.com/ReventlessDev/reventless-core/commit/1de8b7753b8f45c63ea3c8d9f64de2f27febd029))
682
+ * **spec:** wire UI fragment manifest through plugin make via ~uiBundleUrl ([e07fa3a](https://github.com/ReventlessDev/reventless-core/commit/e07fa3a05d6effdd4c6c6686ab1f7e4e4312c438))
683
+
684
+
685
+ # 1.0.0-alpha.19 (2026-04-20)
686
+
687
+ ### Bug Fixes
688
+
689
+ * **aws:** Source B push chain end-to-end ([d2b5cef](https://github.com/ReventlessDev/reventless-core/commit/d2b5cef2ff1dde197879461551e71d04e91962ac))
690
+ ### Features
691
+
692
+ * add automationSlices, translation slices, and extensions to pluginStructure ([631e2f3](https://github.com/ReventlessDev/reventless-core/commit/631e2f3636f0a422e58712f70106c0df8effc1e9))
693
+ * **reventless-spec:** add StateViewSliceStream, EventMappings, and Task support to AWS codegen variant ([22d6b4a](https://github.com/ReventlessDev/reventless-core/commit/22d6b4aa22a57740090fa78b8c055c798e88194f))
694
+
695
+
696
+ # 1.0.0-alpha.18 (2026-04-18)
697
+
698
+ ### Features
699
+
700
+ * **core:** AutoUI definition — makeAutoUIDefinition, Platform_UIDefinitions query, generator support ([513ca53](https://github.com/ReventlessDev/reventless-core/commit/513ca5399b0b6e5ae6a982fd15693de2ea208b8d))
701
+ * **core:** uiFragments manifest — Phase 1 implementation with generic types ([1e73f62](https://github.com/ReventlessDev/reventless-core/commit/1e73f623984118081d2b985c48521812e4f8417e))
702
+
703
+
704
+ # 1.0.0-alpha.17 (2026-04-15)
705
+
706
+ ### Features
707
+
708
+ * zero-touch plugin assembly — generate Plugin.res from folder structure ([73ea654](https://github.com/ReventlessDev/reventless-core/commit/73ea654ab9a73f15ea7e18631e8194bfe0f4580f))
709
+
710
+
711
+ # 1.0.0-alpha.16 (2026-04-07)
712
+
713
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
714
+
715
+
716
+
717
+
718
+
719
+ # 1.0.0-alpha.15 (2026-04-07)
720
+
721
+ ### Features
722
+
723
+ * **ppx+querydb:** annotation-driven key design and sort key queries ([dee6de8](https://github.com/ReventlessDev/reventless-core/commit/dee6de84c2d2de5431d064f18ac7132bc8c23110))
724
+
725
+
726
+ # 1.0.0-alpha.14 (2026-04-06)
727
+
728
+ ### Bug Fixes
729
+
730
+ * add package-specs to all rescript.json to prevent CJS .js output ([780f1e0](https://github.com/ReventlessDev/reventless-core/commit/780f1e035173b73b17b78466ad01fb69c7cca350))
731
+ * **ppx:** preserve full entity name for files in slice folders ([5471b3f](https://github.com/ReventlessDev/reventless-core/commit/5471b3f2a64e5dbc85441ae22bfa53c194f84689))
732
+ * **ppx:** update compiled output for View suffix stripping in StateViewSlice ([857cb89](https://github.com/ReventlessDev/reventless-core/commit/857cb896fcb30d4a52585276dabbbcf80b3403a4))
733
+
734
+
735
+ # 1.0.0-alpha.13 (2026-04-06)
736
+
737
+ ### Features
738
+
739
+ * implement [@composite](https://github.com/composite)PartitionTag PPX annotation for multi-field DCB partition keys ([cf26b15](https://github.com/ReventlessDev/reventless-core/commit/cf26b15f639d151451c9aa04d32603ef9d5df315))
740
+
741
+
742
+ # 1.0.0-alpha.12 (2026-04-05)
743
+
744
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
745
+
746
+
747
+
748
+
749
+
750
+ # 1.0.0-alpha.11 (2026-04-04)
751
+
752
+ ### Bug Fixes
753
+
754
+ * DCB [@partition](https://github.com/partition)Tag runtime errors, GraphQL Node interface, and ESM config ([dc4c4e1](https://github.com/ReventlessDev/reventless-core/commit/dc4c4e10f1ef09aba840e7b359df453b122c6aa4))
755
+ ### Features
756
+
757
+ * migrate online-shop-hybrid example to reventless-ppx ([ac66980](https://github.com/ReventlessDev/reventless-core/commit/ac669807bf94b061b85e0217f1ec76af50d12a44))
758
+ * reventless-ppx — [@partition](https://github.com/partition)Tag, [@no](https://github.com/no)Tag, [@dcb](https://github.com/dcb)Tag field annotations ([64646b8](https://github.com/ReventlessDev/reventless-core/commit/64646b8813ba8c55febb3383bc40a78c5b09147e))
759
+
760
+
761
+ # 1.0.0-alpha.10 (2026-04-03)
762
+
763
+ * feat!: support multi-command returns in InboundTranslationSlice ([eaac621](https://github.com/ReventlessDev/reventless-core/commit/eaac6213829b876db508b6a98db081ee40dc3e95))
764
+
765
+ ### BREAKING CHANGES
766
+
767
+ * All `translate` implementations must wrap returns in arrays.
768
+
769
+
770
+
771
+ # 1.0.0-alpha.9 (2026-03-30)
772
+
773
+ ### Features
774
+
775
+ * **examples:** publish example packages to GitHub Package Registry ([2495ba5](https://github.com/ReventlessDev/reventless-core/commit/2495ba5c4436613d58964f9948c1bacbde61965f))
776
+
777
+
778
+ # [1.0.0-alpha.8](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.6...@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.8) (2026-03-28)
779
+
780
+ ### Bug Fixes
781
+
782
+ * **examples:** regenerate stale .mjs for aggregate, dcb, and hybrid plugins ([b5b4de5](https://github.com/ReventlessDev/reventless-core/commit/b5b4de5c4db7f5f8eb9071157302c4f0796b1889))
783
+ * feat!: flatten DcbSpec module type into direct Plugin.make parameters ([1c0bc57](https://github.com/ReventlessDev/reventless-core/commit/1c0bc576fcd88b92510900c16f5f117e864d9d7f))
784
+
785
+ ### BREAKING CHANGES
786
+
787
+ * Plugin.make no longer accepts ~dcbSpec=module(DcbSpec).
788
+ Pass slice arrays directly instead. Empty arrays can be omitted.
789
+
790
+
791
+
792
+ # [1.0.0-alpha.7](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.6...@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.7) (2026-03-27)
793
+
794
+ * feat!: flatten DcbSpec module type into direct Plugin.make parameters ([1c0bc57](https://github.com/ReventlessDev/reventless-core/commit/1c0bc576fcd88b92510900c16f5f117e864d9d7f))
795
+
796
+ ### BREAKING CHANGES
797
+
798
+ * Plugin.make no longer accepts ~dcbSpec=module(DcbSpec).
799
+ Pass slice arrays directly instead. Empty arrays can be omitted.
800
+
801
+
802
+
803
+ # [1.0.0-alpha.6](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.3...@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.6) (2026-03-27)
804
+
805
+ * feat!: remove resolverConfig from Behavior module type ([6f54015](https://github.com/ReventlessDev/reventless-core/commit/6f54015e3abc1c5c05472c8f54645723a0f5ed28))
806
+ * feat!: decouple DCB slices from shared event log union type ([2a40e8d](https://github.com/ReventlessDev/reventless-core/commit/2a40e8dd9babfb88440fcaccde6fb667b60e0ba9))
807
+
808
+ ### BREAKING CHANGES
809
+
810
+ * Behavior.T no longer requires resolverConfig. Remove it
811
+ from all Behavior implementations.
812
+ * All DCB slice specs must use `producedEvent`/`consumedEvent`
813
+ instead of `module DcbEventLogSpec`. Plugin `DcbSpec` no longer has `type event`
814
+ or `with type dcbEvent` constraints.
815
+
816
+
817
+
818
+ # [1.0.0-alpha.5](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.3...@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.5) (2026-03-26)
819
+
820
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
821
+
822
+
823
+
824
+
825
+
826
+ # [1.0.0-alpha.4](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.3...@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.4) (2026-03-26)
827
+
828
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
829
+
830
+
831
+
832
+
833
+
834
+ # [1.0.0-alpha.3](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.2...@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.3) (2026-03-23)
835
+
836
+ * refactor!: streamline component function naming to unified two-function pattern ([06814fd](https://github.com/ReventlessDev/reventless-core/commit/06814fd8589cf05ce8a9f9654552e7d5cd9c6bf2))
837
+ * fix(reventless-aws)!: resolve DcbEventLogSpec undefined at runtime and add AppSync routing ([85138a3](https://github.com/ReventlessDev/reventless-core/commit/85138a39afe97047ea5f063508994e20544eb780))
838
+
839
+ ### BREAKING CHANGES
840
+
841
+ * All component function signatures changed. Behavior.decide
842
+ now returns result<array<event>, error> instead of using errorHandler callback.
843
+ StateChangeSlice type decisionModel renamed to state. Projection.Mapping.map
844
+ renamed to project. StateViewSlice.project takes one argument instead of two.
845
+
846
+ * DcbEventLog.Spec now requires `let moduleUrl: string` field.
847
+ Add `let moduleUrl: string = %raw(\`import.meta.url\`)` to event log modules.
848
+ # [1.0.0-alpha.2](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.1...@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.2) (2026-03-22)
849
+
850
+ * feat(reventless-aws)!: replace esbuild pipeline with compiled ReScript entry points ([6cb3133](https://github.com/ReventlessDev/reventless-core/commit/6cb313323c73a078d0922fa6b977466f61de74ea))
851
+
852
+ ### BREAKING CHANGES
853
+
854
+ * esbuild removed from dependencies, `makeBundled` and
855
+ `makeBundledFromEntryPoint` removed from RuntimeEnvironment_Lambda,
856
+ `BundledEnvironment` module type removed from Runtime.
857
+ # [1.0.0-alpha.1](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.0...@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.1) (2026-03-17)
858
+
859
+ **Note:** Version bump only for package @reventlessdev/online-shop-hybrid-catalog
860
+
861
+ # [1.0.0-alpha.0](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-catalog@0.1.0-alpha.1...@reventlessdev/online-shop-hybrid-catalog@1.0.0-alpha.0) (2026-03-16)
862
+
863
+ * feat!: auto-detect plugin version from package.json via V8 stack trace ([e172673](https://github.com/ReventlessDev/reventless-core/commit/e17267390c197fa34052cef8325c579bb781419f))
864
+
865
+ ### BREAKING CHANGES
866
+
867
+ * Plugin.make no longer accepts ~version.
868
+ # [0.1.0-alpha.1](https://github.com/ReventlessDev/reventless-core/compare/@reventlessdev/online-shop-hybrid-catalog@0.1.0-alpha.0...@reventlessdev/online-shop-hybrid-catalog@0.1.0-alpha.1) (2026-03-12)
869
+
870
+ ### Features
871
+
872
+ * **deps:** upgrade rescript to 12.2 and migrate Belt usages to stdlib ([eaa96ea](https://github.com/ReventlessDev/reventless-core/commit/eaa96ea61ca40d61573fb5fe2002a1f73d43ce3e))
873
+ # 0.1.0-alpha.0 (2026-03-08)
874
+
875
+ ### Features
876
+
877
+ * **examples:** add online-shop-hybrid example with aggregate + DCB composition ([296ad05](https://github.com/ReventlessDev/reventless-core/commit/296ad05f067c53854d4cf0a5d4a8deb91d751b04))
878
+ * replace explicit queryMode with automatic schema-driven DCB query construction ([8df4350](https://github.com/ReventlessDev/reventless-core/commit/8df4350c37f1f15678f4796f229647eaeb3e8222))