@camunda8/orchestration-cluster-api 8.9.0-alpha.34 → 8.9.0-alpha.36
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 +15 -0
- package/README.md +2 -0
- package/dist/{chunk-DP5HJTAU.js → chunk-PZKIMTSF.js} +3 -3
- package/dist/{chunk-DP5HJTAU.js.map → chunk-PZKIMTSF.js.map} +1 -1
- package/dist/fp/index.cjs +38 -38
- package/dist/fp/index.cjs.map +1 -1
- package/dist/fp/index.js +1 -1
- package/dist/index.cjs +38 -38
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/{zod.gen-SNSVMZKG.js → zod.gen-J3DNBFMQ.js} +38 -38
- package/dist/zod.gen-J3DNBFMQ.js.map +1 -0
- package/package.json +1 -1
- package/dist/zod.gen-SNSVMZKG.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# [8.9.0-alpha.36](https://github.com/camunda/orchestration-cluster-api-js/compare/v8.9.0-alpha.35...v8.9.0-alpha.36) (2026-04-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* address review comments on PR [#110](https://github.com/camunda/orchestration-cluster-api-js/issues/110) ([5a0eaf0](https://github.com/camunda/orchestration-cluster-api-js/commit/5a0eaf0dbd22437b9160f568f37a1215b0d0983d))
|
|
7
|
+
|
|
8
|
+
# [8.9.0-alpha.35](https://github.com/camunda/orchestration-cluster-api-js/compare/v8.9.0-alpha.34...v8.9.0-alpha.35) (2026-04-09)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* address review comments on PR [#125](https://github.com/camunda/orchestration-cluster-api-js/issues/125) ([6e82793](https://github.com/camunda/orchestration-cluster-api-js/commit/6e82793e4d80a72cd7e7ea168299dcda7268673f))
|
|
14
|
+
* replace z.coerce.bigint() with z.coerce.number() for int64 fields ([b0b592a](https://github.com/camunda/orchestration-cluster-api-js/commit/b0b592ad57b3d3cdd9a6976c01107b922c4deeef)), closes [#124](https://github.com/camunda/orchestration-cluster-api-js/issues/124)
|
|
15
|
+
|
|
1
16
|
# [8.9.0-alpha.34](https://github.com/camunda/orchestration-cluster-api-js/compare/v8.9.0-alpha.33...v8.9.0-alpha.34) (2026-04-09)
|
|
2
17
|
|
|
3
18
|
|
package/README.md
CHANGED
|
@@ -258,6 +258,8 @@ Behavior:
|
|
|
258
258
|
- `strict` - fail on type mismatch or missing required fields
|
|
259
259
|
- `fanatical` - fail on type mismatch, missing required fields, or unknown additional fields
|
|
260
260
|
|
|
261
|
+
> **Note on `int64` fields**: The upstream OpenAPI spec declares some fields (e.g. `totalItems`, `timeout`, `timestamp`) as `integer` with `format: int64`. The TypeScript types map these to `number`. JSON responses also deserialize as `number` (with precision loss beyond `Number.MAX_SAFE_INTEGER`). The Zod schemas use `z.coerce.number().int()` for these fields, preserving the integer constraint while keeping the runtime type aligned with TypeScript. All validation modes (`none`, `warn`, `strict`, `fanatical`) return `number`.
|
|
262
|
+
|
|
261
263
|
## Per-Method Retry Override
|
|
262
264
|
|
|
263
265
|
Every API method accepts an optional trailing `options` parameter that lets you override or disable the global retry policy for that single call.
|
|
@@ -4412,7 +4412,7 @@ function installAuthInterceptor(client2, getStrategy, getAuthHeaders) {
|
|
|
4412
4412
|
}
|
|
4413
4413
|
|
|
4414
4414
|
// src/runtime/version.ts
|
|
4415
|
-
var packageVersion = "8.9.0-alpha.
|
|
4415
|
+
var packageVersion = "8.9.0-alpha.36";
|
|
4416
4416
|
|
|
4417
4417
|
// src/runtime/supportLogger.ts
|
|
4418
4418
|
var NoopSupportLogger = class {
|
|
@@ -6392,7 +6392,7 @@ var CamundaClient = class {
|
|
|
6392
6392
|
_schemasPromise = null;
|
|
6393
6393
|
_loadSchemas() {
|
|
6394
6394
|
if (!this._schemasPromise) {
|
|
6395
|
-
this._schemasPromise = import("./zod.gen-
|
|
6395
|
+
this._schemasPromise = import("./zod.gen-J3DNBFMQ.js");
|
|
6396
6396
|
}
|
|
6397
6397
|
return this._schemasPromise;
|
|
6398
6398
|
}
|
|
@@ -16721,4 +16721,4 @@ export {
|
|
|
16721
16721
|
withTimeoutTE,
|
|
16722
16722
|
eventuallyTE
|
|
16723
16723
|
};
|
|
16724
|
-
//# sourceMappingURL=chunk-
|
|
16724
|
+
//# sourceMappingURL=chunk-PZKIMTSF.js.map
|