@camunda8/orchestration-cluster-api 10.0.0-alpha.2 → 10.0.0-alpha.21
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 +154 -0
- package/README.md +78 -1
- package/dist/{chunk-MPDW3NIE.js → chunk-7SBI6PGB.js} +9636 -7164
- package/dist/chunk-7SBI6PGB.js.map +1 -0
- package/dist/fp/index.cjs +14899 -12202
- package/dist/fp/index.cjs.map +1 -1
- package/dist/fp/index.d.cts +1 -2
- package/dist/fp/index.d.ts +1 -2
- package/dist/fp/index.js +1 -1
- package/dist/{index-NxMS1fuh.d.ts → index-CE5WmteM.d.ts} +11532 -5678
- package/dist/{index-DCO1POBR.d.cts → index-DPNy4KLk.d.cts} +11532 -5678
- package/dist/index.cjs +12507 -9518
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -4
- package/dist/index.d.ts +3 -4
- package/dist/index.js +287 -11
- package/dist/index.js.map +1 -1
- package/dist/{zod.gen-J3DNBFMQ.js → zod.gen-BT6O3SVH.js} +3896 -3664
- package/dist/zod.gen-BT6O3SVH.js.map +1 -0
- package/package.json +32 -16
- package/dist/chunk-MPDW3NIE.js.map +0 -1
- package/dist/zod.gen-J3DNBFMQ.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camunda8/orchestration-cluster-api",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "10.0.0-alpha.
|
|
4
|
+
"version": "10.0.0-alpha.21",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"camundacon:tags:second": "tsx camundacon/tags/second.ts",
|
|
55
55
|
"camundacon:tags:third": "tsx camundacon/tags/third.ts",
|
|
56
56
|
"clean": "rimraf dist src/gen src/facade",
|
|
57
|
-
"generate": "npm run clean && npm run bundle:spec && tsx scripts/run-pipeline.ts",
|
|
58
|
-
"generate:local": "npm run clean && npm run bundle:spec:local && tsx scripts/run-pipeline.ts",
|
|
57
|
+
"generate": "npm run clean && npm run bundle:spec && tsx scripts/run-pipeline.ts && npm run responses:regenerate:local",
|
|
58
|
+
"generate:local": "npm run clean && npm run bundle:spec:local && tsx scripts/run-pipeline.ts && npm run responses:regenerate:local",
|
|
59
59
|
"bundle:spec": "camunda-schema-bundler --ref ${SPEC_REF:-main} --output-spec external-spec/bundled/rest-api.bundle.json --output-metadata external-spec/bundled/spec-metadata.json",
|
|
60
60
|
"bundle:spec:local": "camunda-schema-bundler --spec-dir external-spec/upstream/zeebe/gateway-protocol/src/main/proto/v2 --output-spec external-spec/bundled/rest-api.bundle.json --output-metadata external-spec/bundled/spec-metadata.json",
|
|
61
61
|
"version:sync": "tsx scripts/write-version-constant.ts",
|
|
@@ -68,12 +68,14 @@
|
|
|
68
68
|
"test:dist": "npm run build --silent && node tests/dist-usage.smoke.mjs",
|
|
69
69
|
"lint": "biome lint .",
|
|
70
70
|
"lint:fix": "biome check . --write",
|
|
71
|
+
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
|
|
71
72
|
"format": "biome format . --write",
|
|
72
73
|
"format:check": "biome check .",
|
|
73
74
|
"release": "semantic-release",
|
|
74
75
|
"prepare": "husky install",
|
|
75
76
|
"update:assertions": "npx assert-json-body",
|
|
76
77
|
"responses:regenerate": "assert-json-body extract",
|
|
78
|
+
"responses:regenerate:local": "assert-json-body extract --specFile=external-spec/upstream/zeebe/gateway-protocol/src/main/proto/v2/rest-api.yaml",
|
|
77
79
|
"docker:start": "docker compose -f docker/docker-compose.yaml up -d",
|
|
78
80
|
"docker:stop": "docker compose -f docker/docker-compose.yaml down",
|
|
79
81
|
"docker:es:start": "docker compose -f docker/docker-compose-es.yaml up -d",
|
|
@@ -107,28 +109,42 @@
|
|
|
107
109
|
}
|
|
108
110
|
},
|
|
109
111
|
"devDependencies": {
|
|
110
|
-
"@biomejs/biome": "^2.
|
|
111
|
-
"@
|
|
112
|
-
"@commitlint/
|
|
113
|
-
"@
|
|
114
|
-
"@
|
|
115
|
-
"@semantic-release/
|
|
112
|
+
"@biomejs/biome": "^2.5.2",
|
|
113
|
+
"@camunda8/sdk-infra": "^1.7.1",
|
|
114
|
+
"@commitlint/cli": "^21.1.0",
|
|
115
|
+
"@commitlint/config-conventional": "^21.0.1",
|
|
116
|
+
"@hey-api/openapi-ts": "^0.99.0",
|
|
117
|
+
"@semantic-release/changelog": "^7.0.0",
|
|
118
|
+
"@semantic-release/git": "^11.0.0",
|
|
116
119
|
"@types/node": "^20.14.9",
|
|
117
120
|
"@types/single-line-log": "^1.1.2",
|
|
118
|
-
"assert-json-body": "^1.
|
|
119
|
-
"camunda-schema-bundler": "^
|
|
121
|
+
"assert-json-body": "^1.8.1",
|
|
122
|
+
"camunda-schema-bundler": "^2.4.3",
|
|
120
123
|
"chalk": "^5.6.2",
|
|
121
124
|
"fp-ts": "^2.16.11",
|
|
122
125
|
"husky": "^9.0.11",
|
|
123
126
|
"rimraf": "^6.1.3",
|
|
124
|
-
"semantic-release": "^25.0.
|
|
127
|
+
"semantic-release": "^25.0.5",
|
|
125
128
|
"single-line-log": "^1.1.2",
|
|
126
129
|
"tsup": "^8.5.1",
|
|
127
|
-
"tsx": "^4.
|
|
128
|
-
"typedoc": "^0.28.
|
|
129
|
-
"typedoc-plugin-markdown": "^4.
|
|
130
|
+
"tsx": "^4.22.4",
|
|
131
|
+
"typedoc": "^0.28.19",
|
|
132
|
+
"typedoc-plugin-markdown": "^4.12.0",
|
|
130
133
|
"typescript": "^5.4.5",
|
|
131
|
-
"vitest": "^
|
|
134
|
+
"vitest": "^4.1.9"
|
|
135
|
+
},
|
|
136
|
+
"overrides": {
|
|
137
|
+
"@semantic-release/github": "^11.0.6",
|
|
138
|
+
"handlebars": "4.7.9",
|
|
139
|
+
"js-yaml@4": "4.3.0",
|
|
140
|
+
"lodash-es@4": "4.18.1",
|
|
141
|
+
"rollup@4": "4.62.3",
|
|
142
|
+
"ajv@8": "8.20.0",
|
|
143
|
+
"glob@10": "10.5.0",
|
|
144
|
+
"postcss@8": "8.5.23",
|
|
145
|
+
"fast-uri@3": "3.1.4",
|
|
146
|
+
"minimatch@9": "9.0.9",
|
|
147
|
+
"picomatch@2": "2.3.2"
|
|
132
148
|
},
|
|
133
149
|
"engines": {
|
|
134
150
|
"node": ">=22"
|