@camunda8/orchestration-cluster-api 9.1.1 → 9.1.2
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 +7 -0
- package/dist/{chunk-ZHIFAOE5.js → chunk-WSCXETVI.js} +6 -2
- package/dist/{chunk-ZHIFAOE5.js.map → chunk-WSCXETVI.js.map} +1 -1
- package/dist/fp/index.cjs +5 -1
- package/dist/fp/index.cjs.map +1 -1
- package/dist/fp/index.js +1 -1
- package/dist/index.cjs +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/fp/index.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -12639,7 +12639,7 @@ function createLogger(opts = {}) {
|
|
|
12639
12639
|
}
|
|
12640
12640
|
|
|
12641
12641
|
// src/runtime/version.ts
|
|
12642
|
-
var packageVersion = "9.1.
|
|
12642
|
+
var packageVersion = "9.1.2";
|
|
12643
12643
|
|
|
12644
12644
|
// src/runtime/supportLogger.ts
|
|
12645
12645
|
var NoopSupportLogger = class {
|
|
@@ -14988,6 +14988,10 @@ var CamundaClient = class {
|
|
|
14988
14988
|
const _body = arg;
|
|
14989
14989
|
let envelope = {};
|
|
14990
14990
|
envelope.body = _body;
|
|
14991
|
+
if (envelope.body && this._config.defaultTenantId !== void 0 && this._config.defaultTenantId !== null && (!Array.isArray(envelope.body.tenantIds) || envelope.body.tenantIds.length === 0)) {
|
|
14992
|
+
envelope.body.tenantIds = [this._config.defaultTenantId];
|
|
14993
|
+
this._log.trace(() => ["tenant.default.inject", { op: "activateJobs", tenantIds: [this._config.defaultTenantId] }]);
|
|
14994
|
+
}
|
|
14991
14995
|
if (this._validation.settings.req !== "none") {
|
|
14992
14996
|
const _schemas = await this._loadSchemas();
|
|
14993
14997
|
const maybe = await this._validation.gateRequest("activateJobs", _schemas.zActivateJobsData, envelope);
|