@blueking/chat-helper 0.0.9 → 0.0.10-beta.2

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.
@@ -75,6 +75,636 @@ export declare const useMessage: (mediator: IMediatorModule) => {
75
75
  name?: string;
76
76
  sessionCode?: string;
77
77
  status: MessageStatus;
78
+ } | {
79
+ content: {
80
+ result?: {
81
+ interruptId: string;
82
+ status: import("..").ResumeStatus;
83
+ payload: {
84
+ answers: {
85
+ answer: {
86
+ description: string;
87
+ label: string;
88
+ }[];
89
+ multiSelect?: boolean;
90
+ question: string;
91
+ }[];
92
+ };
93
+ };
94
+ runId: number;
95
+ threadId: string;
96
+ type: import("..").EventType.RunFinished;
97
+ outcome?: {
98
+ type: import("..").RunFinishedOutcomeType.Success;
99
+ } | {
100
+ type: import("..").RunFinishedOutcomeType.Interrupt;
101
+ interrupts: ({
102
+ id: string;
103
+ reason: import("..").InterruptReason.AIDevToolApproval;
104
+ message?: string;
105
+ toolCallId?: string;
106
+ responseSchema?: {
107
+ [x: string]: any;
108
+ id?: string | undefined;
109
+ $ref?: string | undefined;
110
+ $schema?: import("json-schema").JSONSchema4Version | undefined;
111
+ title?: string | undefined;
112
+ description?: string | undefined;
113
+ default?: string | number | boolean | import("json-schema").JSONSchema4Object | {
114
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
115
+ length: number;
116
+ toString: () => string;
117
+ toLocaleString: {
118
+ (): string;
119
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
120
+ };
121
+ pop: () => import("json-schema").JSONSchema4Type;
122
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
123
+ concat: {
124
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
125
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
126
+ };
127
+ join: (separator?: string) => string;
128
+ reverse: () => import("json-schema").JSONSchema4Type[];
129
+ shift: () => import("json-schema").JSONSchema4Type;
130
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
131
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
132
+ splice: {
133
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
134
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
135
+ };
136
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
137
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
138
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
139
+ every: {
140
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
141
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
142
+ };
143
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
144
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
145
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
146
+ filter: {
147
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
148
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
149
+ };
150
+ reduce: {
151
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
152
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
153
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
154
+ };
155
+ reduceRight: {
156
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
157
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
158
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
159
+ };
160
+ find: {
161
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
162
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
163
+ };
164
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
165
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
166
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
167
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
168
+ keys: () => ArrayIterator<number>;
169
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
170
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
171
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
172
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
173
+ at: (index: number) => import("json-schema").JSONSchema4Type;
174
+ findLast: {
175
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
176
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
177
+ };
178
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
179
+ toReversed: () => import("json-schema").JSONSchema4Type[];
180
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
181
+ toSpliced: {
182
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
183
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
184
+ };
185
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
186
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
187
+ readonly [Symbol.unscopables]: {
188
+ [x: number]: boolean;
189
+ length?: boolean;
190
+ toString?: boolean;
191
+ toLocaleString?: boolean;
192
+ pop?: boolean;
193
+ push?: boolean;
194
+ concat?: boolean;
195
+ join?: boolean;
196
+ reverse?: boolean;
197
+ shift?: boolean;
198
+ slice?: boolean;
199
+ sort?: boolean;
200
+ splice?: boolean;
201
+ unshift?: boolean;
202
+ indexOf?: boolean;
203
+ lastIndexOf?: boolean;
204
+ every?: boolean;
205
+ some?: boolean;
206
+ forEach?: boolean;
207
+ map?: boolean;
208
+ filter?: boolean;
209
+ reduce?: boolean;
210
+ reduceRight?: boolean;
211
+ find?: boolean;
212
+ findIndex?: boolean;
213
+ fill?: boolean;
214
+ copyWithin?: boolean;
215
+ entries?: boolean;
216
+ keys?: boolean;
217
+ values?: boolean;
218
+ includes?: boolean;
219
+ flatMap?: boolean;
220
+ flat?: boolean;
221
+ at?: boolean;
222
+ findLast?: boolean;
223
+ findLastIndex?: boolean;
224
+ toReversed?: boolean;
225
+ toSorted?: boolean;
226
+ toSpliced?: boolean;
227
+ with?: boolean;
228
+ [Symbol.iterator]?: boolean;
229
+ readonly [Symbol.unscopables]?: boolean;
230
+ };
231
+ };
232
+ multipleOf?: number | undefined;
233
+ maximum?: number | undefined;
234
+ exclusiveMaximum?: boolean | undefined;
235
+ minimum?: number | undefined;
236
+ exclusiveMinimum?: boolean | undefined;
237
+ maxLength?: number | undefined;
238
+ minLength?: number | undefined;
239
+ pattern?: string | undefined;
240
+ additionalItems?: boolean | /*elided*/ any;
241
+ items?: /*elided*/ any | /*elided*/ any[];
242
+ maxItems?: number | undefined;
243
+ minItems?: number | undefined;
244
+ uniqueItems?: boolean | undefined;
245
+ maxProperties?: number | undefined;
246
+ minProperties?: number | undefined;
247
+ required?: boolean | string[] | undefined;
248
+ additionalProperties?: boolean | /*elided*/ any;
249
+ definitions?: {
250
+ [k: string]: import("json-schema").JSONSchema4;
251
+ } | undefined;
252
+ properties?: {
253
+ [k: string]: import("json-schema").JSONSchema4;
254
+ } | undefined;
255
+ patternProperties?: {
256
+ [k: string]: import("json-schema").JSONSchema4;
257
+ } | undefined;
258
+ dependencies?: {
259
+ [k: string]: import("json-schema").JSONSchema4 | string[];
260
+ } | undefined;
261
+ enum?: (string | number | boolean | import("json-schema").JSONSchema4Object | {
262
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
263
+ length: number;
264
+ toString: () => string;
265
+ toLocaleString: {
266
+ (): string;
267
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
268
+ };
269
+ pop: () => import("json-schema").JSONSchema4Type;
270
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
271
+ concat: {
272
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
273
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
274
+ };
275
+ join: (separator?: string) => string;
276
+ reverse: () => import("json-schema").JSONSchema4Type[];
277
+ shift: () => import("json-schema").JSONSchema4Type;
278
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
279
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
280
+ splice: {
281
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
282
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
283
+ };
284
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
285
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
286
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
287
+ every: {
288
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
289
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
290
+ };
291
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
292
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
293
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
294
+ filter: {
295
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
296
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
297
+ };
298
+ reduce: {
299
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
300
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
301
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
302
+ };
303
+ reduceRight: {
304
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
305
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
306
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
307
+ };
308
+ find: {
309
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
310
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
311
+ };
312
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
313
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
314
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
315
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
316
+ keys: () => ArrayIterator<number>;
317
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
318
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
319
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
320
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
321
+ at: (index: number) => import("json-schema").JSONSchema4Type;
322
+ findLast: {
323
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
324
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
325
+ };
326
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
327
+ toReversed: () => import("json-schema").JSONSchema4Type[];
328
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
329
+ toSpliced: {
330
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
331
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
332
+ };
333
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
334
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
335
+ readonly [Symbol.unscopables]: {
336
+ [x: number]: boolean;
337
+ length?: boolean;
338
+ toString?: boolean;
339
+ toLocaleString?: boolean;
340
+ pop?: boolean;
341
+ push?: boolean;
342
+ concat?: boolean;
343
+ join?: boolean;
344
+ reverse?: boolean;
345
+ shift?: boolean;
346
+ slice?: boolean;
347
+ sort?: boolean;
348
+ splice?: boolean;
349
+ unshift?: boolean;
350
+ indexOf?: boolean;
351
+ lastIndexOf?: boolean;
352
+ every?: boolean;
353
+ some?: boolean;
354
+ forEach?: boolean;
355
+ map?: boolean;
356
+ filter?: boolean;
357
+ reduce?: boolean;
358
+ reduceRight?: boolean;
359
+ find?: boolean;
360
+ findIndex?: boolean;
361
+ fill?: boolean;
362
+ copyWithin?: boolean;
363
+ entries?: boolean;
364
+ keys?: boolean;
365
+ values?: boolean;
366
+ includes?: boolean;
367
+ flatMap?: boolean;
368
+ flat?: boolean;
369
+ at?: boolean;
370
+ findLast?: boolean;
371
+ findLastIndex?: boolean;
372
+ toReversed?: boolean;
373
+ toSorted?: boolean;
374
+ toSpliced?: boolean;
375
+ with?: boolean;
376
+ [Symbol.iterator]?: boolean;
377
+ readonly [Symbol.unscopables]?: boolean;
378
+ };
379
+ })[];
380
+ type?: import("json-schema").JSONSchema4TypeName | import("json-schema").JSONSchema4TypeName[] | undefined;
381
+ allOf?: /*elided*/ any[];
382
+ anyOf?: /*elided*/ any[];
383
+ oneOf?: /*elided*/ any[];
384
+ not?: /*elided*/ any;
385
+ extends?: string | string[] | undefined;
386
+ format?: string | undefined;
387
+ };
388
+ expiresAt?: string;
389
+ metadata?: {
390
+ ticket: {
391
+ approvers: string[];
392
+ sn: string;
393
+ status: import("..").ApprovalInterruptTicketStatus;
394
+ submit_time: string;
395
+ title: string;
396
+ url: string;
397
+ };
398
+ };
399
+ } | {
400
+ id: string;
401
+ reason: import("..").InterruptReason.UserQuestion;
402
+ message?: string;
403
+ toolCallId?: string;
404
+ responseSchema?: {
405
+ [x: string]: any;
406
+ id?: string | undefined;
407
+ $ref?: string | undefined;
408
+ $schema?: import("json-schema").JSONSchema4Version | undefined;
409
+ title?: string | undefined;
410
+ description?: string | undefined;
411
+ default?: string | number | boolean | import("json-schema").JSONSchema4Object | {
412
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
413
+ length: number;
414
+ toString: () => string;
415
+ toLocaleString: {
416
+ (): string;
417
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
418
+ };
419
+ pop: () => import("json-schema").JSONSchema4Type;
420
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
421
+ concat: {
422
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
423
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
424
+ };
425
+ join: (separator?: string) => string;
426
+ reverse: () => import("json-schema").JSONSchema4Type[];
427
+ shift: () => import("json-schema").JSONSchema4Type;
428
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
429
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
430
+ splice: {
431
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
432
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
433
+ };
434
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
435
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
436
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
437
+ every: {
438
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
439
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
440
+ };
441
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
442
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
443
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
444
+ filter: {
445
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
446
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
447
+ };
448
+ reduce: {
449
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
450
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
451
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
452
+ };
453
+ reduceRight: {
454
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
455
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
456
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
457
+ };
458
+ find: {
459
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
460
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
461
+ };
462
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
463
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
464
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
465
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
466
+ keys: () => ArrayIterator<number>;
467
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
468
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
469
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
470
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
471
+ at: (index: number) => import("json-schema").JSONSchema4Type;
472
+ findLast: {
473
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
474
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
475
+ };
476
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
477
+ toReversed: () => import("json-schema").JSONSchema4Type[];
478
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
479
+ toSpliced: {
480
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
481
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
482
+ };
483
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
484
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
485
+ readonly [Symbol.unscopables]: {
486
+ [x: number]: boolean;
487
+ length?: boolean;
488
+ toString?: boolean;
489
+ toLocaleString?: boolean;
490
+ pop?: boolean;
491
+ push?: boolean;
492
+ concat?: boolean;
493
+ join?: boolean;
494
+ reverse?: boolean;
495
+ shift?: boolean;
496
+ slice?: boolean;
497
+ sort?: boolean;
498
+ splice?: boolean;
499
+ unshift?: boolean;
500
+ indexOf?: boolean;
501
+ lastIndexOf?: boolean;
502
+ every?: boolean;
503
+ some?: boolean;
504
+ forEach?: boolean;
505
+ map?: boolean;
506
+ filter?: boolean;
507
+ reduce?: boolean;
508
+ reduceRight?: boolean;
509
+ find?: boolean;
510
+ findIndex?: boolean;
511
+ fill?: boolean;
512
+ copyWithin?: boolean;
513
+ entries?: boolean;
514
+ keys?: boolean;
515
+ values?: boolean;
516
+ includes?: boolean;
517
+ flatMap?: boolean;
518
+ flat?: boolean;
519
+ at?: boolean;
520
+ findLast?: boolean;
521
+ findLastIndex?: boolean;
522
+ toReversed?: boolean;
523
+ toSorted?: boolean;
524
+ toSpliced?: boolean;
525
+ with?: boolean;
526
+ [Symbol.iterator]?: boolean;
527
+ readonly [Symbol.unscopables]?: boolean;
528
+ };
529
+ };
530
+ multipleOf?: number | undefined;
531
+ maximum?: number | undefined;
532
+ exclusiveMaximum?: boolean | undefined;
533
+ minimum?: number | undefined;
534
+ exclusiveMinimum?: boolean | undefined;
535
+ maxLength?: number | undefined;
536
+ minLength?: number | undefined;
537
+ pattern?: string | undefined;
538
+ additionalItems?: boolean | /*elided*/ any;
539
+ items?: /*elided*/ any | /*elided*/ any[];
540
+ maxItems?: number | undefined;
541
+ minItems?: number | undefined;
542
+ uniqueItems?: boolean | undefined;
543
+ maxProperties?: number | undefined;
544
+ minProperties?: number | undefined;
545
+ required?: boolean | string[] | undefined;
546
+ additionalProperties?: boolean | /*elided*/ any;
547
+ definitions?: {
548
+ [k: string]: import("json-schema").JSONSchema4;
549
+ } | undefined;
550
+ properties?: {
551
+ [k: string]: import("json-schema").JSONSchema4;
552
+ } | undefined;
553
+ patternProperties?: {
554
+ [k: string]: import("json-schema").JSONSchema4;
555
+ } | undefined;
556
+ dependencies?: {
557
+ [k: string]: import("json-schema").JSONSchema4 | string[];
558
+ } | undefined;
559
+ enum?: (string | number | boolean | import("json-schema").JSONSchema4Object | {
560
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
561
+ length: number;
562
+ toString: () => string;
563
+ toLocaleString: {
564
+ (): string;
565
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
566
+ };
567
+ pop: () => import("json-schema").JSONSchema4Type;
568
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
569
+ concat: {
570
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
571
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
572
+ };
573
+ join: (separator?: string) => string;
574
+ reverse: () => import("json-schema").JSONSchema4Type[];
575
+ shift: () => import("json-schema").JSONSchema4Type;
576
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
577
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
578
+ splice: {
579
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
580
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
581
+ };
582
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
583
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
584
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
585
+ every: {
586
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
587
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
588
+ };
589
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
590
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
591
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
592
+ filter: {
593
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
594
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
595
+ };
596
+ reduce: {
597
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
598
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
599
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
600
+ };
601
+ reduceRight: {
602
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
603
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
604
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
605
+ };
606
+ find: {
607
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
608
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
609
+ };
610
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
611
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
612
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
613
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
614
+ keys: () => ArrayIterator<number>;
615
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
616
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
617
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
618
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
619
+ at: (index: number) => import("json-schema").JSONSchema4Type;
620
+ findLast: {
621
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
622
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
623
+ };
624
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
625
+ toReversed: () => import("json-schema").JSONSchema4Type[];
626
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
627
+ toSpliced: {
628
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
629
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
630
+ };
631
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
632
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
633
+ readonly [Symbol.unscopables]: {
634
+ [x: number]: boolean;
635
+ length?: boolean;
636
+ toString?: boolean;
637
+ toLocaleString?: boolean;
638
+ pop?: boolean;
639
+ push?: boolean;
640
+ concat?: boolean;
641
+ join?: boolean;
642
+ reverse?: boolean;
643
+ shift?: boolean;
644
+ slice?: boolean;
645
+ sort?: boolean;
646
+ splice?: boolean;
647
+ unshift?: boolean;
648
+ indexOf?: boolean;
649
+ lastIndexOf?: boolean;
650
+ every?: boolean;
651
+ some?: boolean;
652
+ forEach?: boolean;
653
+ map?: boolean;
654
+ filter?: boolean;
655
+ reduce?: boolean;
656
+ reduceRight?: boolean;
657
+ find?: boolean;
658
+ findIndex?: boolean;
659
+ fill?: boolean;
660
+ copyWithin?: boolean;
661
+ entries?: boolean;
662
+ keys?: boolean;
663
+ values?: boolean;
664
+ includes?: boolean;
665
+ flatMap?: boolean;
666
+ flat?: boolean;
667
+ at?: boolean;
668
+ findLast?: boolean;
669
+ findLastIndex?: boolean;
670
+ toReversed?: boolean;
671
+ toSorted?: boolean;
672
+ toSpliced?: boolean;
673
+ with?: boolean;
674
+ [Symbol.iterator]?: boolean;
675
+ readonly [Symbol.unscopables]?: boolean;
676
+ };
677
+ })[];
678
+ type?: import("json-schema").JSONSchema4TypeName | import("json-schema").JSONSchema4TypeName[] | undefined;
679
+ allOf?: /*elided*/ any[];
680
+ anyOf?: /*elided*/ any[];
681
+ oneOf?: /*elided*/ any[];
682
+ not?: /*elided*/ any;
683
+ extends?: string | string[] | undefined;
684
+ format?: string | undefined;
685
+ };
686
+ expiresAt?: string;
687
+ metadata?: {
688
+ questions: {
689
+ header: string;
690
+ multiSelect?: boolean;
691
+ options?: {
692
+ description: string;
693
+ label: string;
694
+ }[];
695
+ question: string;
696
+ }[];
697
+ };
698
+ })[];
699
+ };
700
+ timestamp?: number;
701
+ };
702
+ role: MessageRole.Interrupt;
703
+ id?: string;
704
+ messageId?: string;
705
+ name?: string;
706
+ sessionCode?: string;
707
+ status: MessageStatus;
78
708
  } | {
79
709
  content: string;
80
710
  role: MessageRole.Guide;
@@ -319,6 +949,636 @@ export declare const useMessage: (mediator: IMediatorModule) => {
319
949
  name?: string;
320
950
  sessionCode?: string;
321
951
  status: MessageStatus;
952
+ } | {
953
+ content: {
954
+ result?: {
955
+ interruptId: string;
956
+ status: import("..").ResumeStatus;
957
+ payload: {
958
+ answers: {
959
+ answer: {
960
+ description: string;
961
+ label: string;
962
+ }[];
963
+ multiSelect?: boolean;
964
+ question: string;
965
+ }[];
966
+ };
967
+ };
968
+ runId: number;
969
+ threadId: string;
970
+ type: import("..").EventType.RunFinished;
971
+ outcome?: {
972
+ type: import("..").RunFinishedOutcomeType.Success;
973
+ } | {
974
+ type: import("..").RunFinishedOutcomeType.Interrupt;
975
+ interrupts: ({
976
+ id: string;
977
+ reason: import("..").InterruptReason.AIDevToolApproval;
978
+ message?: string;
979
+ toolCallId?: string;
980
+ responseSchema?: {
981
+ [x: string]: any;
982
+ id?: string | undefined;
983
+ $ref?: string | undefined;
984
+ $schema?: import("json-schema").JSONSchema4Version | undefined;
985
+ title?: string | undefined;
986
+ description?: string | undefined;
987
+ default?: string | number | boolean | import("json-schema").JSONSchema4Object | {
988
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
989
+ length: number;
990
+ toString: () => string;
991
+ toLocaleString: {
992
+ (): string;
993
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
994
+ };
995
+ pop: () => import("json-schema").JSONSchema4Type;
996
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
997
+ concat: {
998
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
999
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
1000
+ };
1001
+ join: (separator?: string) => string;
1002
+ reverse: () => import("json-schema").JSONSchema4Type[];
1003
+ shift: () => import("json-schema").JSONSchema4Type;
1004
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
1005
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
1006
+ splice: {
1007
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
1008
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
1009
+ };
1010
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
1011
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
1012
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
1013
+ every: {
1014
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
1015
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
1016
+ };
1017
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
1018
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
1019
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
1020
+ filter: {
1021
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
1022
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
1023
+ };
1024
+ reduce: {
1025
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1026
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1027
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
1028
+ };
1029
+ reduceRight: {
1030
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1031
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1032
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
1033
+ };
1034
+ find: {
1035
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
1036
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
1037
+ };
1038
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
1039
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
1040
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
1041
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
1042
+ keys: () => ArrayIterator<number>;
1043
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
1044
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
1045
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
1046
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
1047
+ at: (index: number) => import("json-schema").JSONSchema4Type;
1048
+ findLast: {
1049
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
1050
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
1051
+ };
1052
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
1053
+ toReversed: () => import("json-schema").JSONSchema4Type[];
1054
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
1055
+ toSpliced: {
1056
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
1057
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
1058
+ };
1059
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
1060
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
1061
+ readonly [Symbol.unscopables]: {
1062
+ [x: number]: boolean;
1063
+ length?: boolean;
1064
+ toString?: boolean;
1065
+ toLocaleString?: boolean;
1066
+ pop?: boolean;
1067
+ push?: boolean;
1068
+ concat?: boolean;
1069
+ join?: boolean;
1070
+ reverse?: boolean;
1071
+ shift?: boolean;
1072
+ slice?: boolean;
1073
+ sort?: boolean;
1074
+ splice?: boolean;
1075
+ unshift?: boolean;
1076
+ indexOf?: boolean;
1077
+ lastIndexOf?: boolean;
1078
+ every?: boolean;
1079
+ some?: boolean;
1080
+ forEach?: boolean;
1081
+ map?: boolean;
1082
+ filter?: boolean;
1083
+ reduce?: boolean;
1084
+ reduceRight?: boolean;
1085
+ find?: boolean;
1086
+ findIndex?: boolean;
1087
+ fill?: boolean;
1088
+ copyWithin?: boolean;
1089
+ entries?: boolean;
1090
+ keys?: boolean;
1091
+ values?: boolean;
1092
+ includes?: boolean;
1093
+ flatMap?: boolean;
1094
+ flat?: boolean;
1095
+ at?: boolean;
1096
+ findLast?: boolean;
1097
+ findLastIndex?: boolean;
1098
+ toReversed?: boolean;
1099
+ toSorted?: boolean;
1100
+ toSpliced?: boolean;
1101
+ with?: boolean;
1102
+ [Symbol.iterator]?: boolean;
1103
+ readonly [Symbol.unscopables]?: boolean;
1104
+ };
1105
+ };
1106
+ multipleOf?: number | undefined;
1107
+ maximum?: number | undefined;
1108
+ exclusiveMaximum?: boolean | undefined;
1109
+ minimum?: number | undefined;
1110
+ exclusiveMinimum?: boolean | undefined;
1111
+ maxLength?: number | undefined;
1112
+ minLength?: number | undefined;
1113
+ pattern?: string | undefined;
1114
+ additionalItems?: boolean | /*elided*/ any;
1115
+ items?: /*elided*/ any | /*elided*/ any[];
1116
+ maxItems?: number | undefined;
1117
+ minItems?: number | undefined;
1118
+ uniqueItems?: boolean | undefined;
1119
+ maxProperties?: number | undefined;
1120
+ minProperties?: number | undefined;
1121
+ required?: boolean | string[] | undefined;
1122
+ additionalProperties?: boolean | /*elided*/ any;
1123
+ definitions?: {
1124
+ [k: string]: import("json-schema").JSONSchema4;
1125
+ } | undefined;
1126
+ properties?: {
1127
+ [k: string]: import("json-schema").JSONSchema4;
1128
+ } | undefined;
1129
+ patternProperties?: {
1130
+ [k: string]: import("json-schema").JSONSchema4;
1131
+ } | undefined;
1132
+ dependencies?: {
1133
+ [k: string]: import("json-schema").JSONSchema4 | string[];
1134
+ } | undefined;
1135
+ enum?: (string | number | boolean | import("json-schema").JSONSchema4Object | {
1136
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
1137
+ length: number;
1138
+ toString: () => string;
1139
+ toLocaleString: {
1140
+ (): string;
1141
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
1142
+ };
1143
+ pop: () => import("json-schema").JSONSchema4Type;
1144
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
1145
+ concat: {
1146
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
1147
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
1148
+ };
1149
+ join: (separator?: string) => string;
1150
+ reverse: () => import("json-schema").JSONSchema4Type[];
1151
+ shift: () => import("json-schema").JSONSchema4Type;
1152
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
1153
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
1154
+ splice: {
1155
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
1156
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
1157
+ };
1158
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
1159
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
1160
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
1161
+ every: {
1162
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
1163
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
1164
+ };
1165
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
1166
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
1167
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
1168
+ filter: {
1169
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
1170
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
1171
+ };
1172
+ reduce: {
1173
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1174
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1175
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
1176
+ };
1177
+ reduceRight: {
1178
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1179
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1180
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
1181
+ };
1182
+ find: {
1183
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
1184
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
1185
+ };
1186
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
1187
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
1188
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
1189
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
1190
+ keys: () => ArrayIterator<number>;
1191
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
1192
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
1193
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
1194
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
1195
+ at: (index: number) => import("json-schema").JSONSchema4Type;
1196
+ findLast: {
1197
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
1198
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
1199
+ };
1200
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
1201
+ toReversed: () => import("json-schema").JSONSchema4Type[];
1202
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
1203
+ toSpliced: {
1204
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
1205
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
1206
+ };
1207
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
1208
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
1209
+ readonly [Symbol.unscopables]: {
1210
+ [x: number]: boolean;
1211
+ length?: boolean;
1212
+ toString?: boolean;
1213
+ toLocaleString?: boolean;
1214
+ pop?: boolean;
1215
+ push?: boolean;
1216
+ concat?: boolean;
1217
+ join?: boolean;
1218
+ reverse?: boolean;
1219
+ shift?: boolean;
1220
+ slice?: boolean;
1221
+ sort?: boolean;
1222
+ splice?: boolean;
1223
+ unshift?: boolean;
1224
+ indexOf?: boolean;
1225
+ lastIndexOf?: boolean;
1226
+ every?: boolean;
1227
+ some?: boolean;
1228
+ forEach?: boolean;
1229
+ map?: boolean;
1230
+ filter?: boolean;
1231
+ reduce?: boolean;
1232
+ reduceRight?: boolean;
1233
+ find?: boolean;
1234
+ findIndex?: boolean;
1235
+ fill?: boolean;
1236
+ copyWithin?: boolean;
1237
+ entries?: boolean;
1238
+ keys?: boolean;
1239
+ values?: boolean;
1240
+ includes?: boolean;
1241
+ flatMap?: boolean;
1242
+ flat?: boolean;
1243
+ at?: boolean;
1244
+ findLast?: boolean;
1245
+ findLastIndex?: boolean;
1246
+ toReversed?: boolean;
1247
+ toSorted?: boolean;
1248
+ toSpliced?: boolean;
1249
+ with?: boolean;
1250
+ [Symbol.iterator]?: boolean;
1251
+ readonly [Symbol.unscopables]?: boolean;
1252
+ };
1253
+ })[];
1254
+ type?: import("json-schema").JSONSchema4TypeName | import("json-schema").JSONSchema4TypeName[] | undefined;
1255
+ allOf?: /*elided*/ any[];
1256
+ anyOf?: /*elided*/ any[];
1257
+ oneOf?: /*elided*/ any[];
1258
+ not?: /*elided*/ any;
1259
+ extends?: string | string[] | undefined;
1260
+ format?: string | undefined;
1261
+ };
1262
+ expiresAt?: string;
1263
+ metadata?: {
1264
+ ticket: {
1265
+ approvers: string[];
1266
+ sn: string;
1267
+ status: import("..").ApprovalInterruptTicketStatus;
1268
+ submit_time: string;
1269
+ title: string;
1270
+ url: string;
1271
+ };
1272
+ };
1273
+ } | {
1274
+ id: string;
1275
+ reason: import("..").InterruptReason.UserQuestion;
1276
+ message?: string;
1277
+ toolCallId?: string;
1278
+ responseSchema?: {
1279
+ [x: string]: any;
1280
+ id?: string | undefined;
1281
+ $ref?: string | undefined;
1282
+ $schema?: import("json-schema").JSONSchema4Version | undefined;
1283
+ title?: string | undefined;
1284
+ description?: string | undefined;
1285
+ default?: string | number | boolean | import("json-schema").JSONSchema4Object | {
1286
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
1287
+ length: number;
1288
+ toString: () => string;
1289
+ toLocaleString: {
1290
+ (): string;
1291
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
1292
+ };
1293
+ pop: () => import("json-schema").JSONSchema4Type;
1294
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
1295
+ concat: {
1296
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
1297
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
1298
+ };
1299
+ join: (separator?: string) => string;
1300
+ reverse: () => import("json-schema").JSONSchema4Type[];
1301
+ shift: () => import("json-schema").JSONSchema4Type;
1302
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
1303
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
1304
+ splice: {
1305
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
1306
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
1307
+ };
1308
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
1309
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
1310
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
1311
+ every: {
1312
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
1313
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
1314
+ };
1315
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
1316
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
1317
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
1318
+ filter: {
1319
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
1320
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
1321
+ };
1322
+ reduce: {
1323
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1324
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1325
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
1326
+ };
1327
+ reduceRight: {
1328
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1329
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1330
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
1331
+ };
1332
+ find: {
1333
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
1334
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
1335
+ };
1336
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
1337
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
1338
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
1339
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
1340
+ keys: () => ArrayIterator<number>;
1341
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
1342
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
1343
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
1344
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
1345
+ at: (index: number) => import("json-schema").JSONSchema4Type;
1346
+ findLast: {
1347
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
1348
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
1349
+ };
1350
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
1351
+ toReversed: () => import("json-schema").JSONSchema4Type[];
1352
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
1353
+ toSpliced: {
1354
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
1355
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
1356
+ };
1357
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
1358
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
1359
+ readonly [Symbol.unscopables]: {
1360
+ [x: number]: boolean;
1361
+ length?: boolean;
1362
+ toString?: boolean;
1363
+ toLocaleString?: boolean;
1364
+ pop?: boolean;
1365
+ push?: boolean;
1366
+ concat?: boolean;
1367
+ join?: boolean;
1368
+ reverse?: boolean;
1369
+ shift?: boolean;
1370
+ slice?: boolean;
1371
+ sort?: boolean;
1372
+ splice?: boolean;
1373
+ unshift?: boolean;
1374
+ indexOf?: boolean;
1375
+ lastIndexOf?: boolean;
1376
+ every?: boolean;
1377
+ some?: boolean;
1378
+ forEach?: boolean;
1379
+ map?: boolean;
1380
+ filter?: boolean;
1381
+ reduce?: boolean;
1382
+ reduceRight?: boolean;
1383
+ find?: boolean;
1384
+ findIndex?: boolean;
1385
+ fill?: boolean;
1386
+ copyWithin?: boolean;
1387
+ entries?: boolean;
1388
+ keys?: boolean;
1389
+ values?: boolean;
1390
+ includes?: boolean;
1391
+ flatMap?: boolean;
1392
+ flat?: boolean;
1393
+ at?: boolean;
1394
+ findLast?: boolean;
1395
+ findLastIndex?: boolean;
1396
+ toReversed?: boolean;
1397
+ toSorted?: boolean;
1398
+ toSpliced?: boolean;
1399
+ with?: boolean;
1400
+ [Symbol.iterator]?: boolean;
1401
+ readonly [Symbol.unscopables]?: boolean;
1402
+ };
1403
+ };
1404
+ multipleOf?: number | undefined;
1405
+ maximum?: number | undefined;
1406
+ exclusiveMaximum?: boolean | undefined;
1407
+ minimum?: number | undefined;
1408
+ exclusiveMinimum?: boolean | undefined;
1409
+ maxLength?: number | undefined;
1410
+ minLength?: number | undefined;
1411
+ pattern?: string | undefined;
1412
+ additionalItems?: boolean | /*elided*/ any;
1413
+ items?: /*elided*/ any | /*elided*/ any[];
1414
+ maxItems?: number | undefined;
1415
+ minItems?: number | undefined;
1416
+ uniqueItems?: boolean | undefined;
1417
+ maxProperties?: number | undefined;
1418
+ minProperties?: number | undefined;
1419
+ required?: boolean | string[] | undefined;
1420
+ additionalProperties?: boolean | /*elided*/ any;
1421
+ definitions?: {
1422
+ [k: string]: import("json-schema").JSONSchema4;
1423
+ } | undefined;
1424
+ properties?: {
1425
+ [k: string]: import("json-schema").JSONSchema4;
1426
+ } | undefined;
1427
+ patternProperties?: {
1428
+ [k: string]: import("json-schema").JSONSchema4;
1429
+ } | undefined;
1430
+ dependencies?: {
1431
+ [k: string]: import("json-schema").JSONSchema4 | string[];
1432
+ } | undefined;
1433
+ enum?: (string | number | boolean | import("json-schema").JSONSchema4Object | {
1434
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
1435
+ length: number;
1436
+ toString: () => string;
1437
+ toLocaleString: {
1438
+ (): string;
1439
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
1440
+ };
1441
+ pop: () => import("json-schema").JSONSchema4Type;
1442
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
1443
+ concat: {
1444
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
1445
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
1446
+ };
1447
+ join: (separator?: string) => string;
1448
+ reverse: () => import("json-schema").JSONSchema4Type[];
1449
+ shift: () => import("json-schema").JSONSchema4Type;
1450
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
1451
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
1452
+ splice: {
1453
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
1454
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
1455
+ };
1456
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
1457
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
1458
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
1459
+ every: {
1460
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
1461
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
1462
+ };
1463
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
1464
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
1465
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
1466
+ filter: {
1467
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
1468
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
1469
+ };
1470
+ reduce: {
1471
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1472
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1473
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
1474
+ };
1475
+ reduceRight: {
1476
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1477
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1478
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
1479
+ };
1480
+ find: {
1481
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
1482
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
1483
+ };
1484
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
1485
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
1486
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
1487
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
1488
+ keys: () => ArrayIterator<number>;
1489
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
1490
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
1491
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
1492
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
1493
+ at: (index: number) => import("json-schema").JSONSchema4Type;
1494
+ findLast: {
1495
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
1496
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
1497
+ };
1498
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
1499
+ toReversed: () => import("json-schema").JSONSchema4Type[];
1500
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
1501
+ toSpliced: {
1502
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
1503
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
1504
+ };
1505
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
1506
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
1507
+ readonly [Symbol.unscopables]: {
1508
+ [x: number]: boolean;
1509
+ length?: boolean;
1510
+ toString?: boolean;
1511
+ toLocaleString?: boolean;
1512
+ pop?: boolean;
1513
+ push?: boolean;
1514
+ concat?: boolean;
1515
+ join?: boolean;
1516
+ reverse?: boolean;
1517
+ shift?: boolean;
1518
+ slice?: boolean;
1519
+ sort?: boolean;
1520
+ splice?: boolean;
1521
+ unshift?: boolean;
1522
+ indexOf?: boolean;
1523
+ lastIndexOf?: boolean;
1524
+ every?: boolean;
1525
+ some?: boolean;
1526
+ forEach?: boolean;
1527
+ map?: boolean;
1528
+ filter?: boolean;
1529
+ reduce?: boolean;
1530
+ reduceRight?: boolean;
1531
+ find?: boolean;
1532
+ findIndex?: boolean;
1533
+ fill?: boolean;
1534
+ copyWithin?: boolean;
1535
+ entries?: boolean;
1536
+ keys?: boolean;
1537
+ values?: boolean;
1538
+ includes?: boolean;
1539
+ flatMap?: boolean;
1540
+ flat?: boolean;
1541
+ at?: boolean;
1542
+ findLast?: boolean;
1543
+ findLastIndex?: boolean;
1544
+ toReversed?: boolean;
1545
+ toSorted?: boolean;
1546
+ toSpliced?: boolean;
1547
+ with?: boolean;
1548
+ [Symbol.iterator]?: boolean;
1549
+ readonly [Symbol.unscopables]?: boolean;
1550
+ };
1551
+ })[];
1552
+ type?: import("json-schema").JSONSchema4TypeName | import("json-schema").JSONSchema4TypeName[] | undefined;
1553
+ allOf?: /*elided*/ any[];
1554
+ anyOf?: /*elided*/ any[];
1555
+ oneOf?: /*elided*/ any[];
1556
+ not?: /*elided*/ any;
1557
+ extends?: string | string[] | undefined;
1558
+ format?: string | undefined;
1559
+ };
1560
+ expiresAt?: string;
1561
+ metadata?: {
1562
+ questions: {
1563
+ header: string;
1564
+ multiSelect?: boolean;
1565
+ options?: {
1566
+ description: string;
1567
+ label: string;
1568
+ }[];
1569
+ question: string;
1570
+ }[];
1571
+ };
1572
+ })[];
1573
+ };
1574
+ timestamp?: number;
1575
+ };
1576
+ role: MessageRole.Interrupt;
1577
+ id?: string;
1578
+ messageId?: string;
1579
+ name?: string;
1580
+ sessionCode?: string;
1581
+ status: MessageStatus;
322
1582
  } | {
323
1583
  content: string;
324
1584
  role: MessageRole.Guide;
@@ -568,6 +1828,636 @@ export declare const useMessage: (mediator: IMediatorModule) => {
568
1828
  name?: string;
569
1829
  sessionCode?: string;
570
1830
  status: MessageStatus;
1831
+ } | {
1832
+ content: {
1833
+ result?: {
1834
+ interruptId: string;
1835
+ status: import("..").ResumeStatus;
1836
+ payload: {
1837
+ answers: {
1838
+ answer: {
1839
+ description: string;
1840
+ label: string;
1841
+ }[];
1842
+ multiSelect?: boolean;
1843
+ question: string;
1844
+ }[];
1845
+ };
1846
+ };
1847
+ runId: number;
1848
+ threadId: string;
1849
+ type: import("..").EventType.RunFinished;
1850
+ outcome?: {
1851
+ type: import("..").RunFinishedOutcomeType.Success;
1852
+ } | {
1853
+ type: import("..").RunFinishedOutcomeType.Interrupt;
1854
+ interrupts: ({
1855
+ id: string;
1856
+ reason: import("..").InterruptReason.AIDevToolApproval;
1857
+ message?: string;
1858
+ toolCallId?: string;
1859
+ responseSchema?: {
1860
+ [x: string]: any;
1861
+ id?: string | undefined;
1862
+ $ref?: string | undefined;
1863
+ $schema?: import("json-schema").JSONSchema4Version | undefined;
1864
+ title?: string | undefined;
1865
+ description?: string | undefined;
1866
+ default?: string | number | boolean | import("json-schema").JSONSchema4Object | {
1867
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
1868
+ length: number;
1869
+ toString: () => string;
1870
+ toLocaleString: {
1871
+ (): string;
1872
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
1873
+ };
1874
+ pop: () => import("json-schema").JSONSchema4Type;
1875
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
1876
+ concat: {
1877
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
1878
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
1879
+ };
1880
+ join: (separator?: string) => string;
1881
+ reverse: () => import("json-schema").JSONSchema4Type[];
1882
+ shift: () => import("json-schema").JSONSchema4Type;
1883
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
1884
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
1885
+ splice: {
1886
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
1887
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
1888
+ };
1889
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
1890
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
1891
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
1892
+ every: {
1893
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
1894
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
1895
+ };
1896
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
1897
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
1898
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
1899
+ filter: {
1900
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
1901
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
1902
+ };
1903
+ reduce: {
1904
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1905
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1906
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
1907
+ };
1908
+ reduceRight: {
1909
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1910
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
1911
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
1912
+ };
1913
+ find: {
1914
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
1915
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
1916
+ };
1917
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
1918
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
1919
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
1920
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
1921
+ keys: () => ArrayIterator<number>;
1922
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
1923
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
1924
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
1925
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
1926
+ at: (index: number) => import("json-schema").JSONSchema4Type;
1927
+ findLast: {
1928
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
1929
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
1930
+ };
1931
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
1932
+ toReversed: () => import("json-schema").JSONSchema4Type[];
1933
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
1934
+ toSpliced: {
1935
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
1936
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
1937
+ };
1938
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
1939
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
1940
+ readonly [Symbol.unscopables]: {
1941
+ [x: number]: boolean;
1942
+ length?: boolean;
1943
+ toString?: boolean;
1944
+ toLocaleString?: boolean;
1945
+ pop?: boolean;
1946
+ push?: boolean;
1947
+ concat?: boolean;
1948
+ join?: boolean;
1949
+ reverse?: boolean;
1950
+ shift?: boolean;
1951
+ slice?: boolean;
1952
+ sort?: boolean;
1953
+ splice?: boolean;
1954
+ unshift?: boolean;
1955
+ indexOf?: boolean;
1956
+ lastIndexOf?: boolean;
1957
+ every?: boolean;
1958
+ some?: boolean;
1959
+ forEach?: boolean;
1960
+ map?: boolean;
1961
+ filter?: boolean;
1962
+ reduce?: boolean;
1963
+ reduceRight?: boolean;
1964
+ find?: boolean;
1965
+ findIndex?: boolean;
1966
+ fill?: boolean;
1967
+ copyWithin?: boolean;
1968
+ entries?: boolean;
1969
+ keys?: boolean;
1970
+ values?: boolean;
1971
+ includes?: boolean;
1972
+ flatMap?: boolean;
1973
+ flat?: boolean;
1974
+ at?: boolean;
1975
+ findLast?: boolean;
1976
+ findLastIndex?: boolean;
1977
+ toReversed?: boolean;
1978
+ toSorted?: boolean;
1979
+ toSpliced?: boolean;
1980
+ with?: boolean;
1981
+ [Symbol.iterator]?: boolean;
1982
+ readonly [Symbol.unscopables]?: boolean;
1983
+ };
1984
+ };
1985
+ multipleOf?: number | undefined;
1986
+ maximum?: number | undefined;
1987
+ exclusiveMaximum?: boolean | undefined;
1988
+ minimum?: number | undefined;
1989
+ exclusiveMinimum?: boolean | undefined;
1990
+ maxLength?: number | undefined;
1991
+ minLength?: number | undefined;
1992
+ pattern?: string | undefined;
1993
+ additionalItems?: boolean | /*elided*/ any;
1994
+ items?: /*elided*/ any | /*elided*/ any[];
1995
+ maxItems?: number | undefined;
1996
+ minItems?: number | undefined;
1997
+ uniqueItems?: boolean | undefined;
1998
+ maxProperties?: number | undefined;
1999
+ minProperties?: number | undefined;
2000
+ required?: boolean | string[] | undefined;
2001
+ additionalProperties?: boolean | /*elided*/ any;
2002
+ definitions?: {
2003
+ [k: string]: import("json-schema").JSONSchema4;
2004
+ } | undefined;
2005
+ properties?: {
2006
+ [k: string]: import("json-schema").JSONSchema4;
2007
+ } | undefined;
2008
+ patternProperties?: {
2009
+ [k: string]: import("json-schema").JSONSchema4;
2010
+ } | undefined;
2011
+ dependencies?: {
2012
+ [k: string]: import("json-schema").JSONSchema4 | string[];
2013
+ } | undefined;
2014
+ enum?: (string | number | boolean | import("json-schema").JSONSchema4Object | {
2015
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
2016
+ length: number;
2017
+ toString: () => string;
2018
+ toLocaleString: {
2019
+ (): string;
2020
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
2021
+ };
2022
+ pop: () => import("json-schema").JSONSchema4Type;
2023
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
2024
+ concat: {
2025
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
2026
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
2027
+ };
2028
+ join: (separator?: string) => string;
2029
+ reverse: () => import("json-schema").JSONSchema4Type[];
2030
+ shift: () => import("json-schema").JSONSchema4Type;
2031
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
2032
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
2033
+ splice: {
2034
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
2035
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
2036
+ };
2037
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
2038
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
2039
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
2040
+ every: {
2041
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
2042
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
2043
+ };
2044
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
2045
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
2046
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
2047
+ filter: {
2048
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
2049
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
2050
+ };
2051
+ reduce: {
2052
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2053
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2054
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
2055
+ };
2056
+ reduceRight: {
2057
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2058
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2059
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
2060
+ };
2061
+ find: {
2062
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
2063
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
2064
+ };
2065
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
2066
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
2067
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
2068
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
2069
+ keys: () => ArrayIterator<number>;
2070
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
2071
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
2072
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
2073
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
2074
+ at: (index: number) => import("json-schema").JSONSchema4Type;
2075
+ findLast: {
2076
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
2077
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
2078
+ };
2079
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
2080
+ toReversed: () => import("json-schema").JSONSchema4Type[];
2081
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
2082
+ toSpliced: {
2083
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
2084
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
2085
+ };
2086
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
2087
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
2088
+ readonly [Symbol.unscopables]: {
2089
+ [x: number]: boolean;
2090
+ length?: boolean;
2091
+ toString?: boolean;
2092
+ toLocaleString?: boolean;
2093
+ pop?: boolean;
2094
+ push?: boolean;
2095
+ concat?: boolean;
2096
+ join?: boolean;
2097
+ reverse?: boolean;
2098
+ shift?: boolean;
2099
+ slice?: boolean;
2100
+ sort?: boolean;
2101
+ splice?: boolean;
2102
+ unshift?: boolean;
2103
+ indexOf?: boolean;
2104
+ lastIndexOf?: boolean;
2105
+ every?: boolean;
2106
+ some?: boolean;
2107
+ forEach?: boolean;
2108
+ map?: boolean;
2109
+ filter?: boolean;
2110
+ reduce?: boolean;
2111
+ reduceRight?: boolean;
2112
+ find?: boolean;
2113
+ findIndex?: boolean;
2114
+ fill?: boolean;
2115
+ copyWithin?: boolean;
2116
+ entries?: boolean;
2117
+ keys?: boolean;
2118
+ values?: boolean;
2119
+ includes?: boolean;
2120
+ flatMap?: boolean;
2121
+ flat?: boolean;
2122
+ at?: boolean;
2123
+ findLast?: boolean;
2124
+ findLastIndex?: boolean;
2125
+ toReversed?: boolean;
2126
+ toSorted?: boolean;
2127
+ toSpliced?: boolean;
2128
+ with?: boolean;
2129
+ [Symbol.iterator]?: boolean;
2130
+ readonly [Symbol.unscopables]?: boolean;
2131
+ };
2132
+ })[];
2133
+ type?: import("json-schema").JSONSchema4TypeName | import("json-schema").JSONSchema4TypeName[] | undefined;
2134
+ allOf?: /*elided*/ any[];
2135
+ anyOf?: /*elided*/ any[];
2136
+ oneOf?: /*elided*/ any[];
2137
+ not?: /*elided*/ any;
2138
+ extends?: string | string[] | undefined;
2139
+ format?: string | undefined;
2140
+ };
2141
+ expiresAt?: string;
2142
+ metadata?: {
2143
+ ticket: {
2144
+ approvers: string[];
2145
+ sn: string;
2146
+ status: import("..").ApprovalInterruptTicketStatus;
2147
+ submit_time: string;
2148
+ title: string;
2149
+ url: string;
2150
+ };
2151
+ };
2152
+ } | {
2153
+ id: string;
2154
+ reason: import("..").InterruptReason.UserQuestion;
2155
+ message?: string;
2156
+ toolCallId?: string;
2157
+ responseSchema?: {
2158
+ [x: string]: any;
2159
+ id?: string | undefined;
2160
+ $ref?: string | undefined;
2161
+ $schema?: import("json-schema").JSONSchema4Version | undefined;
2162
+ title?: string | undefined;
2163
+ description?: string | undefined;
2164
+ default?: string | number | boolean | import("json-schema").JSONSchema4Object | {
2165
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
2166
+ length: number;
2167
+ toString: () => string;
2168
+ toLocaleString: {
2169
+ (): string;
2170
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
2171
+ };
2172
+ pop: () => import("json-schema").JSONSchema4Type;
2173
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
2174
+ concat: {
2175
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
2176
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
2177
+ };
2178
+ join: (separator?: string) => string;
2179
+ reverse: () => import("json-schema").JSONSchema4Type[];
2180
+ shift: () => import("json-schema").JSONSchema4Type;
2181
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
2182
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
2183
+ splice: {
2184
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
2185
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
2186
+ };
2187
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
2188
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
2189
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
2190
+ every: {
2191
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
2192
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
2193
+ };
2194
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
2195
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
2196
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
2197
+ filter: {
2198
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
2199
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
2200
+ };
2201
+ reduce: {
2202
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2203
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2204
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
2205
+ };
2206
+ reduceRight: {
2207
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2208
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2209
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
2210
+ };
2211
+ find: {
2212
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
2213
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
2214
+ };
2215
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
2216
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
2217
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
2218
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
2219
+ keys: () => ArrayIterator<number>;
2220
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
2221
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
2222
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
2223
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
2224
+ at: (index: number) => import("json-schema").JSONSchema4Type;
2225
+ findLast: {
2226
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
2227
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
2228
+ };
2229
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
2230
+ toReversed: () => import("json-schema").JSONSchema4Type[];
2231
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
2232
+ toSpliced: {
2233
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
2234
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
2235
+ };
2236
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
2237
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
2238
+ readonly [Symbol.unscopables]: {
2239
+ [x: number]: boolean;
2240
+ length?: boolean;
2241
+ toString?: boolean;
2242
+ toLocaleString?: boolean;
2243
+ pop?: boolean;
2244
+ push?: boolean;
2245
+ concat?: boolean;
2246
+ join?: boolean;
2247
+ reverse?: boolean;
2248
+ shift?: boolean;
2249
+ slice?: boolean;
2250
+ sort?: boolean;
2251
+ splice?: boolean;
2252
+ unshift?: boolean;
2253
+ indexOf?: boolean;
2254
+ lastIndexOf?: boolean;
2255
+ every?: boolean;
2256
+ some?: boolean;
2257
+ forEach?: boolean;
2258
+ map?: boolean;
2259
+ filter?: boolean;
2260
+ reduce?: boolean;
2261
+ reduceRight?: boolean;
2262
+ find?: boolean;
2263
+ findIndex?: boolean;
2264
+ fill?: boolean;
2265
+ copyWithin?: boolean;
2266
+ entries?: boolean;
2267
+ keys?: boolean;
2268
+ values?: boolean;
2269
+ includes?: boolean;
2270
+ flatMap?: boolean;
2271
+ flat?: boolean;
2272
+ at?: boolean;
2273
+ findLast?: boolean;
2274
+ findLastIndex?: boolean;
2275
+ toReversed?: boolean;
2276
+ toSorted?: boolean;
2277
+ toSpliced?: boolean;
2278
+ with?: boolean;
2279
+ [Symbol.iterator]?: boolean;
2280
+ readonly [Symbol.unscopables]?: boolean;
2281
+ };
2282
+ };
2283
+ multipleOf?: number | undefined;
2284
+ maximum?: number | undefined;
2285
+ exclusiveMaximum?: boolean | undefined;
2286
+ minimum?: number | undefined;
2287
+ exclusiveMinimum?: boolean | undefined;
2288
+ maxLength?: number | undefined;
2289
+ minLength?: number | undefined;
2290
+ pattern?: string | undefined;
2291
+ additionalItems?: boolean | /*elided*/ any;
2292
+ items?: /*elided*/ any | /*elided*/ any[];
2293
+ maxItems?: number | undefined;
2294
+ minItems?: number | undefined;
2295
+ uniqueItems?: boolean | undefined;
2296
+ maxProperties?: number | undefined;
2297
+ minProperties?: number | undefined;
2298
+ required?: boolean | string[] | undefined;
2299
+ additionalProperties?: boolean | /*elided*/ any;
2300
+ definitions?: {
2301
+ [k: string]: import("json-schema").JSONSchema4;
2302
+ } | undefined;
2303
+ properties?: {
2304
+ [k: string]: import("json-schema").JSONSchema4;
2305
+ } | undefined;
2306
+ patternProperties?: {
2307
+ [k: string]: import("json-schema").JSONSchema4;
2308
+ } | undefined;
2309
+ dependencies?: {
2310
+ [k: string]: import("json-schema").JSONSchema4 | string[];
2311
+ } | undefined;
2312
+ enum?: (string | number | boolean | import("json-schema").JSONSchema4Object | {
2313
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
2314
+ length: number;
2315
+ toString: () => string;
2316
+ toLocaleString: {
2317
+ (): string;
2318
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
2319
+ };
2320
+ pop: () => import("json-schema").JSONSchema4Type;
2321
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
2322
+ concat: {
2323
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
2324
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
2325
+ };
2326
+ join: (separator?: string) => string;
2327
+ reverse: () => import("json-schema").JSONSchema4Type[];
2328
+ shift: () => import("json-schema").JSONSchema4Type;
2329
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
2330
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
2331
+ splice: {
2332
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
2333
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
2334
+ };
2335
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
2336
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
2337
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
2338
+ every: {
2339
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
2340
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
2341
+ };
2342
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
2343
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
2344
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
2345
+ filter: {
2346
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
2347
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
2348
+ };
2349
+ reduce: {
2350
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2351
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2352
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
2353
+ };
2354
+ reduceRight: {
2355
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2356
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2357
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
2358
+ };
2359
+ find: {
2360
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
2361
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
2362
+ };
2363
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
2364
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
2365
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
2366
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
2367
+ keys: () => ArrayIterator<number>;
2368
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
2369
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
2370
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
2371
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
2372
+ at: (index: number) => import("json-schema").JSONSchema4Type;
2373
+ findLast: {
2374
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
2375
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
2376
+ };
2377
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
2378
+ toReversed: () => import("json-schema").JSONSchema4Type[];
2379
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
2380
+ toSpliced: {
2381
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
2382
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
2383
+ };
2384
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
2385
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
2386
+ readonly [Symbol.unscopables]: {
2387
+ [x: number]: boolean;
2388
+ length?: boolean;
2389
+ toString?: boolean;
2390
+ toLocaleString?: boolean;
2391
+ pop?: boolean;
2392
+ push?: boolean;
2393
+ concat?: boolean;
2394
+ join?: boolean;
2395
+ reverse?: boolean;
2396
+ shift?: boolean;
2397
+ slice?: boolean;
2398
+ sort?: boolean;
2399
+ splice?: boolean;
2400
+ unshift?: boolean;
2401
+ indexOf?: boolean;
2402
+ lastIndexOf?: boolean;
2403
+ every?: boolean;
2404
+ some?: boolean;
2405
+ forEach?: boolean;
2406
+ map?: boolean;
2407
+ filter?: boolean;
2408
+ reduce?: boolean;
2409
+ reduceRight?: boolean;
2410
+ find?: boolean;
2411
+ findIndex?: boolean;
2412
+ fill?: boolean;
2413
+ copyWithin?: boolean;
2414
+ entries?: boolean;
2415
+ keys?: boolean;
2416
+ values?: boolean;
2417
+ includes?: boolean;
2418
+ flatMap?: boolean;
2419
+ flat?: boolean;
2420
+ at?: boolean;
2421
+ findLast?: boolean;
2422
+ findLastIndex?: boolean;
2423
+ toReversed?: boolean;
2424
+ toSorted?: boolean;
2425
+ toSpliced?: boolean;
2426
+ with?: boolean;
2427
+ [Symbol.iterator]?: boolean;
2428
+ readonly [Symbol.unscopables]?: boolean;
2429
+ };
2430
+ })[];
2431
+ type?: import("json-schema").JSONSchema4TypeName | import("json-schema").JSONSchema4TypeName[] | undefined;
2432
+ allOf?: /*elided*/ any[];
2433
+ anyOf?: /*elided*/ any[];
2434
+ oneOf?: /*elided*/ any[];
2435
+ not?: /*elided*/ any;
2436
+ extends?: string | string[] | undefined;
2437
+ format?: string | undefined;
2438
+ };
2439
+ expiresAt?: string;
2440
+ metadata?: {
2441
+ questions: {
2442
+ header: string;
2443
+ multiSelect?: boolean;
2444
+ options?: {
2445
+ description: string;
2446
+ label: string;
2447
+ }[];
2448
+ question: string;
2449
+ }[];
2450
+ };
2451
+ })[];
2452
+ };
2453
+ timestamp?: number;
2454
+ };
2455
+ role: MessageRole.Interrupt;
2456
+ id?: string;
2457
+ messageId?: string;
2458
+ name?: string;
2459
+ sessionCode?: string;
2460
+ status: MessageStatus;
571
2461
  } | {
572
2462
  content: string;
573
2463
  role: MessageRole.Guide;
@@ -813,6 +2703,636 @@ export declare const useMessage: (mediator: IMediatorModule) => {
813
2703
  name?: string;
814
2704
  sessionCode?: string;
815
2705
  status: MessageStatus;
2706
+ } | {
2707
+ content: {
2708
+ result?: {
2709
+ interruptId: string;
2710
+ status: import("..").ResumeStatus;
2711
+ payload: {
2712
+ answers: {
2713
+ answer: {
2714
+ description: string;
2715
+ label: string;
2716
+ }[];
2717
+ multiSelect?: boolean;
2718
+ question: string;
2719
+ }[];
2720
+ };
2721
+ };
2722
+ runId: number;
2723
+ threadId: string;
2724
+ type: import("..").EventType.RunFinished;
2725
+ outcome?: {
2726
+ type: import("..").RunFinishedOutcomeType.Success;
2727
+ } | {
2728
+ type: import("..").RunFinishedOutcomeType.Interrupt;
2729
+ interrupts: ({
2730
+ id: string;
2731
+ reason: import("..").InterruptReason.AIDevToolApproval;
2732
+ message?: string;
2733
+ toolCallId?: string;
2734
+ responseSchema?: {
2735
+ [x: string]: any;
2736
+ id?: string | undefined;
2737
+ $ref?: string | undefined;
2738
+ $schema?: import("json-schema").JSONSchema4Version | undefined;
2739
+ title?: string | undefined;
2740
+ description?: string | undefined;
2741
+ default?: string | number | boolean | import("json-schema").JSONSchema4Object | {
2742
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
2743
+ length: number;
2744
+ toString: () => string;
2745
+ toLocaleString: {
2746
+ (): string;
2747
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
2748
+ };
2749
+ pop: () => import("json-schema").JSONSchema4Type;
2750
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
2751
+ concat: {
2752
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
2753
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
2754
+ };
2755
+ join: (separator?: string) => string;
2756
+ reverse: () => import("json-schema").JSONSchema4Type[];
2757
+ shift: () => import("json-schema").JSONSchema4Type;
2758
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
2759
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
2760
+ splice: {
2761
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
2762
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
2763
+ };
2764
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
2765
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
2766
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
2767
+ every: {
2768
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
2769
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
2770
+ };
2771
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
2772
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
2773
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
2774
+ filter: {
2775
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
2776
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
2777
+ };
2778
+ reduce: {
2779
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2780
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2781
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
2782
+ };
2783
+ reduceRight: {
2784
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2785
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2786
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
2787
+ };
2788
+ find: {
2789
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
2790
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
2791
+ };
2792
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
2793
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
2794
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
2795
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
2796
+ keys: () => ArrayIterator<number>;
2797
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
2798
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
2799
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
2800
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
2801
+ at: (index: number) => import("json-schema").JSONSchema4Type;
2802
+ findLast: {
2803
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
2804
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
2805
+ };
2806
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
2807
+ toReversed: () => import("json-schema").JSONSchema4Type[];
2808
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
2809
+ toSpliced: {
2810
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
2811
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
2812
+ };
2813
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
2814
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
2815
+ readonly [Symbol.unscopables]: {
2816
+ [x: number]: boolean;
2817
+ length?: boolean;
2818
+ toString?: boolean;
2819
+ toLocaleString?: boolean;
2820
+ pop?: boolean;
2821
+ push?: boolean;
2822
+ concat?: boolean;
2823
+ join?: boolean;
2824
+ reverse?: boolean;
2825
+ shift?: boolean;
2826
+ slice?: boolean;
2827
+ sort?: boolean;
2828
+ splice?: boolean;
2829
+ unshift?: boolean;
2830
+ indexOf?: boolean;
2831
+ lastIndexOf?: boolean;
2832
+ every?: boolean;
2833
+ some?: boolean;
2834
+ forEach?: boolean;
2835
+ map?: boolean;
2836
+ filter?: boolean;
2837
+ reduce?: boolean;
2838
+ reduceRight?: boolean;
2839
+ find?: boolean;
2840
+ findIndex?: boolean;
2841
+ fill?: boolean;
2842
+ copyWithin?: boolean;
2843
+ entries?: boolean;
2844
+ keys?: boolean;
2845
+ values?: boolean;
2846
+ includes?: boolean;
2847
+ flatMap?: boolean;
2848
+ flat?: boolean;
2849
+ at?: boolean;
2850
+ findLast?: boolean;
2851
+ findLastIndex?: boolean;
2852
+ toReversed?: boolean;
2853
+ toSorted?: boolean;
2854
+ toSpliced?: boolean;
2855
+ with?: boolean;
2856
+ [Symbol.iterator]?: boolean;
2857
+ readonly [Symbol.unscopables]?: boolean;
2858
+ };
2859
+ };
2860
+ multipleOf?: number | undefined;
2861
+ maximum?: number | undefined;
2862
+ exclusiveMaximum?: boolean | undefined;
2863
+ minimum?: number | undefined;
2864
+ exclusiveMinimum?: boolean | undefined;
2865
+ maxLength?: number | undefined;
2866
+ minLength?: number | undefined;
2867
+ pattern?: string | undefined;
2868
+ additionalItems?: boolean | /*elided*/ any;
2869
+ items?: /*elided*/ any | /*elided*/ any[];
2870
+ maxItems?: number | undefined;
2871
+ minItems?: number | undefined;
2872
+ uniqueItems?: boolean | undefined;
2873
+ maxProperties?: number | undefined;
2874
+ minProperties?: number | undefined;
2875
+ required?: boolean | string[] | undefined;
2876
+ additionalProperties?: boolean | /*elided*/ any;
2877
+ definitions?: {
2878
+ [k: string]: import("json-schema").JSONSchema4;
2879
+ } | undefined;
2880
+ properties?: {
2881
+ [k: string]: import("json-schema").JSONSchema4;
2882
+ } | undefined;
2883
+ patternProperties?: {
2884
+ [k: string]: import("json-schema").JSONSchema4;
2885
+ } | undefined;
2886
+ dependencies?: {
2887
+ [k: string]: import("json-schema").JSONSchema4 | string[];
2888
+ } | undefined;
2889
+ enum?: (string | number | boolean | import("json-schema").JSONSchema4Object | {
2890
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
2891
+ length: number;
2892
+ toString: () => string;
2893
+ toLocaleString: {
2894
+ (): string;
2895
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
2896
+ };
2897
+ pop: () => import("json-schema").JSONSchema4Type;
2898
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
2899
+ concat: {
2900
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
2901
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
2902
+ };
2903
+ join: (separator?: string) => string;
2904
+ reverse: () => import("json-schema").JSONSchema4Type[];
2905
+ shift: () => import("json-schema").JSONSchema4Type;
2906
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
2907
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
2908
+ splice: {
2909
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
2910
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
2911
+ };
2912
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
2913
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
2914
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
2915
+ every: {
2916
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
2917
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
2918
+ };
2919
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
2920
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
2921
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
2922
+ filter: {
2923
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
2924
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
2925
+ };
2926
+ reduce: {
2927
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2928
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2929
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
2930
+ };
2931
+ reduceRight: {
2932
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2933
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
2934
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
2935
+ };
2936
+ find: {
2937
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
2938
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
2939
+ };
2940
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
2941
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
2942
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
2943
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
2944
+ keys: () => ArrayIterator<number>;
2945
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
2946
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
2947
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
2948
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
2949
+ at: (index: number) => import("json-schema").JSONSchema4Type;
2950
+ findLast: {
2951
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
2952
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
2953
+ };
2954
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
2955
+ toReversed: () => import("json-schema").JSONSchema4Type[];
2956
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
2957
+ toSpliced: {
2958
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
2959
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
2960
+ };
2961
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
2962
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
2963
+ readonly [Symbol.unscopables]: {
2964
+ [x: number]: boolean;
2965
+ length?: boolean;
2966
+ toString?: boolean;
2967
+ toLocaleString?: boolean;
2968
+ pop?: boolean;
2969
+ push?: boolean;
2970
+ concat?: boolean;
2971
+ join?: boolean;
2972
+ reverse?: boolean;
2973
+ shift?: boolean;
2974
+ slice?: boolean;
2975
+ sort?: boolean;
2976
+ splice?: boolean;
2977
+ unshift?: boolean;
2978
+ indexOf?: boolean;
2979
+ lastIndexOf?: boolean;
2980
+ every?: boolean;
2981
+ some?: boolean;
2982
+ forEach?: boolean;
2983
+ map?: boolean;
2984
+ filter?: boolean;
2985
+ reduce?: boolean;
2986
+ reduceRight?: boolean;
2987
+ find?: boolean;
2988
+ findIndex?: boolean;
2989
+ fill?: boolean;
2990
+ copyWithin?: boolean;
2991
+ entries?: boolean;
2992
+ keys?: boolean;
2993
+ values?: boolean;
2994
+ includes?: boolean;
2995
+ flatMap?: boolean;
2996
+ flat?: boolean;
2997
+ at?: boolean;
2998
+ findLast?: boolean;
2999
+ findLastIndex?: boolean;
3000
+ toReversed?: boolean;
3001
+ toSorted?: boolean;
3002
+ toSpliced?: boolean;
3003
+ with?: boolean;
3004
+ [Symbol.iterator]?: boolean;
3005
+ readonly [Symbol.unscopables]?: boolean;
3006
+ };
3007
+ })[];
3008
+ type?: import("json-schema").JSONSchema4TypeName | import("json-schema").JSONSchema4TypeName[] | undefined;
3009
+ allOf?: /*elided*/ any[];
3010
+ anyOf?: /*elided*/ any[];
3011
+ oneOf?: /*elided*/ any[];
3012
+ not?: /*elided*/ any;
3013
+ extends?: string | string[] | undefined;
3014
+ format?: string | undefined;
3015
+ };
3016
+ expiresAt?: string;
3017
+ metadata?: {
3018
+ ticket: {
3019
+ approvers: string[];
3020
+ sn: string;
3021
+ status: import("..").ApprovalInterruptTicketStatus;
3022
+ submit_time: string;
3023
+ title: string;
3024
+ url: string;
3025
+ };
3026
+ };
3027
+ } | {
3028
+ id: string;
3029
+ reason: import("..").InterruptReason.UserQuestion;
3030
+ message?: string;
3031
+ toolCallId?: string;
3032
+ responseSchema?: {
3033
+ [x: string]: any;
3034
+ id?: string | undefined;
3035
+ $ref?: string | undefined;
3036
+ $schema?: import("json-schema").JSONSchema4Version | undefined;
3037
+ title?: string | undefined;
3038
+ description?: string | undefined;
3039
+ default?: string | number | boolean | import("json-schema").JSONSchema4Object | {
3040
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
3041
+ length: number;
3042
+ toString: () => string;
3043
+ toLocaleString: {
3044
+ (): string;
3045
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
3046
+ };
3047
+ pop: () => import("json-schema").JSONSchema4Type;
3048
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
3049
+ concat: {
3050
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
3051
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
3052
+ };
3053
+ join: (separator?: string) => string;
3054
+ reverse: () => import("json-schema").JSONSchema4Type[];
3055
+ shift: () => import("json-schema").JSONSchema4Type;
3056
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
3057
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
3058
+ splice: {
3059
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
3060
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
3061
+ };
3062
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
3063
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
3064
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
3065
+ every: {
3066
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
3067
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
3068
+ };
3069
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
3070
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
3071
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
3072
+ filter: {
3073
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
3074
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
3075
+ };
3076
+ reduce: {
3077
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
3078
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
3079
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
3080
+ };
3081
+ reduceRight: {
3082
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
3083
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
3084
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
3085
+ };
3086
+ find: {
3087
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
3088
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
3089
+ };
3090
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
3091
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
3092
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
3093
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
3094
+ keys: () => ArrayIterator<number>;
3095
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
3096
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
3097
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
3098
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
3099
+ at: (index: number) => import("json-schema").JSONSchema4Type;
3100
+ findLast: {
3101
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
3102
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
3103
+ };
3104
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
3105
+ toReversed: () => import("json-schema").JSONSchema4Type[];
3106
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
3107
+ toSpliced: {
3108
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
3109
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
3110
+ };
3111
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
3112
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
3113
+ readonly [Symbol.unscopables]: {
3114
+ [x: number]: boolean;
3115
+ length?: boolean;
3116
+ toString?: boolean;
3117
+ toLocaleString?: boolean;
3118
+ pop?: boolean;
3119
+ push?: boolean;
3120
+ concat?: boolean;
3121
+ join?: boolean;
3122
+ reverse?: boolean;
3123
+ shift?: boolean;
3124
+ slice?: boolean;
3125
+ sort?: boolean;
3126
+ splice?: boolean;
3127
+ unshift?: boolean;
3128
+ indexOf?: boolean;
3129
+ lastIndexOf?: boolean;
3130
+ every?: boolean;
3131
+ some?: boolean;
3132
+ forEach?: boolean;
3133
+ map?: boolean;
3134
+ filter?: boolean;
3135
+ reduce?: boolean;
3136
+ reduceRight?: boolean;
3137
+ find?: boolean;
3138
+ findIndex?: boolean;
3139
+ fill?: boolean;
3140
+ copyWithin?: boolean;
3141
+ entries?: boolean;
3142
+ keys?: boolean;
3143
+ values?: boolean;
3144
+ includes?: boolean;
3145
+ flatMap?: boolean;
3146
+ flat?: boolean;
3147
+ at?: boolean;
3148
+ findLast?: boolean;
3149
+ findLastIndex?: boolean;
3150
+ toReversed?: boolean;
3151
+ toSorted?: boolean;
3152
+ toSpliced?: boolean;
3153
+ with?: boolean;
3154
+ [Symbol.iterator]?: boolean;
3155
+ readonly [Symbol.unscopables]?: boolean;
3156
+ };
3157
+ };
3158
+ multipleOf?: number | undefined;
3159
+ maximum?: number | undefined;
3160
+ exclusiveMaximum?: boolean | undefined;
3161
+ minimum?: number | undefined;
3162
+ exclusiveMinimum?: boolean | undefined;
3163
+ maxLength?: number | undefined;
3164
+ minLength?: number | undefined;
3165
+ pattern?: string | undefined;
3166
+ additionalItems?: boolean | /*elided*/ any;
3167
+ items?: /*elided*/ any | /*elided*/ any[];
3168
+ maxItems?: number | undefined;
3169
+ minItems?: number | undefined;
3170
+ uniqueItems?: boolean | undefined;
3171
+ maxProperties?: number | undefined;
3172
+ minProperties?: number | undefined;
3173
+ required?: boolean | string[] | undefined;
3174
+ additionalProperties?: boolean | /*elided*/ any;
3175
+ definitions?: {
3176
+ [k: string]: import("json-schema").JSONSchema4;
3177
+ } | undefined;
3178
+ properties?: {
3179
+ [k: string]: import("json-schema").JSONSchema4;
3180
+ } | undefined;
3181
+ patternProperties?: {
3182
+ [k: string]: import("json-schema").JSONSchema4;
3183
+ } | undefined;
3184
+ dependencies?: {
3185
+ [k: string]: import("json-schema").JSONSchema4 | string[];
3186
+ } | undefined;
3187
+ enum?: (string | number | boolean | import("json-schema").JSONSchema4Object | {
3188
+ [x: number]: string | number | boolean | import("json-schema").JSONSchema4Object | /*elided*/ any;
3189
+ length: number;
3190
+ toString: () => string;
3191
+ toLocaleString: {
3192
+ (): string;
3193
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
3194
+ };
3195
+ pop: () => import("json-schema").JSONSchema4Type;
3196
+ push: (...items: import("json-schema").JSONSchema4Type[]) => number;
3197
+ concat: {
3198
+ (...items: ConcatArray<import("json-schema").JSONSchema4Type>[]): import("json-schema").JSONSchema4Type[];
3199
+ (...items: (import("json-schema").JSONSchema4Type | ConcatArray<import("json-schema").JSONSchema4Type>)[]): import("json-schema").JSONSchema4Type[];
3200
+ };
3201
+ join: (separator?: string) => string;
3202
+ reverse: () => import("json-schema").JSONSchema4Type[];
3203
+ shift: () => import("json-schema").JSONSchema4Type;
3204
+ slice: (start?: number, end?: number) => import("json-schema").JSONSchema4Type[];
3205
+ sort: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Array;
3206
+ splice: {
3207
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
3208
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
3209
+ };
3210
+ unshift: (...items: import("json-schema").JSONSchema4Type[]) => number;
3211
+ indexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
3212
+ lastIndexOf: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => number;
3213
+ every: {
3214
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): this is S[];
3215
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): boolean;
3216
+ };
3217
+ some: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => boolean;
3218
+ forEach: (callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => void, thisArg?: any) => void;
3219
+ map: <U>(callbackfn: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U, thisArg?: any) => U[];
3220
+ filter: {
3221
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S[];
3222
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type[];
3223
+ };
3224
+ reduce: {
3225
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
3226
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
3227
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
3228
+ };
3229
+ reduceRight: {
3230
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
3231
+ (callbackfn: (previousValue: import("json-schema").JSONSchema4Type, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => import("json-schema").JSONSchema4Type, initialValue: import("json-schema").JSONSchema4Type): import("json-schema").JSONSchema4Type;
3232
+ <U>(callbackfn: (previousValue: U, currentValue: import("json-schema").JSONSchema4Type, currentIndex: number, array: import("json-schema").JSONSchema4Type[]) => U, initialValue: U): U;
3233
+ };
3234
+ find: {
3235
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
3236
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
3237
+ };
3238
+ findIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, obj: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
3239
+ fill: (value: import("json-schema").JSONSchema4Type, start?: number, end?: number) => import("json-schema").JSONSchema4Array;
3240
+ copyWithin: (target: number, start: number, end?: number) => import("json-schema").JSONSchema4Array;
3241
+ entries: () => ArrayIterator<[number, import("json-schema").JSONSchema4Type]>;
3242
+ keys: () => ArrayIterator<number>;
3243
+ values: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
3244
+ includes: (searchElement: import("json-schema").JSONSchema4Type, fromIndex?: number) => boolean;
3245
+ flatMap: <U, This = undefined>(callback: (this: This, value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => U | readonly U[], thisArg?: This) => U[];
3246
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
3247
+ at: (index: number) => import("json-schema").JSONSchema4Type;
3248
+ findLast: {
3249
+ <S extends import("json-schema").JSONSchema4Type>(predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => value is S, thisArg?: any): S;
3250
+ (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any): import("json-schema").JSONSchema4Type;
3251
+ };
3252
+ findLastIndex: (predicate: (value: import("json-schema").JSONSchema4Type, index: number, array: import("json-schema").JSONSchema4Type[]) => unknown, thisArg?: any) => number;
3253
+ toReversed: () => import("json-schema").JSONSchema4Type[];
3254
+ toSorted: (compareFn?: (a: import("json-schema").JSONSchema4Type, b: import("json-schema").JSONSchema4Type) => number) => import("json-schema").JSONSchema4Type[];
3255
+ toSpliced: {
3256
+ (start: number, deleteCount: number, ...items: import("json-schema").JSONSchema4Type[]): import("json-schema").JSONSchema4Type[];
3257
+ (start: number, deleteCount?: number): import("json-schema").JSONSchema4Type[];
3258
+ };
3259
+ with: (index: number, value: import("json-schema").JSONSchema4Type) => import("json-schema").JSONSchema4Type[];
3260
+ [Symbol.iterator]: () => ArrayIterator<import("json-schema").JSONSchema4Type>;
3261
+ readonly [Symbol.unscopables]: {
3262
+ [x: number]: boolean;
3263
+ length?: boolean;
3264
+ toString?: boolean;
3265
+ toLocaleString?: boolean;
3266
+ pop?: boolean;
3267
+ push?: boolean;
3268
+ concat?: boolean;
3269
+ join?: boolean;
3270
+ reverse?: boolean;
3271
+ shift?: boolean;
3272
+ slice?: boolean;
3273
+ sort?: boolean;
3274
+ splice?: boolean;
3275
+ unshift?: boolean;
3276
+ indexOf?: boolean;
3277
+ lastIndexOf?: boolean;
3278
+ every?: boolean;
3279
+ some?: boolean;
3280
+ forEach?: boolean;
3281
+ map?: boolean;
3282
+ filter?: boolean;
3283
+ reduce?: boolean;
3284
+ reduceRight?: boolean;
3285
+ find?: boolean;
3286
+ findIndex?: boolean;
3287
+ fill?: boolean;
3288
+ copyWithin?: boolean;
3289
+ entries?: boolean;
3290
+ keys?: boolean;
3291
+ values?: boolean;
3292
+ includes?: boolean;
3293
+ flatMap?: boolean;
3294
+ flat?: boolean;
3295
+ at?: boolean;
3296
+ findLast?: boolean;
3297
+ findLastIndex?: boolean;
3298
+ toReversed?: boolean;
3299
+ toSorted?: boolean;
3300
+ toSpliced?: boolean;
3301
+ with?: boolean;
3302
+ [Symbol.iterator]?: boolean;
3303
+ readonly [Symbol.unscopables]?: boolean;
3304
+ };
3305
+ })[];
3306
+ type?: import("json-schema").JSONSchema4TypeName | import("json-schema").JSONSchema4TypeName[] | undefined;
3307
+ allOf?: /*elided*/ any[];
3308
+ anyOf?: /*elided*/ any[];
3309
+ oneOf?: /*elided*/ any[];
3310
+ not?: /*elided*/ any;
3311
+ extends?: string | string[] | undefined;
3312
+ format?: string | undefined;
3313
+ };
3314
+ expiresAt?: string;
3315
+ metadata?: {
3316
+ questions: {
3317
+ header: string;
3318
+ multiSelect?: boolean;
3319
+ options?: {
3320
+ description: string;
3321
+ label: string;
3322
+ }[];
3323
+ question: string;
3324
+ }[];
3325
+ };
3326
+ })[];
3327
+ };
3328
+ timestamp?: number;
3329
+ };
3330
+ role: MessageRole.Interrupt;
3331
+ id?: string;
3332
+ messageId?: string;
3333
+ name?: string;
3334
+ sessionCode?: string;
3335
+ status: MessageStatus;
816
3336
  } | {
817
3337
  content: string;
818
3338
  role: MessageRole.Guide;