@camunda8/orchestration-cluster-api 1.2.2 → 1.2.3
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 +8 -2
- package/README.md +25 -0
- package/dist/{chunk-HAWDB7KV.js → chunk-C4KMECWH.js} +5 -3
- package/dist/chunk-C4KMECWH.js.map +1 -0
- package/dist/fp/index.cjs +4 -2
- 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-WJHww8O1.d.cts → index-4i6euXtC.d.cts} +2 -0
- package/dist/{index-Cp8OPyAq.d.ts → index-BozZ_h8n.d.ts} +2 -0
- package/dist/index.cjs +4 -2
- 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/dist/chunk-HAWDB7KV.js.map +0 -1
package/dist/fp/index.cjs
CHANGED
|
@@ -9518,7 +9518,7 @@ function createLogger(opts = {}) {
|
|
|
9518
9518
|
}
|
|
9519
9519
|
|
|
9520
9520
|
// src/runtime/version.ts
|
|
9521
|
-
var packageVersion = "1.2.
|
|
9521
|
+
var packageVersion = "1.2.3";
|
|
9522
9522
|
|
|
9523
9523
|
// src/runtime/supportLogger.ts
|
|
9524
9524
|
var NoopSupportLogger = class {
|
|
@@ -10589,7 +10589,9 @@ var JobWorker = class {
|
|
|
10589
10589
|
worker: this._name,
|
|
10590
10590
|
maxJobsToActivate: batchSize,
|
|
10591
10591
|
requestTimeout: this._cfg.pollTimeoutMs ?? DEFAULT_LONGPOLL_TIMEOUT,
|
|
10592
|
-
timeout: this._cfg.jobTimeoutMs
|
|
10592
|
+
timeout: this._cfg.jobTimeoutMs,
|
|
10593
|
+
// API expects `fetchVariable`; map from config `fetchVariables`
|
|
10594
|
+
...this._cfg.fetchVariables && this._cfg.fetchVariables.length > 0 ? { fetchVariable: this._cfg.fetchVariables } : {}
|
|
10593
10595
|
};
|
|
10594
10596
|
this._log.debug(() => ["activation.request", { batchSize }]);
|
|
10595
10597
|
let result = [];
|