@camunda8/orchestration-cluster-api 8.8.0 → 8.8.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/dist/{chunk-CTXSQJWB.js → chunk-TFEUAC4X.js} +10 -2
- package/dist/chunk-TFEUAC4X.js.map +1 -0
- package/dist/fp/index.cjs +9 -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-DIV5cZE7.d.ts → index-BvRQQCn2.d.ts} +54 -44
- package/dist/{index-DWFqsKHD.d.cts → index-DszoHmWt.d.cts} +54 -44
- package/dist/index.cjs +9 -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/dist/index.js.map +1 -1
- package/package.json +2 -5
- package/dist/chunk-CTXSQJWB.js.map +0 -1
|
@@ -9631,7 +9631,7 @@ function installAuthInterceptor(client2, getStrategy, getAuthHeaders) {
|
|
|
9631
9631
|
}
|
|
9632
9632
|
|
|
9633
9633
|
// src/runtime/version.ts
|
|
9634
|
-
var packageVersion = "8.8.
|
|
9634
|
+
var packageVersion = "8.8.2";
|
|
9635
9635
|
|
|
9636
9636
|
// src/runtime/supportLogger.ts
|
|
9637
9637
|
var NoopSupportLogger = class {
|
|
@@ -12641,6 +12641,10 @@ var CamundaClient = class {
|
|
|
12641
12641
|
const _body = arg;
|
|
12642
12642
|
let envelope = {};
|
|
12643
12643
|
envelope.body = _body;
|
|
12644
|
+
if (envelope.body && (envelope.body.tenantId === void 0 || envelope.body.tenantId === null)) {
|
|
12645
|
+
envelope.body.tenantId = this._config.defaultTenantId;
|
|
12646
|
+
this._log.trace(() => ["tenant.default.inject", { op: "createProcessInstance", tenant: this._config.defaultTenantId }]);
|
|
12647
|
+
}
|
|
12644
12648
|
if (this._validation.settings.req !== "none") {
|
|
12645
12649
|
const maybe = await this._validation.gateRequest("createProcessInstance", zCreateProcessInstanceData, envelope);
|
|
12646
12650
|
if (this._validation.settings.req === "strict") envelope = maybe;
|
|
@@ -13246,6 +13250,10 @@ var CamundaClient = class {
|
|
|
13246
13250
|
const _body = arg;
|
|
13247
13251
|
let envelope = {};
|
|
13248
13252
|
envelope.body = _body;
|
|
13253
|
+
if (envelope.body && (envelope.body.tenantId === void 0 || envelope.body.tenantId === null)) {
|
|
13254
|
+
envelope.body.tenantId = this._config.defaultTenantId;
|
|
13255
|
+
this._log.trace(() => ["tenant.default.inject", { op: "evaluateDecision", tenant: this._config.defaultTenantId }]);
|
|
13256
|
+
}
|
|
13249
13257
|
if (this._validation.settings.req !== "none") {
|
|
13250
13258
|
const maybe = await this._validation.gateRequest("evaluateDecision", zEvaluateDecisionData, envelope);
|
|
13251
13259
|
if (this._validation.settings.req === "strict") envelope = maybe;
|
|
@@ -18891,4 +18899,4 @@ export {
|
|
|
18891
18899
|
withTimeoutTE,
|
|
18892
18900
|
eventuallyTE
|
|
18893
18901
|
};
|
|
18894
|
-
//# sourceMappingURL=chunk-
|
|
18902
|
+
//# sourceMappingURL=chunk-TFEUAC4X.js.map
|