@camunda8/orchestration-cluster-api 8.9.0-alpha.25 → 8.9.0-alpha.26
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 +9 -0
- package/README.md +1 -1
- package/dist/{chunk-M5ILKTHY.js → chunk-CCCMH2RY.js} +3 -3
- package/dist/{chunk-M5ILKTHY.js.map → chunk-CCCMH2RY.js.map} +1 -1
- package/dist/fp/index.cjs +2 -5
- package/dist/fp/index.cjs.map +1 -1
- package/dist/fp/index.d.cts +1 -1
- package/dist/fp/index.d.ts +1 -1
- package/dist/fp/index.js +1 -1
- package/dist/{index-ofViYvpy.d.ts → index-DjG30vCI.d.ts} +15 -1
- package/dist/{index-kEPhHRPZ.d.cts → index-r6PrypEg.d.cts} +15 -1
- package/dist/index.cjs +3 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/{zod.gen-7H2NP5CB.js → zod.gen-SNSVMZKG.js} +2 -5
- package/dist/zod.gen-SNSVMZKG.js.map +1 -0
- package/package.json +1 -2
- package/dist/zod.gen-7H2NP5CB.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
# [8.9.0-alpha.26](https://github.com/camunda/orchestration-cluster-api-js/compare/v8.9.0-alpha.25...v8.9.0-alpha.26) (2026-04-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* address PR review comments ([eac304d](https://github.com/camunda/orchestration-cluster-api-js/commit/eac304d5aceec4d1b6d4e9c07cd68169019db928))
|
|
7
|
+
* correct type errors in SDK examples ([4c95f12](https://github.com/camunda/orchestration-cluster-api-js/commit/4c95f12cf06e69d7b48b3e563cbddd6ebcefcfb7))
|
|
8
|
+
* remove redundant dynamic UserTaskKey imports ([078f083](https://github.com/camunda/orchestration-cluster-api-js/commit/078f08332fc6b6b5600d25241b4fa94869d3278a))
|
|
9
|
+
|
|
1
10
|
# [8.9.0-alpha.25](https://github.com/camunda/orchestration-cluster-api-js/compare/v8.9.0-alpha.24...v8.9.0-alpha.25) (2026-04-01)
|
|
2
11
|
|
|
3
12
|
|
package/README.md
CHANGED
|
@@ -182,7 +182,7 @@ Pass a partial `HttpRetryPolicy` to override individual fields. Unspecified fiel
|
|
|
182
182
|
```ts
|
|
183
183
|
// More aggressive retry for this operation only
|
|
184
184
|
await camunda.createProcessInstance(
|
|
185
|
-
{ processDefinitionId
|
|
185
|
+
{ processDefinitionId },
|
|
186
186
|
{ retry: { maxAttempts: 8, maxDelayMs: 5000 } }
|
|
187
187
|
);
|
|
188
188
|
|
|
@@ -4407,7 +4407,7 @@ function installAuthInterceptor(client2, getStrategy, getAuthHeaders) {
|
|
|
4407
4407
|
}
|
|
4408
4408
|
|
|
4409
4409
|
// src/runtime/version.ts
|
|
4410
|
-
var packageVersion = "8.9.0-alpha.
|
|
4410
|
+
var packageVersion = "8.9.0-alpha.26";
|
|
4411
4411
|
|
|
4412
4412
|
// src/runtime/supportLogger.ts
|
|
4413
4413
|
var NoopSupportLogger = class {
|
|
@@ -6387,7 +6387,7 @@ var CamundaClient = class {
|
|
|
6387
6387
|
_schemasPromise = null;
|
|
6388
6388
|
_loadSchemas() {
|
|
6389
6389
|
if (!this._schemasPromise) {
|
|
6390
|
-
this._schemasPromise = import("./zod.gen-
|
|
6390
|
+
this._schemasPromise = import("./zod.gen-SNSVMZKG.js");
|
|
6391
6391
|
}
|
|
6392
6392
|
return this._schemasPromise;
|
|
6393
6393
|
}
|
|
@@ -16675,4 +16675,4 @@ export {
|
|
|
16675
16675
|
withTimeoutTE,
|
|
16676
16676
|
eventuallyTE
|
|
16677
16677
|
};
|
|
16678
|
-
//# sourceMappingURL=chunk-
|
|
16678
|
+
//# sourceMappingURL=chunk-CCCMH2RY.js.map
|