@camunda8/orchestration-cluster-api 10.0.0-alpha.18 → 10.0.0-alpha.19

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.
@@ -378,6 +378,121 @@ var zAuthorizationFilter = z.object({
378
378
  }).register(z.globalRegistry, {
379
379
  description: "Authorization search filter."
380
380
  });
381
+ var zBackupId = z.coerce.number().int().gte(1).max(9223372036854776e3, { error: "Invalid value: Expected int64 to be <= 9223372036854775807" }).register(z.globalRegistry, {
382
+ description: "The id of the backup. Must be a positive numerical value. As backups are logically\nordered by their ids (ascending), each successive backup must use a higher id than the\nprevious one.\n"
383
+ });
384
+ var zBackupIdPrefix = z.string().regex(/^\d*\*$/).register(z.globalRegistry, {
385
+ description: "A prefix of a backup id, followed by a single '*' as a wildcard, matching any backup id\nstarting with the given prefix.\n"
386
+ });
387
+ var zPartitionId = z.int().gte(1).max(2147483647, { error: "Invalid value: Expected int32 to be <= 2147483647" }).register(z.globalRegistry, {
388
+ description: "The id of a partition. Always a positive number greater than or equal to 1."
389
+ });
390
+ var zStateCode = z.enum([
391
+ "DOES_NOT_EXIST",
392
+ "IN_PROGRESS",
393
+ "COMPLETED",
394
+ "FAILED",
395
+ "INCOMPLETE",
396
+ "DELETED"
397
+ ]).register(z.globalRegistry, {
398
+ description: "The aggregated state of the backup, computed from the state of each partition."
399
+ });
400
+ var zTakeRuntimeBackupRequest = z.object({
401
+ backupId: zBackupId.nullish()
402
+ }).register(z.globalRegistry, {
403
+ description: "Request body for taking a runtime backup."
404
+ });
405
+ var zTakeRuntimeBackupResponse = z.object({
406
+ backupId: zBackupId
407
+ }).register(z.globalRegistry, {
408
+ description: "Response body for taking a runtime backup."
409
+ });
410
+ var zPartitionBackupInfo = z.object({
411
+ partitionId: zPartitionId,
412
+ state: zStateCode,
413
+ failureReason: z.string().nullable(),
414
+ createdAt: z.iso.datetime().readonly().nullable(),
415
+ lastUpdatedAt: z.iso.datetime().readonly().nullable(),
416
+ snapshotId: z.string().readonly().nullable(),
417
+ firstLogPosition: z.coerce.number().int().min(-9223372036854776e3, { error: "Invalid value: Expected int64 to be >= -9223372036854775808" }).max(9223372036854776e3, { error: "Invalid value: Expected int64 to be <= 9223372036854775807" }).readonly().nullable(),
418
+ checkpointPosition: z.coerce.number().int().min(-9223372036854776e3, { error: "Invalid value: Expected int64 to be >= -9223372036854775808" }).max(9223372036854776e3, { error: "Invalid value: Expected int64 to be <= 9223372036854775807" }).readonly().nullable(),
419
+ brokerId: z.int().gte(0).max(2147483647, { error: "Invalid value: Expected int32 to be <= 2147483647" }).readonly().nullable(),
420
+ brokerVersion: z.string().readonly().nullable()
421
+ }).register(z.globalRegistry, {
422
+ description: "Detailed info of the backup for a given partition."
423
+ });
424
+ var zBackupInfo = z.object({
425
+ backupId: zBackupId,
426
+ state: zStateCode,
427
+ failureReason: z.string().nullable(),
428
+ details: z.array(zPartitionBackupInfo).register(z.globalRegistry, {
429
+ description: "Detailed status of the backup per partition. Always contains every partition of\nthe physical tenant.\n"
430
+ }).readonly()
431
+ }).register(z.globalRegistry, {
432
+ description: "Detailed status of a runtime backup. The aggregated state is computed from the backup\nstate of each partition as:\n- If the backup of all partitions is 'COMPLETED', the overall state is 'COMPLETED'.\n- If one partition is 'FAILED', the overall state is 'FAILED'.\n- Otherwise, if one partition is 'DOES_NOT_EXIST', the overall state is 'INCOMPLETE'.\n- Otherwise, if one partition is 'IN_PROGRESS', the overall state is 'IN_PROGRESS'.\n"
433
+ });
434
+ var zCheckpointType = z.enum([
435
+ "MARKER",
436
+ "SCHEDULED_BACKUP",
437
+ "MANUAL_BACKUP"
438
+ ]).register(z.globalRegistry, {
439
+ description: "The type of the checkpoint."
440
+ });
441
+ var zBackupType = z.enum(["MANUAL_BACKUP", "SCHEDULED_BACKUP"]).register(z.globalRegistry, {
442
+ description: "The type of the backup."
443
+ });
444
+ var zCheckpointId = z.coerce.number().int().gte(0).max(9223372036854776e3, { error: "Invalid value: Expected int64 to be <= 9223372036854775807" }).register(z.globalRegistry, {
445
+ description: "The id of the checkpoint. Must be a non-negative numerical value. As checkpoints are\nlogically ordered by their ids (ascending), each successive checkpoint must use a\nhigher id than the previous one.\n"
446
+ });
447
+ var zPartitionCheckpointState = z.object({
448
+ checkpointId: zCheckpointId,
449
+ checkpointType: zCheckpointType,
450
+ partitionId: zPartitionId,
451
+ checkpointPosition: z.coerce.number().int().min(-9223372036854776e3, { error: "Invalid value: Expected int64 to be >= -9223372036854775808" }).max(9223372036854776e3, { error: "Invalid value: Expected int64 to be <= 9223372036854775807" }).register(z.globalRegistry, {
452
+ description: "The log position of the checkpoint."
453
+ }),
454
+ checkpointTimestamp: z.iso.datetime().register(z.globalRegistry, {
455
+ description: "The timestamp at which the checkpoint was created."
456
+ })
457
+ }).register(z.globalRegistry, {
458
+ description: "Detailed information about the checkpoint state for a given partition."
459
+ });
460
+ var zPartitionBackupState = z.object({
461
+ checkpointId: zCheckpointId,
462
+ checkpointType: zBackupType,
463
+ partitionId: zPartitionId.nullable(),
464
+ checkpointPosition: z.coerce.number().int().min(-9223372036854776e3, { error: "Invalid value: Expected int64 to be >= -9223372036854775808" }).max(9223372036854776e3, { error: "Invalid value: Expected int64 to be <= 9223372036854775807" }).register(z.globalRegistry, {
465
+ description: "The log position of the checkpoint this backup is based on."
466
+ }),
467
+ firstLogPosition: z.coerce.number().int().min(-9223372036854776e3, { error: "Invalid value: Expected int64 to be >= -9223372036854775808" }).max(9223372036854776e3, { error: "Invalid value: Expected int64 to be <= 9223372036854775807" }).register(z.globalRegistry, {
468
+ description: "The first log position included in this backup."
469
+ }),
470
+ checkpointTimestamp: z.iso.datetime().register(z.globalRegistry, {
471
+ description: "The timestamp at which the checkpoint was created."
472
+ })
473
+ }).register(z.globalRegistry, {
474
+ description: "Detailed information about the backup state for a given partition."
475
+ });
476
+ var zPartitionBackupRange = z.object({
477
+ partitionId: zPartitionId,
478
+ start: zPartitionBackupState.nullable(),
479
+ end: zPartitionBackupState.nullable()
480
+ }).register(z.globalRegistry, {
481
+ description: "Information about one backup range for a partition."
482
+ });
483
+ var zRuntimeBackupState = z.object({
484
+ checkpointStates: z.array(zPartitionCheckpointState).register(z.globalRegistry, {
485
+ description: "List of partition checkpoint states."
486
+ }),
487
+ backupStates: z.array(zPartitionBackupState).register(z.globalRegistry, {
488
+ description: "List of partition backup states."
489
+ }),
490
+ ranges: z.array(zPartitionBackupRange).register(z.globalRegistry, {
491
+ description: "List of partition backup ranges."
492
+ })
493
+ }).register(z.globalRegistry, {
494
+ description: "Information about the checkpoint and backup state of the physical tenant."
495
+ });
381
496
  var zBatchOperationError = z.object({
382
497
  partitionId: z.int().min(-2147483648, { error: "Invalid value: Expected int32 to be >= -2147483648" }).max(2147483647, { error: "Invalid value: Expected int32 to be <= 2147483647" }).register(z.globalRegistry, {
383
498
  description: "The partition ID where the error occurred."
@@ -447,6 +562,20 @@ var zUpdateClusterVariableRequest = z.object({
447
562
  description: "A generic key-value metadata bag attached to the cluster variable. Values must be strings or numbers. Limited to 100 entries and a configurable maximum serialized size (default: 100 entries at max key length of a cluster variable name (256 chars) plus the maximum value length, 8192 characters)."
448
563
  }).optional()
449
564
  });
565
+ var zClusterStatusResponse = z.object({
566
+ status: z.enum([
567
+ "HEALTHY",
568
+ "DEGRADED",
569
+ "DOWN"
570
+ ]).register(z.globalRegistry, {
571
+ description: "`HEALTHY` when every physical tenant is healthy, `DOWN` when no physical tenant can process work, `DEGRADED` in every other case."
572
+ })
573
+ }).register(z.globalRegistry, {
574
+ description: "The aggregated status of the whole cluster."
575
+ });
576
+ var zMode = z.enum(["PROCESSING", "RECOVERING"]).register(z.globalRegistry, {
577
+ description: "The operating mode of a cluster's partitions."
578
+ });
450
579
  var zPartition = z.object({
451
580
  partitionId: z.int().min(-2147483648, { error: "Invalid value: Expected int32 to be >= -2147483648" }).max(2147483647, { error: "Invalid value: Expected int32 to be <= 2147483647" }).register(z.globalRegistry, {
452
581
  description: "The unique ID of this partition."
@@ -548,6 +677,59 @@ var zRestoreRequest = z.object({
548
677
  }).register(z.globalRegistry, {
549
678
  description: "Describes a restore request. Provide either a list of backup IDs or a time range (`from`/`to`) that selects the backups to restore; the two are mutually exclusive."
550
679
  });
680
+ var zRestorePartitionStatus = z.object({
681
+ partitionId: z.int().min(-2147483648, { error: "Invalid value: Expected int32 to be >= -2147483648" }).max(2147483647, { error: "Invalid value: Expected int32 to be <= 2147483647" }).register(z.globalRegistry, {
682
+ description: "The ID of the partition."
683
+ }),
684
+ state: z.enum([
685
+ "PENDING",
686
+ "RESTORING",
687
+ "RESTORED"
688
+ ]).register(z.globalRegistry, {
689
+ description: "The restore state of the partition."
690
+ }),
691
+ backupIds: z.array(z.coerce.number().int().min(-9223372036854776e3, { error: "Invalid value: Expected int64 to be >= -9223372036854775808" }).max(9223372036854776e3, { error: "Invalid value: Expected int64 to be <= 9223372036854775807" })).register(z.globalRegistry, {
692
+ description: "The IDs of the backups this partition is restored from."
693
+ }),
694
+ completedAt: z.iso.datetime().nullable()
695
+ }).register(z.globalRegistry, {
696
+ description: "The restore status of a single partition on a broker."
697
+ });
698
+ var zRestoreBrokerStatus = z.object({
699
+ brokerId: z.string().register(z.globalRegistry, {
700
+ description: "The ID of the broker, including its zone if it belongs to one."
701
+ }),
702
+ partitionsRestored: z.int().min(-2147483648, { error: "Invalid value: Expected int32 to be >= -2147483648" }).max(2147483647, { error: "Invalid value: Expected int32 to be <= 2147483647" }).register(z.globalRegistry, {
703
+ description: "The number of the broker's partitions that have been restored so far."
704
+ }),
705
+ partitionsToRestore: z.int().min(-2147483648, { error: "Invalid value: Expected int32 to be >= -2147483648" }).max(2147483647, { error: "Invalid value: Expected int32 to be <= 2147483647" }).register(z.globalRegistry, {
706
+ description: "The total number of the broker's partitions to restore."
707
+ }),
708
+ partitions: z.array(zRestorePartitionStatus).register(z.globalRegistry, {
709
+ description: "The per-partition restore status for this broker."
710
+ })
711
+ }).register(z.globalRegistry, {
712
+ description: "The restore status of a single broker."
713
+ });
714
+ var zRestoreStatusResponse = z.object({
715
+ status: z.enum([
716
+ "IN_PROGRESS",
717
+ "COMPLETED",
718
+ "FAILED",
719
+ "CANCELLED"
720
+ ]).register(z.globalRegistry, {
721
+ description: "The overall status of the restore."
722
+ }),
723
+ changeId: z.string().register(z.globalRegistry, {
724
+ description: "The ID of the cluster change that performs the restore."
725
+ }),
726
+ startedAt: z.iso.datetime().nullable(),
727
+ brokers: z.array(zRestoreBrokerStatus).register(z.globalRegistry, {
728
+ description: "The per-broker restore status."
729
+ })
730
+ }).register(z.globalRegistry, {
731
+ description: "The status of the restore that is currently in progress."
732
+ });
551
733
  var zStartCursor = z.string().regex(/^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}(?:==)?|[A-Za-z0-9+\/]{3}=)?$/).register(z.globalRegistry, {
552
734
  description: "The start cursor in a search query result set."
553
735
  });
@@ -1611,9 +1793,9 @@ var zJobResultAdHocSubProcess = z.object({
1611
1793
  description: "Used to distinguish between different types of job results."
1612
1794
  }).optional()
1613
1795
  }).nullable();
1614
- var zJobResult = z.discriminatedUnion("type", [
1615
- zJobResultUserTask.unwrap().extend({ type: z.literal("userTask") }),
1616
- zJobResultAdHocSubProcess.unwrap().extend({ type: z.literal("adHocSubProcess") })
1796
+ var zJobResult = z.union([
1797
+ zJobResultUserTask,
1798
+ zJobResultAdHocSubProcess
1617
1799
  ]);
1618
1800
  var zJobCompletionRequest = z.object({
1619
1801
  variables: z.record(z.string(), z.unknown()).nullish(),
@@ -2610,7 +2792,7 @@ var zAgentInstanceHistoryItemResult = z.object({
2610
2792
  jobLease: z.string().register(z.globalRegistry, {
2611
2793
  description: "The lease token of the activation that produced this item."
2612
2794
  }),
2613
- loopIteration: zLoopIterationId.nullable(),
2795
+ loopIteration: zLoopIterationId,
2614
2796
  role: zAgentInstanceHistoryRoleEnum,
2615
2797
  content: z.array(zAgentInstanceMessageContent).register(z.globalRegistry, {
2616
2798
  description: "The content blocks of this history item."
@@ -3255,9 +3437,7 @@ var zProcessInstanceCreationTerminateInstruction = z.object({
3255
3437
  }).register(z.globalRegistry, {
3256
3438
  description: "Terminates the process instance after a specific BPMN element is completed or terminated.\n"
3257
3439
  });
3258
- var zProcessInstanceCreationRuntimeInstruction = z.object({
3259
- type: z.literal("TERMINATE_PROCESS_INSTANCE")
3260
- }).and(zProcessInstanceCreationTerminateInstruction);
3440
+ var zProcessInstanceCreationRuntimeInstruction = zProcessInstanceCreationTerminateInstruction;
3261
3441
  var zProcessInstanceCreationInstructionById = z.object({
3262
3442
  processDefinitionId: zProcessDefinitionId,
3263
3443
  processDefinitionVersion: z.int().min(-2147483648, { error: "Invalid value: Expected int32 to be >= -2147483648" }).max(2147483647, { error: "Invalid value: Expected int32 to be <= 2147483647" }).register(z.globalRegistry, {
@@ -4517,6 +4697,18 @@ var zSecretResolveResult = z.object({
4517
4697
  }).register(z.globalRegistry, {
4518
4698
  description: "The per-reference outcome of a resolve request."
4519
4699
  });
4700
+ var zSecretListRequest = z.record(z.string(), z.never()).register(z.globalRegistry, {
4701
+ description: "Reserved for future filtering options. Currently takes no properties. The request body is\noptional: omitting it (or sending an empty object) applies no filters.\n"
4702
+ });
4703
+ var zSecretListResult = z.object({
4704
+ references: z.array(z.string().register(z.globalRegistry, {
4705
+ description: "A secret reference of the form `camunda.secrets.<name>`."
4706
+ })).register(z.globalRegistry, {
4707
+ description: "The secret references, each of the form `camunda.secrets.<name>`."
4708
+ })
4709
+ }).register(z.globalRegistry, {
4710
+ description: "The secret references the caller is authorized to see.\n\nUnbounded for now: Phase 1's backend is mocked with at most 3 references. Pagination is\nexpected to land here before GA, once a real secret store can return a tenant's full\nenumeration in one response. This is an alpha endpoint, so that is not yet a\nbreaking-contract concern.\n"
4711
+ });
4520
4712
  var zSignalBroadcastRequest = z.object({
4521
4713
  signalName: z.string().register(z.globalRegistry, {
4522
4714
  description: "The name of the signal to broadcast."
@@ -5929,15 +6121,110 @@ var zUserTaskSearchQuery = zSearchQueryRequest.and(z.object({
5929
6121
  }).register(z.globalRegistry, {
5930
6122
  description: "User task search query request."
5931
6123
  }));
6124
+ var zAuthorizationKeyWritable = zLongKey;
6125
+ var zBackupInfoWritable = z.object({
6126
+ failureReason: z.string().nullable()
6127
+ }).register(z.globalRegistry, {
6128
+ description: "Detailed status of a runtime backup. The aggregated state is computed from the backup\nstate of each partition as:\n- If the backup of all partitions is 'COMPLETED', the overall state is 'COMPLETED'.\n- If one partition is 'FAILED', the overall state is 'FAILED'.\n- Otherwise, if one partition is 'DOES_NOT_EXIST', the overall state is 'INCOMPLETE'.\n- Otherwise, if one partition is 'IN_PROGRESS', the overall state is 'IN_PROGRESS'.\n"
6129
+ });
6130
+ var zPartitionBackupInfoWritable = z.object({
6131
+ failureReason: z.string().nullable()
6132
+ }).register(z.globalRegistry, {
6133
+ description: "Detailed info of the backup for a given partition."
6134
+ });
6135
+ var zConditionalEvaluationKeyWritable = zLongKey;
6136
+ var zDeploymentKeyWritable = zLongKey;
6137
+ var zGlobalTaskListenerEventTypesWritable = z.array(zGlobalTaskListenerEventTypeEnum).register(z.globalRegistry, {
6138
+ description: "List of user task event types that trigger the listener."
6139
+ });
6140
+ var zTagSetWritable = z.array(zTag).max(10).register(z.globalRegistry, {
6141
+ description: "List of tags. Tags need to start with a letter; then alphanumerics, `_`, `-`, `:`, or `.`; length \u2264 100."
6142
+ });
6143
+ var zProcessInstanceKeyWritable = zLongKey;
6144
+ var zProcessDefinitionKeyWritable = zLongKey;
6145
+ var zElementInstanceKeyWritable = zLongKey;
6146
+ var zUserTaskKeyWritable = zLongKey;
6147
+ var zFormKeyWritable = zLongKey;
6148
+ var zVariableKeyWritable = zLongKey;
6149
+ var zScopeKeyWritable = z.union([
6150
+ zProcessInstanceKeyWritable,
6151
+ zElementInstanceKeyWritable
6152
+ ]);
6153
+ var zIncidentKeyWritable = zLongKey;
6154
+ var zJobKeyWritable = zLongKey;
6155
+ var zDecisionDefinitionKeyWritable = zLongKey;
6156
+ var zDecisionEvaluationKeyWritable = zLongKey;
6157
+ var zDecisionRequirementsKeyWritable = zLongKey;
6158
+ var zResourceKeyWritable = z.union([
6159
+ zProcessDefinitionKeyWritable,
6160
+ zDecisionRequirementsKeyWritable,
6161
+ zFormKeyWritable,
6162
+ zDecisionDefinitionKeyWritable
6163
+ ]);
6164
+ var zDecisionInstanceKeyWritable = zLongKey;
6165
+ var zAgentInstanceKeyWritable = zLongKey;
6166
+ var zAgentHistoryItemKeyWritable = zLongKey;
6167
+ var zAuditLogKeyWritable = zLongKey;
6168
+ var zMessageSubscriptionKeyWritable = zLongKey;
6169
+ var zMessageKeyWritable = zLongKey;
6170
+ var zSignalKeyWritable = zLongKey;
6171
+ var zAgentInstanceStatusExactMatchWritable = zAgentInstanceStatusEnum;
6172
+ var zAgentInstanceHistoryRoleExactMatchWritable = zAgentInstanceHistoryRoleEnum;
6173
+ var zAgentInstanceHistoryCommitStatusExactMatchWritable = zAgentInstanceHistoryCommitStatusEnum;
6174
+ var zAuditLogEntityKeyExactMatchWritable = zAuditLogEntityKey;
6175
+ var zEntityTypeExactMatchWritable = zAuditLogEntityTypeEnum;
6176
+ var zOperationTypeExactMatchWritable = zAuditLogOperationTypeEnum;
6177
+ var zCategoryExactMatchWritable = zAuditLogCategoryEnum;
6178
+ var zAuditLogResultExactMatchWritable = zAuditLogResultEnum;
6179
+ var zAuditLogActorTypeExactMatchWritable = zAuditLogActorTypeEnum;
6180
+ var zBatchOperationTypeExactMatchWritable = zBatchOperationTypeEnum;
6181
+ var zBatchOperationStateExactMatchWritable = zBatchOperationStateEnum;
6182
+ var zBatchOperationItemStateExactMatchWritable = zBatchOperationItemStateEnum;
6183
+ var zClusterVariableScopeExactMatchWritable = zClusterVariableScopeEnum;
6184
+ var zClusterVariableKindExactMatchWritable = zClusterVariableKindEnum;
6185
+ var zDecisionInstanceStateExactMatchWritable = zDecisionInstanceStateEnum;
6186
+ var zDeploymentKeyExactMatchWritable = zDeploymentKeyWritable;
6187
+ var zResourceKeyExactMatchWritable = zResourceKeyWritable;
6188
+ var zElementInstanceStateExactMatchWritable = zElementInstanceStateEnum;
6189
+ var zWaitStateElementTypeExactMatchWritable = zWaitStateElementTypeEnum;
6190
+ var zWaitStateTypeExactMatchWritable = zWaitStateTypeEnum;
6191
+ var zGlobalListenerSourceExactMatchWritable = zGlobalListenerSourceEnum;
6192
+ var zGlobalTaskListenerEventTypeExactMatchWritable = zGlobalTaskListenerEventTypeEnum;
6193
+ var zElementIdExactMatchWritable = zElementId;
6194
+ var zProcessDefinitionIdExactMatchWritable = zProcessDefinitionId;
6195
+ var zIncidentErrorTypeExactMatchWritable = zIncidentErrorTypeEnum;
6196
+ var zIncidentStateExactMatchWritable = zIncidentStateEnum;
6197
+ var zJobKindExactMatchWritable = zJobKindEnum;
6198
+ var zJobListenerEventTypeExactMatchWritable = zJobListenerEventTypeEnum;
6199
+ var zJobStateExactMatchWritable = zJobStateEnum;
6200
+ var zProcessDefinitionKeyExactMatchWritable = zProcessDefinitionKeyWritable;
6201
+ var zProcessInstanceKeyExactMatchWritable = zProcessInstanceKeyWritable;
6202
+ var zElementInstanceKeyExactMatchWritable = zElementInstanceKeyWritable;
6203
+ var zJobKeyExactMatchWritable = zJobKeyWritable;
6204
+ var zDecisionDefinitionKeyExactMatchWritable = zDecisionDefinitionKeyWritable;
6205
+ var zScopeKeyExactMatchWritable = zScopeKeyWritable;
6206
+ var zVariableKeyExactMatchWritable = zVariableKeyWritable;
6207
+ var zDecisionEvaluationInstanceKeyExactMatchWritable = zDecisionEvaluationInstanceKey;
6208
+ var zAgentInstanceKeyExactMatchWritable = zAgentInstanceKeyWritable;
6209
+ var zAgentHistoryItemKeyExactMatchWritable = zAgentHistoryItemKeyWritable;
6210
+ var zAuditLogKeyExactMatchWritable = zAuditLogKeyWritable;
6211
+ var zFormKeyExactMatchWritable = zFormKeyWritable;
6212
+ var zDecisionEvaluationKeyExactMatchWritable = zDecisionEvaluationKeyWritable;
6213
+ var zDecisionRequirementsKeyExactMatchWritable = zDecisionRequirementsKeyWritable;
6214
+ var zMessageSubscriptionTypeExactMatchWritable = zMessageSubscriptionTypeEnum;
6215
+ var zMessageSubscriptionStateExactMatchWritable = zMessageSubscriptionStateEnum;
6216
+ var zMessageSubscriptionKeyExactMatchWritable = zMessageSubscriptionKeyWritable;
6217
+ var zProcessInstanceStateExactMatchWritable = zProcessInstanceStateEnum;
6218
+ var zUserTaskStateExactMatchWritable = zUserTaskStateEnum;
5932
6219
  var zCreateAgentInstanceBody = zAgentInstanceCreationRequest;
5933
6220
  var zCreateAgentInstanceResponse = zAgentInstanceCreationResult;
5934
6221
  var zGetAgentInstancePath = z.object({
5935
- agentInstanceKey: zAgentInstanceKey
6222
+ agentInstanceKey: zAgentInstanceKeyWritable
5936
6223
  });
5937
6224
  var zGetAgentInstanceResponse = zAgentInstanceResult;
5938
6225
  var zUpdateAgentInstanceBody = zAgentInstanceUpdateRequest;
5939
6226
  var zUpdateAgentInstancePath = z.object({
5940
- agentInstanceKey: zAgentInstanceKey
6227
+ agentInstanceKey: zAgentInstanceKeyWritable
5941
6228
  });
5942
6229
  var zUpdateAgentInstanceResponse = z.void().register(z.globalRegistry, {
5943
6230
  description: "The agent instance was updated successfully."
@@ -5946,18 +6233,18 @@ var zSearchAgentInstancesBody = zAgentInstanceSearchQuery;
5946
6233
  var zSearchAgentInstancesResponse = zAgentInstanceSearchQueryResult;
5947
6234
  var zCreateAgentInstanceHistoryItemBody = zAgentInstanceHistoryItemRequest;
5948
6235
  var zCreateAgentInstanceHistoryItemPath = z.object({
5949
- agentInstanceKey: zAgentInstanceKey
6236
+ agentInstanceKey: zAgentInstanceKeyWritable
5950
6237
  });
5951
6238
  var zCreateAgentInstanceHistoryItemResponse = zAgentInstanceHistoryItemCreationResult;
5952
6239
  var zSearchAgentInstanceHistoryBody = zAgentInstanceHistorySearchQuery;
5953
6240
  var zSearchAgentInstanceHistoryPath = z.object({
5954
- agentInstanceKey: zAgentInstanceKey
6241
+ agentInstanceKey: zAgentInstanceKeyWritable
5955
6242
  });
5956
6243
  var zSearchAgentInstanceHistoryResponse = zAgentInstanceHistorySearchQueryResult;
5957
6244
  var zSearchAuditLogsBody = zAuditLogSearchQueryRequest;
5958
6245
  var zSearchAuditLogsResponse = zAuditLogSearchQueryResult;
5959
6246
  var zGetAuditLogPath = z.object({
5960
- auditLogKey: zAuditLogKey
6247
+ auditLogKey: zAuditLogKeyWritable
5961
6248
  });
5962
6249
  var zGetAuditLogResponse = zAuditLogResult;
5963
6250
  var zGetAuthenticationResponse = zCamundaUserResult;
@@ -5966,22 +6253,45 @@ var zCreateAuthorizationResponse = zAuthorizationCreateResult;
5966
6253
  var zSearchAuthorizationsBody = zAuthorizationSearchQuery;
5967
6254
  var zSearchAuthorizationsResponse = zAuthorizationSearchResult;
5968
6255
  var zDeleteAuthorizationPath = z.object({
5969
- authorizationKey: zAuthorizationKey
6256
+ authorizationKey: zAuthorizationKeyWritable
5970
6257
  });
5971
6258
  var zDeleteAuthorizationResponse = z.void().register(z.globalRegistry, {
5972
6259
  description: "The authorization was deleted successfully."
5973
6260
  });
5974
6261
  var zGetAuthorizationPath = z.object({
5975
- authorizationKey: zAuthorizationKey
6262
+ authorizationKey: zAuthorizationKeyWritable
5976
6263
  });
5977
6264
  var zGetAuthorizationResponse = zAuthorizationResult;
5978
6265
  var zUpdateAuthorizationBody = zAuthorizationRequest;
5979
6266
  var zUpdateAuthorizationPath = z.object({
5980
- authorizationKey: zAuthorizationKey
6267
+ authorizationKey: zAuthorizationKeyWritable
5981
6268
  });
5982
6269
  var zUpdateAuthorizationResponse = z.void().register(z.globalRegistry, {
5983
6270
  description: "The authorization was updated successfully."
5984
6271
  });
6272
+ var zListRuntimeBackupsQuery = z.object({
6273
+ prefix: zBackupIdPrefix.optional()
6274
+ });
6275
+ var zListRuntimeBackupsResponse = z.array(zBackupInfo).register(z.globalRegistry, {
6276
+ description: "The list of runtime backups."
6277
+ });
6278
+ var zTakeRuntimeBackupBody = zTakeRuntimeBackupRequest;
6279
+ var zTakeRuntimeBackupResponse2 = zTakeRuntimeBackupResponse;
6280
+ var zDeleteRuntimeBackupStateResponse = z.void().register(z.globalRegistry, {
6281
+ description: "The runtime backup state has been successfully reset."
6282
+ });
6283
+ var zGetRuntimeBackupStateResponse = zRuntimeBackupState;
6284
+ var zSyncRuntimeBackupStateResponse = zRuntimeBackupState;
6285
+ var zDeleteRuntimeBackupPath = z.object({
6286
+ backupId: zBackupId
6287
+ });
6288
+ var zDeleteRuntimeBackupResponse = z.void().register(z.globalRegistry, {
6289
+ description: "The backup has been successfully deleted."
6290
+ });
6291
+ var zGetRuntimeBackupPath = z.object({
6292
+ backupId: zBackupId
6293
+ });
6294
+ var zGetRuntimeBackupResponse = zBackupInfo;
5985
6295
  var zSearchBatchOperationItemsBody = zBatchOperationItemSearchQuery;
5986
6296
  var zSearchBatchOperationItemsResponse = zBatchOperationItemSearchQueryResult;
5987
6297
  var zSearchBatchOperationsBody = zBatchOperationSearchQuery;
@@ -6074,11 +6384,11 @@ var zEvaluateDecisionResponse = zEvaluateDecisionResult;
6074
6384
  var zSearchDecisionDefinitionsBody = zDecisionDefinitionSearchQuery;
6075
6385
  var zSearchDecisionDefinitionsResponse = zDecisionDefinitionSearchQueryResult;
6076
6386
  var zGetDecisionDefinitionPath = z.object({
6077
- decisionDefinitionKey: zDecisionDefinitionKey
6387
+ decisionDefinitionKey: zDecisionDefinitionKeyWritable
6078
6388
  });
6079
6389
  var zGetDecisionDefinitionResponse = zDecisionDefinitionResult;
6080
6390
  var zGetDecisionDefinitionXmlPath = z.object({
6081
- decisionDefinitionKey: zDecisionDefinitionKey
6391
+ decisionDefinitionKey: zDecisionDefinitionKeyWritable
6082
6392
  });
6083
6393
  var zGetDecisionDefinitionXmlResponse = z.string().register(z.globalRegistry, {
6084
6394
  description: "The XML of the decision definition is successfully returned."
@@ -6091,7 +6401,7 @@ var zGetDecisionInstancePath = z.object({
6091
6401
  var zGetDecisionInstanceResponse = zDecisionInstanceGetQueryResult;
6092
6402
  var zDeleteDecisionInstanceBody = zDeleteDecisionInstanceRequest;
6093
6403
  var zDeleteDecisionInstancePath = z.object({
6094
- decisionEvaluationKey: zDecisionEvaluationKey
6404
+ decisionEvaluationKey: zDecisionEvaluationKeyWritable
6095
6405
  });
6096
6406
  var zDeleteDecisionInstanceResponse = z.void().register(z.globalRegistry, {
6097
6407
  description: "The decision instance is marked for deletion."
@@ -6101,11 +6411,11 @@ var zDeleteDecisionInstancesBatchOperationResponse = zBatchOperationCreatedResul
6101
6411
  var zSearchDecisionRequirementsBody = zDecisionRequirementsSearchQuery;
6102
6412
  var zSearchDecisionRequirementsResponse = zDecisionRequirementsSearchQueryResult;
6103
6413
  var zGetDecisionRequirementsPath = z.object({
6104
- decisionRequirementsKey: zDecisionRequirementsKey
6414
+ decisionRequirementsKey: zDecisionRequirementsKeyWritable
6105
6415
  });
6106
6416
  var zGetDecisionRequirementsResponse = zDecisionRequirementsResult;
6107
6417
  var zGetDecisionRequirementsXmlPath = z.object({
6108
- decisionRequirementsKey: zDecisionRequirementsKey
6418
+ decisionRequirementsKey: zDecisionRequirementsKeyWritable
6109
6419
  });
6110
6420
  var zGetDecisionRequirementsXmlResponse = z.string().register(z.globalRegistry, {
6111
6421
  description: "The XML of the decision requirements is successfully returned."
@@ -6185,7 +6495,7 @@ var zCreateDocumentLinkQuery = z.object({
6185
6495
  var zCreateDocumentLinkResponse = zDocumentLink;
6186
6496
  var zActivateAdHocSubProcessActivitiesBody = zAdHocSubProcessActivateActivitiesInstruction;
6187
6497
  var zActivateAdHocSubProcessActivitiesPath = z.object({
6188
- adHocSubProcessInstanceKey: zElementInstanceKey
6498
+ adHocSubProcessInstanceKey: zElementInstanceKeyWritable
6189
6499
  });
6190
6500
  var zActivateAdHocSubProcessActivitiesResponse = z.void().register(z.globalRegistry, {
6191
6501
  description: "The ad-hoc sub-process instance is modified."
@@ -6195,25 +6505,36 @@ var zSearchElementInstanceWaitStatesResponse = zElementInstanceWaitStateQueryRes
6195
6505
  var zSearchElementInstancesBody = zElementInstanceSearchQuery;
6196
6506
  var zSearchElementInstancesResponse = zElementInstanceSearchQueryResult;
6197
6507
  var zGetElementInstancePath = z.object({
6198
- elementInstanceKey: zElementInstanceKey
6508
+ elementInstanceKey: zElementInstanceKeyWritable
6199
6509
  });
6200
6510
  var zGetElementInstanceResponse = zElementInstanceResult;
6201
6511
  var zSearchElementInstanceIncidentsBody = zIncidentSearchQuery;
6202
6512
  var zSearchElementInstanceIncidentsPath = z.object({
6203
- elementInstanceKey: zElementInstanceKey
6513
+ elementInstanceKey: zElementInstanceKeyWritable
6204
6514
  });
6205
6515
  var zSearchElementInstanceIncidentsResponse = zIncidentSearchQueryResult;
6206
6516
  var zCreateElementInstanceVariablesBody = zSetVariableRequest;
6207
6517
  var zCreateElementInstanceVariablesPath = z.object({
6208
- elementInstanceKey: zElementInstanceKey
6518
+ elementInstanceKey: zElementInstanceKeyWritable
6209
6519
  });
6210
6520
  var zCreateElementInstanceVariablesResponse = z.void().register(z.globalRegistry, {
6211
6521
  description: "The variables were updated."
6212
6522
  });
6523
+ var zPauseExportingQuery = z.object({
6524
+ soft: z.boolean().register(z.globalRegistry, {
6525
+ description: "If true, soft-pauses exporting instead of a hard pause."
6526
+ }).optional().default(false)
6527
+ });
6528
+ var zPauseExportingResponse = z.void().register(z.globalRegistry, {
6529
+ description: "Exporting was successfully paused."
6530
+ });
6531
+ var zResumeExportingResponse = z.void().register(z.globalRegistry, {
6532
+ description: "Exporting was successfully resumed."
6533
+ });
6213
6534
  var zEvaluateExpressionBody = zExpressionEvaluationRequest;
6214
6535
  var zEvaluateExpressionResponse = zExpressionEvaluationResult;
6215
6536
  var zGetFormByKeyPath = z.object({
6216
- formKey: zFormKey
6537
+ formKey: zFormKeyWritable
6217
6538
  });
6218
6539
  var zGetFormByKeyResponse = zFormResult;
6219
6540
  var zCreateGlobalTaskListenerBody = zCreateGlobalTaskListenerRequest;
@@ -6319,12 +6640,12 @@ var zAssignUserToGroupResponse = z.void().register(z.globalRegistry, {
6319
6640
  var zSearchIncidentsBody = zIncidentSearchQuery;
6320
6641
  var zSearchIncidentsResponse = zIncidentSearchQueryResult;
6321
6642
  var zGetIncidentPath = z.object({
6322
- incidentKey: zIncidentKey
6643
+ incidentKey: zIncidentKeyWritable
6323
6644
  });
6324
6645
  var zGetIncidentResponse = zIncidentResult;
6325
6646
  var zResolveIncidentBody = zIncidentResolutionRequest;
6326
6647
  var zResolveIncidentPath = z.object({
6327
- incidentKey: zIncidentKey
6648
+ incidentKey: zIncidentKeyWritable
6328
6649
  });
6329
6650
  var zResolveIncidentResponse = z.void().register(z.globalRegistry, {
6330
6651
  description: "The incident is marked as resolved."
@@ -6339,28 +6660,28 @@ var zSearchJobsBody = zJobSearchQuery;
6339
6660
  var zSearchJobsResponse = zJobSearchQueryResult;
6340
6661
  var zUpdateJobBody = zJobUpdateRequest;
6341
6662
  var zUpdateJobPath = z.object({
6342
- jobKey: zJobKey
6663
+ jobKey: zJobKeyWritable
6343
6664
  });
6344
6665
  var zUpdateJobResponse = z.void().register(z.globalRegistry, {
6345
6666
  description: "The job was updated successfully."
6346
6667
  });
6347
6668
  var zCompleteJobBody = zJobCompletionRequest;
6348
6669
  var zCompleteJobPath = z.object({
6349
- jobKey: zJobKey
6670
+ jobKey: zJobKeyWritable
6350
6671
  });
6351
6672
  var zCompleteJobResponse = z.void().register(z.globalRegistry, {
6352
6673
  description: "The job was completed successfully."
6353
6674
  });
6354
6675
  var zThrowJobErrorBody = zJobErrorRequest;
6355
6676
  var zThrowJobErrorPath = z.object({
6356
- jobKey: zJobKey
6677
+ jobKey: zJobKeyWritable
6357
6678
  });
6358
6679
  var zThrowJobErrorResponse = z.void().register(z.globalRegistry, {
6359
6680
  description: "An error is thrown for the job."
6360
6681
  });
6361
6682
  var zFailJobBody = zJobFailRequest;
6362
6683
  var zFailJobPath = z.object({
6363
- jobKey: zJobKey
6684
+ jobKey: zJobKeyWritable
6364
6685
  });
6365
6686
  var zFailJobResponse = z.void().register(z.globalRegistry, {
6366
6687
  description: "The job is failed."
@@ -6420,11 +6741,11 @@ var zGetProcessDefinitionMessageSubscriptionStatisticsResponse = zProcessDefinit
6420
6741
  var zGetProcessDefinitionInstanceStatisticsBody = zProcessDefinitionInstanceStatisticsQuery;
6421
6742
  var zGetProcessDefinitionInstanceStatisticsResponse = zProcessDefinitionInstanceStatisticsQueryResult;
6422
6743
  var zGetProcessDefinitionPath = z.object({
6423
- processDefinitionKey: zProcessDefinitionKey
6744
+ processDefinitionKey: zProcessDefinitionKeyWritable
6424
6745
  });
6425
6746
  var zGetProcessDefinitionResponse = zProcessDefinitionResult;
6426
6747
  var zGetStartProcessFormPath = z.object({
6427
- processDefinitionKey: zProcessDefinitionKey
6748
+ processDefinitionKey: zProcessDefinitionKeyWritable
6428
6749
  });
6429
6750
  var zGetStartProcessFormResponse = z.union([
6430
6751
  zFormResult,
@@ -6434,16 +6755,16 @@ var zGetStartProcessFormResponse = z.union([
6434
6755
  ]);
6435
6756
  var zGetProcessDefinitionStatisticsBody = zProcessDefinitionElementStatisticsQuery;
6436
6757
  var zGetProcessDefinitionStatisticsPath = z.object({
6437
- processDefinitionKey: zProcessDefinitionKey
6758
+ processDefinitionKey: zProcessDefinitionKeyWritable
6438
6759
  });
6439
6760
  var zGetProcessDefinitionStatisticsResponse = zProcessDefinitionElementStatisticsQueryResult;
6440
6761
  var zSearchProcessDefinitionVariableNamesBody = zProcessDefinitionVariableNameSearchQuery;
6441
6762
  var zSearchProcessDefinitionVariableNamesPath = z.object({
6442
- processDefinitionKey: zProcessDefinitionKey
6763
+ processDefinitionKey: zProcessDefinitionKeyWritable
6443
6764
  });
6444
6765
  var zSearchProcessDefinitionVariableNamesResponse = zProcessDefinitionVariableNameSearchQueryResult;
6445
6766
  var zGetProcessDefinitionXmlPath = z.object({
6446
- processDefinitionKey: zProcessDefinitionKey
6767
+ processDefinitionKey: zProcessDefinitionKeyWritable
6447
6768
  });
6448
6769
  var zGetProcessDefinitionXmlResponse = z.string().register(z.globalRegistry, {
6449
6770
  description: "The XML of the process definition is successfully returned."
@@ -6469,81 +6790,81 @@ var zSearchProcessInstancesResponse = zProcessInstanceSearchQueryResult;
6469
6790
  var zSuspendProcessInstancesBatchOperationBody = zProcessInstanceSuspensionBatchOperationRequest;
6470
6791
  var zSuspendProcessInstancesBatchOperationResponse = zBatchOperationCreatedResult;
6471
6792
  var zGetProcessInstancePath = z.object({
6472
- processInstanceKey: zProcessInstanceKey
6793
+ processInstanceKey: zProcessInstanceKeyWritable
6473
6794
  });
6474
6795
  var zGetProcessInstanceResponse = zProcessInstanceResult;
6475
6796
  var zAssignProcessInstanceBusinessIdBody = zProcessInstanceBusinessIdAssignmentInstruction;
6476
6797
  var zAssignProcessInstanceBusinessIdPath = z.object({
6477
- processInstanceKey: zProcessInstanceKey
6798
+ processInstanceKey: zProcessInstanceKeyWritable
6478
6799
  });
6479
6800
  var zAssignProcessInstanceBusinessIdResponse = z.void().register(z.globalRegistry, {
6480
6801
  description: "The business id is assigned to the process instance."
6481
6802
  });
6482
6803
  var zGetProcessInstanceCallHierarchyPath = z.object({
6483
- processInstanceKey: zProcessInstanceKey
6804
+ processInstanceKey: zProcessInstanceKeyWritable
6484
6805
  });
6485
6806
  var zGetProcessInstanceCallHierarchyResponse = z.array(zProcessInstanceCallHierarchyEntry).register(z.globalRegistry, {
6486
6807
  description: "The call hierarchy is successfully returned."
6487
6808
  });
6488
6809
  var zCancelProcessInstanceBody = zCancelProcessInstanceRequest;
6489
6810
  var zCancelProcessInstancePath = z.object({
6490
- processInstanceKey: zProcessInstanceKey
6811
+ processInstanceKey: zProcessInstanceKeyWritable
6491
6812
  });
6492
6813
  var zCancelProcessInstanceResponse = z.void().register(z.globalRegistry, {
6493
6814
  description: "The process instance is canceled."
6494
6815
  });
6495
6816
  var zDeleteProcessInstanceBody = zDeleteProcessInstanceRequest;
6496
6817
  var zDeleteProcessInstancePath = z.object({
6497
- processInstanceKey: zProcessInstanceKey
6818
+ processInstanceKey: zProcessInstanceKeyWritable
6498
6819
  });
6499
6820
  var zDeleteProcessInstanceResponse = z.void().register(z.globalRegistry, {
6500
6821
  description: "The process instance is marked for deletion."
6501
6822
  });
6502
6823
  var zResolveProcessInstanceIncidentsPath = z.object({
6503
- processInstanceKey: zProcessInstanceKey
6824
+ processInstanceKey: zProcessInstanceKeyWritable
6504
6825
  });
6505
6826
  var zResolveProcessInstanceIncidentsResponse = zBatchOperationCreatedResult;
6506
6827
  var zSearchProcessInstanceIncidentsBody = zIncidentSearchQuery;
6507
6828
  var zSearchProcessInstanceIncidentsPath = z.object({
6508
- processInstanceKey: zProcessInstanceKey
6829
+ processInstanceKey: zProcessInstanceKeyWritable
6509
6830
  });
6510
6831
  var zSearchProcessInstanceIncidentsResponse = zIncidentSearchQueryResult;
6511
6832
  var zMigrateProcessInstanceBody = zProcessInstanceMigrationInstruction;
6512
6833
  var zMigrateProcessInstancePath = z.object({
6513
- processInstanceKey: zProcessInstanceKey
6834
+ processInstanceKey: zProcessInstanceKeyWritable
6514
6835
  });
6515
6836
  var zMigrateProcessInstanceResponse = z.void().register(z.globalRegistry, {
6516
6837
  description: "The process instance is migrated."
6517
6838
  });
6518
6839
  var zModifyProcessInstanceBody = zProcessInstanceModificationInstruction;
6519
6840
  var zModifyProcessInstancePath = z.object({
6520
- processInstanceKey: zProcessInstanceKey
6841
+ processInstanceKey: zProcessInstanceKeyWritable
6521
6842
  });
6522
6843
  var zModifyProcessInstanceResponse = z.void().register(z.globalRegistry, {
6523
6844
  description: "The process instance is modified."
6524
6845
  });
6525
6846
  var zResumeProcessInstanceBody = zResumeProcessInstanceRequest;
6526
6847
  var zResumeProcessInstancePath = z.object({
6527
- processInstanceKey: zProcessInstanceKey
6848
+ processInstanceKey: zProcessInstanceKeyWritable
6528
6849
  });
6529
6850
  var zResumeProcessInstanceResponse = z.void().register(z.globalRegistry, {
6530
6851
  description: "The process instance is resumed."
6531
6852
  });
6532
6853
  var zGetProcessInstanceSequenceFlowsPath = z.object({
6533
- processInstanceKey: zProcessInstanceKey
6854
+ processInstanceKey: zProcessInstanceKeyWritable
6534
6855
  });
6535
6856
  var zGetProcessInstanceSequenceFlowsResponse = zProcessInstanceSequenceFlowsQueryResult;
6536
6857
  var zGetProcessInstanceStatisticsPath = z.object({
6537
- processInstanceKey: zProcessInstanceKey
6858
+ processInstanceKey: zProcessInstanceKeyWritable
6538
6859
  });
6539
6860
  var zGetProcessInstanceStatisticsResponse = zProcessInstanceElementStatisticsQueryResult;
6540
6861
  var zGetProcessInstanceWaitStateStatisticsPath = z.object({
6541
- processInstanceKey: zProcessInstanceKey
6862
+ processInstanceKey: zProcessInstanceKeyWritable
6542
6863
  });
6543
6864
  var zGetProcessInstanceWaitStateStatisticsResponse = zProcessInstanceWaitStateStatisticsQueryResult;
6544
6865
  var zSuspendProcessInstanceBody = zSuspendProcessInstanceRequest;
6545
6866
  var zSuspendProcessInstancePath = z.object({
6546
- processInstanceKey: zProcessInstanceKey
6867
+ processInstanceKey: zProcessInstanceKeyWritable
6547
6868
  });
6548
6869
  var zSuspendProcessInstanceResponse = z.void().register(z.globalRegistry, {
6549
6870
  description: "The process instance is suspended."
@@ -6551,24 +6872,24 @@ var zSuspendProcessInstanceResponse = z.void().register(z.globalRegistry, {
6551
6872
  var zSearchResourcesBody = zResourceSearchQuery;
6552
6873
  var zSearchResourcesResponse = zResourceSearchQueryResult;
6553
6874
  var zGetResourcePath = z.object({
6554
- resourceKey: zResourceKey
6875
+ resourceKey: zResourceKeyWritable
6555
6876
  });
6556
6877
  var zGetResourceResponse = zResourceResult;
6557
6878
  var zGetResourceContentPath = z.object({
6558
- resourceKey: zResourceKey
6879
+ resourceKey: zResourceKeyWritable
6559
6880
  });
6560
6881
  var zGetResourceContentResponse = z.record(z.string(), z.unknown()).register(z.globalRegistry, {
6561
6882
  description: "The resource content is successfully returned."
6562
6883
  });
6563
6884
  var zGetResourceContentBinaryPath = z.object({
6564
- resourceKey: zResourceKey
6885
+ resourceKey: zResourceKeyWritable
6565
6886
  });
6566
6887
  var zGetResourceContentBinaryResponse = z.string().register(z.globalRegistry, {
6567
6888
  description: "The resource content is successfully returned."
6568
6889
  });
6569
6890
  var zDeleteResourceBody = zDeleteResourceRequest;
6570
6891
  var zDeleteResourcePath = z.object({
6571
- resourceKey: zResourceKey
6892
+ resourceKey: zResourceKeyWritable
6572
6893
  });
6573
6894
  var zDeleteResourceResponse2 = zDeleteResourceResponse;
6574
6895
  var zCreateRoleBody = zRoleCreateRequest;
@@ -6668,13 +6989,16 @@ var zAssignRoleToUserResponse = z.void().register(z.globalRegistry, {
6668
6989
  });
6669
6990
  var zResolveSecretsBody = zSecretResolveRequest;
6670
6991
  var zResolveSecretsResponse = zSecretResolveResult;
6992
+ var zListSecretsBody = zSecretListRequest;
6993
+ var zListSecretsResponse = zSecretListResult;
6671
6994
  var zCreateAdminUserBody = zUserRequest;
6672
6995
  var zCreateAdminUserResponse = zUserCreateResult;
6673
6996
  var zBroadcastSignalBody = zSignalBroadcastRequest;
6674
6997
  var zBroadcastSignalResponse = zSignalBroadcastResult;
6675
6998
  var zGetStatusResponse = z.void().register(z.globalRegistry, {
6676
- description: "The cluster is UP and has at least one partition with a healthy leader."
6999
+ description: "The default physical tenant is UP and has at least one partition with a healthy leader."
6677
7000
  });
7001
+ var zGetClusterStatusResponse = zClusterStatusResponse;
6678
7002
  var zGetUsageMetricsQuery = z.object({
6679
7003
  startTime: z.iso.datetime().register(z.globalRegistry, {
6680
7004
  description: "The start date for usage metrics, including this date. Value in ISO 8601 format."
@@ -6805,14 +7129,13 @@ var zAssignUserToTenantResponse = z.void().register(z.globalRegistry, {
6805
7129
  });
6806
7130
  var zGetTopologyResponse = zTopologyResponse;
6807
7131
  var zChangeClusterModeQuery = z.object({
6808
- mode: z.enum(["PROCESSING", "RECOVERING"]).register(z.globalRegistry, {
6809
- description: "The target cluster mode."
6810
- }),
7132
+ mode: zMode,
6811
7133
  dryRun: z.boolean().register(z.globalRegistry, {
6812
7134
  description: "If true, the requested change is only validated and the resulting plan is returned, without applying it to the cluster."
6813
7135
  }).optional().default(false)
6814
7136
  });
6815
7137
  var zChangeClusterModeResponse = zClusterModeChangeResponse;
7138
+ var zGetRestoreStatusResponse = zRestoreStatusResponse;
6816
7139
  var zRestoreBody = zRestoreRequest;
6817
7140
  var zRestoreResponse = zClusterModeChangeResponse;
6818
7141
  var zCreateUserBody = zUserRequest;
@@ -6837,44 +7160,44 @@ var zUpdateUserResponse = zUserUpdateResult;
6837
7160
  var zSearchUserTasksBody = zUserTaskSearchQuery;
6838
7161
  var zSearchUserTasksResponse = zUserTaskSearchQueryResult;
6839
7162
  var zGetUserTaskPath = z.object({
6840
- userTaskKey: zUserTaskKey
7163
+ userTaskKey: zUserTaskKeyWritable
6841
7164
  });
6842
7165
  var zGetUserTaskResponse = zUserTaskResult;
6843
7166
  var zUpdateUserTaskBody = zUserTaskUpdateRequest;
6844
7167
  var zUpdateUserTaskPath = z.object({
6845
- userTaskKey: zUserTaskKey
7168
+ userTaskKey: zUserTaskKeyWritable
6846
7169
  });
6847
7170
  var zUpdateUserTaskResponse = z.void().register(z.globalRegistry, {
6848
7171
  description: "The user task was updated successfully."
6849
7172
  });
6850
7173
  var zUnassignUserTaskPath = z.object({
6851
- userTaskKey: zUserTaskKey
7174
+ userTaskKey: zUserTaskKeyWritable
6852
7175
  });
6853
7176
  var zUnassignUserTaskResponse = z.void().register(z.globalRegistry, {
6854
7177
  description: "The user task was unassigned successfully."
6855
7178
  });
6856
7179
  var zAssignUserTaskBody = zUserTaskAssignmentRequest;
6857
7180
  var zAssignUserTaskPath = z.object({
6858
- userTaskKey: zUserTaskKey
7181
+ userTaskKey: zUserTaskKeyWritable
6859
7182
  });
6860
7183
  var zAssignUserTaskResponse = z.void().register(z.globalRegistry, {
6861
7184
  description: "The user task's assignment was adjusted."
6862
7185
  });
6863
7186
  var zSearchUserTaskAuditLogsBody = zUserTaskAuditLogSearchQueryRequest;
6864
7187
  var zSearchUserTaskAuditLogsPath = z.object({
6865
- userTaskKey: zUserTaskKey
7188
+ userTaskKey: zUserTaskKeyWritable
6866
7189
  });
6867
7190
  var zSearchUserTaskAuditLogsResponse = zAuditLogSearchQueryResult;
6868
7191
  var zCompleteUserTaskBody = zUserTaskCompletionRequest;
6869
7192
  var zCompleteUserTaskPath = z.object({
6870
- userTaskKey: zUserTaskKey
7193
+ userTaskKey: zUserTaskKeyWritable
6871
7194
  });
6872
7195
  var zCompleteUserTaskResponse = z.void().register(z.globalRegistry, {
6873
7196
  description: "The user task was completed successfully."
6874
7197
  });
6875
7198
  var zSearchUserTaskEffectiveVariablesBody = zUserTaskEffectiveVariableSearchQueryRequest;
6876
7199
  var zSearchUserTaskEffectiveVariablesPath = z.object({
6877
- userTaskKey: zUserTaskKey
7200
+ userTaskKey: zUserTaskKeyWritable
6878
7201
  });
6879
7202
  var zSearchUserTaskEffectiveVariablesQuery = z.object({
6880
7203
  truncateValues: z.boolean().register(z.globalRegistry, {
@@ -6883,7 +7206,7 @@ var zSearchUserTaskEffectiveVariablesQuery = z.object({
6883
7206
  });
6884
7207
  var zSearchUserTaskEffectiveVariablesResponse = zVariableSearchQueryResult;
6885
7208
  var zGetUserTaskFormPath = z.object({
6886
- userTaskKey: zUserTaskKey
7209
+ userTaskKey: zUserTaskKeyWritable
6887
7210
  });
6888
7211
  var zGetUserTaskFormResponse = z.union([
6889
7212
  zFormResult,
@@ -6893,7 +7216,7 @@ var zGetUserTaskFormResponse = z.union([
6893
7216
  ]);
6894
7217
  var zSearchUserTaskVariablesBody = zUserTaskVariableSearchQueryRequest;
6895
7218
  var zSearchUserTaskVariablesPath = z.object({
6896
- userTaskKey: zUserTaskKey
7219
+ userTaskKey: zUserTaskKeyWritable
6897
7220
  });
6898
7221
  var zSearchUserTaskVariablesQuery = z.object({
6899
7222
  truncateValues: z.boolean().register(z.globalRegistry, {
@@ -6909,7 +7232,7 @@ var zSearchVariablesQuery = z.object({
6909
7232
  });
6910
7233
  var zSearchVariablesResponse = zVariableSearchQueryResult;
6911
7234
  var zGetVariablePath = z.object({
6912
- variableKey: zVariableKey
7235
+ variableKey: zVariableKeyWritable
6913
7236
  });
6914
7237
  var zGetVariableResponse = zVariableResult;
6915
7238
  export {
@@ -6975,7 +7298,9 @@ export {
6975
7298
  zAdvancedWaitStateTypeFilter,
6976
7299
  zAgentHistoryItemKey,
6977
7300
  zAgentHistoryItemKeyExactMatch,
7301
+ zAgentHistoryItemKeyExactMatchWritable,
6978
7302
  zAgentHistoryItemKeyFilterProperty,
7303
+ zAgentHistoryItemKeyWritable,
6979
7304
  zAgentInstanceCreationRequest,
6980
7305
  zAgentInstanceCreationResult,
6981
7306
  zAgentInstanceDefinition,
@@ -6983,6 +7308,7 @@ export {
6983
7308
  zAgentInstanceFilter,
6984
7309
  zAgentInstanceHistoryCommitStatusEnum,
6985
7310
  zAgentInstanceHistoryCommitStatusExactMatch,
7311
+ zAgentInstanceHistoryCommitStatusExactMatchWritable,
6986
7312
  zAgentInstanceHistoryCommitStatusFilterProperty,
6987
7313
  zAgentInstanceHistoryFilter,
6988
7314
  zAgentInstanceHistoryItemCreationResult,
@@ -6991,13 +7317,16 @@ export {
6991
7317
  zAgentInstanceHistoryItemResult,
6992
7318
  zAgentInstanceHistoryRoleEnum,
6993
7319
  zAgentInstanceHistoryRoleExactMatch,
7320
+ zAgentInstanceHistoryRoleExactMatchWritable,
6994
7321
  zAgentInstanceHistoryRoleFilterProperty,
6995
7322
  zAgentInstanceHistorySearchQuery,
6996
7323
  zAgentInstanceHistorySearchQueryResult,
6997
7324
  zAgentInstanceHistorySearchQuerySortRequest,
6998
7325
  zAgentInstanceKey,
6999
7326
  zAgentInstanceKeyExactMatch,
7327
+ zAgentInstanceKeyExactMatchWritable,
7000
7328
  zAgentInstanceKeyFilterProperty,
7329
+ zAgentInstanceKeyWritable,
7001
7330
  zAgentInstanceLimits,
7002
7331
  zAgentInstanceMessageContent,
7003
7332
  zAgentInstanceMessageContentTypeEnum,
@@ -7010,6 +7339,7 @@ export {
7010
7339
  zAgentInstanceSearchQuerySortRequest,
7011
7340
  zAgentInstanceStatusEnum,
7012
7341
  zAgentInstanceStatusExactMatch,
7342
+ zAgentInstanceStatusExactMatchWritable,
7013
7343
  zAgentInstanceStatusFilterProperty,
7014
7344
  zAgentInstanceTextContent,
7015
7345
  zAgentInstanceToolCall,
@@ -7049,20 +7379,25 @@ export {
7049
7379
  zAssignUserToTenantResponse,
7050
7380
  zAuditLogActorTypeEnum,
7051
7381
  zAuditLogActorTypeExactMatch,
7382
+ zAuditLogActorTypeExactMatchWritable,
7052
7383
  zAuditLogActorTypeFilterProperty,
7053
7384
  zAuditLogCategoryEnum,
7054
7385
  zAuditLogEntityKey,
7055
7386
  zAuditLogEntityKeyExactMatch,
7387
+ zAuditLogEntityKeyExactMatchWritable,
7056
7388
  zAuditLogEntityKeyFilterProperty,
7057
7389
  zAuditLogEntityTypeEnum,
7058
7390
  zAuditLogFilter,
7059
7391
  zAuditLogKey,
7060
7392
  zAuditLogKeyExactMatch,
7393
+ zAuditLogKeyExactMatchWritable,
7061
7394
  zAuditLogKeyFilterProperty,
7395
+ zAuditLogKeyWritable,
7062
7396
  zAuditLogOperationTypeEnum,
7063
7397
  zAuditLogResult,
7064
7398
  zAuditLogResultEnum,
7065
7399
  zAuditLogResultExactMatch,
7400
+ zAuditLogResultExactMatchWritable,
7066
7401
  zAuditLogResultFilterProperty,
7067
7402
  zAuditLogSearchQueryRequest,
7068
7403
  zAuditLogSearchQueryResult,
@@ -7072,12 +7407,18 @@ export {
7072
7407
  zAuthorizationFilter,
7073
7408
  zAuthorizationIdBasedRequest,
7074
7409
  zAuthorizationKey,
7410
+ zAuthorizationKeyWritable,
7075
7411
  zAuthorizationPropertyBasedRequest,
7076
7412
  zAuthorizationRequest,
7077
7413
  zAuthorizationResult,
7078
7414
  zAuthorizationSearchQuery,
7079
7415
  zAuthorizationSearchQuerySortRequest,
7080
7416
  zAuthorizationSearchResult,
7417
+ zBackupId,
7418
+ zBackupIdPrefix,
7419
+ zBackupInfo,
7420
+ zBackupInfoWritable,
7421
+ zBackupType,
7081
7422
  zBaseProcessInstanceFilterFields,
7082
7423
  zBaseWaitStateDetails,
7083
7424
  zBasicStringFilter,
@@ -7092,6 +7433,7 @@ export {
7092
7433
  zBatchOperationItemSearchQuerySortRequest,
7093
7434
  zBatchOperationItemStateEnum,
7094
7435
  zBatchOperationItemStateExactMatch,
7436
+ zBatchOperationItemStateExactMatchWritable,
7095
7437
  zBatchOperationItemStateFilterProperty,
7096
7438
  zBatchOperationKey,
7097
7439
  zBatchOperationResponse,
@@ -7100,9 +7442,11 @@ export {
7100
7442
  zBatchOperationSearchQuerySortRequest,
7101
7443
  zBatchOperationStateEnum,
7102
7444
  zBatchOperationStateExactMatch,
7445
+ zBatchOperationStateExactMatchWritable,
7103
7446
  zBatchOperationStateFilterProperty,
7104
7447
  zBatchOperationTypeEnum,
7105
7448
  zBatchOperationTypeExactMatch,
7449
+ zBatchOperationTypeExactMatchWritable,
7106
7450
  zBatchOperationTypeFilterProperty,
7107
7451
  zBroadcastSignalBody,
7108
7452
  zBroadcastSignalResponse,
@@ -7119,24 +7463,30 @@ export {
7119
7463
  zCancelProcessInstancesBatchOperationBody,
7120
7464
  zCancelProcessInstancesBatchOperationResponse,
7121
7465
  zCategoryExactMatch,
7466
+ zCategoryExactMatchWritable,
7122
7467
  zCategoryFilterProperty,
7123
7468
  zChangeClusterModeQuery,
7124
7469
  zChangeClusterModeResponse,
7125
7470
  zChangeset,
7471
+ zCheckpointId,
7472
+ zCheckpointType,
7126
7473
  zClientId,
7127
7474
  zClockPinRequest,
7128
7475
  zCloudConfigurationResponse,
7129
7476
  zCloudStage,
7130
7477
  zClusterModeChangeOperation,
7131
7478
  zClusterModeChangeResponse,
7479
+ zClusterStatusResponse,
7132
7480
  zClusterVariableKindEnum,
7133
7481
  zClusterVariableKindExactMatch,
7482
+ zClusterVariableKindExactMatchWritable,
7134
7483
  zClusterVariableKindFilterProperty,
7135
7484
  zClusterVariableName,
7136
7485
  zClusterVariableResult,
7137
7486
  zClusterVariableResultBase,
7138
7487
  zClusterVariableScopeEnum,
7139
7488
  zClusterVariableScopeExactMatch,
7489
+ zClusterVariableScopeExactMatchWritable,
7140
7490
  zClusterVariableScopeFilterProperty,
7141
7491
  zClusterVariableSearchQueryFilterRequest,
7142
7492
  zClusterVariableSearchQueryRequest,
@@ -7153,6 +7503,7 @@ export {
7153
7503
  zConditionWaitStateDetails,
7154
7504
  zConditionalEvaluationInstruction,
7155
7505
  zConditionalEvaluationKey,
7506
+ zConditionalEvaluationKeyWritable,
7156
7507
  zCorrelateMessageBody,
7157
7508
  zCorrelateMessageResponse,
7158
7509
  zCorrelatedMessageSubscriptionFilter,
@@ -7213,7 +7564,9 @@ export {
7213
7564
  zDecisionDefinitionId,
7214
7565
  zDecisionDefinitionKey,
7215
7566
  zDecisionDefinitionKeyExactMatch,
7567
+ zDecisionDefinitionKeyExactMatchWritable,
7216
7568
  zDecisionDefinitionKeyFilterProperty,
7569
+ zDecisionDefinitionKeyWritable,
7217
7570
  zDecisionDefinitionResult,
7218
7571
  zDecisionDefinitionSearchQuery,
7219
7572
  zDecisionDefinitionSearchQueryResult,
@@ -7223,26 +7576,33 @@ export {
7223
7576
  zDecisionEvaluationByKey,
7224
7577
  zDecisionEvaluationInstanceKey,
7225
7578
  zDecisionEvaluationInstanceKeyExactMatch,
7579
+ zDecisionEvaluationInstanceKeyExactMatchWritable,
7226
7580
  zDecisionEvaluationInstanceKeyFilterProperty,
7227
7581
  zDecisionEvaluationInstruction,
7228
7582
  zDecisionEvaluationKey,
7229
7583
  zDecisionEvaluationKeyExactMatch,
7584
+ zDecisionEvaluationKeyExactMatchWritable,
7230
7585
  zDecisionEvaluationKeyFilterProperty,
7586
+ zDecisionEvaluationKeyWritable,
7231
7587
  zDecisionInstanceDeletionBatchOperationRequest,
7232
7588
  zDecisionInstanceFilter,
7233
7589
  zDecisionInstanceGetQueryResult,
7234
7590
  zDecisionInstanceKey,
7591
+ zDecisionInstanceKeyWritable,
7235
7592
  zDecisionInstanceResult,
7236
7593
  zDecisionInstanceSearchQuery,
7237
7594
  zDecisionInstanceSearchQueryResult,
7238
7595
  zDecisionInstanceSearchQuerySortRequest,
7239
7596
  zDecisionInstanceStateEnum,
7240
7597
  zDecisionInstanceStateExactMatch,
7598
+ zDecisionInstanceStateExactMatchWritable,
7241
7599
  zDecisionInstanceStateFilterProperty,
7242
7600
  zDecisionRequirementsFilter,
7243
7601
  zDecisionRequirementsKey,
7244
7602
  zDecisionRequirementsKeyExactMatch,
7603
+ zDecisionRequirementsKeyExactMatchWritable,
7245
7604
  zDecisionRequirementsKeyFilterProperty,
7605
+ zDecisionRequirementsKeyWritable,
7246
7606
  zDecisionRequirementsResult,
7247
7607
  zDecisionRequirementsSearchQuery,
7248
7608
  zDecisionRequirementsSearchQueryResult,
@@ -7279,6 +7639,9 @@ export {
7279
7639
  zDeleteResourceResponse2,
7280
7640
  zDeleteRolePath,
7281
7641
  zDeleteRoleResponse,
7642
+ zDeleteRuntimeBackupPath,
7643
+ zDeleteRuntimeBackupResponse,
7644
+ zDeleteRuntimeBackupStateResponse,
7282
7645
  zDeleteTenantClusterVariablePath,
7283
7646
  zDeleteTenantClusterVariableResponse,
7284
7647
  zDeleteTenantPath,
@@ -7291,7 +7654,9 @@ export {
7291
7654
  zDeploymentFormResult,
7292
7655
  zDeploymentKey,
7293
7656
  zDeploymentKeyExactMatch,
7657
+ zDeploymentKeyExactMatchWritable,
7294
7658
  zDeploymentKeyFilterProperty,
7659
+ zDeploymentKeyWritable,
7295
7660
  zDeploymentMetadataResult,
7296
7661
  zDeploymentProcessResult,
7297
7662
  zDeploymentResourceResult,
@@ -7307,18 +7672,22 @@ export {
7307
7672
  zDocumentReference,
7308
7673
  zElementId,
7309
7674
  zElementIdExactMatch,
7675
+ zElementIdExactMatchWritable,
7310
7676
  zElementIdFilterProperty,
7311
7677
  zElementInstanceFilter,
7312
7678
  zElementInstanceFilterFields,
7313
7679
  zElementInstanceKey,
7314
7680
  zElementInstanceKeyExactMatch,
7681
+ zElementInstanceKeyExactMatchWritable,
7315
7682
  zElementInstanceKeyFilterProperty,
7683
+ zElementInstanceKeyWritable,
7316
7684
  zElementInstanceResult,
7317
7685
  zElementInstanceSearchQuery,
7318
7686
  zElementInstanceSearchQueryResult,
7319
7687
  zElementInstanceSearchQuerySortRequest,
7320
7688
  zElementInstanceStateEnum,
7321
7689
  zElementInstanceStateExactMatch,
7690
+ zElementInstanceStateExactMatchWritable,
7322
7691
  zElementInstanceStateFilterProperty,
7323
7692
  zElementInstanceWaitStateFilter,
7324
7693
  zElementInstanceWaitStateQuery,
@@ -7327,6 +7696,7 @@ export {
7327
7696
  zElementInstanceWaitStateResult,
7328
7697
  zEndCursor,
7329
7698
  zEntityTypeExactMatch,
7699
+ zEntityTypeExactMatchWritable,
7330
7700
  zEntityTypeFilterProperty,
7331
7701
  zEvaluateConditionalResult,
7332
7702
  zEvaluateConditionalsBody,
@@ -7348,7 +7718,9 @@ export {
7348
7718
  zFormId,
7349
7719
  zFormKey,
7350
7720
  zFormKeyExactMatch,
7721
+ zFormKeyExactMatchWritable,
7351
7722
  zFormKeyFilterProperty,
7723
+ zFormKeyWritable,
7352
7724
  zFormResult,
7353
7725
  zGetAgentInstancePath,
7354
7726
  zGetAgentInstanceResponse,
@@ -7359,6 +7731,7 @@ export {
7359
7731
  zGetAuthorizationResponse,
7360
7732
  zGetBatchOperationPath,
7361
7733
  zGetBatchOperationResponse,
7734
+ zGetClusterStatusResponse,
7362
7735
  zGetDecisionDefinitionPath,
7363
7736
  zGetDecisionDefinitionResponse,
7364
7737
  zGetDecisionDefinitionXmlPath,
@@ -7430,8 +7803,12 @@ export {
7430
7803
  zGetResourceContentResponse,
7431
7804
  zGetResourcePath,
7432
7805
  zGetResourceResponse,
7806
+ zGetRestoreStatusResponse,
7433
7807
  zGetRolePath,
7434
7808
  zGetRoleResponse,
7809
+ zGetRuntimeBackupPath,
7810
+ zGetRuntimeBackupResponse,
7811
+ zGetRuntimeBackupStateResponse,
7435
7812
  zGetStartProcessFormPath,
7436
7813
  zGetStartProcessFormResponse,
7437
7814
  zGetStatusResponse,
@@ -7456,12 +7833,15 @@ export {
7456
7833
  zGlobalListenerId,
7457
7834
  zGlobalListenerSourceEnum,
7458
7835
  zGlobalListenerSourceExactMatch,
7836
+ zGlobalListenerSourceExactMatchWritable,
7459
7837
  zGlobalListenerSourceFilterProperty,
7460
7838
  zGlobalTaskListenerBase,
7461
7839
  zGlobalTaskListenerEventTypeEnum,
7462
7840
  zGlobalTaskListenerEventTypeExactMatch,
7841
+ zGlobalTaskListenerEventTypeExactMatchWritable,
7463
7842
  zGlobalTaskListenerEventTypeFilterProperty,
7464
7843
  zGlobalTaskListenerEventTypes,
7844
+ zGlobalTaskListenerEventTypesWritable,
7465
7845
  zGlobalTaskListenerResult,
7466
7846
  zGlobalTaskListenerSearchQueryFilterRequest,
7467
7847
  zGlobalTaskListenerSearchQueryRequest,
@@ -7489,9 +7869,11 @@ export {
7489
7869
  zGroupUserSearchResult,
7490
7870
  zIncidentErrorTypeEnum,
7491
7871
  zIncidentErrorTypeExactMatch,
7872
+ zIncidentErrorTypeExactMatchWritable,
7492
7873
  zIncidentErrorTypeFilterProperty,
7493
7874
  zIncidentFilter,
7494
7875
  zIncidentKey,
7876
+ zIncidentKeyWritable,
7495
7877
  zIncidentProcessInstanceStatisticsByDefinitionFilter,
7496
7878
  zIncidentProcessInstanceStatisticsByDefinitionQuery,
7497
7879
  zIncidentProcessInstanceStatisticsByDefinitionQueryResult,
@@ -7508,6 +7890,7 @@ export {
7508
7890
  zIncidentSearchQuerySortRequest,
7509
7891
  zIncidentStateEnum,
7510
7892
  zIncidentStateExactMatch,
7893
+ zIncidentStateExactMatchWritable,
7511
7894
  zIncidentStateFilterProperty,
7512
7895
  zInferredAncestorKeyInstruction,
7513
7896
  zIntegerFilterProperty,
@@ -7525,12 +7908,16 @@ export {
7525
7908
  zJobFilter,
7526
7909
  zJobKey,
7527
7910
  zJobKeyExactMatch,
7911
+ zJobKeyExactMatchWritable,
7528
7912
  zJobKeyFilterProperty,
7913
+ zJobKeyWritable,
7529
7914
  zJobKindEnum,
7530
7915
  zJobKindExactMatch,
7916
+ zJobKindExactMatchWritable,
7531
7917
  zJobKindFilterProperty,
7532
7918
  zJobListenerEventTypeEnum,
7533
7919
  zJobListenerEventTypeExactMatch,
7920
+ zJobListenerEventTypeExactMatchWritable,
7534
7921
  zJobListenerEventTypeFilterProperty,
7535
7922
  zJobMetricsConfigurationResponse,
7536
7923
  zJobResult,
@@ -7544,6 +7931,7 @@ export {
7544
7931
  zJobSearchResult,
7545
7932
  zJobStateEnum,
7546
7933
  zJobStateExactMatch,
7934
+ zJobStateExactMatchWritable,
7547
7935
  zJobStateFilterProperty,
7548
7936
  zJobTimeSeriesStatisticsFilter,
7549
7937
  zJobTimeSeriesStatisticsItem,
@@ -7562,6 +7950,10 @@ export {
7562
7950
  zLicenseResponse,
7563
7951
  zLikeFilter,
7564
7952
  zLimitPagination,
7953
+ zListRuntimeBackupsQuery,
7954
+ zListRuntimeBackupsResponse,
7955
+ zListSecretsBody,
7956
+ zListSecretsResponse,
7565
7957
  zLongKey,
7566
7958
  zLoopIterationId,
7567
7959
  zMappingRuleCreateRequest,
@@ -7580,21 +7972,26 @@ export {
7580
7972
  zMessageCorrelationRequest,
7581
7973
  zMessageCorrelationResult,
7582
7974
  zMessageKey,
7975
+ zMessageKeyWritable,
7583
7976
  zMessagePublicationRequest,
7584
7977
  zMessagePublicationResult,
7585
7978
  zMessageSubscriptionFilter,
7586
7979
  zMessageSubscriptionKey,
7587
7980
  zMessageSubscriptionKeyExactMatch,
7981
+ zMessageSubscriptionKeyExactMatchWritable,
7588
7982
  zMessageSubscriptionKeyFilterProperty,
7983
+ zMessageSubscriptionKeyWritable,
7589
7984
  zMessageSubscriptionResult,
7590
7985
  zMessageSubscriptionSearchQuery,
7591
7986
  zMessageSubscriptionSearchQueryResult,
7592
7987
  zMessageSubscriptionSearchQuerySortRequest,
7593
7988
  zMessageSubscriptionStateEnum,
7594
7989
  zMessageSubscriptionStateExactMatch,
7990
+ zMessageSubscriptionStateExactMatchWritable,
7595
7991
  zMessageSubscriptionStateFilterProperty,
7596
7992
  zMessageSubscriptionTypeEnum,
7597
7993
  zMessageSubscriptionTypeExactMatch,
7994
+ zMessageSubscriptionTypeExactMatchWritable,
7598
7995
  zMessageSubscriptionTypeFilterProperty,
7599
7996
  zMessageWaitStateDetails,
7600
7997
  zMigrateProcessInstanceBody,
@@ -7603,6 +8000,7 @@ export {
7603
8000
  zMigrateProcessInstanceResponse,
7604
8001
  zMigrateProcessInstancesBatchOperationBody,
7605
8002
  zMigrateProcessInstancesBatchOperationResponse,
8003
+ zMode,
7606
8004
  zModifyProcessInstanceBody,
7607
8005
  zModifyProcessInstancePath,
7608
8006
  zModifyProcessInstanceResponse,
@@ -7612,9 +8010,18 @@ export {
7612
8010
  zOffsetPagination,
7613
8011
  zOperationReference,
7614
8012
  zOperationTypeExactMatch,
8013
+ zOperationTypeExactMatchWritable,
7615
8014
  zOperationTypeFilterProperty,
7616
8015
  zOwnerTypeEnum,
7617
8016
  zPartition,
8017
+ zPartitionBackupInfo,
8018
+ zPartitionBackupInfoWritable,
8019
+ zPartitionBackupRange,
8020
+ zPartitionBackupState,
8021
+ zPartitionCheckpointState,
8022
+ zPartitionId,
8023
+ zPauseExportingQuery,
8024
+ zPauseExportingResponse,
7618
8025
  zPermissionTypeEnum,
7619
8026
  zPinClockBody,
7620
8027
  zPinClockResponse,
@@ -7624,6 +8031,7 @@ export {
7624
8031
  zProcessDefinitionFilter,
7625
8032
  zProcessDefinitionId,
7626
8033
  zProcessDefinitionIdExactMatch,
8034
+ zProcessDefinitionIdExactMatchWritable,
7627
8035
  zProcessDefinitionIdFilterProperty,
7628
8036
  zProcessDefinitionInstanceStatisticsQuery,
7629
8037
  zProcessDefinitionInstanceStatisticsQueryResult,
@@ -7636,7 +8044,9 @@ export {
7636
8044
  zProcessDefinitionInstanceVersionStatisticsResult,
7637
8045
  zProcessDefinitionKey,
7638
8046
  zProcessDefinitionKeyExactMatch,
8047
+ zProcessDefinitionKeyExactMatchWritable,
7639
8048
  zProcessDefinitionKeyFilterProperty,
8049
+ zProcessDefinitionKeyWritable,
7640
8050
  zProcessDefinitionMessageSubscriptionStatisticsQuery,
7641
8051
  zProcessDefinitionMessageSubscriptionStatisticsQueryResult,
7642
8052
  zProcessDefinitionMessageSubscriptionStatisticsResult,
@@ -7666,7 +8076,9 @@ export {
7666
8076
  zProcessInstanceIncidentResolutionBatchOperationRequest,
7667
8077
  zProcessInstanceKey,
7668
8078
  zProcessInstanceKeyExactMatch,
8079
+ zProcessInstanceKeyExactMatchWritable,
7669
8080
  zProcessInstanceKeyFilterProperty,
8081
+ zProcessInstanceKeyWritable,
7670
8082
  zProcessInstanceMigrationBatchOperationPlan,
7671
8083
  zProcessInstanceMigrationBatchOperationRequest,
7672
8084
  zProcessInstanceMigrationInstruction,
@@ -7688,6 +8100,7 @@ export {
7688
8100
  zProcessInstanceSequenceFlowsQueryResult,
7689
8101
  zProcessInstanceStateEnum,
7690
8102
  zProcessInstanceStateExactMatch,
8103
+ zProcessInstanceStateExactMatchWritable,
7691
8104
  zProcessInstanceStateFilterProperty,
7692
8105
  zProcessInstanceSuspensionBatchOperationRequest,
7693
8106
  zProcessInstanceWaitStateStatisticsQueryResult,
@@ -7708,18 +8121,24 @@ export {
7708
8121
  zResourceFilter,
7709
8122
  zResourceKey,
7710
8123
  zResourceKeyExactMatch,
8124
+ zResourceKeyExactMatchWritable,
7711
8125
  zResourceKeyFilterProperty,
8126
+ zResourceKeyWritable,
7712
8127
  zResourceResult,
7713
8128
  zResourceSearchQuery,
7714
8129
  zResourceSearchQueryResult,
7715
8130
  zResourceSearchQuerySortRequest,
7716
8131
  zResourceTypeEnum,
7717
8132
  zRestoreBody,
8133
+ zRestoreBrokerStatus,
8134
+ zRestorePartitionStatus,
7718
8135
  zRestoreRequest,
7719
8136
  zRestoreResponse,
8137
+ zRestoreStatusResponse,
7720
8138
  zResumeBatchOperationBody,
7721
8139
  zResumeBatchOperationPath,
7722
8140
  zResumeBatchOperationResponse,
8141
+ zResumeExportingResponse,
7723
8142
  zResumeProcessInstanceBody,
7724
8143
  zResumeProcessInstancePath,
7725
8144
  zResumeProcessInstanceRequest,
@@ -7749,9 +8168,12 @@ export {
7749
8168
  zRoleUserSearchQueryRequest,
7750
8169
  zRoleUserSearchQuerySortRequest,
7751
8170
  zRoleUserSearchResult,
8171
+ zRuntimeBackupState,
7752
8172
  zScopeKey,
7753
8173
  zScopeKeyExactMatch,
8174
+ zScopeKeyExactMatchWritable,
7754
8175
  zScopeKeyFilterProperty,
8176
+ zScopeKeyWritable,
7755
8177
  zSearchAgentInstanceHistoryBody,
7756
8178
  zSearchAgentInstanceHistoryPath,
7757
8179
  zSearchAgentInstanceHistoryResponse,
@@ -7873,6 +8295,8 @@ export {
7873
8295
  zSearchVariablesQuery,
7874
8296
  zSearchVariablesResponse,
7875
8297
  zSecretErrorCode,
8298
+ zSecretListRequest,
8299
+ zSecretListResult,
7876
8300
  zSecretResolutionError,
7877
8301
  zSecretResolveRequest,
7878
8302
  zSecretResolveResult,
@@ -7880,12 +8304,14 @@ export {
7880
8304
  zSignalBroadcastRequest,
7881
8305
  zSignalBroadcastResult,
7882
8306
  zSignalKey,
8307
+ zSignalKeyWritable,
7883
8308
  zSignalWaitStateDetails,
7884
8309
  zSortOrderEnum,
7885
8310
  zSourceElementIdInstruction,
7886
8311
  zSourceElementInstanceKeyInstruction,
7887
8312
  zSourceElementInstruction,
7888
8313
  zStartCursor,
8314
+ zStateCode,
7889
8315
  zStatusMetric,
7890
8316
  zStringFilterProperty,
7891
8317
  zSuspendBatchOperationBody,
@@ -7897,9 +8323,15 @@ export {
7897
8323
  zSuspendProcessInstanceResponse,
7898
8324
  zSuspendProcessInstancesBatchOperationBody,
7899
8325
  zSuspendProcessInstancesBatchOperationResponse,
8326
+ zSyncRuntimeBackupStateResponse,
7900
8327
  zSystemConfigurationResponse,
7901
8328
  zTag,
7902
8329
  zTagSet,
8330
+ zTagSetWritable,
8331
+ zTakeRuntimeBackupBody,
8332
+ zTakeRuntimeBackupRequest,
8333
+ zTakeRuntimeBackupResponse,
8334
+ zTakeRuntimeBackupResponse2,
7903
8335
  zTenantClientResult,
7904
8336
  zTenantClientSearchQueryRequest,
7905
8337
  zTenantClientSearchQuerySortRequest,
@@ -8013,6 +8445,7 @@ export {
8013
8445
  zUserTaskEffectiveVariableSearchQueryRequest,
8014
8446
  zUserTaskFilter,
8015
8447
  zUserTaskKey,
8448
+ zUserTaskKeyWritable,
8016
8449
  zUserTaskProperties,
8017
8450
  zUserTaskResult,
8018
8451
  zUserTaskSearchQuery,
@@ -8020,6 +8453,7 @@ export {
8020
8453
  zUserTaskSearchQuerySortRequest,
8021
8454
  zUserTaskStateEnum,
8022
8455
  zUserTaskStateExactMatch,
8456
+ zUserTaskStateExactMatchWritable,
8023
8457
  zUserTaskStateFilterProperty,
8024
8458
  zUserTaskUpdateRequest,
8025
8459
  zUserTaskVariableFilter,
@@ -8032,7 +8466,9 @@ export {
8032
8466
  zVariableFilter,
8033
8467
  zVariableKey,
8034
8468
  zVariableKeyExactMatch,
8469
+ zVariableKeyExactMatchWritable,
8035
8470
  zVariableKeyFilterProperty,
8471
+ zVariableKeyWritable,
8036
8472
  zVariableResult,
8037
8473
  zVariableResultBase,
8038
8474
  zVariableSearchQuery,
@@ -8043,10 +8479,12 @@ export {
8043
8479
  zWaitStateDetails,
8044
8480
  zWaitStateElementTypeEnum,
8045
8481
  zWaitStateElementTypeExactMatch,
8482
+ zWaitStateElementTypeExactMatchWritable,
8046
8483
  zWaitStateElementTypeFilterProperty,
8047
8484
  zWaitStateTypeEnum,
8048
8485
  zWaitStateTypeExactMatch,
8486
+ zWaitStateTypeExactMatchWritable,
8049
8487
  zWaitStateTypeFilterProperty,
8050
8488
  zWebappComponent
8051
8489
  };
8052
- //# sourceMappingURL=zod.gen-Y23JMS2R.js.map
8490
+ //# sourceMappingURL=zod.gen-GEVQP4MW.js.map