braintrust 0.0.63 → 0.0.64
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 +15 -39
- package/dist/cli.js +12 -38
- package/dist/index.d.ts +1 -1
- package/dist/index.js +26 -51
- package/dist/logger.d.ts +3 -12
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/browser.js
CHANGED
|
@@ -181,7 +181,6 @@ var BraintrustState = class {
|
|
|
181
181
|
this.loggedIn = false;
|
|
182
182
|
this._apiConn = null;
|
|
183
183
|
this._logConn = null;
|
|
184
|
-
this._userInfo = null;
|
|
185
184
|
globalThis.__inherited_braintrust_state = this;
|
|
186
185
|
}
|
|
187
186
|
apiConn() {
|
|
@@ -202,19 +201,14 @@ var BraintrustState = class {
|
|
|
202
201
|
}
|
|
203
202
|
return this._logConn;
|
|
204
203
|
}
|
|
205
|
-
async userInfo() {
|
|
206
|
-
if (!this._userInfo) {
|
|
207
|
-
this._userInfo = await this.logConn().get_json("ping");
|
|
208
|
-
}
|
|
209
|
-
return this._userInfo;
|
|
210
|
-
}
|
|
211
|
-
setUserInfoIfNull(info) {
|
|
212
|
-
if (!this._userInfo) {
|
|
213
|
-
this._userInfo = info;
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
204
|
};
|
|
217
|
-
var _state
|
|
205
|
+
var _state;
|
|
206
|
+
function _internalSetInitialState() {
|
|
207
|
+
if (_state) {
|
|
208
|
+
throw new Error("Cannot set initial state more than once");
|
|
209
|
+
}
|
|
210
|
+
_state = globalThis.__inherited_braintrust_state || new BraintrustState();
|
|
211
|
+
}
|
|
218
212
|
var _internalGetGlobalState = () => _state;
|
|
219
213
|
var UnterminatedObjectsHandler = class {
|
|
220
214
|
constructor() {
|
|
@@ -275,7 +269,6 @@ var HTTPConnection = class _HTTPConnection {
|
|
|
275
269
|
async ping() {
|
|
276
270
|
try {
|
|
277
271
|
const resp = await this.get("ping");
|
|
278
|
-
_state.setUserInfoIfNull(await resp.json());
|
|
279
272
|
return resp.status === 200;
|
|
280
273
|
} catch (e) {
|
|
281
274
|
return false;
|
|
@@ -675,8 +668,6 @@ async function login(options = {}) {
|
|
|
675
668
|
}
|
|
676
669
|
_state = new BraintrustState();
|
|
677
670
|
_state.apiUrl = apiUrl;
|
|
678
|
-
let login_key_info = null;
|
|
679
|
-
let ping_ok = false;
|
|
680
671
|
let conn = null;
|
|
681
672
|
if (apiKey !== void 0) {
|
|
682
673
|
const resp = await checkResponse(
|
|
@@ -694,7 +685,6 @@ async function login(options = {}) {
|
|
|
694
685
|
_check_org_info(info.org_info, orgName);
|
|
695
686
|
conn = _state.logConn();
|
|
696
687
|
conn.set_token(apiKey);
|
|
697
|
-
ping_ok = await conn.ping();
|
|
698
688
|
} else {
|
|
699
689
|
throw new Error(
|
|
700
690
|
"Please specify an api key. Token based login is not yet implemented in the JS client."
|
|
@@ -703,9 +693,6 @@ async function login(options = {}) {
|
|
|
703
693
|
if (!conn) {
|
|
704
694
|
throw new Error("Conn should be set at this point (a bug)");
|
|
705
695
|
}
|
|
706
|
-
if (!ping_ok) {
|
|
707
|
-
await conn.get("ping");
|
|
708
|
-
}
|
|
709
696
|
conn.make_long_lived();
|
|
710
697
|
_state.apiConn().set_token(apiKey);
|
|
711
698
|
_state.loginToken = conn.token;
|
|
@@ -921,24 +908,16 @@ async function _initExperiment(projectName, {
|
|
|
921
908
|
const response = await _state.apiConn().post_json("api/experiment/register", args);
|
|
922
909
|
const project = response.project;
|
|
923
910
|
const experiment = response.experiment;
|
|
924
|
-
|
|
925
|
-
return new Experiment(
|
|
926
|
-
project,
|
|
927
|
-
experiment.id,
|
|
928
|
-
experiment.name,
|
|
929
|
-
user_id,
|
|
930
|
-
dataset
|
|
931
|
-
);
|
|
911
|
+
return new Experiment(project, experiment.id, experiment.name, dataset);
|
|
932
912
|
}
|
|
933
913
|
var Experiment = class {
|
|
934
|
-
constructor(project, id, name,
|
|
914
|
+
constructor(project, id, name, dataset) {
|
|
935
915
|
// For type identification.
|
|
936
916
|
this.kind = "experiment";
|
|
937
917
|
this.finished = false;
|
|
938
918
|
this.project = project;
|
|
939
919
|
this.id = id;
|
|
940
920
|
this.name = name;
|
|
941
|
-
this.user_id = user_id;
|
|
942
921
|
this.dataset = dataset;
|
|
943
922
|
this.bgLogger = new BackgroundLogger();
|
|
944
923
|
this.lastStartTime = getCurrentUnixTimestamp();
|
|
@@ -1091,8 +1070,6 @@ var SpanImpl = class _SpanImpl {
|
|
|
1091
1070
|
experiment_id: args.rootExperiment.id
|
|
1092
1071
|
};
|
|
1093
1072
|
this.internalData = Object.assign(this.internalData, {
|
|
1094
|
-
// TODO: Hopefully we can remove this.
|
|
1095
|
-
user_id: args.rootExperiment.user_id,
|
|
1096
1073
|
created: (/* @__PURE__ */ new Date()).toISOString()
|
|
1097
1074
|
});
|
|
1098
1075
|
} else if ("rootProject" in args) {
|
|
@@ -1188,17 +1165,15 @@ async function _initDataset(project_name, {
|
|
|
1188
1165
|
const response = await _state.apiConn().post_json("api/dataset/register", args);
|
|
1189
1166
|
const project = response.project;
|
|
1190
1167
|
const dataset = response.dataset;
|
|
1191
|
-
|
|
1192
|
-
return new Dataset(project, dataset.id, dataset.name, user_id, version);
|
|
1168
|
+
return new Dataset(project, dataset.id, dataset.name, version);
|
|
1193
1169
|
}
|
|
1194
1170
|
var Dataset = class {
|
|
1195
|
-
constructor(project, id, name,
|
|
1171
|
+
constructor(project, id, name, pinnedVersion) {
|
|
1196
1172
|
this._fetchedData = void 0;
|
|
1197
1173
|
this.finished = false;
|
|
1198
1174
|
this.project = project;
|
|
1199
1175
|
this.id = id;
|
|
1200
1176
|
this.name = name;
|
|
1201
|
-
this.user_id = user_id;
|
|
1202
1177
|
this.pinnedVersion = pinnedVersion;
|
|
1203
1178
|
this.logger = new BackgroundLogger();
|
|
1204
1179
|
unterminatedObjects.addUnterminated(this, isomorph_default.getCallerLocation());
|
|
@@ -1237,7 +1212,6 @@ var Dataset = class {
|
|
|
1237
1212
|
output,
|
|
1238
1213
|
project_id: this.project.id,
|
|
1239
1214
|
dataset_id: this.id,
|
|
1240
|
-
user_id: this.user_id,
|
|
1241
1215
|
created: (/* @__PURE__ */ new Date()).toISOString(),
|
|
1242
1216
|
metadata
|
|
1243
1217
|
};
|
|
@@ -1246,12 +1220,10 @@ var Dataset = class {
|
|
|
1246
1220
|
}
|
|
1247
1221
|
delete(id) {
|
|
1248
1222
|
this.checkNotFinished();
|
|
1249
|
-
const user_id = this.user_id;
|
|
1250
1223
|
const args = {
|
|
1251
1224
|
id,
|
|
1252
1225
|
project_id: this.project.id,
|
|
1253
1226
|
dataset_id: this.id,
|
|
1254
|
-
user_id,
|
|
1255
1227
|
created: (/* @__PURE__ */ new Date()).toISOString(),
|
|
1256
1228
|
_object_delete: true
|
|
1257
1229
|
};
|
|
@@ -1389,6 +1361,9 @@ var Dataset = class {
|
|
|
1389
1361
|
}
|
|
1390
1362
|
}
|
|
1391
1363
|
};
|
|
1364
|
+
|
|
1365
|
+
// src/browser.ts
|
|
1366
|
+
_internalSetInitialState();
|
|
1392
1367
|
export {
|
|
1393
1368
|
Dataset,
|
|
1394
1369
|
Experiment,
|
|
@@ -1396,6 +1371,7 @@ export {
|
|
|
1396
1371
|
NoopSpan,
|
|
1397
1372
|
SpanImpl,
|
|
1398
1373
|
_internalGetGlobalState,
|
|
1374
|
+
_internalSetInitialState,
|
|
1399
1375
|
currentExperiment,
|
|
1400
1376
|
currentLogger,
|
|
1401
1377
|
currentSpan,
|
package/dist/cli.js
CHANGED
|
@@ -8955,7 +8955,7 @@ var require_package = __commonJS({
|
|
|
8955
8955
|
"package.json"(exports2, module2) {
|
|
8956
8956
|
module2.exports = {
|
|
8957
8957
|
name: "braintrust",
|
|
8958
|
-
version: "0.0.
|
|
8958
|
+
version: "0.0.64",
|
|
8959
8959
|
description: "SDK for integrating Braintrust",
|
|
8960
8960
|
main: "./dist/index.js",
|
|
8961
8961
|
browser: {
|
|
@@ -10533,7 +10533,6 @@ var BraintrustState = class {
|
|
|
10533
10533
|
this.loggedIn = false;
|
|
10534
10534
|
this._apiConn = null;
|
|
10535
10535
|
this._logConn = null;
|
|
10536
|
-
this._userInfo = null;
|
|
10537
10536
|
globalThis.__inherited_braintrust_state = this;
|
|
10538
10537
|
}
|
|
10539
10538
|
apiConn() {
|
|
@@ -10554,19 +10553,14 @@ var BraintrustState = class {
|
|
|
10554
10553
|
}
|
|
10555
10554
|
return this._logConn;
|
|
10556
10555
|
}
|
|
10557
|
-
async userInfo() {
|
|
10558
|
-
if (!this._userInfo) {
|
|
10559
|
-
this._userInfo = await this.logConn().get_json("ping");
|
|
10560
|
-
}
|
|
10561
|
-
return this._userInfo;
|
|
10562
|
-
}
|
|
10563
|
-
setUserInfoIfNull(info) {
|
|
10564
|
-
if (!this._userInfo) {
|
|
10565
|
-
this._userInfo = info;
|
|
10566
|
-
}
|
|
10567
|
-
}
|
|
10568
10556
|
};
|
|
10569
|
-
var _state
|
|
10557
|
+
var _state;
|
|
10558
|
+
function _internalSetInitialState() {
|
|
10559
|
+
if (_state) {
|
|
10560
|
+
throw new Error("Cannot set initial state more than once");
|
|
10561
|
+
}
|
|
10562
|
+
_state = globalThis.__inherited_braintrust_state || new BraintrustState();
|
|
10563
|
+
}
|
|
10570
10564
|
var _internalGetGlobalState = () => _state;
|
|
10571
10565
|
var UnterminatedObjectsHandler = class {
|
|
10572
10566
|
constructor() {
|
|
@@ -10627,7 +10621,6 @@ var HTTPConnection = class _HTTPConnection {
|
|
|
10627
10621
|
async ping() {
|
|
10628
10622
|
try {
|
|
10629
10623
|
const resp = await this.get("ping");
|
|
10630
|
-
_state.setUserInfoIfNull(await resp.json());
|
|
10631
10624
|
return resp.status === 200;
|
|
10632
10625
|
} catch (e) {
|
|
10633
10626
|
return false;
|
|
@@ -10843,8 +10836,6 @@ async function login(options = {}) {
|
|
|
10843
10836
|
}
|
|
10844
10837
|
_state = new BraintrustState();
|
|
10845
10838
|
_state.apiUrl = apiUrl;
|
|
10846
|
-
let login_key_info = null;
|
|
10847
|
-
let ping_ok = false;
|
|
10848
10839
|
let conn = null;
|
|
10849
10840
|
if (apiKey !== void 0) {
|
|
10850
10841
|
const resp = await checkResponse(
|
|
@@ -10862,7 +10853,6 @@ async function login(options = {}) {
|
|
|
10862
10853
|
_check_org_info(info.org_info, orgName);
|
|
10863
10854
|
conn = _state.logConn();
|
|
10864
10855
|
conn.set_token(apiKey);
|
|
10865
|
-
ping_ok = await conn.ping();
|
|
10866
10856
|
} else {
|
|
10867
10857
|
throw new Error(
|
|
10868
10858
|
"Please specify an api key. Token based login is not yet implemented in the JS client."
|
|
@@ -10871,9 +10861,6 @@ async function login(options = {}) {
|
|
|
10871
10861
|
if (!conn) {
|
|
10872
10862
|
throw new Error("Conn should be set at this point (a bug)");
|
|
10873
10863
|
}
|
|
10874
|
-
if (!ping_ok) {
|
|
10875
|
-
await conn.get("ping");
|
|
10876
|
-
}
|
|
10877
10864
|
conn.make_long_lived();
|
|
10878
10865
|
_state.apiConn().set_token(apiKey);
|
|
10879
10866
|
_state.loginToken = conn.token;
|
|
@@ -11075,24 +11062,16 @@ async function _initExperiment(projectName, {
|
|
|
11075
11062
|
const response = await _state.apiConn().post_json("api/experiment/register", args);
|
|
11076
11063
|
const project = response.project;
|
|
11077
11064
|
const experiment = response.experiment;
|
|
11078
|
-
|
|
11079
|
-
return new Experiment(
|
|
11080
|
-
project,
|
|
11081
|
-
experiment.id,
|
|
11082
|
-
experiment.name,
|
|
11083
|
-
user_id,
|
|
11084
|
-
dataset
|
|
11085
|
-
);
|
|
11065
|
+
return new Experiment(project, experiment.id, experiment.name, dataset);
|
|
11086
11066
|
}
|
|
11087
11067
|
var Experiment = class {
|
|
11088
|
-
constructor(project, id, name,
|
|
11068
|
+
constructor(project, id, name, dataset) {
|
|
11089
11069
|
// For type identification.
|
|
11090
11070
|
this.kind = "experiment";
|
|
11091
11071
|
this.finished = false;
|
|
11092
11072
|
this.project = project;
|
|
11093
11073
|
this.id = id;
|
|
11094
11074
|
this.name = name;
|
|
11095
|
-
this.user_id = user_id;
|
|
11096
11075
|
this.dataset = dataset;
|
|
11097
11076
|
this.bgLogger = new BackgroundLogger();
|
|
11098
11077
|
this.lastStartTime = getCurrentUnixTimestamp();
|
|
@@ -11245,8 +11224,6 @@ var SpanImpl = class _SpanImpl {
|
|
|
11245
11224
|
experiment_id: args.rootExperiment.id
|
|
11246
11225
|
};
|
|
11247
11226
|
this.internalData = Object.assign(this.internalData, {
|
|
11248
|
-
// TODO: Hopefully we can remove this.
|
|
11249
|
-
user_id: args.rootExperiment.user_id,
|
|
11250
11227
|
created: (/* @__PURE__ */ new Date()).toISOString()
|
|
11251
11228
|
});
|
|
11252
11229
|
} else if ("rootProject" in args) {
|
|
@@ -11329,13 +11306,12 @@ var SpanImpl = class _SpanImpl {
|
|
|
11329
11306
|
}
|
|
11330
11307
|
};
|
|
11331
11308
|
var Dataset = class {
|
|
11332
|
-
constructor(project, id, name,
|
|
11309
|
+
constructor(project, id, name, pinnedVersion) {
|
|
11333
11310
|
this._fetchedData = void 0;
|
|
11334
11311
|
this.finished = false;
|
|
11335
11312
|
this.project = project;
|
|
11336
11313
|
this.id = id;
|
|
11337
11314
|
this.name = name;
|
|
11338
|
-
this.user_id = user_id;
|
|
11339
11315
|
this.pinnedVersion = pinnedVersion;
|
|
11340
11316
|
this.logger = new BackgroundLogger();
|
|
11341
11317
|
unterminatedObjects.addUnterminated(this, isomorph_default.getCallerLocation());
|
|
@@ -11374,7 +11350,6 @@ var Dataset = class {
|
|
|
11374
11350
|
output,
|
|
11375
11351
|
project_id: this.project.id,
|
|
11376
11352
|
dataset_id: this.id,
|
|
11377
|
-
user_id: this.user_id,
|
|
11378
11353
|
created: (/* @__PURE__ */ new Date()).toISOString(),
|
|
11379
11354
|
metadata
|
|
11380
11355
|
};
|
|
@@ -11383,12 +11358,10 @@ var Dataset = class {
|
|
|
11383
11358
|
}
|
|
11384
11359
|
delete(id) {
|
|
11385
11360
|
this.checkNotFinished();
|
|
11386
|
-
const user_id = this.user_id;
|
|
11387
11361
|
const args = {
|
|
11388
11362
|
id,
|
|
11389
11363
|
project_id: this.project.id,
|
|
11390
11364
|
dataset_id: this.id,
|
|
11391
|
-
user_id,
|
|
11392
11365
|
created: (/* @__PURE__ */ new Date()).toISOString(),
|
|
11393
11366
|
_object_delete: true
|
|
11394
11367
|
};
|
|
@@ -15930,6 +15903,7 @@ function configureNode() {
|
|
|
15930
15903
|
isomorph_default.processOn = (event, handler) => {
|
|
15931
15904
|
process.on(event, handler);
|
|
15932
15905
|
};
|
|
15906
|
+
_internalSetInitialState();
|
|
15933
15907
|
}
|
|
15934
15908
|
|
|
15935
15909
|
// src/cli.ts
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -3545,6 +3545,7 @@ __export(src_exports, {
|
|
|
3545
3545
|
NoopSpan: () => NoopSpan,
|
|
3546
3546
|
SpanImpl: () => SpanImpl,
|
|
3547
3547
|
_internalGetGlobalState: () => _internalGetGlobalState,
|
|
3548
|
+
_internalSetInitialState: () => _internalSetInitialState,
|
|
3548
3549
|
currentExperiment: () => currentExperiment,
|
|
3549
3550
|
currentLogger: () => currentLogger,
|
|
3550
3551
|
currentSpan: () => currentSpan,
|
|
@@ -7658,18 +7659,6 @@ function getCallerLocation() {
|
|
|
7658
7659
|
return void 0;
|
|
7659
7660
|
}
|
|
7660
7661
|
|
|
7661
|
-
// src/node.ts
|
|
7662
|
-
function configureNode() {
|
|
7663
|
-
isomorph_default.getRepoStatus = getRepoStatus;
|
|
7664
|
-
isomorph_default.getPastNAncestors = getPastNAncestors;
|
|
7665
|
-
isomorph_default.getEnv = (name) => process.env[name];
|
|
7666
|
-
isomorph_default.getCallerLocation = getCallerLocation;
|
|
7667
|
-
isomorph_default.newAsyncLocalStorage = () => new import_node_async_hooks.AsyncLocalStorage();
|
|
7668
|
-
isomorph_default.processOn = (event, handler) => {
|
|
7669
|
-
process.on(event, handler);
|
|
7670
|
-
};
|
|
7671
|
-
}
|
|
7672
|
-
|
|
7673
7662
|
// node_modules/uuid/dist/esm-node/rng.js
|
|
7674
7663
|
var import_crypto = __toESM(require("crypto"));
|
|
7675
7664
|
var rnds8Pool = new Uint8Array(256);
|
|
@@ -7828,7 +7817,6 @@ var BraintrustState = class {
|
|
|
7828
7817
|
this.loggedIn = false;
|
|
7829
7818
|
this._apiConn = null;
|
|
7830
7819
|
this._logConn = null;
|
|
7831
|
-
this._userInfo = null;
|
|
7832
7820
|
globalThis.__inherited_braintrust_state = this;
|
|
7833
7821
|
}
|
|
7834
7822
|
apiConn() {
|
|
@@ -7849,19 +7837,14 @@ var BraintrustState = class {
|
|
|
7849
7837
|
}
|
|
7850
7838
|
return this._logConn;
|
|
7851
7839
|
}
|
|
7852
|
-
async userInfo() {
|
|
7853
|
-
if (!this._userInfo) {
|
|
7854
|
-
this._userInfo = await this.logConn().get_json("ping");
|
|
7855
|
-
}
|
|
7856
|
-
return this._userInfo;
|
|
7857
|
-
}
|
|
7858
|
-
setUserInfoIfNull(info) {
|
|
7859
|
-
if (!this._userInfo) {
|
|
7860
|
-
this._userInfo = info;
|
|
7861
|
-
}
|
|
7862
|
-
}
|
|
7863
7840
|
};
|
|
7864
|
-
var _state
|
|
7841
|
+
var _state;
|
|
7842
|
+
function _internalSetInitialState() {
|
|
7843
|
+
if (_state) {
|
|
7844
|
+
throw new Error("Cannot set initial state more than once");
|
|
7845
|
+
}
|
|
7846
|
+
_state = globalThis.__inherited_braintrust_state || new BraintrustState();
|
|
7847
|
+
}
|
|
7865
7848
|
var _internalGetGlobalState = () => _state;
|
|
7866
7849
|
var UnterminatedObjectsHandler = class {
|
|
7867
7850
|
constructor() {
|
|
@@ -7922,7 +7905,6 @@ var HTTPConnection = class _HTTPConnection {
|
|
|
7922
7905
|
async ping() {
|
|
7923
7906
|
try {
|
|
7924
7907
|
const resp = await this.get("ping");
|
|
7925
|
-
_state.setUserInfoIfNull(await resp.json());
|
|
7926
7908
|
return resp.status === 200;
|
|
7927
7909
|
} catch (e) {
|
|
7928
7910
|
return false;
|
|
@@ -8322,8 +8304,6 @@ async function login(options = {}) {
|
|
|
8322
8304
|
}
|
|
8323
8305
|
_state = new BraintrustState();
|
|
8324
8306
|
_state.apiUrl = apiUrl;
|
|
8325
|
-
let login_key_info = null;
|
|
8326
|
-
let ping_ok = false;
|
|
8327
8307
|
let conn = null;
|
|
8328
8308
|
if (apiKey !== void 0) {
|
|
8329
8309
|
const resp = await checkResponse(
|
|
@@ -8341,7 +8321,6 @@ async function login(options = {}) {
|
|
|
8341
8321
|
_check_org_info(info.org_info, orgName);
|
|
8342
8322
|
conn = _state.logConn();
|
|
8343
8323
|
conn.set_token(apiKey);
|
|
8344
|
-
ping_ok = await conn.ping();
|
|
8345
8324
|
} else {
|
|
8346
8325
|
throw new Error(
|
|
8347
8326
|
"Please specify an api key. Token based login is not yet implemented in the JS client."
|
|
@@ -8350,9 +8329,6 @@ async function login(options = {}) {
|
|
|
8350
8329
|
if (!conn) {
|
|
8351
8330
|
throw new Error("Conn should be set at this point (a bug)");
|
|
8352
8331
|
}
|
|
8353
|
-
if (!ping_ok) {
|
|
8354
|
-
await conn.get("ping");
|
|
8355
|
-
}
|
|
8356
8332
|
conn.make_long_lived();
|
|
8357
8333
|
_state.apiConn().set_token(apiKey);
|
|
8358
8334
|
_state.loginToken = conn.token;
|
|
@@ -8568,24 +8544,16 @@ async function _initExperiment(projectName, {
|
|
|
8568
8544
|
const response = await _state.apiConn().post_json("api/experiment/register", args);
|
|
8569
8545
|
const project = response.project;
|
|
8570
8546
|
const experiment = response.experiment;
|
|
8571
|
-
|
|
8572
|
-
return new Experiment(
|
|
8573
|
-
project,
|
|
8574
|
-
experiment.id,
|
|
8575
|
-
experiment.name,
|
|
8576
|
-
user_id,
|
|
8577
|
-
dataset
|
|
8578
|
-
);
|
|
8547
|
+
return new Experiment(project, experiment.id, experiment.name, dataset);
|
|
8579
8548
|
}
|
|
8580
8549
|
var Experiment = class {
|
|
8581
|
-
constructor(project, id, name,
|
|
8550
|
+
constructor(project, id, name, dataset) {
|
|
8582
8551
|
// For type identification.
|
|
8583
8552
|
this.kind = "experiment";
|
|
8584
8553
|
this.finished = false;
|
|
8585
8554
|
this.project = project;
|
|
8586
8555
|
this.id = id;
|
|
8587
8556
|
this.name = name;
|
|
8588
|
-
this.user_id = user_id;
|
|
8589
8557
|
this.dataset = dataset;
|
|
8590
8558
|
this.bgLogger = new BackgroundLogger();
|
|
8591
8559
|
this.lastStartTime = getCurrentUnixTimestamp();
|
|
@@ -8738,8 +8706,6 @@ var SpanImpl = class _SpanImpl {
|
|
|
8738
8706
|
experiment_id: args.rootExperiment.id
|
|
8739
8707
|
};
|
|
8740
8708
|
this.internalData = Object.assign(this.internalData, {
|
|
8741
|
-
// TODO: Hopefully we can remove this.
|
|
8742
|
-
user_id: args.rootExperiment.user_id,
|
|
8743
8709
|
created: (/* @__PURE__ */ new Date()).toISOString()
|
|
8744
8710
|
});
|
|
8745
8711
|
} else if ("rootProject" in args) {
|
|
@@ -8835,17 +8801,15 @@ async function _initDataset(project_name, {
|
|
|
8835
8801
|
const response = await _state.apiConn().post_json("api/dataset/register", args);
|
|
8836
8802
|
const project = response.project;
|
|
8837
8803
|
const dataset = response.dataset;
|
|
8838
|
-
|
|
8839
|
-
return new Dataset(project, dataset.id, dataset.name, user_id, version);
|
|
8804
|
+
return new Dataset(project, dataset.id, dataset.name, version);
|
|
8840
8805
|
}
|
|
8841
8806
|
var Dataset = class {
|
|
8842
|
-
constructor(project, id, name,
|
|
8807
|
+
constructor(project, id, name, pinnedVersion) {
|
|
8843
8808
|
this._fetchedData = void 0;
|
|
8844
8809
|
this.finished = false;
|
|
8845
8810
|
this.project = project;
|
|
8846
8811
|
this.id = id;
|
|
8847
8812
|
this.name = name;
|
|
8848
|
-
this.user_id = user_id;
|
|
8849
8813
|
this.pinnedVersion = pinnedVersion;
|
|
8850
8814
|
this.logger = new BackgroundLogger();
|
|
8851
8815
|
unterminatedObjects.addUnterminated(this, isomorph_default.getCallerLocation());
|
|
@@ -8884,7 +8848,6 @@ var Dataset = class {
|
|
|
8884
8848
|
output,
|
|
8885
8849
|
project_id: this.project.id,
|
|
8886
8850
|
dataset_id: this.id,
|
|
8887
|
-
user_id: this.user_id,
|
|
8888
8851
|
created: (/* @__PURE__ */ new Date()).toISOString(),
|
|
8889
8852
|
metadata
|
|
8890
8853
|
};
|
|
@@ -8893,12 +8856,10 @@ var Dataset = class {
|
|
|
8893
8856
|
}
|
|
8894
8857
|
delete(id) {
|
|
8895
8858
|
this.checkNotFinished();
|
|
8896
|
-
const user_id = this.user_id;
|
|
8897
8859
|
const args = {
|
|
8898
8860
|
id,
|
|
8899
8861
|
project_id: this.project.id,
|
|
8900
8862
|
dataset_id: this.id,
|
|
8901
|
-
user_id,
|
|
8902
8863
|
created: (/* @__PURE__ */ new Date()).toISOString(),
|
|
8903
8864
|
_object_delete: true
|
|
8904
8865
|
};
|
|
@@ -9037,6 +8998,19 @@ var Dataset = class {
|
|
|
9037
8998
|
}
|
|
9038
8999
|
};
|
|
9039
9000
|
|
|
9001
|
+
// src/node.ts
|
|
9002
|
+
function configureNode() {
|
|
9003
|
+
isomorph_default.getRepoStatus = getRepoStatus;
|
|
9004
|
+
isomorph_default.getPastNAncestors = getPastNAncestors;
|
|
9005
|
+
isomorph_default.getEnv = (name) => process.env[name];
|
|
9006
|
+
isomorph_default.getCallerLocation = getCallerLocation;
|
|
9007
|
+
isomorph_default.newAsyncLocalStorage = () => new import_node_async_hooks.AsyncLocalStorage();
|
|
9008
|
+
isomorph_default.processOn = (event, handler) => {
|
|
9009
|
+
process.on(event, handler);
|
|
9010
|
+
};
|
|
9011
|
+
_internalSetInitialState();
|
|
9012
|
+
}
|
|
9013
|
+
|
|
9040
9014
|
// src/framework.ts
|
|
9041
9015
|
var import_chalk = __toESM(require_source());
|
|
9042
9016
|
|
|
@@ -9312,6 +9286,7 @@ configureNode();
|
|
|
9312
9286
|
NoopSpan,
|
|
9313
9287
|
SpanImpl,
|
|
9314
9288
|
_internalGetGlobalState,
|
|
9289
|
+
_internalSetInitialState,
|
|
9315
9290
|
currentExperiment,
|
|
9316
9291
|
currentLogger,
|
|
9317
9292
|
currentSpan,
|
package/dist/logger.d.ts
CHANGED
|
@@ -104,13 +104,11 @@ declare class BraintrustState {
|
|
|
104
104
|
loggedIn: boolean;
|
|
105
105
|
private _apiConn;
|
|
106
106
|
private _logConn;
|
|
107
|
-
private _userInfo;
|
|
108
107
|
constructor();
|
|
109
108
|
apiConn(): HTTPConnection;
|
|
110
109
|
logConn(): HTTPConnection;
|
|
111
|
-
userInfo(): Promise<UserInfo>;
|
|
112
|
-
setUserInfoIfNull(info: UserInfo): void;
|
|
113
110
|
}
|
|
111
|
+
export declare function _internalSetInitialState(): void;
|
|
114
112
|
export declare const _internalGetGlobalState: () => BraintrustState;
|
|
115
113
|
declare class HTTPConnection {
|
|
116
114
|
base_url: string;
|
|
@@ -127,9 +125,6 @@ declare class HTTPConnection {
|
|
|
127
125
|
get_json(object_type: string, args?: Record<string, string> | undefined, retries?: number): Promise<any>;
|
|
128
126
|
post_json(object_type: string, args?: Record<string, unknown> | string | undefined): Promise<any>;
|
|
129
127
|
}
|
|
130
|
-
interface UserInfo {
|
|
131
|
-
id: string;
|
|
132
|
-
}
|
|
133
128
|
interface RegisteredProject {
|
|
134
129
|
id: string;
|
|
135
130
|
name: string;
|
|
@@ -209,7 +204,6 @@ type ExperimentEvent = Partial<InputField> & Partial<OtherExperimentLogFields> &
|
|
|
209
204
|
experiment_id: string;
|
|
210
205
|
[IS_MERGE_FIELD]: boolean;
|
|
211
206
|
} & Partial<{
|
|
212
|
-
user_id: string;
|
|
213
207
|
created: string;
|
|
214
208
|
span_parents: string[];
|
|
215
209
|
span_attributes: Record<string, unknown>;
|
|
@@ -221,7 +215,6 @@ interface DatasetEvent {
|
|
|
221
215
|
id: string;
|
|
222
216
|
project_id: string;
|
|
223
217
|
dataset_id: string;
|
|
224
|
-
user_id: string;
|
|
225
218
|
created: string;
|
|
226
219
|
}
|
|
227
220
|
type LoggingEvent = Omit<ExperimentEvent, "experiment_id"> & {
|
|
@@ -439,13 +432,12 @@ export declare class Experiment {
|
|
|
439
432
|
readonly project: RegisteredProject;
|
|
440
433
|
readonly id: string;
|
|
441
434
|
readonly name: string;
|
|
442
|
-
readonly user_id: string;
|
|
443
435
|
readonly dataset?: Dataset;
|
|
444
436
|
private bgLogger;
|
|
445
437
|
private lastStartTime;
|
|
446
438
|
private finished;
|
|
447
439
|
kind: "experiment";
|
|
448
|
-
constructor(project: RegisteredProject, id: string, name: string,
|
|
440
|
+
constructor(project: RegisteredProject, id: string, name: string, dataset?: Dataset);
|
|
449
441
|
/**
|
|
450
442
|
* Log a single event to the experiment. The event will be batched and uploaded behind the scenes.
|
|
451
443
|
*
|
|
@@ -541,12 +533,11 @@ export declare class Dataset {
|
|
|
541
533
|
readonly project: RegisteredProject;
|
|
542
534
|
readonly id: string;
|
|
543
535
|
readonly name: string;
|
|
544
|
-
readonly user_id: string;
|
|
545
536
|
private pinnedVersion?;
|
|
546
537
|
private _fetchedData?;
|
|
547
538
|
private logger;
|
|
548
539
|
private finished;
|
|
549
|
-
constructor(project: RegisteredProject, id: string, name: string,
|
|
540
|
+
constructor(project: RegisteredProject, id: string, name: string, pinnedVersion?: string);
|
|
550
541
|
/**
|
|
551
542
|
* Insert a single record to the dataset. The record will be batched and uploaded behind the scenes. If you pass in an `id`,
|
|
552
543
|
* 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.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"}
|
|
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","../node_modules/autoevals/jsdist/base.d.ts","../node_modules/autoevals/jsdist/oai.d.ts","../node_modules/autoevals/jsdist/templates.d.ts","../node_modules/autoevals/jsdist/llm.d.ts","../node_modules/autoevals/jsdist/string.d.ts","../node_modules/autoevals/jsdist/number.d.ts","../node_modules/autoevals/jsdist/json.d.ts","../node_modules/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","../node_modules/form-data/index.d.ts","../node_modules/@types/node-fetch/externals.d.ts","../node_modules/@types/node-fetch/index.d.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":"43b74601822e3d76e3e3ac360e176a1502f7a19cd839d7a5c93c6dd7f44aebef","signature":"d4779d20adac33e5116745b4eaf3d83f78e1ac85ea9886170dfe6b0e744071d3","affectsGlobalScope":true},{"version":"0cba65fb8472cad9f3a75664388174e8e174294e30ab6f2dfccc199edd1fd6e2","signature":"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":"c1887ec121feae4f6a72ec295ad8cc2acd12e37b278672d1c1aa53d6ebba076c","signature":"1518a19a9cb02ce4439e1bd5d07e5dd4f496d4598142ff82264b40785ba28789"},{"version":"cc17e9bd64d707ffc6f5fdf9389aa81e6cdc931eaa26a2b185617c5a43040cc8","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"cd791c98a9762f2fb4e549380e862cba7b1f431212d94e2e9668af263c15c5ce","signature":"4d1cd2206f42b12a9e28ad425724bc1d7001abd2547873102b3a52c0bcf72c4b"},"3ac893bb831cf929af812392e1568467766536d79abd4e29d6ae653695c18cdd","2808645b990069e5f8b5ff14c9f1e6077eb642583c3f7854012d60757f23c70e","98cd87f84eb134151b0b760d49e09f0ae3ca01d9f86e6b64f6bb933cc4a40b29","db750d991d0c6e773c114cfe170c5ee4fc1bea43364e0efa5cecb03d198be80a","c5dde9dd9e1bf7168d8a2480a31f9799158f84e3aa1bb061fd09a0cf5a1fcb14",{"version":"e9ffdbc59d4b3dbbfce1f2a1dbb757d88c54f77af3de24be8839aa3f03492b44","signature":"4ce870ab24a6630dd481ccb3c2b5929e9e5d9090ff003514f1dd1613e6053ee8"},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1"],"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,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],[99],[69,99,106],[72,98,99,106,180,181],[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,135,137,138,139,140,141],[99,135],[99,135,136,137],[72,87,99,106],[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,49,56,99,169,170],[99,178],[99,129],[46,79,99],[49],[49,130,134,142],[168],[49,143],[46,47],[178],[46]],"referencedMap":[[113,1],[116,2],[115,3],[114,4],[112,5],[108,6],[111,7],[110,8],[109,9],[107,5],[122,10],[121,11],[120,12],[119,13],[118,14],[117,15],[127,16],[129,17],[131,5],[181,16],[182,18],[53,19],[54,19],[56,20],[57,21],[58,22],[59,23],[60,24],[61,25],[62,26],[63,27],[64,28],[65,29],[66,29],[68,30],[67,31],[69,30],[70,32],[71,33],[55,34],[105,16],[72,35],[73,36],[74,37],[106,38],[75,39],[76,40],[77,41],[78,42],[79,43],[80,44],[81,45],[82,46],[83,47],[84,48],[85,48],[86,49],[87,50],[89,51],[88,52],[90,53],[91,54],[92,55],[93,56],[94,57],[95,58],[96,59],[97,60],[98,61],[99,62],[100,63],[101,64],[102,65],[103,66],[104,67],[128,16],[45,16],[135,16],[142,68],[141,69],[138,70],[140,69],[136,16],[139,69],[137,16],[134,16],[52,16],[180,71],[123,72],[124,72],[126,73],[125,72],[177,74],[176,75],[174,16],[178,76],[175,16],[152,16],[162,77],[146,78],[163,77],[164,79],[165,79],[151,16],[153,78],[154,78],[155,80],[156,81],[157,82],[158,82],[149,83],[159,78],[144,78],[160,82],[147,79],[148,84],[145,85],[166,86],[168,87],[150,88],[167,89],[161,90],[43,16],[44,16],[8,16],[10,16],[9,16],[2,16],[11,16],[12,16],[13,16],[14,16],[15,16],[16,16],[17,16],[18,16],[3,16],[4,16],[22,16],[19,16],[20,16],[21,16],[23,16],[24,16],[25,16],[5,16],[26,16],[27,16],[28,16],[29,16],[6,16],[33,16],[30,16],[31,16],[32,16],[34,16],[7,16],[35,16],[40,16],[41,16],[36,16],[37,16],[38,16],[39,16],[1,16],[42,16],[50,91],[51,92],[172,93],[143,94],[169,82],[173,95],[46,16],[133,96],[132,97],[49,98],[48,99],[171,100],[179,101],[130,102],[170,103],[47,16]],"exportedModulesMap":[[113,1],[116,2],[115,3],[114,4],[112,5],[108,6],[111,7],[110,8],[109,9],[107,5],[122,10],[121,11],[120,12],[119,13],[118,14],[117,15],[127,16],[129,17],[131,5],[181,16],[182,18],[53,19],[54,19],[56,20],[57,21],[58,22],[59,23],[60,24],[61,25],[62,26],[63,27],[64,28],[65,29],[66,29],[68,30],[67,31],[69,30],[70,32],[71,33],[55,34],[105,16],[72,35],[73,36],[74,37],[106,38],[75,39],[76,40],[77,41],[78,42],[79,43],[80,44],[81,45],[82,46],[83,47],[84,48],[85,48],[86,49],[87,50],[89,51],[88,52],[90,53],[91,54],[92,55],[93,56],[94,57],[95,58],[96,59],[97,60],[98,61],[99,62],[100,63],[101,64],[102,65],[103,66],[104,67],[128,16],[45,16],[135,16],[142,68],[141,69],[138,70],[140,69],[136,16],[139,69],[137,16],[134,16],[52,16],[180,71],[123,72],[124,72],[126,73],[125,72],[177,74],[176,75],[174,16],[178,76],[175,16],[152,16],[162,77],[146,78],[163,77],[164,79],[165,79],[151,16],[153,78],[154,78],[155,80],[156,81],[157,82],[158,82],[149,83],[159,78],[144,78],[160,82],[147,79],[148,84],[145,85],[166,86],[168,87],[150,88],[167,89],[161,90],[43,16],[44,16],[8,16],[10,16],[9,16],[2,16],[11,16],[12,16],[13,16],[14,16],[15,16],[16,16],[17,16],[18,16],[3,16],[4,16],[22,16],[19,16],[20,16],[21,16],[23,16],[24,16],[25,16],[5,16],[26,16],[27,16],[28,16],[29,16],[6,16],[33,16],[30,16],[31,16],[32,16],[34,16],[7,16],[35,16],[40,16],[41,16],[36,16],[37,16],[38,16],[39,16],[1,16],[42,16],[50,104],[143,105],[169,106],[173,107],[49,108],[179,109],[170,110]],"semanticDiagnosticsPerFile":[113,116,115,114,112,108,111,110,109,107,122,121,120,119,118,117,127,129,131,181,182,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,135,142,141,138,140,136,139,137,134,52,180,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"}
|