@camunda8/orchestration-cluster-api 8.9.0-alpha.7 → 8.9.0-alpha.8

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 CHANGED
@@ -1,9 +1,15 @@
1
- # [8.9.0-alpha.7](https://github.com/camunda/orchestration-cluster-api-js/compare/v8.9.0-alpha.6...v8.9.0-alpha.7) (2026-03-02)
1
+ # [8.9.0-alpha.8](https://github.com/camunda/orchestration-cluster-api-js/compare/v8.9.0-alpha.7...v8.9.0-alpha.8) (2026-03-02)
2
+
3
+
4
+ ### Features
5
+
6
+ * support deprecated enums ([a1a2290](https://github.com/camunda/orchestration-cluster-api-js/commit/a1a22908fef6ca75ce353b851d4b6aabd7aa4522))
2
7
 
8
+ # [8.9.0-alpha.7](https://github.com/camunda/orchestration-cluster-api-js/compare/v8.9.0-alpha.6...v8.9.0-alpha.7) (2026-03-02)
3
9
 
4
10
  ### Bug Fixes
5
11
 
6
- * rebuild from upstream spec ([efd13cb](https://github.com/camunda/orchestration-cluster-api-js/commit/efd13cbaec2e3fa2c0a8c0578f5d5b0fa0101715))
12
+ - rebuild from upstream spec ([efd13cb](https://github.com/camunda/orchestration-cluster-api-js/commit/efd13cbaec2e3fa2c0a8c0578f5d5b0fa0101715))
7
13
 
8
14
  # [8.9.0-alpha.6](https://github.com/camunda/orchestration-cluster-api-js/compare/v8.9.0-alpha.5...v8.9.0-alpha.6) (2026-02-17)
9
15
 
@@ -5841,26 +5841,26 @@ var zDeploymentResourceResult = z.object({
5841
5841
  description: "A deployed Resource."
5842
5842
  });
5843
5843
  var zDeploymentMetadataResult = z.object({
5844
- processDefinition: z.optional(z.union([
5844
+ processDefinition: z.union([
5845
5845
  zDeploymentProcessResult,
5846
5846
  z.null()
5847
- ])),
5848
- decisionDefinition: z.optional(z.union([
5847
+ ]),
5848
+ decisionDefinition: z.union([
5849
5849
  zDeploymentDecisionResult,
5850
5850
  z.null()
5851
- ])),
5852
- decisionRequirements: z.optional(z.union([
5851
+ ]),
5852
+ decisionRequirements: z.union([
5853
5853
  zDeploymentDecisionRequirementsResult,
5854
5854
  z.null()
5855
- ])),
5856
- form: z.optional(z.union([
5855
+ ]),
5856
+ form: z.union([
5857
5857
  zDeploymentFormResult,
5858
5858
  z.null()
5859
- ])),
5860
- resource: z.optional(z.union([
5859
+ ]),
5860
+ resource: z.union([
5861
5861
  zDeploymentResourceResult,
5862
5862
  z.null()
5863
- ]))
5863
+ ])
5864
5864
  });
5865
5865
  var zDeploymentResult = z.object({
5866
5866
  deploymentKey: zDeploymentKey,
@@ -6032,53 +6032,115 @@ var zJobUpdateRequest = z.object({
6032
6032
  });
6033
6033
  var zAuditLogKey = zLongKey;
6034
6034
  var zAuditLogResult = z.object({
6035
- auditLogKey: z.optional(zAuditLogKey),
6036
- entityKey: z.optional(zAuditLogEntityKey),
6037
- entityType: z.optional(zAuditLogEntityTypeEnum),
6038
- operationType: z.optional(zAuditLogOperationTypeEnum),
6039
- batchOperationKey: z.optional(zBatchOperationKey),
6040
- batchOperationType: z.optional(zBatchOperationTypeEnum),
6041
- timestamp: z.optional(z.iso.datetime().register(z.globalRegistry, {
6035
+ auditLogKey: zAuditLogKey,
6036
+ entityKey: zAuditLogEntityKey,
6037
+ entityType: zAuditLogEntityTypeEnum,
6038
+ operationType: zAuditLogOperationTypeEnum,
6039
+ batchOperationKey: z.union([
6040
+ zBatchOperationKey,
6041
+ z.null()
6042
+ ]),
6043
+ batchOperationType: z.union([
6044
+ zBatchOperationTypeEnum,
6045
+ z.null()
6046
+ ]),
6047
+ timestamp: z.iso.datetime().register(z.globalRegistry, {
6042
6048
  description: "The timestamp when the operation occurred."
6043
- })),
6044
- actorId: z.optional(z.string().register(z.globalRegistry, {
6045
- description: "The ID of the actor who performed the operation."
6046
- })),
6047
- actorType: z.optional(zAuditLogActorTypeEnum),
6048
- agentElementId: z.optional(z.string().register(z.globalRegistry, {
6049
- description: "The element ID of the agent that performed the operation (e.g. ad-hoc subprocess element ID)."
6050
- })),
6051
- tenantId: z.optional(zTenantId),
6052
- result: z.optional(zAuditLogResultEnum),
6053
- annotation: z.optional(z.string().register(z.globalRegistry, {
6054
- description: "Additional notes about the operation."
6055
- })),
6056
- category: z.optional(zAuditLogCategoryEnum),
6057
- processDefinitionId: z.optional(zProcessDefinitionId),
6058
- processDefinitionKey: z.optional(zProcessDefinitionKey),
6059
- processInstanceKey: z.optional(zProcessInstanceKey),
6049
+ }),
6050
+ actorId: z.union([
6051
+ z.string(),
6052
+ z.null()
6053
+ ]),
6054
+ actorType: z.union([
6055
+ zAuditLogActorTypeEnum,
6056
+ z.null()
6057
+ ]),
6058
+ agentElementId: z.union([
6059
+ z.string(),
6060
+ z.null()
6061
+ ]),
6062
+ tenantId: z.union([
6063
+ zTenantId,
6064
+ z.null()
6065
+ ]),
6066
+ result: zAuditLogResultEnum,
6067
+ annotation: z.union([
6068
+ z.string(),
6069
+ z.null()
6070
+ ]),
6071
+ category: zAuditLogCategoryEnum,
6072
+ processDefinitionId: z.union([
6073
+ zProcessDefinitionId,
6074
+ z.null()
6075
+ ]),
6076
+ processDefinitionKey: z.union([
6077
+ zProcessDefinitionKey,
6078
+ z.null()
6079
+ ]),
6080
+ processInstanceKey: z.union([
6081
+ zProcessInstanceKey,
6082
+ z.null()
6083
+ ]),
6060
6084
  rootProcessInstanceKey: z.union([
6061
6085
  zProcessInstanceKey,
6062
6086
  z.null()
6063
6087
  ]),
6064
- elementInstanceKey: z.optional(zElementInstanceKey),
6065
- jobKey: z.optional(zJobKey),
6066
- userTaskKey: z.optional(zUserTaskKey),
6067
- decisionRequirementsId: z.optional(z.string().register(z.globalRegistry, {
6068
- description: "The decision requirements ID."
6069
- })),
6070
- decisionRequirementsKey: z.optional(zDecisionRequirementsKey),
6071
- decisionDefinitionId: z.optional(zDecisionDefinitionId),
6072
- decisionDefinitionKey: z.optional(zDecisionDefinitionKey),
6073
- decisionEvaluationKey: z.optional(zDecisionEvaluationKey),
6074
- deploymentKey: z.optional(zDeploymentKey),
6075
- formKey: z.optional(zFormKey),
6076
- resourceKey: z.optional(zResourceKey),
6077
- relatedEntityKey: z.optional(zAuditLogEntityKey),
6078
- relatedEntityType: z.optional(zAuditLogEntityTypeEnum),
6079
- entityDescription: z.optional(z.string().register(z.globalRegistry, {
6080
- description: "Additional description of the entity affected by the operation.\nFor example, for variable operations, this will contain the variable name.\n"
6081
- }))
6088
+ elementInstanceKey: z.union([
6089
+ zElementInstanceKey,
6090
+ z.null()
6091
+ ]),
6092
+ jobKey: z.union([
6093
+ zJobKey,
6094
+ z.null()
6095
+ ]),
6096
+ userTaskKey: z.union([
6097
+ zUserTaskKey,
6098
+ z.null()
6099
+ ]),
6100
+ decisionRequirementsId: z.union([
6101
+ z.string(),
6102
+ z.null()
6103
+ ]),
6104
+ decisionRequirementsKey: z.union([
6105
+ zDecisionRequirementsKey,
6106
+ z.null()
6107
+ ]),
6108
+ decisionDefinitionId: z.union([
6109
+ zDecisionDefinitionId,
6110
+ z.null()
6111
+ ]),
6112
+ decisionDefinitionKey: z.union([
6113
+ zDecisionDefinitionKey,
6114
+ z.null()
6115
+ ]),
6116
+ decisionEvaluationKey: z.union([
6117
+ zDecisionEvaluationKey,
6118
+ z.null()
6119
+ ]),
6120
+ deploymentKey: z.union([
6121
+ zDeploymentKey,
6122
+ z.null()
6123
+ ]),
6124
+ formKey: z.union([
6125
+ zFormKey,
6126
+ z.null()
6127
+ ]),
6128
+ resourceKey: z.union([
6129
+ zResourceKey,
6130
+ z.null()
6131
+ ]),
6132
+ relatedEntityKey: z.union([
6133
+ zAuditLogEntityKey,
6134
+ z.null()
6135
+ ]),
6136
+ relatedEntityType: z.union([
6137
+ zAuditLogEntityTypeEnum,
6138
+ z.null()
6139
+ ]),
6140
+ entityDescription: z.union([
6141
+ z.string(),
6142
+ z.null()
6143
+ ])
6082
6144
  }).register(z.globalRegistry, {
6083
6145
  description: "Audit log item."
6084
6146
  });
@@ -6475,21 +6537,21 @@ var zCorrelatedMessageSubscriptionResult = z.object({
6475
6537
  tenantId: zTenantId
6476
6538
  });
6477
6539
  var zProblemDetail = z.object({
6478
- type: z.optional(z.url().register(z.globalRegistry, {
6540
+ type: z.url().register(z.globalRegistry, {
6479
6541
  description: "A URI identifying the problem type."
6480
- })).default("about:blank"),
6481
- title: z.optional(z.string().register(z.globalRegistry, {
6542
+ }).default("about:blank"),
6543
+ title: z.string().register(z.globalRegistry, {
6482
6544
  description: "A summary of the problem type."
6483
- })),
6484
- status: z.optional(z.int().gte(400).lte(600).register(z.globalRegistry, {
6545
+ }),
6546
+ status: z.int().gte(400).lte(600).register(z.globalRegistry, {
6485
6547
  description: "The HTTP status code for this problem."
6486
- })),
6487
- detail: z.optional(z.string().register(z.globalRegistry, {
6548
+ }),
6549
+ detail: z.string().register(z.globalRegistry, {
6488
6550
  description: "An explanation of the problem in more detail."
6489
- })),
6490
- instance: z.optional(z.string().register(z.globalRegistry, {
6551
+ }),
6552
+ instance: z.string().register(z.globalRegistry, {
6491
6553
  description: "A URI path identifying the origin of the problem."
6492
- }))
6554
+ })
6493
6555
  }).register(z.globalRegistry, {
6494
6556
  description: "A Problem detail object as described in [RFC 9457](https://www.rfc-editor.org/rfc/rfc9457). There may be additional properties specific to the problem type.\n"
6495
6557
  });
@@ -7578,17 +7640,17 @@ var zSearchQueryPageResponse = z.object({
7578
7640
  totalItems: z.coerce.bigint().register(z.globalRegistry, {
7579
7641
  description: "Total items matching the criteria."
7580
7642
  }),
7581
- hasMoreTotalItems: z.optional(z.boolean().register(z.globalRegistry, {
7643
+ hasMoreTotalItems: z.boolean().register(z.globalRegistry, {
7582
7644
  description: "Indicates whether there are more items matching the criteria beyond the returned items.\nThis is useful for determining if additional requests are needed to retrieve all results.\n"
7583
- })),
7584
- startCursor: z.optional(z.union([
7645
+ }),
7646
+ startCursor: z.union([
7585
7647
  zStartCursor,
7586
7648
  z.null()
7587
- ])),
7588
- endCursor: z.optional(z.union([
7649
+ ]),
7650
+ endCursor: z.union([
7589
7651
  zEndCursor,
7590
7652
  z.null()
7591
- ]))
7653
+ ])
7592
7654
  }).register(z.globalRegistry, {
7593
7655
  description: "Pagination information about the search results."
7594
7656
  });
@@ -12184,7 +12246,7 @@ function installAuthInterceptor(client2, getStrategy, getAuthHeaders) {
12184
12246
  }
12185
12247
 
12186
12248
  // src/runtime/version.ts
12187
- var packageVersion = "8.9.0-alpha.7";
12249
+ var packageVersion = "8.9.0-alpha.8";
12188
12250
 
12189
12251
  // src/runtime/supportLogger.ts
12190
12252
  var NoopSupportLogger = class {
@@ -23173,4 +23235,4 @@ export {
23173
23235
  withTimeoutTE,
23174
23236
  eventuallyTE
23175
23237
  };
23176
- //# sourceMappingURL=chunk-Q6772ADR.js.map
23238
+ //# sourceMappingURL=chunk-XCRY6B3O.js.map