@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/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.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 = [];