@reventlessdev/reventless-infra 3.0.0-alpha.118 → 3.0.0-alpha.120
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
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
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
|
+
# 3.0.0-alpha.120 (2026-08-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @reventlessdev/reventless-infra
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# 3.0.0-alpha.119 (2026-08-02)
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **spec:** make plugin structure/apiSchemaFragment offloadable payloads ([a0391bf](https://github.com/ReventlessDev/reventless-core/commit/a0391bf26f91035460cbf90f52d105a1003414c3))
|
|
19
|
+
|
|
20
|
+
|
|
6
21
|
# 3.0.0-alpha.118 (2026-08-02)
|
|
7
22
|
|
|
8
23
|
**Note:** Version bump only for package @reventlessdev/reventless-infra
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reventlessdev/reventless-infra",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.120",
|
|
4
4
|
"description": "Infrastructure types for Reventless framework",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"jest": {
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"uuid": "^13.0.0",
|
|
19
19
|
"@reventlessdev/rescript-effect": "0.1.0-alpha.32",
|
|
20
20
|
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.18",
|
|
21
|
-
"@reventlessdev/
|
|
22
|
-
"@reventlessdev/
|
|
21
|
+
"@reventlessdev/reventless-spec": "3.0.0-alpha.95",
|
|
22
|
+
"@reventlessdev/rescript-uuid": "2.0.0-alpha.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"rescript": "12.3.0",
|
|
@@ -111,7 +111,7 @@ let apiSchemaFragmentSchema = Plugin$Reventless.apiSchemaFragmentSchema;
|
|
|
111
111
|
|
|
112
112
|
let apiTargetSchema = Plugin$Reventless.apiTargetSchema;
|
|
113
113
|
|
|
114
|
-
let
|
|
114
|
+
let apiSchemaFragmentOffloadSchema = Plugin$Reventless.apiSchemaFragmentOffloadSchema;
|
|
115
115
|
|
|
116
116
|
let dcbEventLogOptionSchema = Plugin$Reventless.dcbEventLogOptionSchema;
|
|
117
117
|
|
|
@@ -161,7 +161,7 @@ let requiredStoreDeclarationArrayOptionSchema = Plugin$Reventless.requiredStoreD
|
|
|
161
161
|
|
|
162
162
|
let pluginStructureSchema = Plugin$Reventless.pluginStructureSchema;
|
|
163
163
|
|
|
164
|
-
let
|
|
164
|
+
let pluginStructureOffloadSchema = Plugin$Reventless.pluginStructureOffloadSchema;
|
|
165
165
|
|
|
166
166
|
let pluginDefinitionSchema = Plugin$Reventless.pluginDefinitionSchema;
|
|
167
167
|
|
|
@@ -178,7 +178,7 @@ export {
|
|
|
178
178
|
extensionProtocolSchema,
|
|
179
179
|
apiSchemaFragmentSchema,
|
|
180
180
|
apiTargetSchema,
|
|
181
|
-
|
|
181
|
+
apiSchemaFragmentOffloadSchema,
|
|
182
182
|
dcbEventLogOptionSchema,
|
|
183
183
|
stringOptionSchema,
|
|
184
184
|
stringArrayOptionSchema,
|
|
@@ -203,7 +203,7 @@ export {
|
|
|
203
203
|
requiredStoreDeclarationSchema,
|
|
204
204
|
requiredStoreDeclarationArrayOptionSchema,
|
|
205
205
|
pluginStructureSchema,
|
|
206
|
-
|
|
206
|
+
pluginStructureOffloadSchema,
|
|
207
207
|
pluginDefinitionSchema,
|
|
208
208
|
timeoutSchema,
|
|
209
209
|
forwardCommandSchema,
|