braintrust 0.0.61 → 0.0.63

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.
@@ -1,4 +1,3 @@
1
- import { AxiosInstance, CreateAxiosDefaults } from "axios";
2
1
  export interface RepoStatus {
3
2
  commit?: string;
4
3
  branch?: string;
@@ -20,12 +19,12 @@ export interface IsoAsyncLocalStorage<T> {
20
19
  getStore(): T | undefined;
21
20
  }
22
21
  export interface Common {
23
- makeAxios: (conf: CreateAxiosDefaults) => AxiosInstance;
24
22
  getRepoStatus: () => Promise<RepoStatus | undefined>;
25
23
  getPastNAncestors: () => Promise<string[]>;
26
24
  getEnv: (name: string) => string | undefined;
27
25
  getCallerLocation: () => CallerLocation | undefined;
28
26
  newAsyncLocalStorage: <T>() => IsoAsyncLocalStorage<T>;
27
+ processOn: (event: string, handler: (code: any) => void) => void;
29
28
  }
30
29
  declare const iso: Common;
31
30
  export default iso;
package/dist/logger.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { AxiosInstance } from "axios";
1
+ /// <reference lib="dom" />
2
2
  import { IsoAsyncLocalStorage } from "./isomorph";
3
3
  import { IS_MERGE_FIELD } from "./util";
4
4
  export type SetCurrentArg = {
@@ -42,7 +42,7 @@ export interface Span {
42
42
  /**
43
43
  * Create a new span. This is useful if you want to log more detailed trace information beyond the scope of a single log event. Data logged over several calls to `Span.log` will be merged into one logical row.
44
44
  *
45
- * We recommend running spans within a callback (using `startSpanWithinCallback`) to automatically mark them as current and ensure they are terminated. If you wish to start a span outside a callback, be sure to terminate it with `span.end()`.
45
+ * We recommend running spans within a callback (using `traced`) to automatically mark them as current and ensure they are terminated. If you wish to start a span outside a callback, be sure to terminate it with `span.end()`.
46
46
  *
47
47
  * @param name The name of the span.
48
48
  * @param args.span_attributes Optional additional attributes to attach to the span, such as a type name.
@@ -94,6 +94,7 @@ declare global {
94
94
  declare class BraintrustState {
95
95
  id: string;
96
96
  currentExperiment: IsoAsyncLocalStorage<Experiment | undefined>;
97
+ currentLogger: IsoAsyncLocalStorage<Logger | undefined>;
97
98
  currentSpan: IsoAsyncLocalStorage<Span>;
98
99
  apiUrl: string | null;
99
100
  loginToken: string | null;
@@ -114,26 +115,72 @@ export declare const _internalGetGlobalState: () => BraintrustState;
114
115
  declare class HTTPConnection {
115
116
  base_url: string;
116
117
  token: string | null;
117
- session: AxiosInstance | null;
118
+ headers: Record<string, string>;
118
119
  constructor(base_url: string);
119
120
  ping(): Promise<boolean>;
120
121
  make_long_lived(): void;
121
122
  static sanitize_token(token: string): string;
122
123
  set_token(token: string): void;
123
124
  _reset(): void;
124
- get(path: string, params?: unknown | undefined): Promise<import("axios").AxiosResponse<any, any>>;
125
- post(path: string, params?: unknown | undefined, config?: any): Promise<import("axios").AxiosResponse<any, any>>;
126
- get_json(object_type: string, args?: unknown | undefined, retries?: number): Promise<any>;
127
- post_json(object_type: string, args?: unknown | undefined): Promise<any>;
125
+ get(path: string, params?: Record<string, string | undefined> | undefined): Promise<Response>;
126
+ post(path: string, params?: Record<string, unknown> | string, config?: RequestInit): Promise<Response>;
127
+ get_json(object_type: string, args?: Record<string, string> | undefined, retries?: number): Promise<any>;
128
+ post_json(object_type: string, args?: Record<string, unknown> | string | undefined): Promise<any>;
128
129
  }
129
130
  interface UserInfo {
130
131
  id: string;
131
132
  }
132
- export declare class Project {
133
- name: string;
133
+ interface RegisteredProject {
134
134
  id: string;
135
- org_id: string;
136
- constructor(name: string, id: string, org_id: string);
135
+ name: string;
136
+ }
137
+ declare class Project {
138
+ name?: string;
139
+ id?: string;
140
+ constructor({ name, id }: {
141
+ name?: string;
142
+ id?: string;
143
+ });
144
+ lazyInit(): Promise<RegisteredProject>;
145
+ }
146
+ export interface LogOptions {
147
+ asyncFlush?: boolean;
148
+ }
149
+ export declare class Logger {
150
+ private _lazyLogin;
151
+ private loggedIn;
152
+ private lazyProject;
153
+ private logOptions;
154
+ private bgLogger;
155
+ private lastStartTime;
156
+ kind: "logger";
157
+ constructor(lazyLogin: () => Promise<void>, lazyProject: Project, logOptions?: LogOptions);
158
+ private lazyLogin;
159
+ /**
160
+ * Log a single event. The event will be batched and uploaded behind the scenes if `logOptions.asyncFlush` is true.
161
+ *
162
+ * @param event The event to log.
163
+ * @param event.input: The arguments that uniquely define a user input (an arbitrary, JSON serializable object).
164
+ * @param event.output: The output of your application, including post-processing (an arbitrary, JSON serializable object), that allows you to determine whether the result is correct or not. For example, in an app that generates SQL queries, the `output` should be the _result_ of the SQL query generated by the model, not the query itself, because there may be multiple valid queries that answer a single question.
165
+ * @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
166
+ * @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare logs.
167
+ * @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
168
+ * @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically and should not be specified: "start", "end".
169
+ * @param event.id: (Optional) a unique identifier for the event. If you don't provide one, BrainTrust will generate one for you.
170
+ * :returns: The `id` of the logged event.
171
+ */
172
+ log(event: Readonly<ExperimentLogPartialArgs>): Promise<string>;
173
+ /**
174
+ * Create a new toplevel span. The name parameter is optional and defaults to "root".
175
+ *
176
+ * See `Span.startSpan` for full details.
177
+ */
178
+ startSpan(args?: StartSpanOptionalNameArgs): Promise<Span>;
179
+ /**
180
+ * Wrapper over `Logger.startSpan`, which passes the initialized `Span` it to the given callback and ends it afterwards. See `Span.traced` for full details.
181
+ */
182
+ traced<R>(callback: (span: Span) => R, args?: StartSpanOptionalNameArgs & SetCurrentArg): Promise<R>;
183
+ flush(): Promise<void>;
137
184
  }
138
185
  export type IdField = {
139
186
  id: string;
@@ -177,18 +224,23 @@ interface DatasetEvent {
177
224
  user_id: string;
178
225
  created: string;
179
226
  }
180
- type LogEvent = ExperimentEvent | DatasetEvent;
227
+ type LoggingEvent = Omit<ExperimentEvent, "experiment_id"> & {
228
+ org_id: string;
229
+ log_id: "g";
230
+ };
231
+ type BackgroundLogEvent = ExperimentEvent | DatasetEvent | LoggingEvent;
181
232
  export interface DatasetRecord {
182
233
  id: string;
183
234
  input: any;
184
235
  output: any;
185
236
  metadata: any;
186
237
  }
187
- declare class LogThread {
238
+ declare class BackgroundLogger {
188
239
  private items;
189
240
  private active_flush;
190
241
  private active_flush_resolved;
191
- log(items: LogEvent[]): void;
242
+ constructor();
243
+ log(items: BackgroundLogEvent[]): void;
192
244
  flush_once(batchSize?: number): Promise<string[]>;
193
245
  flush(): Promise<void>;
194
246
  }
@@ -233,6 +285,12 @@ export declare function init(project: string, options?: Readonly<InitOptions>):
233
285
  * @param options.setCurrent If true (default), set the currently-active experiment to the newly-created one. Equivalent to calling `braintrust.withCurrent(experiment, callback)`.
234
286
  */
235
287
  export declare function withExperiment<R>(project: string, callback: (experiment: Experiment) => R, options?: Readonly<InitOptions & SetCurrentArg>): Promise<R>;
288
+ /**
289
+ * Wrapper over `braintrust.initLogger`, which passes the initialized `Logger` it to the given callback and closes it afterwards. See `braintrust.initLogger` for full details.
290
+ *
291
+ * @param options.setCurrent If true (default), set the currently-active logger to the newly-created one. Equivalent to calling `braintrust.withCurrent(logger, callback)`.
292
+ */
293
+ export declare function withLogger<R>(callback: (logger: Logger) => R, options?: Readonly<InitLoggerOptions & SetCurrentArg>): Promise<R>;
236
294
  type InitDatasetOptions = {
237
295
  dataset?: string;
238
296
  description?: string;
@@ -263,6 +321,30 @@ export declare function initDataset(project: string, options?: Readonly<InitData
263
321
  * Wrapper over `braintrust.initDataset`, which passes the initialized `Dataset` it to the given callback and closes it afterwards. See `braintrust.initDataset` for full details.
264
322
  */
265
323
  export declare function withDataset<R>(project: string, callback: (dataset: Dataset) => R, options?: Readonly<InitDatasetOptions>): Promise<R>;
324
+ type InitLoggerOptions = {
325
+ projectName?: string;
326
+ projectId?: string;
327
+ asyncFlush?: boolean;
328
+ apiUrl?: string;
329
+ apiKey?: string;
330
+ orgName?: string;
331
+ disableCache?: boolean;
332
+ };
333
+ /**
334
+ * Create a new logger in a specified project. If the project does not exist, it will be created.
335
+ *
336
+ * @param options Additional options for configuring init().
337
+ * @param options.projectName The name of the project to log into. If unspecified, will default to the Global project.
338
+ * @param options.projectId The id of the project to log into. This takes precedence over projectName if specified.
339
+ * @param options.asyncFlush If true, will log asynchronously in the background. Otherwise, will log synchronously. (false by default, to support serverless environments)
340
+ * @param options.apiUrl The URL of the Braintrust API. Defaults to https://www.braintrustdata.com.
341
+ * @param options.apiKey The API key to use. If the parameter is not specified, will try to use the `BRAINTRUST_API_KEY` environment variable. If no API
342
+ * key is specified, will prompt the user to login.
343
+ * @param options.orgName (Optional) The name of a specific organization to connect to. This is useful if you belong to multiple.
344
+ * @param options.disableCache Do not use cached login information.
345
+ * @returns The newly created Logger.
346
+ */
347
+ export declare function initLogger(options?: Readonly<InitLoggerOptions>): Logger;
266
348
  /**
267
349
  * Log into Braintrust. This will prompt you for your API token, which you can find at
268
350
  * https://www.braintrustdata.com/app/token. This method is called automatically by `init()`.
@@ -305,6 +387,10 @@ export declare function summarize(options?: {
305
387
  * Returns the currently-active experiment (set by `braintrust.withExperiment` or `braintrust.withCurrent`). Returns undefined if no current experiment has been set.
306
388
  */
307
389
  export declare function currentExperiment(): Experiment | undefined;
390
+ /**
391
+ * Returns the currently-active logger (set by `braintrust.withLogger` or `braintrust.withCurrent`). Returns undefined if no current logger has been set.
392
+ */
393
+ export declare function currentLogger(): Logger | undefined;
308
394
  /**
309
395
  * Return the currently-active span for logging (set by `traced` or `braintrust.withCurrent`). If there is no active span, returns a no-op span object, which supports the same interface as spans but does no logging.
310
396
  *
@@ -312,11 +398,16 @@ export declare function currentExperiment(): Experiment | undefined;
312
398
  */
313
399
  export declare function currentSpan(): Span;
314
400
  /**
315
- * Toplevel function for starting a span. If there is a currently-active span, the new span is created as a subspan. Otherwise, if there is a currently-active experiment, the new span is created as a toplevel span. Otherwise, it returns a no-op span object.
401
+ * Toplevel function for starting a span. It checks the following (in precedence order):
402
+ * * Currently-active span
403
+ * * Currently-active experiment
404
+ * * Currently-active logger
405
+ *
406
+ * and creates a span in the first one that is active. If none of these are active, it returns a no-op span object.
316
407
  *
317
408
  * Unless a name is explicitly provided, the name of the span will be the name of the calling function, or "root" if no meaningful name can be determined.
318
409
  *
319
- * We recommend running spans within a callback (using `startSpanWithinCallback`) to automatically mark them as current and ensure they are terminated. If you wish to start a span outside a callback, be sure to terminate it with `span.end()`.
410
+ * We recommend running spans within a callback (using `traced`) to automatically mark them as current and ensure they are terminated. If you wish to start a span outside a callback, be sure to terminate it with `span.end()`.
320
411
  *
321
412
  * See `Span.startSpan` for full details.
322
413
  */
@@ -331,7 +422,7 @@ export declare function traced<R>(callback: (span: Span) => R, args?: StartSpanO
331
422
  * @param object: The experiment or span to be marked as current.
332
423
  * @param callback: The callback to be run under the scope of the current object.
333
424
  */
334
- export declare function withCurrent<R>(object: Experiment | Span, callback: () => R): R;
425
+ export declare function withCurrent<R>(object: Experiment | Logger | Span, callback: () => R): R;
335
426
  /**
336
427
  * An experiment is a collection of logged events, such as model inputs and outputs, which represent
337
428
  * a snapshot of your application at a particular point in time. An experiment is meant to capture more
@@ -345,16 +436,16 @@ export declare function withCurrent<R>(object: Experiment | Span, callback: () =
345
436
  * You should not create `Experiment` objects directly. Instead, use the `braintrust.init()` method.
346
437
  */
347
438
  export declare class Experiment {
348
- readonly project: Project;
439
+ readonly project: RegisteredProject;
349
440
  readonly id: string;
350
441
  readonly name: string;
351
442
  readonly user_id: string;
352
443
  readonly dataset?: Dataset;
353
- private logger;
444
+ private bgLogger;
354
445
  private lastStartTime;
355
446
  private finished;
356
447
  kind: "experiment";
357
- constructor(project: Project, id: string, name: string, user_id: string, dataset?: Dataset);
448
+ constructor(project: RegisteredProject, id: string, name: string, user_id: string, dataset?: Dataset);
358
449
  /**
359
450
  * Log a single event to the experiment. The event will be batched and uploaded behind the scenes.
360
451
  *
@@ -364,7 +455,7 @@ export declare class Experiment {
364
455
  * @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate your experiments while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
365
456
  * @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare experiments.
366
457
  * @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
367
- * @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically and should not be specified: "start", "end", "caller_functionname", "caller_filename", "caller_lineno".
458
+ * @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically and should not be specified: "start", "end".
368
459
  * @param event.id: (Optional) a unique identifier for the event. If you don't provide one, BrainTrust will generate one for you.
369
460
  * @param event.dataset_record_id: (Optional) the id of the dataset record that this event is associated with. This field is required if and only if the experiment is associated with a dataset.
370
461
  * @param event.inputs: (Deprecated) the same as `input` (will be removed in a future version).
@@ -410,17 +501,16 @@ export declare class Experiment {
410
501
  */
411
502
  export declare class SpanImpl implements Span {
412
503
  private finished;
413
- private experimentLogger;
504
+ private bgLogger;
414
505
  private internalData;
415
506
  private isMerge;
416
507
  id: string;
417
508
  span_id: string;
418
509
  root_span_id: string;
419
- private _project_id;
420
- private _experiment_id;
510
+ private readonly _object_info;
421
511
  kind: "span";
422
512
  constructor(args: {
423
- experimentLogger: LogThread;
513
+ bgLogger: BackgroundLogger;
424
514
  name: string;
425
515
  spanAttributes?: Record<any, any>;
426
516
  startTime?: number;
@@ -428,6 +518,8 @@ export declare class SpanImpl implements Span {
428
518
  event?: ExperimentLogPartialArgs & Partial<IdField>;
429
519
  } & ({
430
520
  rootExperiment: Experiment;
521
+ } | {
522
+ rootProject: RegisteredProject;
431
523
  } | {
432
524
  parentSpan: SpanImpl;
433
525
  }));
@@ -446,7 +538,7 @@ export declare class SpanImpl implements Span {
446
538
  * You should not create `Dataset` objects directly. Instead, use the `braintrust.initDataset()` method.
447
539
  */
448
540
  export declare class Dataset {
449
- readonly project: Project;
541
+ readonly project: RegisteredProject;
450
542
  readonly id: string;
451
543
  readonly name: string;
452
544
  readonly user_id: string;
@@ -454,7 +546,7 @@ export declare class Dataset {
454
546
  private _fetchedData?;
455
547
  private logger;
456
548
  private finished;
457
- constructor(project: Project, id: string, name: string, user_id: string, pinnedVersion?: string);
549
+ constructor(project: RegisteredProject, id: string, name: string, user_id: string, pinnedVersion?: string);
458
550
  /**
459
551
  * Insert a single record to the dataset. The record will be batched and uploaded behind the scenes. If you pass in an `id`,
460
552
  * and a record with that `id` already exists, it will be overwritten (upsert).
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/axios/index.d.ts","../node_modules/@types/uuid/index.d.ts","../src/isomorph.ts","../src/util.ts","../src/merge_row_batch.ts","../src/logger.ts","../src/browser.ts","../src/cache.ts","../node_modules/esbuild/lib/main.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@nodelib/fs.stat/out/types/index.d.ts","../node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../node_modules/@nodelib/fs.stat/out/settings.d.ts","../node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../node_modules/@nodelib/fs.stat/out/index.d.ts","../node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../node_modules/@nodelib/fs.scandir/out/settings.d.ts","../node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../node_modules/@nodelib/fs.scandir/out/index.d.ts","../node_modules/@nodelib/fs.walk/out/types/index.d.ts","../node_modules/@nodelib/fs.walk/out/settings.d.ts","../node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../node_modules/@nodelib/fs.walk/out/index.d.ts","../node_modules/minimatch/dist/cjs/ast.d.ts","../node_modules/minimatch/dist/cjs/escape.d.ts","../node_modules/minimatch/dist/cjs/unescape.d.ts","../node_modules/minimatch/dist/cjs/index.d.ts","../node_modules/@types/argparse/index.d.ts","../node_modules/@types/pluralize/index.d.ts","../node_modules/@types/cli-progress/index.d.ts","../src/progress.ts","../node_modules/@types/graceful-fs/index.d.ts","../src/jest/tryrealpath.ts","../src/jest/nodemodulespaths.ts","../node_modules/chalk/index.d.ts","../../autoevals/jsdist/base.d.ts","../../autoevals/jsdist/oai.d.ts","../../autoevals/jsdist/templates.d.ts","../../autoevals/jsdist/llm.d.ts","../../autoevals/jsdist/string.d.ts","../../autoevals/jsdist/number.d.ts","../../autoevals/jsdist/json.d.ts","../../autoevals/jsdist/index.d.ts","../src/framework.ts","../node_modules/simple-git/dist/src/lib/tasks/task.d.ts","../node_modules/simple-git/dist/src/lib/types/tasks.d.ts","../node_modules/simple-git/dist/src/lib/errors/git-error.d.ts","../node_modules/simple-git/dist/src/lib/types/handlers.d.ts","../node_modules/simple-git/dist/src/lib/types/index.d.ts","../node_modules/simple-git/dist/src/lib/tasks/log.d.ts","../node_modules/simple-git/dist/typings/response.d.ts","../node_modules/simple-git/dist/src/lib/responses/getremotesummary.d.ts","../node_modules/simple-git/dist/src/lib/args/pathspec.d.ts","../node_modules/simple-git/dist/src/lib/tasks/apply-patch.d.ts","../node_modules/simple-git/dist/src/lib/tasks/check-is-repo.d.ts","../node_modules/simple-git/dist/src/lib/tasks/clean.d.ts","../node_modules/simple-git/dist/src/lib/tasks/clone.d.ts","../node_modules/simple-git/dist/src/lib/tasks/config.d.ts","../node_modules/simple-git/dist/src/lib/tasks/grep.d.ts","../node_modules/simple-git/dist/src/lib/tasks/reset.d.ts","../node_modules/simple-git/dist/src/lib/tasks/version.d.ts","../node_modules/simple-git/dist/typings/types.d.ts","../node_modules/simple-git/dist/src/lib/errors/git-construct-error.d.ts","../node_modules/simple-git/dist/src/lib/errors/git-plugin-error.d.ts","../node_modules/simple-git/dist/src/lib/errors/git-response-error.d.ts","../node_modules/simple-git/dist/src/lib/errors/task-configuration-error.d.ts","../node_modules/simple-git/dist/typings/errors.d.ts","../node_modules/simple-git/dist/typings/simple-git.d.ts","../node_modules/simple-git/dist/typings/index.d.ts","../src/gitutil.ts","../src/stackutil.ts","../src/node.ts","../src/cli.ts","../src/index.ts","../node_modules/openai/dist/configuration.d.ts","../node_modules/openai/node_modules/axios/index.d.ts","../node_modules/openai/dist/base.d.ts","../node_modules/openai/dist/api.d.ts","../node_modules/openai/dist/index.d.ts","../src/oai.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"1d729ea435a93e1a70519d06a6f13fa418c4c39a52b69e6db86750ebfcdf5554","95c617b16c4765ff6de307629b6918181908bee82a59fca0b2c95f170a4be7ea",{"version":"7d8ad3a285ff54b1fc3f5bfd3eda08947d88e9f0b6b94210680bc817da07f3b9","signature":"6cd169f65455d7a94acb9f1d97cf8f71a5bfae0eda688ebfbcad9824a2113105"},{"version":"ef5ed92e30f4e4473b87fc40233bafefcd6e1a54bbf0226027fef370db4a1e3a","signature":"880ce4c1d8ee57f7d534f75adc9386ce87f2dea2b84f9b24f6539dbc677c76c2"},{"version":"7c68682b787dd2ff3ffd394df7e0a186f7e665d2d4490bb0fc87275217953293","signature":"1deac3c94c91ac1b2e60d29a14b4d4eb1e2964d005b7614a372c9eded6a40f92"},{"version":"f0687c3deef07761d548cea0cc5a40ccfb20b4dcde615a8f916472655def9b0a","signature":"f7a671a04511af8e52fcda88d9388a7181e450be5fc7415fdfcfc6b5b49921a5","affectsGlobalScope":true},"c967d7ca4d2ecc37d4a12833fad823f02e935542f6be307214ea7d2a9af02995",{"version":"43361e6b831db1ef828f60d9219c09bfc43acb1b75ce86ead48f557a0935c0d2","signature":"b4324240466cc26262b0a4876ba6e405a8ad714cd15d4e309b765a3b41d90fb9"},"850040826cfa77593d44f44487133af21917f4f21507258bd4269501b80d32f0","587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"c81c51f43e343b6d89114b17341fb9d381c4ccbb25e0ee77532376052c801ba7","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","f302f3a47d7758f67f2afc753b9375d6504dde05d2e6ecdb1df50abbb131fc89","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"8d74c73e21579ffe9f77ce969bc0317470c63797bd4719c8895a60ce6ae6a263","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","765f9f91293be0c057d5bf2b59494e1eac70efae55ff1c27c6e47c359bc889d2","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","3122a3f1136508a27a229e0e4e2848299028300ffa11d0cdfe99df90c492fe20","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"ac0c77cd7db52b3c278bdd1452ce754014835493d05b84535f46854fdc2063b2","affectsGlobalScope":true},"b9f36877501f2ce0e276e993c93cd2cf325e78d0409ec4612b1eb9d6a537e60b","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"5810080a0da989a944d3b691b7b479a4a13c75947fb538abb8070710baa5ccee","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","c58642af30c06a8e250d248a747ceb045af9a92d8cab22478d80c3bef276bfd5","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270",{"version":"13a50542a358c093fee2d204915241f85ca4f571262ea159960610c21a644f8a","affectsGlobalScope":true},{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","5bc85813bfcb6907cc3a960fec8734a29d7884e0e372515147720c5991b8bc22","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"4d06f3abc2a6aae86f1be39e397372f74fb6e7964f594d645926b4a3419cc15d","affectsGlobalScope":true},{"version":"0e08c360c9b5961ecb0537b703e253842b3ded53151ee07024148219b61a8baf","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"562e1951bb48e89df7b821d998bfcd9458d93b0afd06cf6db8286606da5f21fd","46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","c56ef8201a294d65d1132160ebc76ed0c0a98dcf983d20775c8c8c0912210572","de0199a112f75809a7f80ec071495159dcf3e434bc021347e0175627398264c3","1a2bed55cfa62b4649485df27c0e560b04d4da4911e3a9f0475468721495563f","854045924626ba585f454b53531c42aed4365f02301aa8eca596423f4675b71f","dac69319e7c96790211dd55fbb25831b7bf6e63f7645297a2c8f46247d44d889","5adf3c3c7204b3614dbc585681a33ef598c68df387298859f9a2521cfb449437","6d8c708a5237a8508ee8553f22143a6d2fb60807de0574b41622c1e281b04c6d",{"version":"d096d550acd00bd6d66825d9a4e572121bd854b28edc5ae2c1d4e80d51a147a9","signature":"46966a0da8f681c479166dd3060b63d3cafc3d5e9e218157490f3697122a3e57"},"bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e",{"version":"c0b4084226d4ad0a3c78580c50f85985f4a3e808eb59a15c9fb389c8349f9056","signature":"f155bcfea5ae8b647b26fef54caf159a514950ac9cb3c192dcfab787d4588eec"},{"version":"0f3a9fccbf341d90a4be583161e6415c8c0543f5dd180419ea13e3db991ccca0","signature":"d4cb0878684926011f20ef763f982c78e1b0b699c0faefee31d2a7bdcf44a7bb"},"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","26ed2b3579b00785d7b8028002d5e638444e32e1fad135100a2419e48e5fb458","41274c6cc805d2945895a3654a9fc6bfd2339f2feb647ab5c5f4df664a04cf53","e725e4e013e946cccba3ec0fb642af7b5b9bd7872357b435ffe551dd80d552bc","b8dcce8ae07139e9f4c6019db31d3d1105806025d41e04a40f38cdd0d2dab92f","209dc81a1af545c80808f08403929d4a28791b0c059f3a4dd5b0724bf142fe03","1f6c6d022f61fe4e98a6fc773e400cead9988bf2353290472d7205dec0604b8f","4abcc60b395352b0b1400e3ee5e4b345c54daa6bd86a6ef39bfb3a66bea3daf0","f1535d688ff92c7f16fcd4ff415413edef056ab63008cbec0ac1a1abbefd8f6b",{"version":"a36c9c2c5eaec74474701d751fd6fb7f6d5f060ff6716403f3ae0ee02c882def","signature":"4a5f3983d345869cd199856f4cafba106a9012b6d7f93e6189238475f802e207","affectsGlobalScope":true},"82c661f1f20d29212d2e0408bee2e0f54bf8930cdcdd88f23ef8e03e4618afb4","d53d8a71b9525be3fb65c331f20db99b826edfa922703578af284736dc780db5","6256cf36c8ae7e82bff606595af8fe08a06f8478140fcf304ee2f10c7716ddc8","2ba0457b958954b9b2041077df992fad015e85c615dc1ccebeddb561d4ab89cf","81c4fd49117bc25b8aac796a345db4315cc31861f61772da6bd405989ede0f79","1f8d4c8257ba50385865ce887940c8fdc745bcf3cea2dc09173bc8d3320b6efe","8459a11cb29556837148a3f82ccff6f3d9745070c3ed77264e279e7fe35ed0b7","7c774169686976056434799723bd7a48348df9d2204b928a0b77920505585214","5e95379e81e2d373e5235cedc4579938e39db274a32cfa32f8906e7ff6698763","d3c8a891b0554f4319651b5c89c2d91a442a792bf84afcbc399be033b96b4abd","8758b438b12ea50fb8b678d29ab0ef42d77abfb801cec481596ce6002b537a6f","88074e936d33e224b83f81eebbaf835467e1c0a6ba1239b950e6476dd7f73356","c895675912a8b2d0dcb13d24433757d233de16a3bb5c60f7d903099d96d61ea8","f73cf81342d2a25b65179c262ca7c38df023969129094607d0eb52510a56f10f","e7d7e67bd66b30f2216e4678b97bb09629a2b31766a79119acaa30e3005ef5fb","4a7b9005bef99460ba60da67219f0aff852cfd44038f17626bf59a6b5c6960b5","e137f087bda0256410b28743ef9a1bf57a4cafd43ffa6b62d5c17a8f5a08b3b5","fa8d9c5ea6ad2a5d3d6ee7703cfe1ddd962f1e4da08a370c6db642b1a1a091b8","af504042a6db047c40cc0aeb14550bbc954f194f2b8c5ad8944f2da502f45bf5","5b25b6ab5ad6c17f90b592162b2e9978ad8d81edf24cd3957306eb6e5edb89a9","24693bd77ac3be0b16e564d0ab498a397feb758ce7f4ed9f13478d566e3aafde","208dad548b895c7d02465de6ba79064b7c67bc4d94e5227b09f21d58790e634c","048c0ced65fa41fbf4bcc3d5e8e5b6f6c7f27335ceb54d401be654e821adbc08","f1c7ab18a927d1a9e3a452ef9b5d2d636dc7f39a116add1a48b0b78a323f19eb","9a57d654b0a0e4bf56a8eb0aa3ede1c7d349cec6220e36b5288c26626c8688ed",{"version":"58110fc19e964fec56d787ad4288b6a47d054676983d798a883c19772be222a0","signature":"68212fb8e2c0dae39c22959cf18904f22a1315a856c20173484371cbb74addbf"},{"version":"282c7c74d33d5ec6a9067728647227358018bf878a6c381973efd5be87f0d2a8","signature":"eef6c9e9e2ced98a276734cb82f81b12d154026659e84128ad42a3a69caced38"},{"version":"81794b7644e4c630704874822f117724fee861c5958c09db78158d995968a951","signature":"1518a19a9cb02ce4439e1bd5d07e5dd4f496d4598142ff82264b40785ba28789"},{"version":"c11cb19203da3fb0e0e73228838d57ef36bf392322970075aa0297a9d9577b16","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"334d16141236880327094c2a42341edbe3dfa6f382e3180dd998eb1c133a0e62","signature":"6c85d798db2f35d3c202acc3ebfc4b8ca84a3a1b460ca6a0616660453995496c"},"3ac893bb831cf929af812392e1568467766536d79abd4e29d6ae653695c18cdd","2808645b990069e5f8b5ff14c9f1e6077eb642583c3f7854012d60757f23c70e","98cd87f84eb134151b0b760d49e09f0ae3ca01d9f86e6b64f6bb933cc4a40b29","db750d991d0c6e773c114cfe170c5ee4fc1bea43364e0efa5cecb03d198be80a","c5dde9dd9e1bf7168d8a2480a31f9799158f84e3aa1bb061fd09a0cf5a1fcb14",{"version":"e9ffdbc59d4b3dbbfce1f2a1dbb757d88c54f77af3de24be8839aa3f03492b44","signature":"4ce870ab24a6630dd481ccb3c2b5929e9e5d9090ff003514f1dd1613e6053ee8"}],"root":[[46,51],130,132,133,143,[169,173],179],"options":{"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[99],[99,135,137,138,139,140,141],[99,135],[99,135,136,137],[99,111,112],[99,112,113,114,115],[99,106,112,114],[99,111,113],[70,99,106],[70,99,106,107],[99,107,108,109,110],[99,107,109],[99,108],[87,99,106,116,117,118,121],[99,117,118,120],[69,99,106,116,117,118,119],[99,118],[99,116,117],[99,106,116],[69,99,106],[53,99],[56,99],[57,62,90,99],[58,69,70,77,87,98,99],[58,59,69,77,99],[60,99],[61,62,70,78,99],[62,87,95,99],[63,65,69,77,99],[64,99],[65,66,99],[69,99],[67,69,99],[69,70,71,87,98,99],[69,70,71,84,87,90,99],[99,103],[65,69,72,77,87,98,99],[69,70,72,73,77,87,95,98,99],[72,74,87,95,98,99],[53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105],[69,75,99],[76,98,99],[65,69,77,87,99],[78,99],[79,99],[56,80,99],[81,97,99,103],[82,99],[83,99],[69,84,85,99],[84,86,99,101],[57,69,87,88,89,90,99],[57,87,89,99],[87,88,99],[90,99],[91,99],[56,87,99],[69,93,94,99],[93,94,99],[62,77,87,95,99],[96,99],[77,97,99],[57,72,83,98,99],[62,99],[87,99,100],[99,101],[99,102],[57,62,69,71,80,87,98,99,101,103],[87,99,104],[99,126],[99,123,124,125],[99,174,175,176],[99,174,175],[99,174,177],[99,146,148],[99,148],[99,146],[99,144,148,168],[99,144,148],[99,168],[99,148,168],[58,99,106,145,147],[99,106,144,148],[99,146,162,163,164,165],[99,150,161,166,167],[99,149],[99,150,161,166],[99,148,149,151,152,153,154,155,156,157,158,159,160],[49,99],[78,79,99],[45,49,52,70,78,79,99,122,126,127,128,130,133,143,171],[49,99,128,130,134,142],[49,99,143,171],[44,99],[79,99,132],[99,131],[44,45,46,47,48,99],[47,99],[44,46,56,72,74,99,169,170],[99,178],[99,129],[46,79,99],[49,130,134,142],[168],[49,143],[44],[44,46,47],[178],[46]],"referencedMap":[[135,1],[142,2],[141,3],[138,4],[140,3],[136,1],[139,3],[137,1],[113,5],[116,6],[115,7],[114,8],[112,9],[108,10],[111,11],[110,12],[109,13],[107,9],[122,14],[121,15],[120,16],[119,17],[118,18],[117,19],[127,1],[129,20],[131,9],[53,21],[54,21],[56,22],[57,23],[58,24],[59,25],[60,26],[61,27],[62,28],[63,29],[64,30],[65,31],[66,31],[68,32],[67,33],[69,32],[70,34],[71,35],[55,36],[105,1],[72,37],[73,38],[74,39],[106,40],[75,41],[76,42],[77,43],[78,44],[79,45],[80,46],[81,47],[82,48],[83,49],[84,50],[85,50],[86,51],[87,52],[89,53],[88,54],[90,55],[91,56],[92,57],[93,58],[94,59],[95,60],[96,61],[97,62],[98,63],[99,64],[100,65],[101,66],[102,67],[103,68],[104,69],[128,1],[45,1],[44,1],[134,1],[52,1],[123,70],[124,70],[126,71],[125,70],[177,72],[176,73],[174,1],[178,74],[175,1],[152,1],[162,75],[146,76],[163,75],[164,77],[165,77],[151,1],[153,76],[154,76],[155,78],[156,79],[157,80],[158,80],[149,81],[159,76],[144,76],[160,80],[147,77],[148,82],[145,83],[166,84],[168,85],[150,86],[167,87],[161,88],[42,1],[43,1],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[32,1],[29,1],[30,1],[31,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[50,89],[51,90],[172,91],[143,92],[169,80],[173,93],[46,94],[133,95],[132,96],[49,97],[48,98],[171,99],[179,100],[130,101],[170,102],[47,1]],"exportedModulesMap":[[135,1],[142,2],[141,3],[138,4],[140,3],[136,1],[139,3],[137,1],[113,5],[116,6],[115,7],[114,8],[112,9],[108,10],[111,11],[110,12],[109,13],[107,9],[122,14],[121,15],[120,16],[119,17],[118,18],[117,19],[127,1],[129,20],[131,9],[53,21],[54,21],[56,22],[57,23],[58,24],[59,25],[60,26],[61,27],[62,28],[63,29],[64,30],[65,31],[66,31],[68,32],[67,33],[69,32],[70,34],[71,35],[55,36],[105,1],[72,37],[73,38],[74,39],[106,40],[75,41],[76,42],[77,43],[78,44],[79,45],[80,46],[81,47],[82,48],[83,49],[84,50],[85,50],[86,51],[87,52],[89,53],[88,54],[90,55],[91,56],[92,57],[93,58],[94,59],[95,60],[96,61],[97,62],[98,63],[99,64],[100,65],[101,66],[102,67],[103,68],[104,69],[128,1],[45,1],[44,1],[134,1],[52,1],[123,70],[124,70],[126,71],[125,70],[177,72],[176,73],[174,1],[178,74],[175,1],[152,1],[162,75],[146,76],[163,75],[164,77],[165,77],[151,1],[153,76],[154,76],[155,78],[156,79],[157,80],[158,80],[149,81],[159,76],[144,76],[160,80],[147,77],[148,82],[145,83],[166,84],[168,85],[150,86],[167,87],[161,88],[42,1],[43,1],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[32,1],[29,1],[30,1],[31,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[50,89],[143,103],[169,104],[173,105],[46,106],[49,107],[179,108],[170,109]],"semanticDiagnosticsPerFile":[135,142,141,138,140,136,139,137,113,116,115,114,112,108,111,110,109,107,122,121,120,119,118,117,127,129,131,53,54,56,57,58,59,60,61,62,63,64,65,66,68,67,69,70,71,55,105,72,73,74,106,75,76,77,78,79,80,81,82,83,84,85,86,87,89,88,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,128,45,44,134,52,123,124,126,125,177,176,174,178,175,152,162,146,163,164,165,151,153,154,155,156,157,158,149,159,144,160,147,148,145,166,168,150,167,161,42,43,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,32,29,30,31,33,7,34,39,40,35,36,37,38,1,41,50,51,172,143,169,173,46,133,132,49,48,171,179,130,170,47]},"version":"5.1.6"}
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/@types/uuid/index.d.ts","../src/isomorph.ts","../src/util.ts","../src/merge_row_batch.ts","../src/logger.ts","../src/browser.ts","../src/cache.ts","../node_modules/esbuild/lib/main.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@nodelib/fs.stat/out/types/index.d.ts","../node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../node_modules/@nodelib/fs.stat/out/settings.d.ts","../node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../node_modules/@nodelib/fs.stat/out/index.d.ts","../node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../node_modules/@nodelib/fs.scandir/out/settings.d.ts","../node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../node_modules/@nodelib/fs.scandir/out/index.d.ts","../node_modules/@nodelib/fs.walk/out/types/index.d.ts","../node_modules/@nodelib/fs.walk/out/settings.d.ts","../node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../node_modules/@nodelib/fs.walk/out/index.d.ts","../node_modules/minimatch/dist/cjs/ast.d.ts","../node_modules/minimatch/dist/cjs/escape.d.ts","../node_modules/minimatch/dist/cjs/unescape.d.ts","../node_modules/minimatch/dist/cjs/index.d.ts","../node_modules/@types/argparse/index.d.ts","../node_modules/@types/pluralize/index.d.ts","../node_modules/@types/cli-progress/index.d.ts","../src/progress.ts","../node_modules/@types/graceful-fs/index.d.ts","../src/jest/tryrealpath.ts","../src/jest/nodemodulespaths.ts","../node_modules/chalk/index.d.ts","../../autoevals/jsdist/base.d.ts","../../autoevals/jsdist/oai.d.ts","../../autoevals/jsdist/templates.d.ts","../../autoevals/jsdist/llm.d.ts","../../autoevals/jsdist/string.d.ts","../../autoevals/jsdist/number.d.ts","../../autoevals/jsdist/json.d.ts","../../autoevals/jsdist/index.d.ts","../src/framework.ts","../node_modules/simple-git/dist/src/lib/tasks/task.d.ts","../node_modules/simple-git/dist/src/lib/types/tasks.d.ts","../node_modules/simple-git/dist/src/lib/errors/git-error.d.ts","../node_modules/simple-git/dist/src/lib/types/handlers.d.ts","../node_modules/simple-git/dist/src/lib/types/index.d.ts","../node_modules/simple-git/dist/src/lib/tasks/log.d.ts","../node_modules/simple-git/dist/typings/response.d.ts","../node_modules/simple-git/dist/src/lib/responses/getremotesummary.d.ts","../node_modules/simple-git/dist/src/lib/args/pathspec.d.ts","../node_modules/simple-git/dist/src/lib/tasks/apply-patch.d.ts","../node_modules/simple-git/dist/src/lib/tasks/check-is-repo.d.ts","../node_modules/simple-git/dist/src/lib/tasks/clean.d.ts","../node_modules/simple-git/dist/src/lib/tasks/clone.d.ts","../node_modules/simple-git/dist/src/lib/tasks/config.d.ts","../node_modules/simple-git/dist/src/lib/tasks/grep.d.ts","../node_modules/simple-git/dist/src/lib/tasks/reset.d.ts","../node_modules/simple-git/dist/src/lib/tasks/version.d.ts","../node_modules/simple-git/dist/typings/types.d.ts","../node_modules/simple-git/dist/src/lib/errors/git-construct-error.d.ts","../node_modules/simple-git/dist/src/lib/errors/git-plugin-error.d.ts","../node_modules/simple-git/dist/src/lib/errors/git-response-error.d.ts","../node_modules/simple-git/dist/src/lib/errors/task-configuration-error.d.ts","../node_modules/simple-git/dist/typings/errors.d.ts","../node_modules/simple-git/dist/typings/simple-git.d.ts","../node_modules/simple-git/dist/typings/index.d.ts","../src/gitutil.ts","../src/stackutil.ts","../src/node.ts","../src/cli.ts","../src/index.ts","../node_modules/openai/dist/configuration.d.ts","../node_modules/openai/node_modules/axios/index.d.ts","../node_modules/openai/dist/base.d.ts","../node_modules/openai/dist/api.d.ts","../node_modules/openai/dist/index.d.ts","../src/oai.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"95c617b16c4765ff6de307629b6918181908bee82a59fca0b2c95f170a4be7ea",{"version":"e3e7b677e8ad626f8a801ed3f7b49ca3bfc17e869d265a489518b5c5558fd0fa","signature":"f31a68039c0234a972bc0bc4d9388907ece056e3f76c6b9e880313639baa40d7"},{"version":"64c9045497da8cf23f9daab26492dbcd00a70cf54aab2e4496a0af13be8b47e4","signature":"5bd17925e159d4d5a2876cf05b47b92b3132acc7bee2d99ac10ba876ed4fe052"},{"version":"bcafb63b317100f6a35c18a3c513493a141ae524ff78e49134c6dbf9f9be5398","signature":"1deac3c94c91ac1b2e60d29a14b4d4eb1e2964d005b7614a372c9eded6a40f92"},{"version":"fb0821e1bf479c1e600fbc8a983c6607dce224b6f0b902d7f484feeeefd3a418","signature":"2eea5d973fe858488cc0fdafdf78ca43895e0e2b72df56b64338511972beac04","affectsGlobalScope":true},"c967d7ca4d2ecc37d4a12833fad823f02e935542f6be307214ea7d2a9af02995",{"version":"43361e6b831db1ef828f60d9219c09bfc43acb1b75ce86ead48f557a0935c0d2","signature":"b4324240466cc26262b0a4876ba6e405a8ad714cd15d4e309b765a3b41d90fb9"},"850040826cfa77593d44f44487133af21917f4f21507258bd4269501b80d32f0","587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"c81c51f43e343b6d89114b17341fb9d381c4ccbb25e0ee77532376052c801ba7","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","f302f3a47d7758f67f2afc753b9375d6504dde05d2e6ecdb1df50abbb131fc89","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"8d74c73e21579ffe9f77ce969bc0317470c63797bd4719c8895a60ce6ae6a263","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","765f9f91293be0c057d5bf2b59494e1eac70efae55ff1c27c6e47c359bc889d2","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","3122a3f1136508a27a229e0e4e2848299028300ffa11d0cdfe99df90c492fe20","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"ac0c77cd7db52b3c278bdd1452ce754014835493d05b84535f46854fdc2063b2","affectsGlobalScope":true},"b9f36877501f2ce0e276e993c93cd2cf325e78d0409ec4612b1eb9d6a537e60b","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"5810080a0da989a944d3b691b7b479a4a13c75947fb538abb8070710baa5ccee","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","c58642af30c06a8e250d248a747ceb045af9a92d8cab22478d80c3bef276bfd5","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270",{"version":"13a50542a358c093fee2d204915241f85ca4f571262ea159960610c21a644f8a","affectsGlobalScope":true},{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","5bc85813bfcb6907cc3a960fec8734a29d7884e0e372515147720c5991b8bc22","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"4d06f3abc2a6aae86f1be39e397372f74fb6e7964f594d645926b4a3419cc15d","affectsGlobalScope":true},{"version":"0e08c360c9b5961ecb0537b703e253842b3ded53151ee07024148219b61a8baf","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"562e1951bb48e89df7b821d998bfcd9458d93b0afd06cf6db8286606da5f21fd","46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","c56ef8201a294d65d1132160ebc76ed0c0a98dcf983d20775c8c8c0912210572","de0199a112f75809a7f80ec071495159dcf3e434bc021347e0175627398264c3","1a2bed55cfa62b4649485df27c0e560b04d4da4911e3a9f0475468721495563f","854045924626ba585f454b53531c42aed4365f02301aa8eca596423f4675b71f","dac69319e7c96790211dd55fbb25831b7bf6e63f7645297a2c8f46247d44d889","5adf3c3c7204b3614dbc585681a33ef598c68df387298859f9a2521cfb449437","6d8c708a5237a8508ee8553f22143a6d2fb60807de0574b41622c1e281b04c6d",{"version":"d096d550acd00bd6d66825d9a4e572121bd854b28edc5ae2c1d4e80d51a147a9","signature":"46966a0da8f681c479166dd3060b63d3cafc3d5e9e218157490f3697122a3e57"},"bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e",{"version":"c0b4084226d4ad0a3c78580c50f85985f4a3e808eb59a15c9fb389c8349f9056","signature":"f155bcfea5ae8b647b26fef54caf159a514950ac9cb3c192dcfab787d4588eec"},{"version":"0f3a9fccbf341d90a4be583161e6415c8c0543f5dd180419ea13e3db991ccca0","signature":"d4cb0878684926011f20ef763f982c78e1b0b699c0faefee31d2a7bdcf44a7bb"},"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","26ed2b3579b00785d7b8028002d5e638444e32e1fad135100a2419e48e5fb458","41274c6cc805d2945895a3654a9fc6bfd2339f2feb647ab5c5f4df664a04cf53","e725e4e013e946cccba3ec0fb642af7b5b9bd7872357b435ffe551dd80d552bc","b8dcce8ae07139e9f4c6019db31d3d1105806025d41e04a40f38cdd0d2dab92f","209dc81a1af545c80808f08403929d4a28791b0c059f3a4dd5b0724bf142fe03","1f6c6d022f61fe4e98a6fc773e400cead9988bf2353290472d7205dec0604b8f","4abcc60b395352b0b1400e3ee5e4b345c54daa6bd86a6ef39bfb3a66bea3daf0","f1535d688ff92c7f16fcd4ff415413edef056ab63008cbec0ac1a1abbefd8f6b",{"version":"65b6b6917e5cdddd232210b25e542fdaf42aa88ca455f70de0aee21718053fb9","signature":"2e2354450a0babbe34406ef53c75354e7a64ebaccf441cffce9f669f23fe44af","affectsGlobalScope":true},"82c661f1f20d29212d2e0408bee2e0f54bf8930cdcdd88f23ef8e03e4618afb4","d53d8a71b9525be3fb65c331f20db99b826edfa922703578af284736dc780db5","6256cf36c8ae7e82bff606595af8fe08a06f8478140fcf304ee2f10c7716ddc8","2ba0457b958954b9b2041077df992fad015e85c615dc1ccebeddb561d4ab89cf","81c4fd49117bc25b8aac796a345db4315cc31861f61772da6bd405989ede0f79","1f8d4c8257ba50385865ce887940c8fdc745bcf3cea2dc09173bc8d3320b6efe","8459a11cb29556837148a3f82ccff6f3d9745070c3ed77264e279e7fe35ed0b7","7c774169686976056434799723bd7a48348df9d2204b928a0b77920505585214","5e95379e81e2d373e5235cedc4579938e39db274a32cfa32f8906e7ff6698763","d3c8a891b0554f4319651b5c89c2d91a442a792bf84afcbc399be033b96b4abd","8758b438b12ea50fb8b678d29ab0ef42d77abfb801cec481596ce6002b537a6f","88074e936d33e224b83f81eebbaf835467e1c0a6ba1239b950e6476dd7f73356","c895675912a8b2d0dcb13d24433757d233de16a3bb5c60f7d903099d96d61ea8","f73cf81342d2a25b65179c262ca7c38df023969129094607d0eb52510a56f10f","e7d7e67bd66b30f2216e4678b97bb09629a2b31766a79119acaa30e3005ef5fb","4a7b9005bef99460ba60da67219f0aff852cfd44038f17626bf59a6b5c6960b5","e137f087bda0256410b28743ef9a1bf57a4cafd43ffa6b62d5c17a8f5a08b3b5","fa8d9c5ea6ad2a5d3d6ee7703cfe1ddd962f1e4da08a370c6db642b1a1a091b8","af504042a6db047c40cc0aeb14550bbc954f194f2b8c5ad8944f2da502f45bf5","5b25b6ab5ad6c17f90b592162b2e9978ad8d81edf24cd3957306eb6e5edb89a9","24693bd77ac3be0b16e564d0ab498a397feb758ce7f4ed9f13478d566e3aafde","208dad548b895c7d02465de6ba79064b7c67bc4d94e5227b09f21d58790e634c","048c0ced65fa41fbf4bcc3d5e8e5b6f6c7f27335ceb54d401be654e821adbc08","f1c7ab18a927d1a9e3a452ef9b5d2d636dc7f39a116add1a48b0b78a323f19eb","9a57d654b0a0e4bf56a8eb0aa3ede1c7d349cec6220e36b5288c26626c8688ed",{"version":"58110fc19e964fec56d787ad4288b6a47d054676983d798a883c19772be222a0","signature":"68212fb8e2c0dae39c22959cf18904f22a1315a856c20173484371cbb74addbf"},{"version":"282c7c74d33d5ec6a9067728647227358018bf878a6c381973efd5be87f0d2a8","signature":"eef6c9e9e2ced98a276734cb82f81b12d154026659e84128ad42a3a69caced38"},{"version":"a186fc5737e99580a146363bb04fb3d44cd51cc86933f4650831071f5a2ccacf","signature":"1518a19a9cb02ce4439e1bd5d07e5dd4f496d4598142ff82264b40785ba28789"},{"version":"cc17e9bd64d707ffc6f5fdf9389aa81e6cdc931eaa26a2b185617c5a43040cc8","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"11005b96dd679ebb76321765f2593f38a0ffd514838066cbcd65a78de0382b7f","signature":"d62f53048fc577f8ebbd3c41cc9124d0aff23a20e146e55e4a573469d4cf601e"},"3ac893bb831cf929af812392e1568467766536d79abd4e29d6ae653695c18cdd","2808645b990069e5f8b5ff14c9f1e6077eb642583c3f7854012d60757f23c70e","98cd87f84eb134151b0b760d49e09f0ae3ca01d9f86e6b64f6bb933cc4a40b29","db750d991d0c6e773c114cfe170c5ee4fc1bea43364e0efa5cecb03d198be80a","c5dde9dd9e1bf7168d8a2480a31f9799158f84e3aa1bb061fd09a0cf5a1fcb14",{"version":"e9ffdbc59d4b3dbbfce1f2a1dbb757d88c54f77af3de24be8839aa3f03492b44","signature":"4ce870ab24a6630dd481ccb3c2b5929e9e5d9090ff003514f1dd1613e6053ee8"}],"root":[[46,51],130,132,133,143,[169,173],179],"options":{"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[99],[99,135,137,138,139,140,141],[99,135],[99,135,136,137],[99,111,112],[99,112,113,114,115],[99,106,112,114],[99,111,113],[70,99,106],[70,99,106,107],[99,107,108,109,110],[99,107,109],[99,108],[87,99,106,116,117,118,121],[99,117,118,120],[69,99,106,116,117,118,119],[99,118],[99,116,117],[99,106,116],[69,99,106],[53,99],[56,99],[57,62,90,99],[58,69,70,77,87,98,99],[58,59,69,77,99],[60,99],[61,62,70,78,99],[62,87,95,99],[63,65,69,77,99],[64,99],[65,66,99],[69,99],[67,69,99],[69,70,71,87,98,99],[69,70,71,84,87,90,99],[99,103],[65,69,72,77,87,98,99],[69,70,72,73,77,87,95,98,99],[72,74,87,95,98,99],[53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105],[69,75,99],[76,98,99],[65,69,77,87,99],[78,99],[79,99],[56,80,99],[81,97,99,103],[82,99],[83,99],[69,84,85,99],[84,86,99,101],[57,69,87,88,89,90,99],[57,87,89,99],[87,88,99],[90,99],[91,99],[56,87,99],[69,93,94,99],[93,94,99],[62,77,87,95,99],[96,99],[77,97,99],[57,72,83,98,99],[62,99],[87,99,100],[99,101],[99,102],[57,62,69,71,80,87,98,99,101,103],[87,99,104],[99,126],[99,123,124,125],[99,174,175,176],[99,174,175],[99,174,177],[99,146,148],[99,148],[99,146],[99,144,148,168],[99,144,148],[99,168],[99,148,168],[58,99,106,145,147],[99,106,144,148],[99,146,162,163,164,165],[99,150,161,166,167],[99,149],[99,150,161,166],[99,148,149,151,152,153,154,155,156,157,158,159,160],[49,99],[78,79,99],[45,49,52,70,78,79,99,122,126,127,128,130,133,143,171],[49,99,128,130,134,142],[49,99,143,171],[79,99,132],[99,131],[45,46,47,48,99],[47,99],[46,56,99,169,170],[99,178],[99,129],[46,79,99],[49,130,134,142],[168],[49,143],[46,47],[178],[46]],"referencedMap":[[135,1],[142,2],[141,3],[138,4],[140,3],[136,1],[139,3],[137,1],[113,5],[116,6],[115,7],[114,8],[112,9],[108,10],[111,11],[110,12],[109,13],[107,9],[122,14],[121,15],[120,16],[119,17],[118,18],[117,19],[127,1],[129,20],[131,9],[53,21],[54,21],[56,22],[57,23],[58,24],[59,25],[60,26],[61,27],[62,28],[63,29],[64,30],[65,31],[66,31],[68,32],[67,33],[69,32],[70,34],[71,35],[55,36],[105,1],[72,37],[73,38],[74,39],[106,40],[75,41],[76,42],[77,43],[78,44],[79,45],[80,46],[81,47],[82,48],[83,49],[84,50],[85,50],[86,51],[87,52],[89,53],[88,54],[90,55],[91,56],[92,57],[93,58],[94,59],[95,60],[96,61],[97,62],[98,63],[99,64],[100,65],[101,66],[102,67],[103,68],[104,69],[128,1],[45,1],[134,1],[52,1],[123,70],[124,70],[126,71],[125,70],[177,72],[176,73],[174,1],[178,74],[175,1],[152,1],[162,75],[146,76],[163,75],[164,77],[165,77],[151,1],[153,76],[154,76],[155,78],[156,79],[157,80],[158,80],[149,81],[159,76],[144,76],[160,80],[147,77],[148,82],[145,83],[166,84],[168,85],[150,86],[167,87],[161,88],[43,1],[44,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[33,1],[30,1],[31,1],[32,1],[34,1],[7,1],[35,1],[40,1],[41,1],[36,1],[37,1],[38,1],[39,1],[1,1],[42,1],[50,89],[51,90],[172,91],[143,92],[169,80],[173,93],[46,1],[133,94],[132,95],[49,96],[48,97],[171,98],[179,99],[130,100],[170,101],[47,1]],"exportedModulesMap":[[135,1],[142,2],[141,3],[138,4],[140,3],[136,1],[139,3],[137,1],[113,5],[116,6],[115,7],[114,8],[112,9],[108,10],[111,11],[110,12],[109,13],[107,9],[122,14],[121,15],[120,16],[119,17],[118,18],[117,19],[127,1],[129,20],[131,9],[53,21],[54,21],[56,22],[57,23],[58,24],[59,25],[60,26],[61,27],[62,28],[63,29],[64,30],[65,31],[66,31],[68,32],[67,33],[69,32],[70,34],[71,35],[55,36],[105,1],[72,37],[73,38],[74,39],[106,40],[75,41],[76,42],[77,43],[78,44],[79,45],[80,46],[81,47],[82,48],[83,49],[84,50],[85,50],[86,51],[87,52],[89,53],[88,54],[90,55],[91,56],[92,57],[93,58],[94,59],[95,60],[96,61],[97,62],[98,63],[99,64],[100,65],[101,66],[102,67],[103,68],[104,69],[128,1],[45,1],[134,1],[52,1],[123,70],[124,70],[126,71],[125,70],[177,72],[176,73],[174,1],[178,74],[175,1],[152,1],[162,75],[146,76],[163,75],[164,77],[165,77],[151,1],[153,76],[154,76],[155,78],[156,79],[157,80],[158,80],[149,81],[159,76],[144,76],[160,80],[147,77],[148,82],[145,83],[166,84],[168,85],[150,86],[167,87],[161,88],[43,1],[44,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[33,1],[30,1],[31,1],[32,1],[34,1],[7,1],[35,1],[40,1],[41,1],[36,1],[37,1],[38,1],[39,1],[1,1],[42,1],[50,89],[143,102],[169,103],[173,104],[49,105],[179,106],[170,107]],"semanticDiagnosticsPerFile":[135,142,141,138,140,136,139,137,113,116,115,114,112,108,111,110,109,107,122,121,120,119,118,117,127,129,131,53,54,56,57,58,59,60,61,62,63,64,65,66,68,67,69,70,71,55,105,72,73,74,106,75,76,77,78,79,80,81,82,83,84,85,86,87,89,88,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,128,45,134,52,123,124,126,125,177,176,174,178,175,152,162,146,163,164,165,151,153,154,155,156,157,158,149,159,144,160,147,148,145,166,168,150,167,161,43,44,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,50,51,172,143,169,173,46,133,132,49,48,171,179,130,170,47]},"version":"5.1.6"}
package/dist/util.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export declare const TRANSACTION_ID_FIELD = "_xact_id";
2
2
  export declare const IS_MERGE_FIELD = "_is_merge";
3
+ export declare const GLOBAL_PROJECT = "Global";
3
4
  export declare function runFinally<R>(f: () => R, finallyF: () => void): R;
4
5
  export declare function mergeDicts(mergeInto: Record<any, any>, mergeFrom: Record<any, any>): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "braintrust",
3
- "version": "0.0.61",
3
+ "version": "0.0.63",
4
4
  "description": "SDK for integrating Braintrust",
5
5
  "main": "./dist/index.js",
6
6
  "browser": {
@@ -14,13 +14,13 @@
14
14
  "build": "run-p build:*",
15
15
  "build:node": "esbuild --platform=node --bundle src/index.ts --outfile=dist/index.js",
16
16
  "build:cli": "esbuild --platform=node --bundle src/cli.ts --outfile=dist/cli.js --external:esbuild",
17
- "build:browser": "esbuild --minify --bundle src/browser.ts --outfile=dist/browser.js --format=esm",
17
+ "build:browser": "esbuild --bundle src/browser.ts --outfile=dist/browser.js --format=esm",
18
18
  "build:declarations": "tsc --declaration --emitDeclarationOnly --outDir dist",
19
19
  "clean": "rm -r dist/*",
20
20
  "watch": "run-p watch:*",
21
21
  "watch:node": "esbuild --platform=node --bundle src/index.ts --outfile=dist/index.js --watch=forever",
22
22
  "watch:cli": "esbuild --platform=node --bundle src/cli.ts --outfile=dist/cli.js --watch=forever --external:esbuild",
23
- "watch:browser": "esbuild --minify --bundle src/browser.ts --outfile=dist/browser.js --watch=forever --format=esm",
23
+ "watch:browser": "esbuild --bundle src/browser.ts --outfile=dist/browser.js --watch=forever --format=esm",
24
24
  "watch:declarations": "tsc --declaration --emitDeclarationOnly --outDir dist --watch",
25
25
  "docs": "npx typedoc --options typedoc.json src/index.ts",
26
26
  "test": "jest",
@@ -32,7 +32,6 @@
32
32
  "devDependencies": {
33
33
  "@nodelib/fs.walk": "^1.2.8",
34
34
  "@types/argparse": "^2.0.10",
35
- "@types/axios": "^0.14.0",
36
35
  "@types/cli-progress": "^3.11.0",
37
36
  "@types/graceful-fs": "^4.1.6",
38
37
  "@types/node": "^20.4.1",
@@ -46,7 +45,6 @@
46
45
  "dependencies": {
47
46
  "argparse": "^2.0.1",
48
47
  "autoevals": "^0.0.26",
49
- "axios": "^1.4.0",
50
48
  "chalk": "^4.1.2",
51
49
  "cli-progress": "^3.12.0",
52
50
  "esbuild": "^0.18.19",