@amigo-ai/platform-sdk 0.91.0 → 0.92.0

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 (35) hide show
  1. package/README.md +26 -8
  2. package/api.md +2 -24
  3. package/dist/index.cjs +17 -139
  4. package/dist/index.cjs.map +3 -3
  5. package/dist/index.js +0 -3
  6. package/dist/index.js.map +1 -1
  7. package/dist/index.mjs +17 -139
  8. package/dist/index.mjs.map +3 -3
  9. package/dist/resources/conversations.js +15 -0
  10. package/dist/resources/conversations.js.map +1 -1
  11. package/dist/types/generated/api.d.ts +64 -1149
  12. package/dist/types/generated/api.d.ts.map +1 -1
  13. package/dist/types/index.d.cts +1 -3
  14. package/dist/types/index.d.cts.map +1 -1
  15. package/dist/types/index.d.ts +1 -3
  16. package/dist/types/index.d.ts.map +1 -1
  17. package/dist/types/resources/conversations.d.ts +10 -0
  18. package/dist/types/resources/conversations.d.ts.map +1 -1
  19. package/dist/types/resources/external-integrations.d.ts.map +1 -1
  20. package/dist/types/resources/intake.d.ts.map +1 -1
  21. package/dist/types/resources/integrations.d.ts.map +1 -1
  22. package/dist/types/resources/metrics.d.ts.map +1 -1
  23. package/dist/types/resources/operators.d.ts.map +1 -1
  24. package/dist/types/resources/services.d.ts.map +1 -1
  25. package/dist/types/resources/settings.d.ts +0 -2
  26. package/dist/types/resources/settings.d.ts.map +1 -1
  27. package/dist/types/resources/simulations.d.ts +20 -0
  28. package/dist/types/resources/simulations.d.ts.map +1 -1
  29. package/dist/types/resources/surfaces.d.ts.map +1 -1
  30. package/dist/types/resources/world.d.ts.map +1 -1
  31. package/package.json +1 -1
  32. package/dist/resources/review-queue.js +0 -103
  33. package/dist/resources/review-queue.js.map +0 -1
  34. package/dist/types/resources/review-queue.d.ts +0 -545
  35. package/dist/types/resources/review-queue.d.ts.map +0 -1
@@ -1,545 +0,0 @@
1
- import type { components } from '../generated/api.js';
2
- import { WorkspaceScopedResource } from './base.js';
3
- import type { ListParams } from '../core/utils.js';
4
- export interface ListReviewItemsParams extends ListParams {
5
- status?: string | null;
6
- entity_type?: string | null;
7
- priority?: number | null;
8
- reason?: string | null;
9
- assigned_to?: string | null;
10
- created_after?: string | null;
11
- created_before?: string | null;
12
- sort_by?: string | null;
13
- sort_order?: string;
14
- }
15
- export interface ReviewHistoryParams extends ListParams {
16
- action?: string | null;
17
- reviewed_by?: string | null;
18
- completed_after?: string | null;
19
- completed_before?: string | null;
20
- }
21
- export declare class ReviewQueueResource extends WorkspaceScopedResource {
22
- list(params?: ListReviewItemsParams): Promise<{
23
- continuation_token?: number | null | undefined;
24
- has_more: boolean;
25
- items: {
26
- assigned_to: string | null;
27
- completed_action: ("approve" | "reject" | "correct" | "approved" | "rejected" | "corrected") | null;
28
- completed_at: string | null;
29
- created_at?: string | null | undefined;
30
- entity?: {
31
- display_name: string | null;
32
- entity_type: string | null;
33
- id: string;
34
- state: {
35
- [x: string]: unknown;
36
- } | null;
37
- } | null | undefined;
38
- entity_id: string | null;
39
- entity_type: string | null;
40
- event_ids: string[];
41
- events?: {
42
- confidence: number;
43
- created_at?: string | null | undefined;
44
- data: {
45
- [x: string]: unknown;
46
- };
47
- event_type: string | null;
48
- fhir_resource_id: string | null;
49
- fhir_resource_type: string | null;
50
- id: string;
51
- review_status: "pending" | "raw" | "uncertain" | "verified" | "approved" | "human_approved" | "auto_approved" | "rejected" | "corrected" | "flagged";
52
- }[] | null | undefined;
53
- id: string;
54
- judge_analysis: {
55
- [x: string]: unknown;
56
- } | null;
57
- priority: number;
58
- reason: string;
59
- session_id: string;
60
- status: "pending" | "in_progress" | "completed" | "rejected";
61
- workspace_id: string;
62
- }[];
63
- total?: number | null | undefined;
64
- } & import("../index.js").ResponseMetadata>;
65
- listAutoPaging(params?: ListReviewItemsParams): AsyncGenerator<{
66
- assigned_to: string | null;
67
- completed_action: ("approve" | "reject" | "correct" | "approved" | "rejected" | "corrected") | null;
68
- completed_at: string | null;
69
- created_at?: string | null | undefined;
70
- entity?: {
71
- display_name: string | null;
72
- entity_type: string | null;
73
- id: string;
74
- state: {
75
- [x: string]: unknown;
76
- } | null;
77
- } | null | undefined;
78
- entity_id: string | null;
79
- entity_type: string | null;
80
- event_ids: string[];
81
- events?: {
82
- confidence: number;
83
- created_at?: string | null | undefined;
84
- data: {
85
- [x: string]: unknown;
86
- };
87
- event_type: string | null;
88
- fhir_resource_id: string | null;
89
- fhir_resource_type: string | null;
90
- id: string;
91
- review_status: "pending" | "raw" | "uncertain" | "verified" | "approved" | "human_approved" | "auto_approved" | "rejected" | "corrected" | "flagged";
92
- }[] | null | undefined;
93
- id: string;
94
- judge_analysis: {
95
- [x: string]: unknown;
96
- } | null;
97
- priority: number;
98
- reason: string;
99
- session_id: string;
100
- status: "pending" | "in_progress" | "completed" | "rejected";
101
- workspace_id: string;
102
- }, any, any>;
103
- get(itemId: string): Promise<{
104
- assigned_to: string | null;
105
- completed_action: ("approve" | "reject" | "correct" | "approved" | "rejected" | "corrected") | null;
106
- completed_at: string | null;
107
- created_at?: string | null | undefined;
108
- entity?: {
109
- display_name: string | null;
110
- entity_type: string | null;
111
- id: string;
112
- state: {
113
- [x: string]: unknown;
114
- } | null;
115
- } | null | undefined;
116
- entity_id: string | null;
117
- entity_type: string | null;
118
- event_ids: string[];
119
- events?: {
120
- confidence: number;
121
- created_at?: string | null | undefined;
122
- data: {
123
- [x: string]: unknown;
124
- };
125
- event_type: string | null;
126
- fhir_resource_id: string | null;
127
- fhir_resource_type: string | null;
128
- id: string;
129
- review_status: "pending" | "raw" | "uncertain" | "verified" | "approved" | "human_approved" | "auto_approved" | "rejected" | "corrected" | "flagged";
130
- }[] | null | undefined;
131
- id: string;
132
- judge_analysis: {
133
- [x: string]: unknown;
134
- } | null;
135
- priority: number;
136
- reason: string;
137
- session_id: string;
138
- status: "pending" | "in_progress" | "completed" | "rejected";
139
- workspace_id: string;
140
- } & import("../index.js").ResponseMetadata>;
141
- getStats(): Promise<{
142
- avg_review_minutes: number | null;
143
- completed: number;
144
- pending: number;
145
- rejected: number;
146
- } & import("../index.js").ResponseMetadata>;
147
- getDashboard(): Promise<{
148
- completion_rate_24h: number | null;
149
- pending_by_priority: {
150
- [x: string]: number;
151
- };
152
- pending_by_reason: {
153
- [x: string]: unknown;
154
- }[];
155
- recent_completed: {
156
- assigned_to: string | null;
157
- completed_action: ("approve" | "reject" | "correct" | "approved" | "rejected" | "corrected") | null;
158
- completed_at: string | null;
159
- created_at?: string | null | undefined;
160
- entity?: {
161
- display_name: string | null;
162
- entity_type: string | null;
163
- id: string;
164
- state: {
165
- [x: string]: unknown;
166
- } | null;
167
- } | null | undefined;
168
- entity_id: string | null;
169
- entity_type: string | null;
170
- event_ids: string[];
171
- events?: {
172
- confidence: number;
173
- created_at?: string | null | undefined;
174
- data: {
175
- [x: string]: unknown;
176
- };
177
- event_type: string | null;
178
- fhir_resource_id: string | null;
179
- fhir_resource_type: string | null;
180
- id: string;
181
- review_status: "pending" | "raw" | "uncertain" | "verified" | "approved" | "human_approved" | "auto_approved" | "rejected" | "corrected" | "flagged";
182
- }[] | null | undefined;
183
- id: string;
184
- judge_analysis: {
185
- [x: string]: unknown;
186
- } | null;
187
- priority: number;
188
- reason: string;
189
- session_id: string;
190
- status: "pending" | "in_progress" | "completed" | "rejected";
191
- workspace_id: string;
192
- }[];
193
- stats: {
194
- avg_review_minutes: number | null;
195
- completed: number;
196
- pending: number;
197
- rejected: number;
198
- };
199
- } & import("../index.js").ResponseMetadata>;
200
- getMyQueue(params?: ListParams): Promise<{
201
- continuation_token?: number | null | undefined;
202
- has_more: boolean;
203
- items: {
204
- assigned_to: string | null;
205
- completed_action: ("approve" | "reject" | "correct" | "approved" | "rejected" | "corrected") | null;
206
- completed_at: string | null;
207
- created_at?: string | null | undefined;
208
- entity?: {
209
- display_name: string | null;
210
- entity_type: string | null;
211
- id: string;
212
- state: {
213
- [x: string]: unknown;
214
- } | null;
215
- } | null | undefined;
216
- entity_id: string | null;
217
- entity_type: string | null;
218
- event_ids: string[];
219
- events?: {
220
- confidence: number;
221
- created_at?: string | null | undefined;
222
- data: {
223
- [x: string]: unknown;
224
- };
225
- event_type: string | null;
226
- fhir_resource_id: string | null;
227
- fhir_resource_type: string | null;
228
- id: string;
229
- review_status: "pending" | "raw" | "uncertain" | "verified" | "approved" | "human_approved" | "auto_approved" | "rejected" | "corrected" | "flagged";
230
- }[] | null | undefined;
231
- id: string;
232
- judge_analysis: {
233
- [x: string]: unknown;
234
- } | null;
235
- priority: number;
236
- reason: string;
237
- session_id: string;
238
- status: "pending" | "in_progress" | "completed" | "rejected";
239
- workspace_id: string;
240
- }[];
241
- total?: number | null | undefined;
242
- } & import("../index.js").ResponseMetadata>;
243
- getMyQueueAutoPaging(params?: ListParams): AsyncGenerator<{
244
- assigned_to: string | null;
245
- completed_action: ("approve" | "reject" | "correct" | "approved" | "rejected" | "corrected") | null;
246
- completed_at: string | null;
247
- created_at?: string | null | undefined;
248
- entity?: {
249
- display_name: string | null;
250
- entity_type: string | null;
251
- id: string;
252
- state: {
253
- [x: string]: unknown;
254
- } | null;
255
- } | null | undefined;
256
- entity_id: string | null;
257
- entity_type: string | null;
258
- event_ids: string[];
259
- events?: {
260
- confidence: number;
261
- created_at?: string | null | undefined;
262
- data: {
263
- [x: string]: unknown;
264
- };
265
- event_type: string | null;
266
- fhir_resource_id: string | null;
267
- fhir_resource_type: string | null;
268
- id: string;
269
- review_status: "pending" | "raw" | "uncertain" | "verified" | "approved" | "human_approved" | "auto_approved" | "rejected" | "corrected" | "flagged";
270
- }[] | null | undefined;
271
- id: string;
272
- judge_analysis: {
273
- [x: string]: unknown;
274
- } | null;
275
- priority: number;
276
- reason: string;
277
- session_id: string;
278
- status: "pending" | "in_progress" | "completed" | "rejected";
279
- workspace_id: string;
280
- }, any, any>;
281
- approve(itemId: string, body: components['schemas']['ApproveRequest']): Promise<{
282
- assigned_to: string | null;
283
- completed_action: ("approve" | "reject" | "correct" | "approved" | "rejected" | "corrected") | null;
284
- completed_at: string | null;
285
- created_at?: string | null | undefined;
286
- entity?: {
287
- display_name: string | null;
288
- entity_type: string | null;
289
- id: string;
290
- state: {
291
- [x: string]: unknown;
292
- } | null;
293
- } | null | undefined;
294
- entity_id: string | null;
295
- entity_type: string | null;
296
- event_ids: string[];
297
- events?: {
298
- confidence: number;
299
- created_at?: string | null | undefined;
300
- data: {
301
- [x: string]: unknown;
302
- };
303
- event_type: string | null;
304
- fhir_resource_id: string | null;
305
- fhir_resource_type: string | null;
306
- id: string;
307
- review_status: "pending" | "raw" | "uncertain" | "verified" | "approved" | "human_approved" | "auto_approved" | "rejected" | "corrected" | "flagged";
308
- }[] | null | undefined;
309
- id: string;
310
- judge_analysis: {
311
- [x: string]: unknown;
312
- } | null;
313
- priority: number;
314
- reason: string;
315
- session_id: string;
316
- status: "pending" | "in_progress" | "completed" | "rejected";
317
- workspace_id: string;
318
- } & import("../index.js").ResponseMetadata>;
319
- reject(itemId: string, body: components['schemas']['RejectRequest']): Promise<{
320
- assigned_to: string | null;
321
- completed_action: ("approve" | "reject" | "correct" | "approved" | "rejected" | "corrected") | null;
322
- completed_at: string | null;
323
- created_at?: string | null | undefined;
324
- entity?: {
325
- display_name: string | null;
326
- entity_type: string | null;
327
- id: string;
328
- state: {
329
- [x: string]: unknown;
330
- } | null;
331
- } | null | undefined;
332
- entity_id: string | null;
333
- entity_type: string | null;
334
- event_ids: string[];
335
- events?: {
336
- confidence: number;
337
- created_at?: string | null | undefined;
338
- data: {
339
- [x: string]: unknown;
340
- };
341
- event_type: string | null;
342
- fhir_resource_id: string | null;
343
- fhir_resource_type: string | null;
344
- id: string;
345
- review_status: "pending" | "raw" | "uncertain" | "verified" | "approved" | "human_approved" | "auto_approved" | "rejected" | "corrected" | "flagged";
346
- }[] | null | undefined;
347
- id: string;
348
- judge_analysis: {
349
- [x: string]: unknown;
350
- } | null;
351
- priority: number;
352
- reason: string;
353
- session_id: string;
354
- status: "pending" | "in_progress" | "completed" | "rejected";
355
- workspace_id: string;
356
- } & import("../index.js").ResponseMetadata>;
357
- claim(itemId: string): Promise<{
358
- assigned_to: string;
359
- id: string;
360
- status: string;
361
- } & import("../index.js").ResponseMetadata>;
362
- unclaim(itemId: string): Promise<{
363
- assigned_to: string;
364
- id: string;
365
- status: string;
366
- } & import("../index.js").ResponseMetadata>;
367
- correct(itemId: string, body: components['schemas']['CorrectRequest']): Promise<{
368
- assigned_to: string | null;
369
- completed_action: ("approve" | "reject" | "correct" | "approved" | "rejected" | "corrected") | null;
370
- completed_at: string | null;
371
- created_at?: string | null | undefined;
372
- entity?: {
373
- display_name: string | null;
374
- entity_type: string | null;
375
- id: string;
376
- state: {
377
- [x: string]: unknown;
378
- } | null;
379
- } | null | undefined;
380
- entity_id: string | null;
381
- entity_type: string | null;
382
- event_ids: string[];
383
- events?: {
384
- confidence: number;
385
- created_at?: string | null | undefined;
386
- data: {
387
- [x: string]: unknown;
388
- };
389
- event_type: string | null;
390
- fhir_resource_id: string | null;
391
- fhir_resource_type: string | null;
392
- id: string;
393
- review_status: "pending" | "raw" | "uncertain" | "verified" | "approved" | "human_approved" | "auto_approved" | "rejected" | "corrected" | "flagged";
394
- }[] | null | undefined;
395
- id: string;
396
- judge_analysis: {
397
- [x: string]: unknown;
398
- } | null;
399
- priority: number;
400
- reason: string;
401
- session_id: string;
402
- status: "pending" | "in_progress" | "completed" | "rejected";
403
- workspace_id: string;
404
- } & import("../index.js").ResponseMetadata>;
405
- batchApprove(body: components['schemas']['BatchApproveRequest']): Promise<{
406
- failed: {
407
- [x: string]: string;
408
- }[];
409
- succeeded: string[];
410
- } & import("../index.js").ResponseMetadata>;
411
- batchReject(body: components['schemas']['BatchRejectRequest']): Promise<{
412
- failed: {
413
- [x: string]: string;
414
- }[];
415
- succeeded: string[];
416
- } & import("../index.js").ResponseMetadata>;
417
- getHistory(params?: ReviewHistoryParams): Promise<{
418
- continuation_token?: number | null | undefined;
419
- has_more: boolean;
420
- items: {
421
- assigned_to: string | null;
422
- completed_action: ("approve" | "reject" | "correct" | "approved" | "rejected" | "corrected") | null;
423
- completed_at: string | null;
424
- created_at?: string | null | undefined;
425
- entity?: {
426
- display_name: string | null;
427
- entity_type: string | null;
428
- id: string;
429
- state: {
430
- [x: string]: unknown;
431
- } | null;
432
- } | null | undefined;
433
- entity_id: string | null;
434
- entity_type: string | null;
435
- event_ids: string[];
436
- events?: {
437
- confidence: number;
438
- created_at?: string | null | undefined;
439
- data: {
440
- [x: string]: unknown;
441
- };
442
- event_type: string | null;
443
- fhir_resource_id: string | null;
444
- fhir_resource_type: string | null;
445
- id: string;
446
- review_status: "pending" | "raw" | "uncertain" | "verified" | "approved" | "human_approved" | "auto_approved" | "rejected" | "corrected" | "flagged";
447
- }[] | null | undefined;
448
- id: string;
449
- judge_analysis: {
450
- [x: string]: unknown;
451
- } | null;
452
- priority: number;
453
- reason: string;
454
- session_id: string;
455
- status: "pending" | "in_progress" | "completed" | "rejected";
456
- workspace_id: string;
457
- }[];
458
- total?: number | null | undefined;
459
- } & import("../index.js").ResponseMetadata>;
460
- getHistoryAutoPaging(params?: ReviewHistoryParams): AsyncGenerator<{
461
- assigned_to: string | null;
462
- completed_action: ("approve" | "reject" | "correct" | "approved" | "rejected" | "corrected") | null;
463
- completed_at: string | null;
464
- created_at?: string | null | undefined;
465
- entity?: {
466
- display_name: string | null;
467
- entity_type: string | null;
468
- id: string;
469
- state: {
470
- [x: string]: unknown;
471
- } | null;
472
- } | null | undefined;
473
- entity_id: string | null;
474
- entity_type: string | null;
475
- event_ids: string[];
476
- events?: {
477
- confidence: number;
478
- created_at?: string | null | undefined;
479
- data: {
480
- [x: string]: unknown;
481
- };
482
- event_type: string | null;
483
- fhir_resource_id: string | null;
484
- fhir_resource_type: string | null;
485
- id: string;
486
- review_status: "pending" | "raw" | "uncertain" | "verified" | "approved" | "human_approved" | "auto_approved" | "rejected" | "corrected" | "flagged";
487
- }[] | null | undefined;
488
- id: string;
489
- judge_analysis: {
490
- [x: string]: unknown;
491
- } | null;
492
- priority: number;
493
- reason: string;
494
- session_id: string;
495
- status: "pending" | "in_progress" | "completed" | "rejected";
496
- workspace_id: string;
497
- }, any, any>;
498
- getTrends(params?: {
499
- days?: number;
500
- }): Promise<{
501
- [x: string]: unknown;
502
- } & import("../index.js").ResponseMetadata>;
503
- getPerformance(params?: {
504
- days?: number;
505
- }): Promise<{
506
- [x: string]: unknown;
507
- } & import("../index.js").ResponseMetadata>;
508
- getCorrectionSchema(itemId: string): Promise<{
509
- current_values: {
510
- [x: string]: unknown;
511
- };
512
- fhir_resource_type: string | null;
513
- fields: {
514
- [x: string]: unknown;
515
- };
516
- } & import("../index.js").ResponseMetadata>;
517
- getDiff(itemId: string): Promise<{
518
- corrected_events: {
519
- confidence: number;
520
- created_at?: string | null | undefined;
521
- data: {
522
- [x: string]: unknown;
523
- };
524
- event_type: string | null;
525
- fhir_resource_id: string | null;
526
- fhir_resource_type: string | null;
527
- id: string;
528
- review_status: "pending" | "raw" | "uncertain" | "verified" | "approved" | "human_approved" | "auto_approved" | "rejected" | "corrected" | "flagged";
529
- }[];
530
- item_id: string;
531
- original_events: {
532
- confidence: number;
533
- created_at?: string | null | undefined;
534
- data: {
535
- [x: string]: unknown;
536
- };
537
- event_type: string | null;
538
- fhir_resource_id: string | null;
539
- fhir_resource_type: string | null;
540
- id: string;
541
- review_status: "pending" | "raw" | "uncertain" | "verified" | "approved" | "human_approved" | "auto_approved" | "rejected" | "corrected" | "flagged";
542
- }[];
543
- } & import("../index.js").ResponseMetadata>;
544
- }
545
- //# sourceMappingURL=review-queue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"review-queue.d.ts","sourceRoot":"","sources":["../../../src/resources/review-queue.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AACrD,OAAO,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAChE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAElD,MAAM,WAAW,qBAAsB,SAAQ,UAAU;IACvD,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACtB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC3B,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACxB,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACtB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC3B,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC7B,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC9B,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACvB,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB;AAED,MAAM,WAAW,mBAAoB,SAAQ,UAAU;IACrD,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACtB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC3B,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC/B,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;CACjC;AAED,qBAAa,mBAAoB,SAAQ,uBAAuB;IACxD,IAAI,CAAC,MAAM,CAAC,EAAE,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAQzC,cAAc,CAAC,MAAM,CAAC,EAAE,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAIvC,GAAG,CAAC,MAAM,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAQlB,QAAQ;;;;;;IAQR,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAQZ,UAAU,CAAC,MAAM,CAAC,EAAE,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAQpC,oBAAoB,CAAC,MAAM,CAAC,EAAE,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAIlC,OAAO,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,gBAAgB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IASrE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,eAAe,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IASnE,KAAK,CAAC,MAAM,EAAE,MAAM;;;;;IAQpB,OAAO,CAAC,MAAM,EAAE,MAAM;;;;;IAQtB,OAAO,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,gBAAgB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IASrE,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,qBAAqB,CAAC;;;;;;IAS/D,WAAW,CAAC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC;;;;;;IAS7D,UAAU,CAAC,MAAM,CAAC,EAAE,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAQ7C,oBAAoB,CAAC,MAAM,CAAC,EAAE,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAI3C,SAAS,CAAC,MAAM,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE;;;IAQpC,cAAc,CAAC,MAAM,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE;;;IAQzC,mBAAmB,CAAC,MAAM,EAAE,MAAM;;;;;;;;;IAQlC,OAAO,CAAC,MAAM,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO7B"}