@camunda8/orchestration-cluster-api 8.9.0-alpha.30 → 8.9.0-alpha.32
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 +14 -0
- package/dist/{chunk-THJ7WFPZ.js → chunk-5B3A2LNR.js} +6 -2
- package/dist/{chunk-THJ7WFPZ.js.map → chunk-5B3A2LNR.js.map} +1 -1
- package/dist/fp/index.cjs +5 -1
- 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-CbGhIQYM.d.cts → index-DaZLQkx4.d.cts} +374 -0
- package/dist/{index-DGPlGsf_.d.ts → index-pYa28et8.d.ts} +374 -0
- package/dist/index.cjs +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [8.9.0-alpha.32](https://github.com/camunda/orchestration-cluster-api-js/compare/v8.9.0-alpha.31...v8.9.0-alpha.32) (2026-04-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* disable source links in TypeDoc markdown to prevent SHA churn ([6754e9c](https://github.com/camunda/orchestration-cluster-api-js/commit/6754e9c2739893501ad99efc27809dda25110129))
|
|
7
|
+
|
|
8
|
+
# [8.9.0-alpha.31](https://github.com/camunda/orchestration-cluster-api-js/compare/v8.9.0-alpha.30...v8.9.0-alpha.31) (2026-04-09)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* wrap [@example](https://github.com/example) code in fenced blocks for TypeDoc markdown rendering ([b1aaa63](https://github.com/camunda/orchestration-cluster-api-js/commit/b1aaa6318ef86d134bdef114af5504a0519937c0))
|
|
14
|
+
|
|
1
15
|
# [8.9.0-alpha.30](https://github.com/camunda/orchestration-cluster-api-js/compare/v8.9.0-alpha.29...v8.9.0-alpha.30) (2026-04-09)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -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.32";
|
|
4416
4416
|
|
|
4417
4417
|
// src/runtime/supportLogger.ts
|
|
4418
4418
|
var NoopSupportLogger = class {
|
|
@@ -16431,6 +16431,7 @@ var CamundaClient = class {
|
|
|
16431
16431
|
* config object.
|
|
16432
16432
|
* @param cfg Worker configuration
|
|
16433
16433
|
* @example Create a job worker
|
|
16434
|
+
* ```ts
|
|
16434
16435
|
* async function createJobWorkerExample() {
|
|
16435
16436
|
* const camunda = createCamundaClient();
|
|
16436
16437
|
*
|
|
@@ -16447,7 +16448,9 @@ var CamundaClient = class {
|
|
|
16447
16448
|
* // Workers run continuously until closed
|
|
16448
16449
|
* // worker.close();
|
|
16449
16450
|
* }
|
|
16451
|
+
* ```
|
|
16450
16452
|
* @example Job worker with error handling
|
|
16453
|
+
* ```ts
|
|
16451
16454
|
* async function jobWorkerWithErrorHandlingExample() {
|
|
16452
16455
|
* const camunda = createCamundaClient();
|
|
16453
16456
|
*
|
|
@@ -16471,6 +16474,7 @@ var CamundaClient = class {
|
|
|
16471
16474
|
*
|
|
16472
16475
|
* void worker;
|
|
16473
16476
|
* }
|
|
16477
|
+
* ```
|
|
16474
16478
|
*/
|
|
16475
16479
|
createJobWorker(cfg) {
|
|
16476
16480
|
const defaults = this._config.workerDefaults;
|
|
@@ -16717,4 +16721,4 @@ export {
|
|
|
16717
16721
|
withTimeoutTE,
|
|
16718
16722
|
eventuallyTE
|
|
16719
16723
|
};
|
|
16720
|
-
//# sourceMappingURL=chunk-
|
|
16724
|
+
//# sourceMappingURL=chunk-5B3A2LNR.js.map
|