@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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [9.1.2](https://github.com/camunda/orchestration-cluster-api-js/compare/v9.1.1...v9.1.2) (2026-04-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **gen:** apply CAMUNDA_DEFAULT_TENANT_ID to activateJobs tenantIds ([479ee41](https://github.com/camunda/orchestration-cluster-api-js/commit/479ee4189ab854a3ac8d199e887cb22d16e360ed))
|
|
7
|
+
|
|
1
8
|
## [9.1.1](https://github.com/camunda/orchestration-cluster-api-js/compare/v9.1.0...v9.1.1) (2026-04-29)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -4409,7 +4409,7 @@ function installAuthInterceptor(client2, getStrategy, getAuthHeaders) {
|
|
|
4409
4409
|
}
|
|
4410
4410
|
|
|
4411
4411
|
// src/runtime/version.ts
|
|
4412
|
-
var packageVersion = "9.1.
|
|
4412
|
+
var packageVersion = "9.1.2";
|
|
4413
4413
|
|
|
4414
4414
|
// src/runtime/supportLogger.ts
|
|
4415
4415
|
var NoopSupportLogger = class {
|
|
@@ -6523,6 +6523,10 @@ var CamundaClient = class {
|
|
|
6523
6523
|
const _body = arg;
|
|
6524
6524
|
let envelope = {};
|
|
6525
6525
|
envelope.body = _body;
|
|
6526
|
+
if (envelope.body && this._config.defaultTenantId !== void 0 && this._config.defaultTenantId !== null && (!Array.isArray(envelope.body.tenantIds) || envelope.body.tenantIds.length === 0)) {
|
|
6527
|
+
envelope.body.tenantIds = [this._config.defaultTenantId];
|
|
6528
|
+
this._log.trace(() => ["tenant.default.inject", { op: "activateJobs", tenantIds: [this._config.defaultTenantId] }]);
|
|
6529
|
+
}
|
|
6526
6530
|
if (this._validation.settings.req !== "none") {
|
|
6527
6531
|
const _schemas = await this._loadSchemas();
|
|
6528
6532
|
const maybe = await this._validation.gateRequest("activateJobs", _schemas.zActivateJobsData, envelope);
|
|
@@ -16715,4 +16719,4 @@ export {
|
|
|
16715
16719
|
withTimeoutTE,
|
|
16716
16720
|
eventuallyTE
|
|
16717
16721
|
};
|
|
16718
|
-
//# sourceMappingURL=chunk-
|
|
16722
|
+
//# sourceMappingURL=chunk-WSCXETVI.js.map
|