@camunda8/orchestration-cluster-api 10.0.0-alpha.13 → 10.0.0-alpha.15

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.
@@ -2242,6 +2242,10 @@ var zActivatedJobResult = z.object({
2242
2242
  zProcessInstanceKey,
2243
2243
  z.null()
2244
2244
  ]),
2245
+ businessId: z.union([
2246
+ zBusinessId,
2247
+ z.null()
2248
+ ]),
2245
2249
  priority: z.int().register(z.globalRegistry, {
2246
2250
  description: "The priority of the job. Higher values indicate higher priority. Jobs created before 8.10 have no stored priority; the API returns 0 for such jobs.\n"
2247
2251
  })
@@ -2299,6 +2303,10 @@ var zJobSearchResult = z.object({
2299
2303
  zProcessInstanceKey,
2300
2304
  z.null()
2301
2305
  ]),
2306
+ businessId: z.union([
2307
+ zBusinessId,
2308
+ z.null()
2309
+ ]),
2302
2310
  retries: z.int().register(z.globalRegistry, {
2303
2311
  description: "The amount of retries left to this job."
2304
2312
  }),
@@ -3705,6 +3713,21 @@ var zProcessInstanceElementStatisticsQueryResult = z.object({
3705
3713
  }).register(z.globalRegistry, {
3706
3714
  description: "Process instance element statistics query response."
3707
3715
  });
3716
+ var zProcessInstanceWaitStateStatisticsResult = z.object({
3717
+ elementId: zElementId,
3718
+ waitingCount: z.coerce.number().int().register(z.globalRegistry, {
3719
+ description: "The total number of waiting instances of the element."
3720
+ })
3721
+ }).register(z.globalRegistry, {
3722
+ description: "Process instance wait state statistics response item."
3723
+ });
3724
+ var zProcessInstanceWaitStateStatisticsQueryResult = z.object({
3725
+ items: z.array(zProcessInstanceWaitStateStatisticsResult).register(z.globalRegistry, {
3726
+ description: "The wait state statistics."
3727
+ })
3728
+ }).register(z.globalRegistry, {
3729
+ description: "Process instance wait state statistics query response."
3730
+ });
3708
3731
  var zMigrateProcessInstanceMappingInstruction = z.object({
3709
3732
  sourceElementId: zElementId,
3710
3733
  targetElementId: zElementId
@@ -7408,6 +7431,14 @@ var zGetProcessInstanceStatisticsData = z.object({
7408
7431
  query: z.optional(z.never())
7409
7432
  });
7410
7433
  var zGetProcessInstanceStatisticsResponse = zProcessInstanceElementStatisticsQueryResult;
7434
+ var zGetProcessInstanceWaitStateStatisticsData = z.object({
7435
+ body: z.optional(z.never()),
7436
+ path: z.object({
7437
+ processInstanceKey: zProcessInstanceKey
7438
+ }),
7439
+ query: z.optional(z.never())
7440
+ });
7441
+ var zGetProcessInstanceWaitStateStatisticsResponse = zProcessInstanceWaitStateStatisticsQueryResult;
7411
7442
  var zSearchResourcesData = z.object({
7412
7443
  body: z.optional(zResourceSearchQuery),
7413
7444
  path: z.optional(z.never()),
@@ -7946,15 +7977,7 @@ var zCompleteUserTaskResponse = z.void().register(z.globalRegistry, {
7946
7977
  description: "The user task was completed successfully."
7947
7978
  });
7948
7979
  var zSearchUserTaskEffectiveVariablesData = z.object({
7949
- body: z.optional(z.object({
7950
- page: z.optional(zOffsetPagination),
7951
- sort: z.optional(z.array(zUserTaskVariableSearchQuerySortRequest).register(z.globalRegistry, {
7952
- description: "Sort field criteria."
7953
- })),
7954
- filter: z.optional(zUserTaskVariableFilter)
7955
- }).register(z.globalRegistry, {
7956
- description: "User task effective variable search query request. Uses offset-based pagination only.\n"
7957
- })),
7980
+ body: z.optional(zUserTaskEffectiveVariableSearchQueryRequest),
7958
7981
  path: z.object({
7959
7982
  userTaskKey: zUserTaskKey
7960
7983
  }),
@@ -8488,6 +8511,8 @@ export {
8488
8511
  zGetProcessInstanceStatisticsByErrorResponse,
8489
8512
  zGetProcessInstanceStatisticsData,
8490
8513
  zGetProcessInstanceStatisticsResponse,
8514
+ zGetProcessInstanceWaitStateStatisticsData,
8515
+ zGetProcessInstanceWaitStateStatisticsResponse,
8491
8516
  zGetResourceContentBinaryData,
8492
8517
  zGetResourceContentBinaryResponse,
8493
8518
  zGetResourceContentData,
@@ -8748,6 +8773,8 @@ export {
8748
8773
  zProcessInstanceStateEnum,
8749
8774
  zProcessInstanceStateExactMatch,
8750
8775
  zProcessInstanceStateFilterProperty,
8776
+ zProcessInstanceWaitStateStatisticsQueryResult,
8777
+ zProcessInstanceWaitStateStatisticsResult,
8751
8778
  zPublishMessageData,
8752
8779
  zPublishMessageResponse,
8753
8780
  zResetClockData,
@@ -9042,4 +9069,4 @@ export {
9042
9069
  zWaitStateTypeFilterProperty,
9043
9070
  zWebappComponent
9044
9071
  };
9045
- //# sourceMappingURL=zod.gen-E45JJSLK.js.map
9072
+ //# sourceMappingURL=zod.gen-2Z6CY4DY.js.map