@uipath/uipath-typescript 1.4.2 → 1.5.1

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.
Files changed (52) hide show
  1. package/README.md +7 -1
  2. package/dist/agent-memory/index.d.ts +4 -1
  3. package/dist/agents/index.cjs +341 -6
  4. package/dist/agents/index.d.ts +717 -16
  5. package/dist/agents/index.mjs +342 -7
  6. package/dist/assets/index.cjs +132 -15
  7. package/dist/assets/index.d.ts +12 -1
  8. package/dist/assets/index.mjs +132 -15
  9. package/dist/attachments/index.cjs +120 -12
  10. package/dist/attachments/index.mjs +120 -12
  11. package/dist/buckets/index.cjs +136 -15
  12. package/dist/buckets/index.d.ts +12 -1
  13. package/dist/buckets/index.mjs +136 -15
  14. package/dist/cases/index.cjs +1203 -938
  15. package/dist/cases/index.d.ts +325 -45
  16. package/dist/cases/index.mjs +1203 -938
  17. package/dist/conversational-agent/index.cjs +48 -10
  18. package/dist/conversational-agent/index.d.ts +117 -6
  19. package/dist/conversational-agent/index.mjs +48 -10
  20. package/dist/core/index.cjs +1 -1
  21. package/dist/core/index.mjs +1 -1
  22. package/dist/entities/index.cjs +448 -9
  23. package/dist/entities/index.d.ts +441 -1
  24. package/dist/entities/index.mjs +447 -10
  25. package/dist/feedback/index.cjs +25 -9
  26. package/dist/feedback/index.mjs +25 -9
  27. package/dist/index.cjs +1281 -330
  28. package/dist/index.d.ts +1988 -143
  29. package/dist/index.mjs +1282 -331
  30. package/dist/index.umd.js +1230 -279
  31. package/dist/jobs/index.cjs +141 -19
  32. package/dist/jobs/index.d.ts +22 -6
  33. package/dist/jobs/index.mjs +141 -19
  34. package/dist/maestro-processes/index.cjs +553 -354
  35. package/dist/maestro-processes/index.d.ts +376 -47
  36. package/dist/maestro-processes/index.mjs +553 -354
  37. package/dist/notifications/index.cjs +2012 -0
  38. package/dist/notifications/index.d.ts +615 -0
  39. package/dist/notifications/index.mjs +2010 -0
  40. package/dist/processes/index.cjs +118 -18
  41. package/dist/processes/index.d.ts +18 -2
  42. package/dist/processes/index.mjs +118 -18
  43. package/dist/queues/index.cjs +131 -14
  44. package/dist/queues/index.d.ts +12 -1
  45. package/dist/queues/index.mjs +131 -14
  46. package/dist/tasks/index.cjs +125 -13
  47. package/dist/tasks/index.d.ts +4 -1
  48. package/dist/tasks/index.mjs +125 -13
  49. package/dist/traces/index.cjs +220 -6
  50. package/dist/traces/index.d.ts +360 -25
  51. package/dist/traces/index.mjs +221 -7
  52. package/package.json +14 -4
@@ -75,6 +75,12 @@ interface TimelineOptions {
75
75
  * @default TimeInterval.Day
76
76
  */
77
77
  groupBy?: TimeInterval;
78
+ /** Filter by package identifier */
79
+ packageId?: string;
80
+ /** Filter by package version */
81
+ version?: string;
82
+ /** Filter by one or more process keys. Pass `['<processKey>']` for a single process. */
83
+ processKeys?: string[];
78
84
  }
79
85
  /**
80
86
  * Final instance statuses returned by the instance status timeline endpoint.
@@ -102,6 +108,17 @@ interface InstanceStatusTimelineResponse {
102
108
  /** Number of instances with this status in the time bucket */
103
109
  count: number;
104
110
  }
111
+ /**
112
+ * Incident count within a specific time bucket.
113
+ */
114
+ interface IncidentTimelineResponse {
115
+ /** Start of the time bucket in local timezone (ISO 8601, e.g. `"2026-05-04T00:00:00"`) */
116
+ startTime: string;
117
+ /** End of the time bucket in local timezone (ISO 8601, e.g. `"2026-05-11T00:00:00"`) */
118
+ endTime: string;
119
+ /** Number of incidents that occurred within this time bucket */
120
+ count: number;
121
+ }
105
122
  /**
106
123
  * Response for the top duration Insights endpoint
107
124
  */
@@ -110,21 +127,12 @@ interface GetTopDurationResponse extends GetTopBaseResponse {
110
127
  duration: number;
111
128
  }
112
129
  /**
113
- * Element count by status for a BPMN element within a process or case
130
+ * Duration percentile stats shared by Insights aggregate endpoints (per-element and per-process/case).
131
+ *
132
+ * For instance-level stats, durations are computed over terminal instances only
133
+ * (Completed, Cancelled, Deleted) and default to `0` when no terminal instances exist.
114
134
  */
115
- interface ElementStats {
116
- /** BPMN element identifier */
117
- elementId: string;
118
- /** Number of successful executions */
119
- successCount: number;
120
- /** Number of failed executions */
121
- failCount: number;
122
- /** Number of terminated executions */
123
- terminatedCount: number;
124
- /** Number of paused executions */
125
- pausedCount: number;
126
- /** Number of in-progress executions */
127
- inProgressCount: number;
135
+ interface DurationStats {
128
136
  /** Minimum duration in milliseconds */
129
137
  minDurationMs: number;
130
138
  /** Maximum duration in milliseconds */
@@ -138,6 +146,65 @@ interface ElementStats {
138
146
  /** 99th percentile duration in milliseconds */
139
147
  p99DurationMs: number;
140
148
  }
149
+ /**
150
+ * Instance count and duration stats aggregated by status for a process or case within a time range.
151
+ *
152
+ * Duration fields are computed over terminal instances only (Completed, Cancelled, Deleted)
153
+ * and default to `0` when no terminal instances exist in the time range.
154
+ */
155
+ interface InstanceStats extends DurationStats {
156
+ /** Total number of instances across all statuses */
157
+ totalCount: number;
158
+ /** Number of currently running instances */
159
+ runningCount: number;
160
+ /** Number of instances in transitioning state */
161
+ transitioningCount: number;
162
+ /** Number of paused instances */
163
+ pausedCount: number;
164
+ /** Number of faulted instances */
165
+ faultedCount: number;
166
+ /** Number of completed instances */
167
+ completedCount: number;
168
+ /** Number of cancelled instances */
169
+ cancelledCount: number;
170
+ /** Number of deleted instances */
171
+ deletedCount: number;
172
+ }
173
+ /**
174
+ * Required request parameters for process-scoped insights stats endpoints
175
+ * (`getElementStats`, `getInstanceStats`).
176
+ *
177
+ * Identifies a single process+package+version and the time range to aggregate over.
178
+ */
179
+ interface MaestroProcessStatsRequest {
180
+ /** Process key to filter by */
181
+ processKey: string;
182
+ /** Package identifier */
183
+ packageId: string;
184
+ /** Package version to filter by */
185
+ packageVersion: string;
186
+ /** Start of the time range to query */
187
+ startTime: Date;
188
+ /** End of the time range to query */
189
+ endTime: Date;
190
+ }
191
+ /**
192
+ * Per-element execution counts and duration percentiles for a BPMN element within a process or case.
193
+ */
194
+ interface ElementStats extends DurationStats {
195
+ /** BPMN element identifier */
196
+ elementId: string;
197
+ /** Number of successful executions */
198
+ successCount: number;
199
+ /** Number of failed executions */
200
+ failCount: number;
201
+ /** Number of terminated executions */
202
+ terminatedCount: number;
203
+ /** Number of paused executions */
204
+ pausedCount: number;
205
+ /** Number of in-progress executions */
206
+ inProgressCount: number;
207
+ }
141
208
 
142
209
  /**
143
210
  * Simplified universal pagination cursor
@@ -460,7 +527,7 @@ interface CasesServiceModel {
460
527
  *
461
528
  * @param startTime - Start of the time range to query
462
529
  * @param endTime - End of the time range to query
463
- * @param options - Optional settings for time bucketing granularity
530
+ * @param options - Optional settings for filtering and time bucket granularity
464
531
  * @returns Promise resolving to an array of {@link InstanceStatusTimelineResponse}
465
532
  *
466
533
  * @example
@@ -487,11 +554,62 @@ interface CasesServiceModel {
487
554
  *
488
555
  * @example
489
556
  * ```typescript
557
+ * // Filter to a specific case process
558
+ * const filtered = await cases.getInstanceStatusTimeline(startTime, endTime, {
559
+ * processKeys: ['<processKey>'],
560
+ * });
561
+ * ```
562
+ *
563
+ * @example
564
+ * ```typescript
490
565
  * // Get all-time data (from Unix epoch to now)
491
566
  * const allTime = await cases.getInstanceStatusTimeline(new Date(0), new Date());
492
567
  * ```
493
568
  */
494
569
  getInstanceStatusTimeline(startTime: Date, endTime: Date, options?: TimelineOptions): Promise<InstanceStatusTimelineResponse[]>;
570
+ /**
571
+ * Get incident counts aggregated by time bucket for case management processes.
572
+ *
573
+ * Returns time-grouped counts of incidents that occurred within each bucket,
574
+ * useful for rendering incident time-series charts. Use `groupBy` to control
575
+ * the time bucket size (hour, day, or week) — defaults to day if not provided.
576
+ *
577
+ * @param startTime - Start of the time range to query
578
+ * @param endTime - End of the time range to query
579
+ * @param options - Optional settings for filtering and time bucket granularity
580
+ * @returns Promise resolving to an array of {@link IncidentTimelineResponse}
581
+ *
582
+ * @example
583
+ * ```typescript
584
+ * // Get daily incident counts for the last 7 days
585
+ * const now = new Date();
586
+ * const sevenDaysAgo = new Date(Date.now() - 7 * 24 * 60 * 60 * 1000);
587
+ * const incidents = await cases.getIncidentsTimeline(sevenDaysAgo, now);
588
+ *
589
+ * for (const incident of incidents) {
590
+ * console.log(`${incident.startTime} → ${incident.endTime}: ${incident.count} incidents`);
591
+ * }
592
+ * ```
593
+ *
594
+ * @example
595
+ * ```typescript
596
+ * import { TimeInterval } from '@uipath/uipath-typescript/cases';
597
+ *
598
+ * // Get weekly breakdown
599
+ * const incidents = await cases.getIncidentsTimeline(startTime, endTime, {
600
+ * groupBy: TimeInterval.Week,
601
+ * });
602
+ * ```
603
+ *
604
+ * @example
605
+ * ```typescript
606
+ * // Filter to a specific case process
607
+ * const filtered = await cases.getIncidentsTimeline(startTime, endTime, {
608
+ * processKeys: ['<processKey>'],
609
+ * });
610
+ * ```
611
+ */
612
+ getIncidentsTimeline(startTime: Date, endTime: Date, options?: TimelineOptions): Promise<IncidentTimelineResponse[]>;
495
613
  /**
496
614
  * Get the top 5 case processes ranked by total duration within a time range.
497
615
  *
@@ -536,31 +654,73 @@ interface CasesServiceModel {
536
654
  * Returns per-element execution counts (success, fail, terminated, paused, in-progress) and
537
655
  * duration percentile metrics (min, max, avg, p50, p95, p99) for BPMN elements within a case.
538
656
  *
539
- * @param processKey - Process key to filter by
540
- * @param packageId - Package identifier
541
- * @param startTime - Start of the time range to query
542
- * @param endTime - End of the time range to query
543
- * @param packageVersion - Package version to filter by
657
+ * @param request - Process scope + time range to aggregate over
544
658
  * @returns Promise resolving to an array of {@link ElementStats}
545
659
  * @example
546
660
  * ```typescript
547
- * // Get element metrics for a case
548
- * const elements = await cases.getElementStats(
549
- * '<processKey>',
550
- * '<packageId>',
551
- * new Date('2026-04-01'),
552
- * new Date(),
553
- * '1.0.1'
554
- * );
661
+ * // First, list cases to find the processKey, packageId, and available versions
662
+ * const allCases = await cases.getAll();
663
+ * const caseItem = allCases[0];
664
+ *
665
+ * // Get element metrics for that case
666
+ * const elements = await cases.getElementStats({
667
+ * processKey: caseItem.processKey,
668
+ * packageId: caseItem.packageId,
669
+ * packageVersion: caseItem.packageVersions[0],
670
+ * startTime: new Date('2026-04-01'),
671
+ * endTime: new Date(),
672
+ * });
555
673
  *
556
674
  * // Find elements with failures
557
675
  * const failedElements = elements.filter(e => e.failCount > 0);
558
676
  * for (const element of failedElements) {
559
677
  * console.log(`Failed element: ${element.elementId}, failures: ${element.failCount}`);
560
678
  * }
679
+ *
680
+ * // Using bound method on a case — auto-fills processKey and packageId
681
+ * const boundElements = await caseItem.getElementStats(
682
+ * new Date('2026-04-01'),
683
+ * new Date(),
684
+ * caseItem.packageVersions[0]
685
+ * );
686
+ * ```
687
+ */
688
+ getElementStats(request: MaestroProcessStatsRequest): Promise<ElementStats[]>;
689
+ /**
690
+ * Get instance stats for a case.
691
+ *
692
+ * Returns total instance counts broken down by status (running, completed, faulted, etc.)
693
+ * and the average execution duration for all instances of a case within a time range.
694
+ *
695
+ * @param request - Process scope + time range to aggregate over
696
+ * @returns Promise resolving to {@link InstanceStats}
697
+ * @example
698
+ * ```typescript
699
+ * // First, list cases to find the processKey, packageId, and available versions
700
+ * const allCases = await cases.getAll();
701
+ * const caseItem = allCases[0];
702
+ *
703
+ * // Get instance status breakdown for that case
704
+ * const counts = await cases.getInstanceStats({
705
+ * processKey: caseItem.processKey,
706
+ * packageId: caseItem.packageId,
707
+ * packageVersion: caseItem.packageVersions[0],
708
+ * startTime: new Date('2026-04-01'),
709
+ * endTime: new Date(),
710
+ * });
711
+ *
712
+ * console.log(`Total: ${counts.totalCount}`);
713
+ * console.log(`Completed: ${counts.completedCount}, Faulted: ${counts.faultedCount}`);
714
+ *
715
+ * // Using bound method on a case — auto-fills processKey and packageId
716
+ * const boundCounts = await caseItem.getInstanceStats(
717
+ * new Date('2026-04-01'),
718
+ * new Date(),
719
+ * caseItem.packageVersions[0]
720
+ * );
561
721
  * ```
562
722
  */
563
- getElementStats(processKey: string, packageId: string, startTime: Date, endTime: Date, packageVersion: string): Promise<ElementStats[]>;
723
+ getInstanceStats(request: MaestroProcessStatsRequest): Promise<InstanceStats>;
564
724
  }
565
725
  interface CaseMethods {
566
726
  /**
@@ -572,6 +732,33 @@ interface CaseMethods {
572
732
  * @returns Promise resolving to an array of {@link ElementStats}
573
733
  */
574
734
  getElementStats(startTime: Date, endTime: Date, packageVersion: string): Promise<ElementStats[]>;
735
+ /**
736
+ * Get instance stats for this case
737
+ *
738
+ * @param startTime - Start of the time range to query
739
+ * @param endTime - End of the time range to query
740
+ * @param packageVersion - Package version to filter by
741
+ * @returns Promise resolving to {@link InstanceStats}
742
+ */
743
+ getInstanceStats(startTime: Date, endTime: Date, packageVersion: string): Promise<InstanceStats>;
744
+ /**
745
+ * Get instance status counts aggregated by date for this case process.
746
+ *
747
+ * @param startTime - Start of the time range to query
748
+ * @param endTime - End of the time range to query
749
+ * @param options - Optional settings for filtering and time bucket granularity (processKey is auto-captured from this case)
750
+ * @returns Promise resolving to an array of {@link InstanceStatusTimelineResponse}
751
+ */
752
+ getInstanceStatusTimeline(startTime: Date, endTime: Date, options?: Omit<TimelineOptions, 'processKeys'>): Promise<InstanceStatusTimelineResponse[]>;
753
+ /**
754
+ * Get incident counts aggregated by time bucket for this case process.
755
+ *
756
+ * @param startTime - Start of the time range to query
757
+ * @param endTime - End of the time range to query
758
+ * @param options - Optional settings for filtering and time bucket granularity (processKey is auto-captured from this case)
759
+ * @returns Promise resolving to an array of {@link IncidentTimelineResponse}
760
+ */
761
+ getIncidentsTimeline(startTime: Date, endTime: Date, options?: Omit<TimelineOptions, 'processKeys'>): Promise<IncidentTimelineResponse[]>;
575
762
  }
576
763
  type CaseGetAllWithMethodsResponse = CaseGetAllResponse & CaseMethods;
577
764
  /**
@@ -1965,7 +2152,7 @@ declare class CasesService extends BaseService implements CasesServiceModel {
1965
2152
  *
1966
2153
  * @param startTime - Start of the time range to query
1967
2154
  * @param endTime - End of the time range to query
1968
- * @param options - Optional settings for time bucketing granularity
2155
+ * @param options - Optional settings for filtering and time bucket granularity
1969
2156
  * @returns Promise resolving to an array of {@link InstanceStatusTimelineResponse}
1970
2157
  *
1971
2158
  * @example
@@ -1992,11 +2179,62 @@ declare class CasesService extends BaseService implements CasesServiceModel {
1992
2179
  *
1993
2180
  * @example
1994
2181
  * ```typescript
2182
+ * // Filter to a specific case process
2183
+ * const filtered = await cases.getInstanceStatusTimeline(startTime, endTime, {
2184
+ * processKeys: ['<processKey>'],
2185
+ * });
2186
+ * ```
2187
+ *
2188
+ * @example
2189
+ * ```typescript
1995
2190
  * // Get all-time data (from Unix epoch to now)
1996
2191
  * const allTime = await cases.getInstanceStatusTimeline(new Date(0), new Date());
1997
2192
  * ```
1998
2193
  */
1999
2194
  getInstanceStatusTimeline(startTime: Date, endTime: Date, options?: TimelineOptions): Promise<InstanceStatusTimelineResponse[]>;
2195
+ /**
2196
+ * Get incident counts aggregated by time bucket for case management processes.
2197
+ *
2198
+ * Returns time-grouped counts of incidents that occurred within each bucket,
2199
+ * useful for rendering incident time-series charts. Use `groupBy` to control
2200
+ * the time bucket size (hour, day, or week) — defaults to day if not provided.
2201
+ *
2202
+ * @param startTime - Start of the time range to query
2203
+ * @param endTime - End of the time range to query
2204
+ * @param options - Optional settings for filtering and time bucket granularity
2205
+ * @returns Promise resolving to an array of {@link IncidentTimelineResponse}
2206
+ *
2207
+ * @example
2208
+ * ```typescript
2209
+ * // Get daily incident counts for the last 7 days
2210
+ * const now = new Date();
2211
+ * const sevenDaysAgo = new Date(Date.now() - 7 * 24 * 60 * 60 * 1000);
2212
+ * const incidents = await cases.getIncidentsTimeline(sevenDaysAgo, now);
2213
+ *
2214
+ * for (const incident of incidents) {
2215
+ * console.log(`${incident.startTime} → ${incident.endTime}: ${incident.count} incidents`);
2216
+ * }
2217
+ * ```
2218
+ *
2219
+ * @example
2220
+ * ```typescript
2221
+ * import { TimeInterval } from '@uipath/uipath-typescript/cases';
2222
+ *
2223
+ * // Get weekly breakdown
2224
+ * const incidents = await cases.getIncidentsTimeline(startTime, endTime, {
2225
+ * groupBy: TimeInterval.Week,
2226
+ * });
2227
+ * ```
2228
+ *
2229
+ * @example
2230
+ * ```typescript
2231
+ * // Filter to a specific case process
2232
+ * const filtered = await cases.getIncidentsTimeline(startTime, endTime, {
2233
+ * processKeys: ['<processKey>'],
2234
+ * });
2235
+ * ```
2236
+ */
2237
+ getIncidentsTimeline(startTime: Date, endTime: Date, options?: TimelineOptions): Promise<IncidentTimelineResponse[]>;
2000
2238
  /**
2001
2239
  * Get the top 10 case processes ranked by failure count within a time range.
2002
2240
  *
@@ -2079,31 +2317,73 @@ declare class CasesService extends BaseService implements CasesServiceModel {
2079
2317
  * Returns per-element execution counts (success, fail, terminated, paused, in-progress) and
2080
2318
  * duration percentile metrics (min, max, avg, p50, p95, p99) for BPMN elements within a case.
2081
2319
  *
2082
- * @param processKey - Process key to filter by
2083
- * @param packageId - Package identifier
2084
- * @param startTime - Start of the time range to query
2085
- * @param endTime - End of the time range to query
2086
- * @param packageVersion - Package version to filter by
2320
+ * @param request - Process scope + time range to aggregate over
2087
2321
  * @returns Promise resolving to an array of {@link ElementStats}
2088
2322
  * @example
2089
2323
  * ```typescript
2090
- * // Get element metrics for a case
2091
- * const elements = await cases.getElementStats(
2092
- * '<processKey>',
2093
- * '<packageId>',
2094
- * new Date('2026-04-01'),
2095
- * new Date(),
2096
- * '1.0.1'
2097
- * );
2324
+ * // First, list cases to find the processKey, packageId, and available versions
2325
+ * const allCases = await cases.getAll();
2326
+ * const caseItem = allCases[0];
2327
+ *
2328
+ * // Get element metrics for that case
2329
+ * const elements = await cases.getElementStats({
2330
+ * processKey: caseItem.processKey,
2331
+ * packageId: caseItem.packageId,
2332
+ * packageVersion: caseItem.packageVersions[0],
2333
+ * startTime: new Date('2026-04-01'),
2334
+ * endTime: new Date(),
2335
+ * });
2098
2336
  *
2099
2337
  * // Find elements with failures
2100
2338
  * const failedElements = elements.filter(e => e.failCount > 0);
2101
2339
  * for (const element of failedElements) {
2102
2340
  * console.log(`Failed element: ${element.elementId}, failures: ${element.failCount}`);
2103
2341
  * }
2342
+ *
2343
+ * // Using bound method on a case — auto-fills processKey and packageId
2344
+ * const boundElements = await caseItem.getElementStats(
2345
+ * new Date('2026-04-01'),
2346
+ * new Date(),
2347
+ * caseItem.packageVersions[0]
2348
+ * );
2349
+ * ```
2350
+ */
2351
+ getElementStats(request: MaestroProcessStatsRequest): Promise<ElementStats[]>;
2352
+ /**
2353
+ * Get instance stats for a case.
2354
+ *
2355
+ * Returns total instance counts broken down by status (running, completed, faulted, etc.)
2356
+ * and the average execution duration for all instances of a case within a time range.
2357
+ *
2358
+ * @param request - Process scope + time range to aggregate over
2359
+ * @returns Promise resolving to {@link InstanceStats}
2360
+ * @example
2361
+ * ```typescript
2362
+ * // First, list cases to find the processKey, packageId, and available versions
2363
+ * const allCases = await cases.getAll();
2364
+ * const caseItem = allCases[0];
2365
+ *
2366
+ * // Get instance status breakdown for that case
2367
+ * const counts = await cases.getInstanceStats({
2368
+ * processKey: caseItem.processKey,
2369
+ * packageId: caseItem.packageId,
2370
+ * packageVersion: caseItem.packageVersions[0],
2371
+ * startTime: new Date('2026-04-01'),
2372
+ * endTime: new Date(),
2373
+ * });
2374
+ *
2375
+ * console.log(`Total: ${counts.totalCount}`);
2376
+ * console.log(`Completed: ${counts.completedCount}, Faulted: ${counts.faultedCount}`);
2377
+ *
2378
+ * // Using bound method on a case — auto-fills processKey and packageId
2379
+ * const boundCounts = await caseItem.getInstanceStats(
2380
+ * new Date('2026-04-01'),
2381
+ * new Date(),
2382
+ * caseItem.packageVersions[0]
2383
+ * );
2104
2384
  * ```
2105
2385
  */
2106
- getElementStats(processKey: string, packageId: string, startTime: Date, endTime: Date, packageVersion: string): Promise<ElementStats[]>;
2386
+ getInstanceStats(request: MaestroProcessStatsRequest): Promise<InstanceStats>;
2107
2387
  /**
2108
2388
  * Extract a readable case name from the packageId
2109
2389
  * @param packageId - The full package identifier
@@ -2362,4 +2642,4 @@ declare class CaseInstancesService extends BaseService implements CaseInstancesS
2362
2642
  }
2363
2643
 
2364
2644
  export { CaseInstancesService as CaseInstances, CaseInstancesService, CasesService as Cases, CasesService, EscalationActionType, EscalationRecipientScope, EscalationTriggerType, InstanceFinalStatus, InstanceStatus, SLADurationUnit, SlaSummaryStatus, StageTaskType, TimeInterval, createCaseInstanceWithMethods, createCaseWithMethods };
2365
- export type { CaseAppConfig, CaseAppOverview, CaseGetAllResponse, CaseGetAllWithMethodsResponse, CaseGetStageResponse, CaseGetTopDurationResponse, CaseGetTopFaultedCountResponse, CaseGetTopRunCountResponse, CaseInstanceExecutionHistoryResponse, CaseInstanceGetAllOptions, CaseInstanceGetAllWithPaginationOptions, CaseInstanceGetResponse, CaseInstanceMethods, CaseInstanceOperationOptions, CaseInstanceOperationResponse, CaseInstanceReopenOptions, CaseInstanceRun, CaseInstanceSlaSummaryOptions, CaseInstanceStageSLAOptions, CaseInstanceStageSLAResponse, CaseInstanceStageSLAStage, CaseInstancesServiceModel, CaseMethods, CasesServiceModel, ElementExecutionMetadata, ElementGetTopFailedCountResponse, ElementRunMetadata, ElementStats, EscalationAction, EscalationRecipient, EscalationRule, EscalationTriggerMetadata, GetTopBaseResponse, GetTopDurationResponse, GetTopFaultedCountResponse, GetTopRunCountResponse, InstanceStatusTimelineResponse, RawCaseInstanceGetResponse, SlaSummaryResponse, StageSLA, StageTask, TimelineOptions, TopQueryOptions };
2645
+ export type { CaseAppConfig, CaseAppOverview, CaseGetAllResponse, CaseGetAllWithMethodsResponse, CaseGetStageResponse, CaseGetTopDurationResponse, CaseGetTopFaultedCountResponse, CaseGetTopRunCountResponse, CaseInstanceExecutionHistoryResponse, CaseInstanceGetAllOptions, CaseInstanceGetAllWithPaginationOptions, CaseInstanceGetResponse, CaseInstanceMethods, CaseInstanceOperationOptions, CaseInstanceOperationResponse, CaseInstanceReopenOptions, CaseInstanceRun, CaseInstanceSlaSummaryOptions, CaseInstanceStageSLAOptions, CaseInstanceStageSLAResponse, CaseInstanceStageSLAStage, CaseInstancesServiceModel, CaseMethods, CasesServiceModel, DurationStats, ElementExecutionMetadata, ElementGetTopFailedCountResponse, ElementRunMetadata, ElementStats, EscalationAction, EscalationRecipient, EscalationRule, EscalationTriggerMetadata, GetTopBaseResponse, GetTopDurationResponse, GetTopFaultedCountResponse, GetTopRunCountResponse, IncidentTimelineResponse, InstanceStats, InstanceStatusTimelineResponse, MaestroProcessStatsRequest, RawCaseInstanceGetResponse, SlaSummaryResponse, StageSLA, StageTask, TimelineOptions, TopQueryOptions };