braintrust 0.0.28 → 0.0.30
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.
- package/dist/browser.js +4 -3
- package/dist/cli.js +5513 -213
- package/dist/framework.d.ts +3 -2
- package/dist/index.js +135 -25
- package/dist/logger.d.ts +54 -7
- package/dist/node.d.ts +1 -0
- package/dist/progress.d.ts +18 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +10 -8
package/dist/framework.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Experiment } from "./logger";
|
|
2
2
|
import { Score } from "autoevals";
|
|
3
|
+
import { ProgressReporter } from "./progress";
|
|
3
4
|
export type Metadata = Record<string, unknown>;
|
|
4
5
|
export interface DatasetRecord<Input, Output> {
|
|
5
6
|
input: Input;
|
|
@@ -38,12 +39,12 @@ declare global {
|
|
|
38
39
|
}
|
|
39
40
|
export declare function Eval<Input, Output>(name: string, evaluator: Evaluator<Input, Output>): void;
|
|
40
41
|
export declare function getLoadedEvals(): EvaluatorFile;
|
|
41
|
-
export declare function runEvaluator(experiment: Experiment, evaluator: EvaluatorDef<unknown, unknown
|
|
42
|
+
export declare function runEvaluator(experiment: Experiment, evaluator: EvaluatorDef<unknown, unknown>, progressReporter: ProgressReporter, noSendLogs: boolean): Promise<{
|
|
42
43
|
results: {
|
|
43
44
|
output: any;
|
|
44
45
|
metadata: Metadata;
|
|
45
46
|
scores: Record<string, number>;
|
|
46
47
|
error: unknown;
|
|
47
48
|
}[];
|
|
48
|
-
summary: import("./logger").ExperimentSummary;
|
|
49
|
+
summary: import("./logger").ExperimentSummary | null;
|
|
49
50
|
}>;
|
package/dist/index.js
CHANGED
|
@@ -10852,6 +10852,8 @@ __export(src_exports, {
|
|
|
10852
10852
|
summarize: () => summarize
|
|
10853
10853
|
});
|
|
10854
10854
|
module.exports = __toCommonJS(src_exports);
|
|
10855
|
+
|
|
10856
|
+
// src/node.ts
|
|
10855
10857
|
var http2 = __toESM(require("http"));
|
|
10856
10858
|
var https2 = __toESM(require("https"));
|
|
10857
10859
|
|
|
@@ -17822,6 +17824,22 @@ async function getRepoStatus() {
|
|
|
17822
17824
|
};
|
|
17823
17825
|
}
|
|
17824
17826
|
|
|
17827
|
+
// src/node.ts
|
|
17828
|
+
function configureNode() {
|
|
17829
|
+
isomorph_default.makeAxios = (options) => {
|
|
17830
|
+
const httpAgent = new http2.Agent({ keepAlive: true });
|
|
17831
|
+
const httpsAgent = new https2.Agent({ keepAlive: true });
|
|
17832
|
+
return axios_default.create({
|
|
17833
|
+
httpAgent,
|
|
17834
|
+
httpsAgent,
|
|
17835
|
+
...options
|
|
17836
|
+
});
|
|
17837
|
+
};
|
|
17838
|
+
isomorph_default.getRepoStatus = getRepoStatus;
|
|
17839
|
+
isomorph_default.getPastNAncestors = getPastNAncestors;
|
|
17840
|
+
isomorph_default.getEnv = (name) => process.env[name];
|
|
17841
|
+
}
|
|
17842
|
+
|
|
17825
17843
|
// node_modules/uuid/dist/esm-node/rng.js
|
|
17826
17844
|
var import_crypto = __toESM(require("crypto"));
|
|
17827
17845
|
var rnds8Pool = new Uint8Array(256);
|
|
@@ -17879,6 +17897,7 @@ var ORG_ID = null;
|
|
|
17879
17897
|
var ORG_NAME = null;
|
|
17880
17898
|
var LOG_URL = null;
|
|
17881
17899
|
var LOGGED_IN = false;
|
|
17900
|
+
var TRANSACTION_ID_FIELD = "_xact_id";
|
|
17882
17901
|
var HTTPConnection = class {
|
|
17883
17902
|
constructor(base_url) {
|
|
17884
17903
|
this.base_url = base_url;
|
|
@@ -18027,6 +18046,7 @@ async function init(project, options = {}) {
|
|
|
18027
18046
|
const {
|
|
18028
18047
|
experiment,
|
|
18029
18048
|
description,
|
|
18049
|
+
dataset,
|
|
18030
18050
|
baseExperiment,
|
|
18031
18051
|
update,
|
|
18032
18052
|
apiUrl,
|
|
@@ -18044,13 +18064,22 @@ async function init(project, options = {}) {
|
|
|
18044
18064
|
_state.current_experiment = await _initExperiment(_state.current_project, {
|
|
18045
18065
|
name: experiment,
|
|
18046
18066
|
description,
|
|
18067
|
+
dataset,
|
|
18047
18068
|
update,
|
|
18048
18069
|
baseExperiment
|
|
18049
18070
|
});
|
|
18050
18071
|
return _state.current_experiment;
|
|
18051
18072
|
}
|
|
18052
18073
|
async function initDataset(project, options = {}) {
|
|
18053
|
-
const {
|
|
18074
|
+
const {
|
|
18075
|
+
dataset,
|
|
18076
|
+
description,
|
|
18077
|
+
version,
|
|
18078
|
+
apiUrl,
|
|
18079
|
+
apiKey,
|
|
18080
|
+
orgName,
|
|
18081
|
+
disableCache
|
|
18082
|
+
} = options || {};
|
|
18054
18083
|
await login({
|
|
18055
18084
|
orgName,
|
|
18056
18085
|
disableCache,
|
|
@@ -18059,7 +18088,8 @@ async function initDataset(project, options = {}) {
|
|
|
18059
18088
|
});
|
|
18060
18089
|
return await _initDataset(project, {
|
|
18061
18090
|
name: dataset,
|
|
18062
|
-
description
|
|
18091
|
+
description,
|
|
18092
|
+
version
|
|
18063
18093
|
});
|
|
18064
18094
|
}
|
|
18065
18095
|
async function login(options = {}) {
|
|
@@ -18137,6 +18167,7 @@ function _urljoin(...parts) {
|
|
|
18137
18167
|
async function _initExperiment(project, {
|
|
18138
18168
|
name,
|
|
18139
18169
|
description,
|
|
18170
|
+
dataset,
|
|
18140
18171
|
update,
|
|
18141
18172
|
baseExperiment
|
|
18142
18173
|
} = {
|
|
@@ -18182,16 +18213,21 @@ async function _initExperiment(project, {
|
|
|
18182
18213
|
if (base_exp_id !== void 0) {
|
|
18183
18214
|
args["base_exp_id"] = base_exp_id;
|
|
18184
18215
|
}
|
|
18216
|
+
if (dataset !== void 0) {
|
|
18217
|
+
args["dataset_id"] = dataset.id;
|
|
18218
|
+
args["dataset_version"] = await dataset.version();
|
|
18219
|
+
}
|
|
18185
18220
|
const data = (await log_conn().post_json("register-experiment", args))[0];
|
|
18186
18221
|
const user_id = (await _user_info())["id"];
|
|
18187
|
-
return new Experiment(project, data.id, data.name, user_id);
|
|
18222
|
+
return new Experiment(project, data.id, data.name, user_id, dataset);
|
|
18188
18223
|
}
|
|
18189
18224
|
var Experiment = class {
|
|
18190
|
-
constructor(project, id, name, user_id) {
|
|
18225
|
+
constructor(project, id, name, user_id, dataset) {
|
|
18191
18226
|
this.project = project;
|
|
18192
18227
|
this.id = id;
|
|
18193
18228
|
this.name = name;
|
|
18194
18229
|
this.user_id = user_id;
|
|
18230
|
+
this.dataset = dataset;
|
|
18195
18231
|
this.logger = new LogThread();
|
|
18196
18232
|
}
|
|
18197
18233
|
/**
|
|
@@ -18233,6 +18269,7 @@ var Experiment = class {
|
|
|
18233
18269
|
scores,
|
|
18234
18270
|
metadata,
|
|
18235
18271
|
id,
|
|
18272
|
+
datasetRecordId,
|
|
18236
18273
|
allowLarge = false,
|
|
18237
18274
|
inputs
|
|
18238
18275
|
}) {
|
|
@@ -18263,6 +18300,13 @@ var Experiment = class {
|
|
|
18263
18300
|
}
|
|
18264
18301
|
}
|
|
18265
18302
|
}
|
|
18303
|
+
if (this.dataset && datasetRecordId === void 0) {
|
|
18304
|
+
throw new Error("datasetRecordId must be specified when using a dataset");
|
|
18305
|
+
} else if (!this.dataset && datasetRecordId !== void 0) {
|
|
18306
|
+
throw new Error(
|
|
18307
|
+
"datasetRecordId cannot be specified when not using a dataset"
|
|
18308
|
+
);
|
|
18309
|
+
}
|
|
18266
18310
|
const args = {
|
|
18267
18311
|
id: id || v4_default(),
|
|
18268
18312
|
inputs: input ?? inputs,
|
|
@@ -18273,6 +18317,7 @@ var Experiment = class {
|
|
|
18273
18317
|
experiment_id: this.id,
|
|
18274
18318
|
user_id: this.user_id,
|
|
18275
18319
|
created: (/* @__PURE__ */ new Date()).toISOString(),
|
|
18320
|
+
dataset_record_id: datasetRecordId,
|
|
18276
18321
|
metadata
|
|
18277
18322
|
};
|
|
18278
18323
|
if (!allowLarge) {
|
|
@@ -18340,12 +18385,11 @@ var Experiment = class {
|
|
|
18340
18385
|
};
|
|
18341
18386
|
async function _initDataset(project_name, {
|
|
18342
18387
|
name,
|
|
18343
|
-
description
|
|
18344
|
-
|
|
18345
|
-
|
|
18346
|
-
description: void 0
|
|
18347
|
-
}) {
|
|
18388
|
+
description,
|
|
18389
|
+
version
|
|
18390
|
+
} = {}) {
|
|
18348
18391
|
const args = {
|
|
18392
|
+
org_id: ORG_ID,
|
|
18349
18393
|
project_name,
|
|
18350
18394
|
dataset_name: name,
|
|
18351
18395
|
description
|
|
@@ -18354,18 +18398,21 @@ async function _initDataset(project_name, {
|
|
|
18354
18398
|
const project = response.project;
|
|
18355
18399
|
const dataset = response.dataset;
|
|
18356
18400
|
const user_id = (await _user_info())["id"];
|
|
18357
|
-
return new Dataset(project, dataset.id, dataset.name, user_id);
|
|
18401
|
+
return new Dataset(project, dataset.id, dataset.name, user_id, version);
|
|
18358
18402
|
}
|
|
18359
18403
|
var Dataset = class {
|
|
18360
|
-
constructor(project, id, name, user_id) {
|
|
18404
|
+
constructor(project, id, name, user_id, pinnedVersion) {
|
|
18405
|
+
this._fetchedData = void 0;
|
|
18361
18406
|
this.project = project;
|
|
18362
18407
|
this.id = id;
|
|
18363
18408
|
this.name = name;
|
|
18364
18409
|
this.user_id = user_id;
|
|
18410
|
+
this.pinnedVersion = pinnedVersion;
|
|
18365
18411
|
this.logger = new LogThread();
|
|
18366
18412
|
}
|
|
18367
18413
|
/**
|
|
18368
|
-
*
|
|
18414
|
+
* Insert a single record to the dataset. The record will be batched and uploaded behind the scenes. If you pass in an `id`,
|
|
18415
|
+
* and a record with that `id` already exists, it will be overwritten (upsert).
|
|
18369
18416
|
*
|
|
18370
18417
|
* @param event The event to log.
|
|
18371
18418
|
* @param event.input The argument that uniquely define an input case (an arbitrary, JSON serializable object).
|
|
@@ -18379,7 +18426,7 @@ var Dataset = class {
|
|
|
18379
18426
|
* upload pipeline or be truncated.
|
|
18380
18427
|
* @returns The `id` of the logged record.
|
|
18381
18428
|
*/
|
|
18382
|
-
|
|
18429
|
+
insert({
|
|
18383
18430
|
input,
|
|
18384
18431
|
output,
|
|
18385
18432
|
metadata,
|
|
@@ -18460,6 +18507,80 @@ var Dataset = class {
|
|
|
18460
18507
|
dataSummary
|
|
18461
18508
|
};
|
|
18462
18509
|
}
|
|
18510
|
+
/**
|
|
18511
|
+
* Fetch all records in the dataset.
|
|
18512
|
+
*
|
|
18513
|
+
* @example
|
|
18514
|
+
* ```
|
|
18515
|
+
* // Use an async iterator to fetch all records in the dataset.
|
|
18516
|
+
* for await (const record of dataset.fetch()) {
|
|
18517
|
+
* console.log(record);
|
|
18518
|
+
* }
|
|
18519
|
+
*
|
|
18520
|
+
* // You can also iterate over the dataset directly.
|
|
18521
|
+
* for await (const record of dataset) {
|
|
18522
|
+
* console.log(record);
|
|
18523
|
+
* }
|
|
18524
|
+
* ```
|
|
18525
|
+
*
|
|
18526
|
+
* @returns An iterator over the dataset's records.
|
|
18527
|
+
*/
|
|
18528
|
+
async *fetch() {
|
|
18529
|
+
const records = await this.fetchedData();
|
|
18530
|
+
for (const record of records) {
|
|
18531
|
+
yield {
|
|
18532
|
+
id: record.id,
|
|
18533
|
+
input: record.input && JSON.parse(record.input),
|
|
18534
|
+
output: record.input && JSON.parse(record.output),
|
|
18535
|
+
metadata: record.metadata && JSON.parse(record.metadata)
|
|
18536
|
+
};
|
|
18537
|
+
}
|
|
18538
|
+
this.clearCache();
|
|
18539
|
+
}
|
|
18540
|
+
/**
|
|
18541
|
+
* Fetch all records in the dataset.
|
|
18542
|
+
*
|
|
18543
|
+
* @example
|
|
18544
|
+
* ```
|
|
18545
|
+
* // Use an async iterator to fetch all records in the dataset.
|
|
18546
|
+
* for await (const record of dataset) {
|
|
18547
|
+
* console.log(record);
|
|
18548
|
+
* }
|
|
18549
|
+
* ```
|
|
18550
|
+
*/
|
|
18551
|
+
[Symbol.asyncIterator]() {
|
|
18552
|
+
return this.fetch();
|
|
18553
|
+
}
|
|
18554
|
+
async fetchedData() {
|
|
18555
|
+
if (this._fetchedData === void 0) {
|
|
18556
|
+
const resp = await log_conn().get("object/dataset", {
|
|
18557
|
+
id: this.id,
|
|
18558
|
+
fmt: "json",
|
|
18559
|
+
version: this.pinnedVersion
|
|
18560
|
+
});
|
|
18561
|
+
const text = await resp.data;
|
|
18562
|
+
this._fetchedData = text.split("\n").filter((x) => x.trim() !== "").map((x) => JSON.parse(x));
|
|
18563
|
+
}
|
|
18564
|
+
return this._fetchedData || [];
|
|
18565
|
+
}
|
|
18566
|
+
clearCache() {
|
|
18567
|
+
this._fetchedData = void 0;
|
|
18568
|
+
}
|
|
18569
|
+
async version() {
|
|
18570
|
+
if (this.pinnedVersion !== void 0) {
|
|
18571
|
+
return this.pinnedVersion;
|
|
18572
|
+
} else {
|
|
18573
|
+
const fetchedData = await this.fetchedData();
|
|
18574
|
+
let maxVersion = void 0;
|
|
18575
|
+
for (const record of fetchedData) {
|
|
18576
|
+
const xactId = record[TRANSACTION_ID_FIELD];
|
|
18577
|
+
if (maxVersion === void 0 || (xactId ?? xactId > maxVersion)) {
|
|
18578
|
+
maxVersion = xactId;
|
|
18579
|
+
}
|
|
18580
|
+
}
|
|
18581
|
+
return maxVersion;
|
|
18582
|
+
}
|
|
18583
|
+
}
|
|
18463
18584
|
};
|
|
18464
18585
|
|
|
18465
18586
|
// src/framework.ts
|
|
@@ -18472,18 +18593,7 @@ function Eval(name, evaluator) {
|
|
|
18472
18593
|
}
|
|
18473
18594
|
|
|
18474
18595
|
// src/index.ts
|
|
18475
|
-
|
|
18476
|
-
const httpAgent = new http2.Agent({ keepAlive: true });
|
|
18477
|
-
const httpsAgent = new https2.Agent({ keepAlive: true });
|
|
18478
|
-
return axios_default.create({
|
|
18479
|
-
httpAgent,
|
|
18480
|
-
httpsAgent,
|
|
18481
|
-
...options
|
|
18482
|
-
});
|
|
18483
|
-
};
|
|
18484
|
-
isomorph_default.getRepoStatus = getRepoStatus;
|
|
18485
|
-
isomorph_default.getPastNAncestors = getPastNAncestors;
|
|
18486
|
-
isomorph_default.getEnv = (name) => process.env[name];
|
|
18596
|
+
configureNode();
|
|
18487
18597
|
// Annotate the CommonJS export names for ESM import in node:
|
|
18488
18598
|
0 && (module.exports = {
|
|
18489
18599
|
Dataset,
|
package/dist/logger.d.ts
CHANGED
|
@@ -4,6 +4,12 @@ export declare class Project {
|
|
|
4
4
|
org_id: string;
|
|
5
5
|
constructor(name: string, id: string, org_id: string);
|
|
6
6
|
}
|
|
7
|
+
export interface DatasetRecord {
|
|
8
|
+
id: string;
|
|
9
|
+
input: any;
|
|
10
|
+
output: any;
|
|
11
|
+
metadata: any;
|
|
12
|
+
}
|
|
7
13
|
/**
|
|
8
14
|
* Log in, and then initialize a new experiment in a specified project. If the project does not exist, it will be created.
|
|
9
15
|
*
|
|
@@ -11,6 +17,8 @@ export declare class Project {
|
|
|
11
17
|
* @param options Additional options for configuring init().
|
|
12
18
|
* @param options.experiment The name of the experiment to create. If not specified, a name will be generated automatically.
|
|
13
19
|
* @param options.description An optional description of the experiment.
|
|
20
|
+
* @param options.dataset (Optional) A dataset to associate with the experiment. You can pass in the name of the dataset (in the same project) or a
|
|
21
|
+
* dataset object (from any project).
|
|
14
22
|
* @param options.update If the experiment already exists, continue logging to it.
|
|
15
23
|
* @param options.baseExperiment An optional experiment name to use as a base. If specified, the new experiment will be summarized and compared to this
|
|
16
24
|
* experiment. Otherwise, it will pick an experiment by finding the closest ancestor on the default (e.g. main) branch.
|
|
@@ -24,6 +32,7 @@ export declare class Project {
|
|
|
24
32
|
export declare function init(project: string, options?: {
|
|
25
33
|
readonly experiment?: string;
|
|
26
34
|
readonly description?: string;
|
|
35
|
+
readonly dataset?: Dataset;
|
|
27
36
|
readonly update?: boolean;
|
|
28
37
|
readonly baseExperiment?: string;
|
|
29
38
|
readonly apiUrl?: string;
|
|
@@ -48,6 +57,7 @@ export declare function init(project: string, options?: {
|
|
|
48
57
|
export declare function initDataset(project: string, options?: {
|
|
49
58
|
readonly dataset?: string;
|
|
50
59
|
readonly description?: string;
|
|
60
|
+
readonly version?: string;
|
|
51
61
|
readonly apiUrl?: string;
|
|
52
62
|
readonly apiKey?: string;
|
|
53
63
|
readonly orgName?: string;
|
|
@@ -140,8 +150,9 @@ export declare class Experiment {
|
|
|
140
150
|
readonly id: string;
|
|
141
151
|
readonly name: string;
|
|
142
152
|
readonly user_id: string;
|
|
153
|
+
readonly dataset?: Dataset;
|
|
143
154
|
private logger;
|
|
144
|
-
constructor(project: Project, id: string, name: string, user_id: string);
|
|
155
|
+
constructor(project: Project, id: string, name: string, user_id: string, dataset?: Dataset);
|
|
145
156
|
/**
|
|
146
157
|
* Log a single event to the experiment. The event will be batched and uploaded behind the scenes.
|
|
147
158
|
*
|
|
@@ -174,13 +185,14 @@ export declare class Experiment {
|
|
|
174
185
|
* @param event.inputs (Deprecated) the same as `input` (will be removed in a future version)
|
|
175
186
|
* @returns The `id` of the logged event.
|
|
176
187
|
*/
|
|
177
|
-
log({ input, output, expected, scores, metadata, id, allowLarge, inputs, }: {
|
|
188
|
+
log({ input, output, expected, scores, metadata, id, datasetRecordId, allowLarge, inputs, }: {
|
|
178
189
|
readonly input?: unknown;
|
|
179
190
|
readonly output: unknown;
|
|
180
191
|
readonly expected?: unknown;
|
|
181
192
|
readonly scores: Record<string, number>;
|
|
182
193
|
readonly metadata?: Record<string, unknown>;
|
|
183
194
|
readonly id?: string;
|
|
195
|
+
readonly datasetRecordId?: string;
|
|
184
196
|
readonly allowLarge?: boolean;
|
|
185
197
|
readonly inputs?: unknown;
|
|
186
198
|
}): string;
|
|
@@ -209,10 +221,13 @@ export declare class Dataset {
|
|
|
209
221
|
readonly id: string;
|
|
210
222
|
readonly name: string;
|
|
211
223
|
readonly user_id: string;
|
|
224
|
+
private pinnedVersion?;
|
|
225
|
+
private _fetchedData?;
|
|
212
226
|
private logger;
|
|
213
|
-
constructor(project: Project, id: string, name: string, user_id: string);
|
|
227
|
+
constructor(project: Project, id: string, name: string, user_id: string, pinnedVersion?: string);
|
|
214
228
|
/**
|
|
215
|
-
*
|
|
229
|
+
* Insert a single record to the dataset. The record will be batched and uploaded behind the scenes. If you pass in an `id`,
|
|
230
|
+
* and a record with that `id` already exists, it will be overwritten (upsert).
|
|
216
231
|
*
|
|
217
232
|
* @param event The event to log.
|
|
218
233
|
* @param event.input The argument that uniquely define an input case (an arbitrary, JSON serializable object).
|
|
@@ -226,11 +241,9 @@ export declare class Dataset {
|
|
|
226
241
|
* upload pipeline or be truncated.
|
|
227
242
|
* @returns The `id` of the logged record.
|
|
228
243
|
*/
|
|
229
|
-
|
|
244
|
+
insert({ input, output, metadata, id, allowLarge, }: {
|
|
230
245
|
readonly input?: unknown;
|
|
231
246
|
readonly output: unknown;
|
|
232
|
-
readonly expected?: unknown;
|
|
233
|
-
readonly scores: Record<string, number>;
|
|
234
247
|
readonly metadata?: Record<string, unknown>;
|
|
235
248
|
readonly id?: string;
|
|
236
249
|
readonly allowLarge?: boolean;
|
|
@@ -245,6 +258,40 @@ export declare class Dataset {
|
|
|
245
258
|
summarize(options?: {
|
|
246
259
|
readonly summarizeData?: boolean;
|
|
247
260
|
}): Promise<DatasetSummary>;
|
|
261
|
+
/**
|
|
262
|
+
* Fetch all records in the dataset.
|
|
263
|
+
*
|
|
264
|
+
* @example
|
|
265
|
+
* ```
|
|
266
|
+
* // Use an async iterator to fetch all records in the dataset.
|
|
267
|
+
* for await (const record of dataset.fetch()) {
|
|
268
|
+
* console.log(record);
|
|
269
|
+
* }
|
|
270
|
+
*
|
|
271
|
+
* // You can also iterate over the dataset directly.
|
|
272
|
+
* for await (const record of dataset) {
|
|
273
|
+
* console.log(record);
|
|
274
|
+
* }
|
|
275
|
+
* ```
|
|
276
|
+
*
|
|
277
|
+
* @returns An iterator over the dataset's records.
|
|
278
|
+
*/
|
|
279
|
+
fetch(): AsyncGenerator<DatasetRecord>;
|
|
280
|
+
/**
|
|
281
|
+
* Fetch all records in the dataset.
|
|
282
|
+
*
|
|
283
|
+
* @example
|
|
284
|
+
* ```
|
|
285
|
+
* // Use an async iterator to fetch all records in the dataset.
|
|
286
|
+
* for await (const record of dataset) {
|
|
287
|
+
* console.log(record);
|
|
288
|
+
* }
|
|
289
|
+
* ```
|
|
290
|
+
*/
|
|
291
|
+
[Symbol.asyncIterator](): AsyncGenerator<DatasetRecord, any, unknown>;
|
|
292
|
+
fetchedData(): Promise<any[]>;
|
|
293
|
+
clearCache(): void;
|
|
294
|
+
version(): Promise<any>;
|
|
248
295
|
}
|
|
249
296
|
/**
|
|
250
297
|
* Summary of a score's performance.
|
package/dist/node.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function configureNode(): void;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface ProgressReporter {
|
|
2
|
+
start: (name: string, total: number) => void;
|
|
3
|
+
stop: () => void;
|
|
4
|
+
increment: (name: string) => void;
|
|
5
|
+
}
|
|
6
|
+
export declare class SimpleProgressReporter {
|
|
7
|
+
start(name: string, _total: number): void;
|
|
8
|
+
stop(): void;
|
|
9
|
+
increment(_name: string): void;
|
|
10
|
+
}
|
|
11
|
+
export declare class BarProgressReporter {
|
|
12
|
+
private multiBar;
|
|
13
|
+
private bars;
|
|
14
|
+
constructor();
|
|
15
|
+
start(name: string, total: number): void;
|
|
16
|
+
stop(): void;
|
|
17
|
+
increment(name: string): void;
|
|
18
|
+
}
|
|
@@ -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/logger.ts","../src/browser.ts","../src/cache.ts","../node_modules/esbuild/lib/main.d.ts","../node_modules/chalk/index.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/graceful-fs/index.d.ts","../src/jest/tryrealpath.ts","../src/jest/nodemodulespaths.ts","../../autoevals/jsdist/base.d.ts","../../autoevals/node_modules/openai/dist/configuration.d.ts","../../autoevals/node_modules/axios/index.d.ts","../../autoevals/node_modules/openai/dist/base.d.ts","../../autoevals/node_modules/openai/dist/api.d.ts","../../autoevals/node_modules/openai/dist/index.d.ts","../../autoevals/jsdist/llm.d.ts","../../autoevals/jsdist/string.d.ts","../../autoevals/jsdist/index.d.ts","../src/framework.ts","../src/cli.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/index.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":"33afbdba3f5e7dfbb721775f324d64675074704c2d1a83ada260600b4063295a","signature":"d7df1bf79ee700e9017d4e2d4f431aa6f5b052c5b1876dcf455d43e2abc0891f"},{"version":"b51a1e64b221628871775650781d63010205422f46bbf19f0fd39034257d311e","signature":"c305b8b4fbbd4537aac24443f0cfb583d974801975eb967900e622fae8663e84"},"c967d7ca4d2ecc37d4a12833fad823f02e935542f6be307214ea7d2a9af02995",{"version":"43361e6b831db1ef828f60d9219c09bfc43acb1b75ce86ead48f557a0935c0d2","signature":"b4324240466cc26262b0a4876ba6e405a8ad714cd15d4e309b765a3b41d90fb9"},"850040826cfa77593d44f44487133af21917f4f21507258bd4269501b80d32f0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","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":"b85c02e14ecb2a873dad5a1de72319b265160ba48f1b83661aeb3bba1366c1bc","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","fc3764040518a1008dd04bdc80964591b566b896283e00df85c95851c1f46237","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","790623a47c5eda62910098884ecb154dc0e5f3a23fc36c1bfb3b5b9ed44e2c2d","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"ac0c77cd7db52b3c278bdd1452ce754014835493d05b84535f46854fdc2063b2","affectsGlobalScope":true},"f5490f53d40291cc8607f5463434d1ac6c5564bc4fbb03abceb03a8f6b014457","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","0cab4d7d4edc40cd3af9eea7c3ed6d1016910c0954c49c4297e479bf3822a625","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270",{"version":"ffc62d73b4fa10ca8c59f8802df88efefe447025730a24ee977b60adedc5bf37","affectsGlobalScope":true},{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","5bc85813bfcb6907cc3a960fec8734a29d7884e0e372515147720c5991b8bc22","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"75dd741ca6a6c8d2437a6ca8349b64b816421dbf9fe82dd026afaba965576962","affectsGlobalScope":true},{"version":"0e08c360c9b5961ecb0537b703e253842b3ded53151ee07024148219b61a8baf","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ebf3434b09c527078aa74139ff367fffa64fea32a01d6c06fb0a69b0ecadf43e","46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","c56ef8201a294d65d1132160ebc76ed0c0a98dcf983d20775c8c8c0912210572","de0199a112f75809a7f80ec071495159dcf3e434bc021347e0175627398264c3","1a2bed55cfa62b4649485df27c0e560b04d4da4911e3a9f0475468721495563f","854045924626ba585f454b53531c42aed4365f02301aa8eca596423f4675b71f","dac69319e7c96790211dd55fbb25831b7bf6e63f7645297a2c8f46247d44d889","5adf3c3c7204b3614dbc585681a33ef598c68df387298859f9a2521cfb449437","bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e",{"version":"c0b4084226d4ad0a3c78580c50f85985f4a3e808eb59a15c9fb389c8349f9056","signature":"f155bcfea5ae8b647b26fef54caf159a514950ac9cb3c192dcfab787d4588eec"},{"version":"0f3a9fccbf341d90a4be583161e6415c8c0543f5dd180419ea13e3db991ccca0","signature":"d4cb0878684926011f20ef763f982c78e1b0b699c0faefee31d2a7bdcf44a7bb"},"26ed2b3579b00785d7b8028002d5e638444e32e1fad135100a2419e48e5fb458","3ac893bb831cf929af812392e1568467766536d79abd4e29d6ae653695c18cdd","2808645b990069e5f8b5ff14c9f1e6077eb642583c3f7854012d60757f23c70e","98cd87f84eb134151b0b760d49e09f0ae3ca01d9f86e6b64f6bb933cc4a40b29","db750d991d0c6e773c114cfe170c5ee4fc1bea43364e0efa5cecb03d198be80a","c5dde9dd9e1bf7168d8a2480a31f9799158f84e3aa1bb061fd09a0cf5a1fcb14","1431f1a26d5b8e1f4f51da61ccf9a324dab9f3f8f9bea6030306b42f92a64fd3","b803d46c443f3b33f0c9ac8248155f6236c6de4785524b133008cf52b3ef33fb","1432431b92e36f0a724c62be7209f771dee76d2c1af311e4e59cb799b6215939",{"version":"5020a9536eb4129315f26f68c096897545a725bcbe2f4207d10d614d6acb4524","signature":"93e9554ec9245171079eb839103d043b8e529b7316ace21b374dccd00b5f148f","affectsGlobalScope":true},{"version":"fdb5c759436860f862872a8694e419331cb38183b6ca51bb7dade1c3c8432d7f","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},"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":"0de33e0797e7b56040db7665b8ab7150b7197b2987f7dfbace1cee41e9c20942","signature":"1a602ba41329f6a79d2534ac8ad4bec506f4daa0dcb7a2ab1d79c8226ca79c43"},"c5dde9dd9e1bf7168d8a2480a31f9799158f84e3aa1bb061fd09a0cf5a1fcb14",{"version":"e9ffdbc59d4b3dbbfce1f2a1dbb757d88c54f77af3de24be8839aa3f03492b44","signature":"4ce870ab24a6630dd481ccb3c2b5929e9e5d9090ff003514f1dd1613e6053ee8"}],"root":[[46,49],129,130,140,141,167,168,170],"options":{"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[98],[98,131,137,138],[98,131,136],[98,131],[98,132,133,134],[98,132,133],[98,132,135],[98,110,111],[98,111,112,113,114],[98,105,111,113],[98,110,112],[69,98,105],[69,98,105,106],[98,106,107,108,109],[98,106,108],[98,107],[86,98,105,115,116,117,120],[98,116,117,119],[68,98,105,115,116,117,118],[98,117],[98,115,116],[98,105,115],[52,98],[55,98],[56,61,89,98],[57,68,69,76,86,97,98],[57,58,68,76,98],[59,98],[60,61,69,77,98],[61,86,94,98],[62,64,68,76,98],[63,98],[64,65,98],[68,98],[66,68,98],[68,69,70,86,97,98],[68,69,70,83,86,89,98],[98,102],[64,68,71,76,86,97,98],[68,69,71,72,76,86,94,97,98],[71,73,86,94,97,98],[52,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],[68,74,98],[75,97,98],[64,68,76,86,98],[77,98],[78,98],[55,79,98],[80,96,98,102],[81,98],[82,98],[68,83,84,98],[83,85,98,100],[56,68,86,87,88,89,98],[56,86,88,98],[86,87,98],[89,98],[90,98],[86,98],[68,92,93,98],[92,93,98],[61,76,86,94,98],[95,98],[76,96,98],[56,71,82,97,98],[61,98],[86,98,99],[98,100],[98,101],[56,61,68,70,79,86,97,98,100,102],[86,98,103],[98,125],[98,122,123,124],[98,144,146],[98,146],[98,144],[98,142,146,166],[98,142,146],[98,166],[98,146,166],[57,98,105,143,145],[98,105,142,146],[98,144,160,161,162,163],[98,148,159,164,165],[98,147],[98,148,159,164],[98,146,147,149,150,151,152,153,154,155,156,157,158],[47,98],[77,78,98],[45,47,50,51,69,77,78,98,121,125,126,127,130,140],[47,98,139],[44,46,47,71,73,98,140,167],[44,98],[78,98,129],[98,128],[44,45,46,98],[98,136],[47,139],[166],[47,140],[44],[136]],"referencedMap":[[131,1],[139,2],[137,3],[138,4],[133,1],[135,5],[134,6],[132,1],[136,7],[112,8],[115,9],[114,10],[113,11],[111,12],[107,13],[110,14],[109,15],[108,16],[106,12],[121,17],[120,18],[119,19],[118,20],[117,21],[116,22],[126,1],[128,12],[52,23],[53,23],[55,24],[56,25],[57,26],[58,27],[59,28],[60,29],[61,30],[62,31],[63,32],[64,33],[65,33],[67,34],[66,35],[68,34],[69,36],[70,37],[54,38],[104,1],[71,39],[72,40],[73,41],[105,42],[74,43],[75,44],[76,45],[77,46],[78,47],[79,48],[80,49],[81,50],[82,51],[83,52],[84,52],[85,53],[86,54],[88,55],[87,56],[89,57],[90,58],[91,59],[92,60],[93,61],[94,62],[95,63],[96,64],[97,65],[98,66],[99,67],[100,68],[101,69],[102,70],[103,71],[127,1],[45,1],[44,1],[51,1],[50,1],[122,72],[123,72],[125,73],[124,72],[169,7],[150,1],[160,74],[144,75],[161,74],[162,76],[163,76],[149,1],[151,75],[152,75],[153,77],[154,78],[155,79],[156,79],[147,80],[157,75],[142,75],[158,79],[145,76],[146,81],[143,82],[164,83],[166,84],[148,85],[165,86],[159,87],[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],[48,88],[49,89],[141,90],[140,91],[167,79],[168,92],[46,93],[130,94],[129,95],[47,96],[170,97]],"exportedModulesMap":[[131,1],[139,2],[137,3],[138,4],[133,1],[135,5],[134,6],[132,1],[136,7],[112,8],[115,9],[114,10],[113,11],[111,12],[107,13],[110,14],[109,15],[108,16],[106,12],[121,17],[120,18],[119,19],[118,20],[117,21],[116,22],[126,1],[128,12],[52,23],[53,23],[55,24],[56,25],[57,26],[58,27],[59,28],[60,29],[61,30],[62,31],[63,32],[64,33],[65,33],[67,34],[66,35],[68,34],[69,36],[70,37],[54,38],[104,1],[71,39],[72,40],[73,41],[105,42],[74,43],[75,44],[76,45],[77,46],[78,47],[79,48],[80,49],[81,50],[82,51],[83,52],[84,52],[85,53],[86,54],[88,55],[87,56],[89,57],[90,58],[91,59],[92,60],[93,61],[94,62],[95,63],[96,64],[97,65],[98,66],[99,67],[100,68],[101,69],[102,70],[103,71],[127,1],[45,1],[44,1],[51,1],[50,1],[122,72],[123,72],[125,73],[124,72],[169,7],[150,1],[160,74],[144,75],[161,74],[162,76],[163,76],[149,1],[151,75],[152,75],[153,77],[154,78],[155,79],[156,79],[147,80],[157,75],[142,75],[158,79],[145,76],[146,81],[143,82],[164,83],[166,84],[148,85],[165,86],[159,87],[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],[48,88],[140,98],[167,99],[168,100],[46,101],[170,102]],"semanticDiagnosticsPerFile":[131,139,137,138,133,135,134,132,136,112,115,114,113,111,107,110,109,108,106,121,120,119,118,117,116,126,128,52,53,55,56,57,58,59,60,61,62,63,64,65,67,66,68,69,70,54,104,71,72,73,105,74,75,76,77,78,79,80,81,82,83,84,85,86,88,87,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,127,45,44,51,50,122,123,125,124,169,150,160,144,161,162,163,149,151,152,153,154,155,156,147,157,142,158,145,146,143,164,166,148,165,159,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,48,49,141,140,167,168,46,130,129,47,170]},"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.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/logger.ts","../src/browser.ts","../src/cache.ts","../node_modules/esbuild/lib/main.d.ts","../node_modules/chalk/index.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","../../autoevals/jsdist/base.d.ts","../../autoevals/node_modules/openai/dist/configuration.d.ts","../../autoevals/node_modules/axios/index.d.ts","../../autoevals/node_modules/openai/dist/base.d.ts","../../autoevals/node_modules/openai/dist/api.d.ts","../../autoevals/node_modules/openai/dist/index.d.ts","../../autoevals/jsdist/oai.d.ts","../../autoevals/jsdist/templates.d.ts","../../autoevals/jsdist/llm.d.ts","../../autoevals/jsdist/string.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/node.ts","../src/cli.ts","../src/index.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":"33afbdba3f5e7dfbb721775f324d64675074704c2d1a83ada260600b4063295a","signature":"d7df1bf79ee700e9017d4e2d4f431aa6f5b052c5b1876dcf455d43e2abc0891f"},{"version":"cd2aedd653464130075934e20cad8d1d196b95c6d83618feaf73ca3c1bdbf83b","signature":"d5af8055c3a5f3913dbc37c8d5226b14e1c59843c38470ec86ceb5be4f3c1270"},"c967d7ca4d2ecc37d4a12833fad823f02e935542f6be307214ea7d2a9af02995",{"version":"43361e6b831db1ef828f60d9219c09bfc43acb1b75ce86ead48f557a0935c0d2","signature":"b4324240466cc26262b0a4876ba6e405a8ad714cd15d4e309b765a3b41d90fb9"},"850040826cfa77593d44f44487133af21917f4f21507258bd4269501b80d32f0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","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"},"26ed2b3579b00785d7b8028002d5e638444e32e1fad135100a2419e48e5fb458","3ac893bb831cf929af812392e1568467766536d79abd4e29d6ae653695c18cdd","2808645b990069e5f8b5ff14c9f1e6077eb642583c3f7854012d60757f23c70e","98cd87f84eb134151b0b760d49e09f0ae3ca01d9f86e6b64f6bb933cc4a40b29","db750d991d0c6e773c114cfe170c5ee4fc1bea43364e0efa5cecb03d198be80a","c5dde9dd9e1bf7168d8a2480a31f9799158f84e3aa1bb061fd09a0cf5a1fcb14","a26f77c3dade8bbe508a51031e61e7491f9ab2c18c0335a5734d6f7dfdc26c1e","e725e4e013e946cccba3ec0fb642af7b5b9bd7872357b435ffe551dd80d552bc","a80399c825ae7188341a1f3453af9b93c1b1f2e8c312acb12bae48462225b6e8","b803d46c443f3b33f0c9ac8248155f6236c6de4785524b133008cf52b3ef33fb","80bd8624a7774f35d312a1ba5259524a14f6534d6eb16dcfcd3a170fed3a427b",{"version":"114393201e4ac70b0686722e2a012129f875929d23efbd20f427615b0b838eb3","signature":"605eb9fbe786e032e4bb14efdc1cc2bcc0c2b3b9ed1a90e514399378b738a74a","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":"72b1a4a18fcd279fb98314251e5703c88059da79e90809d6ff8e3e18369b6b38","signature":"1518a19a9cb02ce4439e1bd5d07e5dd4f496d4598142ff82264b40785ba28789"},{"version":"fc3aa7882e70a8c461ee3243ad5735c046f17cae910fd4fdffe1e303e4bb045c","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"6429ebdfc3defffc0b9714ddb7d0facb35000bacb36f7a017e39201c35361389","signature":"1a602ba41329f6a79d2534ac8ad4bec506f4daa0dcb7a2ab1d79c8226ca79c43"},"c5dde9dd9e1bf7168d8a2480a31f9799158f84e3aa1bb061fd09a0cf5a1fcb14",{"version":"e9ffdbc59d4b3dbbfce1f2a1dbb757d88c54f77af3de24be8839aa3f03492b44","signature":"4ce870ab24a6630dd481ccb3c2b5929e9e5d9090ff003514f1dd1613e6053ee8"}],"root":[[46,49],129,131,132,144,[170,173],175],"options":{"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[98],[98,133,140,141,142],[98,133,138,139,140],[98,138],[98,133],[98,134,135,136],[98,134,135],[98,134,137],[98,110,111],[98,111,112,113,114],[98,105,111,113],[98,110,112],[69,98,105],[69,98,105,106],[98,106,107,108,109],[98,106,108],[98,107],[86,98,105,115,116,117,120],[98,116,117,119],[68,98,105,115,116,117,118],[98,117],[98,115,116],[98,105,115],[68,98,105],[52,98],[55,98],[56,61,89,98],[57,68,69,76,86,97,98],[57,58,68,76,98],[59,98],[60,61,69,77,98],[61,86,94,98],[62,64,68,76,98],[63,98],[64,65,98],[68,98],[66,68,98],[68,69,70,86,97,98],[68,69,70,83,86,89,98],[98,102],[64,68,71,76,86,97,98],[68,69,71,72,76,86,94,97,98],[71,73,86,94,97,98],[52,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],[68,74,98],[75,97,98],[64,68,76,86,98],[77,98],[78,98],[55,79,98],[80,96,98,102],[81,98],[82,98],[68,83,84,98],[83,85,98,100],[56,68,86,87,88,89,98],[56,86,88,98],[86,87,98],[89,98],[90,98],[55,86,98],[68,92,93,98],[92,93,98],[61,76,86,94,98],[95,98],[76,96,98],[56,71,82,97,98],[61,98],[86,98,99],[98,100],[98,101],[56,61,68,70,79,86,97,98,100,102],[86,98,103],[98,125],[98,122,123,124],[98,147,149],[98,149],[98,147],[98,145,149,169],[98,145,149],[98,169],[98,149,169],[57,98,105,146,148],[98,105,145,149],[98,147,163,164,165,166],[98,151,162,167,168],[98,150],[98,151,162,167],[98,149,150,152,153,154,155,156,157,158,159,160,161],[47,98],[77,78,98],[45,47,50,51,69,77,78,98,121,125,126,127,129,132,144,171],[47,98,129,143],[47,98,144,171],[44,98],[78,98,131],[98,130],[44,45,46,98],[44,46,71,73,98,170],[98,128],[47,129,143],[169],[47,144],[44],[138]],"referencedMap":[[133,1],[143,2],[141,3],[139,4],[142,5],[140,1],[135,1],[137,6],[136,7],[134,1],[138,8],[112,9],[115,10],[114,11],[113,12],[111,13],[107,14],[110,15],[109,16],[108,17],[106,13],[121,18],[120,19],[119,20],[118,21],[117,22],[116,23],[126,1],[128,24],[130,13],[52,25],[53,25],[55,26],[56,27],[57,28],[58,29],[59,30],[60,31],[61,32],[62,33],[63,34],[64,35],[65,35],[67,36],[66,37],[68,36],[69,38],[70,39],[54,40],[104,1],[71,41],[72,42],[73,43],[105,44],[74,45],[75,46],[76,47],[77,48],[78,49],[79,50],[80,51],[81,52],[82,53],[83,54],[84,54],[85,55],[86,56],[88,57],[87,58],[89,59],[90,60],[91,61],[92,62],[93,63],[94,64],[95,65],[96,66],[97,67],[98,68],[99,69],[100,70],[101,71],[102,72],[103,73],[127,1],[45,1],[44,1],[51,1],[50,1],[122,74],[123,74],[125,75],[124,74],[174,8],[153,1],[163,76],[147,77],[164,76],[165,78],[166,78],[152,1],[154,77],[155,77],[156,79],[157,80],[158,81],[159,81],[150,82],[160,77],[145,77],[161,81],[148,78],[149,83],[146,84],[167,85],[169,86],[151,87],[168,88],[162,89],[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],[48,90],[49,91],[172,92],[144,93],[170,81],[173,94],[46,95],[132,96],[131,97],[47,98],[171,99],[175,4],[129,100]],"exportedModulesMap":[[133,1],[143,2],[141,3],[139,4],[142,5],[140,1],[135,1],[137,6],[136,7],[134,1],[138,8],[112,9],[115,10],[114,11],[113,12],[111,13],[107,14],[110,15],[109,16],[108,17],[106,13],[121,18],[120,19],[119,20],[118,21],[117,22],[116,23],[126,1],[128,24],[130,13],[52,25],[53,25],[55,26],[56,27],[57,28],[58,29],[59,30],[60,31],[61,32],[62,33],[63,34],[64,35],[65,35],[67,36],[66,37],[68,36],[69,38],[70,39],[54,40],[104,1],[71,41],[72,42],[73,43],[105,44],[74,45],[75,46],[76,47],[77,48],[78,49],[79,50],[80,51],[81,52],[82,53],[83,54],[84,54],[85,55],[86,56],[88,57],[87,58],[89,59],[90,60],[91,61],[92,62],[93,63],[94,64],[95,65],[96,66],[97,67],[98,68],[99,69],[100,70],[101,71],[102,72],[103,73],[127,1],[45,1],[44,1],[51,1],[50,1],[122,74],[123,74],[125,75],[124,74],[174,8],[153,1],[163,76],[147,77],[164,76],[165,78],[166,78],[152,1],[154,77],[155,77],[156,79],[157,80],[158,81],[159,81],[150,82],[160,77],[145,77],[161,81],[148,78],[149,83],[146,84],[167,85],[169,86],[151,87],[168,88],[162,89],[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],[48,90],[144,101],[170,102],[173,103],[46,104],[175,105]],"semanticDiagnosticsPerFile":[133,143,141,139,142,140,135,137,136,134,138,112,115,114,113,111,107,110,109,108,106,121,120,119,118,117,116,126,128,130,52,53,55,56,57,58,59,60,61,62,63,64,65,67,66,68,69,70,54,104,71,72,73,105,74,75,76,77,78,79,80,81,82,83,84,85,86,88,87,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,127,45,44,51,50,122,123,125,124,174,153,163,147,164,165,166,152,154,155,156,157,158,159,150,160,145,161,148,149,146,167,169,151,168,162,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,48,49,172,144,170,173,46,132,131,47,171,175,129]},"version":"5.1.6"}
|