braintrust 0.0.89 → 0.0.90
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 +134 -16
- package/dist/cli.js +113 -11
- package/dist/index.js +134 -16
- package/dist/logger.d.ts +74 -6
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/util.d.ts +1 -0
- package/package.json +2 -2
package/dist/browser.js
CHANGED
|
@@ -73,6 +73,10 @@ var v4_default = v4;
|
|
|
73
73
|
// ../core/js/dist/index.mjs
|
|
74
74
|
var TRANSACTION_ID_FIELD = "_xact_id";
|
|
75
75
|
var IS_MERGE_FIELD = "_is_merge";
|
|
76
|
+
var AUDIT_SOURCE_FIELD = "_audit_source";
|
|
77
|
+
var AUDIT_METADATA_FIELD = "_audit_metadata";
|
|
78
|
+
var VALID_SOURCES = ["app", "api", "external"];
|
|
79
|
+
var PARENT_ID_FIELD = "_parent_id";
|
|
76
80
|
function mergeDicts(mergeInto, mergeFrom) {
|
|
77
81
|
for (const [k, mergeFromV] of Object.entries(mergeFrom)) {
|
|
78
82
|
const mergeIntoV = mergeInto[k];
|
|
@@ -85,6 +89,7 @@ function mergeDicts(mergeInto, mergeFrom) {
|
|
|
85
89
|
mergeInto[k] = mergeFromV;
|
|
86
90
|
}
|
|
87
91
|
}
|
|
92
|
+
return mergeInto;
|
|
88
93
|
}
|
|
89
94
|
function generateMergedRowKey(row) {
|
|
90
95
|
return JSON.stringify(
|
|
@@ -148,6 +153,9 @@ function runFinally(f, finallyF) {
|
|
|
148
153
|
function getCurrentUnixTimestamp() {
|
|
149
154
|
return (/* @__PURE__ */ new Date()).getTime() / 1e3;
|
|
150
155
|
}
|
|
156
|
+
function isEmpty(a) {
|
|
157
|
+
return a === void 0 || a === null;
|
|
158
|
+
}
|
|
151
159
|
|
|
152
160
|
// src/logger.ts
|
|
153
161
|
var NoopSpan = class {
|
|
@@ -159,6 +167,8 @@ var NoopSpan = class {
|
|
|
159
167
|
}
|
|
160
168
|
log(_) {
|
|
161
169
|
}
|
|
170
|
+
logFeedback(event) {
|
|
171
|
+
}
|
|
162
172
|
traced(callback, _1) {
|
|
163
173
|
return callback(this);
|
|
164
174
|
}
|
|
@@ -333,6 +343,70 @@ var HTTPConnection = class _HTTPConnection {
|
|
|
333
343
|
return await resp.json();
|
|
334
344
|
}
|
|
335
345
|
};
|
|
346
|
+
function logFeedbackImpl(bgLogger, parentIds, {
|
|
347
|
+
id,
|
|
348
|
+
expected,
|
|
349
|
+
scores,
|
|
350
|
+
metadata: inputMetadata,
|
|
351
|
+
comment,
|
|
352
|
+
source: inputSource
|
|
353
|
+
}) {
|
|
354
|
+
const source = inputSource ?? "external";
|
|
355
|
+
if (!VALID_SOURCES.includes(source)) {
|
|
356
|
+
throw new Error(`source must be one of ${VALID_SOURCES}`);
|
|
357
|
+
}
|
|
358
|
+
if (isEmpty(scores) && isEmpty(expected) && isEmpty(comment)) {
|
|
359
|
+
throw new Error(
|
|
360
|
+
"At least one of scores, expected, or comment must be specified"
|
|
361
|
+
);
|
|
362
|
+
}
|
|
363
|
+
const validatedEvent = validateAndSanitizeExperimentLogPartialArgs({
|
|
364
|
+
scores,
|
|
365
|
+
metadata: inputMetadata,
|
|
366
|
+
expected
|
|
367
|
+
});
|
|
368
|
+
let { metadata, ...updateEvent } = validatedEvent;
|
|
369
|
+
updateEvent = Object.fromEntries(
|
|
370
|
+
Object.entries(updateEvent).filter(([_, v]) => !isEmpty(v))
|
|
371
|
+
);
|
|
372
|
+
const trueParentIds = (async () => {
|
|
373
|
+
const { kind, ...ids } = await parentIds;
|
|
374
|
+
return ids;
|
|
375
|
+
})();
|
|
376
|
+
if (Object.keys(updateEvent).length > 0) {
|
|
377
|
+
const record = (async () => {
|
|
378
|
+
return {
|
|
379
|
+
id,
|
|
380
|
+
...updateEvent,
|
|
381
|
+
...await trueParentIds,
|
|
382
|
+
[AUDIT_SOURCE_FIELD]: source,
|
|
383
|
+
[AUDIT_METADATA_FIELD]: metadata,
|
|
384
|
+
[IS_MERGE_FIELD]: true
|
|
385
|
+
};
|
|
386
|
+
})();
|
|
387
|
+
bgLogger.log([record]);
|
|
388
|
+
}
|
|
389
|
+
if (!isEmpty(comment)) {
|
|
390
|
+
const record = (async () => {
|
|
391
|
+
return {
|
|
392
|
+
id: v4_default(),
|
|
393
|
+
created: (/* @__PURE__ */ new Date()).toISOString(),
|
|
394
|
+
origin: {
|
|
395
|
+
// NOTE: We do not know (or care?) what the transaction id of the row that
|
|
396
|
+
// we're commenting on is here, so we omit it.
|
|
397
|
+
id
|
|
398
|
+
},
|
|
399
|
+
comment: {
|
|
400
|
+
text: comment
|
|
401
|
+
},
|
|
402
|
+
...await trueParentIds,
|
|
403
|
+
[AUDIT_SOURCE_FIELD]: source,
|
|
404
|
+
[AUDIT_METADATA_FIELD]: metadata
|
|
405
|
+
};
|
|
406
|
+
})();
|
|
407
|
+
bgLogger.log([record]);
|
|
408
|
+
}
|
|
409
|
+
}
|
|
336
410
|
var Logger = class {
|
|
337
411
|
constructor(lazyMetadata, logOptions = {}) {
|
|
338
412
|
// For type identification.
|
|
@@ -411,6 +485,14 @@ var Logger = class {
|
|
|
411
485
|
})();
|
|
412
486
|
}
|
|
413
487
|
}
|
|
488
|
+
async lazyParentIds() {
|
|
489
|
+
return {
|
|
490
|
+
kind: "project_log",
|
|
491
|
+
org_id: await this.org_id,
|
|
492
|
+
project_id: (await this.project).id,
|
|
493
|
+
log_id: "g"
|
|
494
|
+
};
|
|
495
|
+
}
|
|
414
496
|
/**
|
|
415
497
|
* Lower-level alternative to `traced`, which does not automatically end the span or mark it as current.
|
|
416
498
|
*
|
|
@@ -418,19 +500,27 @@ var Logger = class {
|
|
|
418
500
|
*/
|
|
419
501
|
startSpan(args) {
|
|
420
502
|
const { name, ...argsRest } = args ?? {};
|
|
421
|
-
const parentIds = (async () => ({
|
|
422
|
-
kind: "project_log",
|
|
423
|
-
org_id: await this.org_id,
|
|
424
|
-
project_id: (await this.project).id,
|
|
425
|
-
log_id: "g"
|
|
426
|
-
}))();
|
|
427
503
|
return new SpanImpl({
|
|
428
|
-
parentIds,
|
|
504
|
+
parentIds: this.lazyParentIds(),
|
|
429
505
|
bgLogger: this.bgLogger,
|
|
430
506
|
name: name ?? "root",
|
|
431
507
|
...argsRest
|
|
432
508
|
});
|
|
433
509
|
}
|
|
510
|
+
/**
|
|
511
|
+
* Log feedback to an event. Feedback is used to save feedback scores, set an expected value, or add a comment.
|
|
512
|
+
*
|
|
513
|
+
* @param event
|
|
514
|
+
* @param event.id The id of the event to log feedback for. This is the `id` returned by `log` or accessible as the `id` field of a span.
|
|
515
|
+
* @param event.scores (Optional) a dictionary of numeric values (between 0 and 1) to log. These scores will be merged into the existing scores for the event.
|
|
516
|
+
* @param event.expected (Optional) the ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not.
|
|
517
|
+
* @param event.comment (Optional) an optional comment string to log about the event.
|
|
518
|
+
* @param event.metadata (Optional) a dictionary with additional data about the feedback. If you have a `user_id`, you can log it here and access it in the Braintrust UI.
|
|
519
|
+
* @param event.source (Optional) the source of the feedback. Must be one of "external" (default), "app", or "api".
|
|
520
|
+
*/
|
|
521
|
+
logFeedback(event) {
|
|
522
|
+
logFeedbackImpl(this.bgLogger, this.lazyParentIds(), event);
|
|
523
|
+
}
|
|
434
524
|
/*
|
|
435
525
|
* Flush any pending logs to the server.
|
|
436
526
|
*/
|
|
@@ -1022,6 +1112,13 @@ var Experiment = class {
|
|
|
1022
1112
|
() => span.end()
|
|
1023
1113
|
);
|
|
1024
1114
|
}
|
|
1115
|
+
async lazyParentIds() {
|
|
1116
|
+
return {
|
|
1117
|
+
kind: "experiment",
|
|
1118
|
+
project_id: (await this.project).id,
|
|
1119
|
+
experiment_id: await this.id
|
|
1120
|
+
};
|
|
1121
|
+
}
|
|
1025
1122
|
/**
|
|
1026
1123
|
* Lower-level alternative to `traced`, which does not automatically end the span or mark it as current.
|
|
1027
1124
|
*
|
|
@@ -1029,13 +1126,8 @@ var Experiment = class {
|
|
|
1029
1126
|
*/
|
|
1030
1127
|
startSpan(args) {
|
|
1031
1128
|
const { name, ...argsRest } = args ?? {};
|
|
1032
|
-
const parentIds = (async () => ({
|
|
1033
|
-
kind: "experiment",
|
|
1034
|
-
project_id: (await this.project).id,
|
|
1035
|
-
experiment_id: await this.id
|
|
1036
|
-
}))();
|
|
1037
1129
|
return new SpanImpl({
|
|
1038
|
-
parentIds,
|
|
1130
|
+
parentIds: this.lazyParentIds(),
|
|
1039
1131
|
bgLogger: this.bgLogger,
|
|
1040
1132
|
name: name ?? "root",
|
|
1041
1133
|
...argsRest
|
|
@@ -1097,6 +1189,20 @@ var Experiment = class {
|
|
|
1097
1189
|
metrics
|
|
1098
1190
|
};
|
|
1099
1191
|
}
|
|
1192
|
+
/**
|
|
1193
|
+
* Log feedback to an event in the experiment. Feedback is used to save feedback scores, set an expected value, or add a comment.
|
|
1194
|
+
*
|
|
1195
|
+
* @param event
|
|
1196
|
+
* @param event.id The id of the event to log feedback for. This is the `id` returned by `log` or accessible as the `id` field of a span.
|
|
1197
|
+
* @param event.scores (Optional) a dictionary of numeric values (between 0 and 1) to log. These scores will be merged into the existing scores for the event.
|
|
1198
|
+
* @param event.expected (Optional) the ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not.
|
|
1199
|
+
* @param event.comment (Optional) an optional comment string to log about the event.
|
|
1200
|
+
* @param event.metadata (Optional) a dictionary with additional data about the feedback. If you have a `user_id`, you can log it here and access it in the Braintrust UI.
|
|
1201
|
+
* @param event.source (Optional) the source of the feedback. Must be one of "external" (default), "app", or "api".
|
|
1202
|
+
*/
|
|
1203
|
+
logFeedback(event) {
|
|
1204
|
+
logFeedbackImpl(this.bgLogger, this.lazyParentIds(), event);
|
|
1205
|
+
}
|
|
1100
1206
|
/**
|
|
1101
1207
|
* Flush any pending rows to the server.
|
|
1102
1208
|
*/
|
|
@@ -1147,10 +1253,12 @@ var SpanImpl = class _SpanImpl {
|
|
|
1147
1253
|
this.rowIds = {
|
|
1148
1254
|
id,
|
|
1149
1255
|
span_id,
|
|
1150
|
-
root_span_id: args.parentSpanInfo?.root_span_id
|
|
1256
|
+
root_span_id: "parentSpanInfo" in args && args.parentSpanInfo?.root_span_id ? args.parentSpanInfo.root_span_id : span_id
|
|
1151
1257
|
};
|
|
1152
|
-
if (args.parentSpanInfo) {
|
|
1258
|
+
if ("parentSpanInfo" in args && args.parentSpanInfo?.span_id) {
|
|
1153
1259
|
this.internalData.span_parents = [args.parentSpanInfo.span_id];
|
|
1260
|
+
} else if ("parentId" in args && !isEmpty(args.parentId)) {
|
|
1261
|
+
this.rowIds[PARENT_ID_FIELD] = args.parentId;
|
|
1154
1262
|
}
|
|
1155
1263
|
this.isMerge = false;
|
|
1156
1264
|
const { id: _id, ...eventRest } = args.event ?? {};
|
|
@@ -1174,16 +1282,26 @@ var SpanImpl = class _SpanImpl {
|
|
|
1174
1282
|
if (sanitizedAndInternalData.metrics?.end) {
|
|
1175
1283
|
this.loggedEndTime = sanitizedAndInternalData.metrics?.end;
|
|
1176
1284
|
}
|
|
1285
|
+
const parentIds = (async () => {
|
|
1286
|
+
const { kind, ...ids } = await this.parentIds;
|
|
1287
|
+
return ids;
|
|
1288
|
+
})();
|
|
1177
1289
|
const record = (async () => {
|
|
1178
1290
|
return {
|
|
1179
1291
|
...sanitizedAndInternalData,
|
|
1180
1292
|
...this.rowIds,
|
|
1181
|
-
...await
|
|
1293
|
+
...await parentIds,
|
|
1182
1294
|
[IS_MERGE_FIELD]: this.isMerge
|
|
1183
1295
|
};
|
|
1184
1296
|
})();
|
|
1185
1297
|
this.bgLogger.log([record]);
|
|
1186
1298
|
}
|
|
1299
|
+
logFeedback(event) {
|
|
1300
|
+
logFeedbackImpl(this.bgLogger, this.parentIds, {
|
|
1301
|
+
...event,
|
|
1302
|
+
id: this.id
|
|
1303
|
+
});
|
|
1304
|
+
}
|
|
1187
1305
|
traced(callback, args) {
|
|
1188
1306
|
const { setCurrent, ...argsRest } = args ?? {};
|
|
1189
1307
|
const span = this.startSpan(argsRest);
|
package/dist/cli.js
CHANGED
|
@@ -9065,7 +9065,7 @@ var require_package = __commonJS({
|
|
|
9065
9065
|
"package.json"(exports2, module2) {
|
|
9066
9066
|
module2.exports = {
|
|
9067
9067
|
name: "braintrust",
|
|
9068
|
-
version: "0.0.
|
|
9068
|
+
version: "0.0.90",
|
|
9069
9069
|
description: "SDK for integrating Braintrust",
|
|
9070
9070
|
main: "./dist/index.js",
|
|
9071
9071
|
browser: {
|
|
@@ -9108,7 +9108,7 @@ var require_package = __commonJS({
|
|
|
9108
9108
|
typescript: "^5.3.3"
|
|
9109
9109
|
},
|
|
9110
9110
|
dependencies: {
|
|
9111
|
-
"@braintrust/core": "^0.0.
|
|
9111
|
+
"@braintrust/core": "^0.0.11",
|
|
9112
9112
|
argparse: "^2.0.1",
|
|
9113
9113
|
chalk: "^4.1.2",
|
|
9114
9114
|
"cli-progress": "^3.12.0",
|
|
@@ -10511,6 +10511,10 @@ var import_pluralize2 = __toESM(require_pluralize());
|
|
|
10511
10511
|
// ../core/js/dist/index.mjs
|
|
10512
10512
|
var TRANSACTION_ID_FIELD = "_xact_id";
|
|
10513
10513
|
var IS_MERGE_FIELD = "_is_merge";
|
|
10514
|
+
var AUDIT_SOURCE_FIELD = "_audit_source";
|
|
10515
|
+
var AUDIT_METADATA_FIELD = "_audit_metadata";
|
|
10516
|
+
var VALID_SOURCES = ["app", "api", "external"];
|
|
10517
|
+
var PARENT_ID_FIELD = "_parent_id";
|
|
10514
10518
|
function mergeDicts(mergeInto, mergeFrom) {
|
|
10515
10519
|
for (const [k, mergeFromV] of Object.entries(mergeFrom)) {
|
|
10516
10520
|
const mergeIntoV = mergeInto[k];
|
|
@@ -10523,6 +10527,7 @@ function mergeDicts(mergeInto, mergeFrom) {
|
|
|
10523
10527
|
mergeInto[k] = mergeFromV;
|
|
10524
10528
|
}
|
|
10525
10529
|
}
|
|
10530
|
+
return mergeInto;
|
|
10526
10531
|
}
|
|
10527
10532
|
function generateMergedRowKey(row) {
|
|
10528
10533
|
return JSON.stringify(
|
|
@@ -10609,6 +10614,9 @@ function runFinally(f, finallyF) {
|
|
|
10609
10614
|
function getCurrentUnixTimestamp() {
|
|
10610
10615
|
return (/* @__PURE__ */ new Date()).getTime() / 1e3;
|
|
10611
10616
|
}
|
|
10617
|
+
function isEmpty(a) {
|
|
10618
|
+
return a === void 0 || a === null;
|
|
10619
|
+
}
|
|
10612
10620
|
|
|
10613
10621
|
// src/logger.ts
|
|
10614
10622
|
var NoopSpan = class {
|
|
@@ -10620,6 +10628,8 @@ var NoopSpan = class {
|
|
|
10620
10628
|
}
|
|
10621
10629
|
log(_) {
|
|
10622
10630
|
}
|
|
10631
|
+
logFeedback(event) {
|
|
10632
|
+
}
|
|
10623
10633
|
traced(callback, _1) {
|
|
10624
10634
|
return callback(this);
|
|
10625
10635
|
}
|
|
@@ -10794,6 +10804,70 @@ var HTTPConnection = class _HTTPConnection {
|
|
|
10794
10804
|
return await resp.json();
|
|
10795
10805
|
}
|
|
10796
10806
|
};
|
|
10807
|
+
function logFeedbackImpl(bgLogger, parentIds, {
|
|
10808
|
+
id,
|
|
10809
|
+
expected,
|
|
10810
|
+
scores,
|
|
10811
|
+
metadata: inputMetadata,
|
|
10812
|
+
comment,
|
|
10813
|
+
source: inputSource
|
|
10814
|
+
}) {
|
|
10815
|
+
const source = inputSource ?? "external";
|
|
10816
|
+
if (!VALID_SOURCES.includes(source)) {
|
|
10817
|
+
throw new Error(`source must be one of ${VALID_SOURCES}`);
|
|
10818
|
+
}
|
|
10819
|
+
if (isEmpty(scores) && isEmpty(expected) && isEmpty(comment)) {
|
|
10820
|
+
throw new Error(
|
|
10821
|
+
"At least one of scores, expected, or comment must be specified"
|
|
10822
|
+
);
|
|
10823
|
+
}
|
|
10824
|
+
const validatedEvent = validateAndSanitizeExperimentLogPartialArgs({
|
|
10825
|
+
scores,
|
|
10826
|
+
metadata: inputMetadata,
|
|
10827
|
+
expected
|
|
10828
|
+
});
|
|
10829
|
+
let { metadata, ...updateEvent } = validatedEvent;
|
|
10830
|
+
updateEvent = Object.fromEntries(
|
|
10831
|
+
Object.entries(updateEvent).filter(([_, v]) => !isEmpty(v))
|
|
10832
|
+
);
|
|
10833
|
+
const trueParentIds = (async () => {
|
|
10834
|
+
const { kind, ...ids } = await parentIds;
|
|
10835
|
+
return ids;
|
|
10836
|
+
})();
|
|
10837
|
+
if (Object.keys(updateEvent).length > 0) {
|
|
10838
|
+
const record = (async () => {
|
|
10839
|
+
return {
|
|
10840
|
+
id,
|
|
10841
|
+
...updateEvent,
|
|
10842
|
+
...await trueParentIds,
|
|
10843
|
+
[AUDIT_SOURCE_FIELD]: source,
|
|
10844
|
+
[AUDIT_METADATA_FIELD]: metadata,
|
|
10845
|
+
[IS_MERGE_FIELD]: true
|
|
10846
|
+
};
|
|
10847
|
+
})();
|
|
10848
|
+
bgLogger.log([record]);
|
|
10849
|
+
}
|
|
10850
|
+
if (!isEmpty(comment)) {
|
|
10851
|
+
const record = (async () => {
|
|
10852
|
+
return {
|
|
10853
|
+
id: v4_default(),
|
|
10854
|
+
created: (/* @__PURE__ */ new Date()).toISOString(),
|
|
10855
|
+
origin: {
|
|
10856
|
+
// NOTE: We do not know (or care?) what the transaction id of the row that
|
|
10857
|
+
// we're commenting on is here, so we omit it.
|
|
10858
|
+
id
|
|
10859
|
+
},
|
|
10860
|
+
comment: {
|
|
10861
|
+
text: comment
|
|
10862
|
+
},
|
|
10863
|
+
...await trueParentIds,
|
|
10864
|
+
[AUDIT_SOURCE_FIELD]: source,
|
|
10865
|
+
[AUDIT_METADATA_FIELD]: metadata
|
|
10866
|
+
};
|
|
10867
|
+
})();
|
|
10868
|
+
bgLogger.log([record]);
|
|
10869
|
+
}
|
|
10870
|
+
}
|
|
10797
10871
|
var MaxRequestSize = 6 * 1024 * 1024;
|
|
10798
10872
|
function constructJsonArray(items) {
|
|
10799
10873
|
return `[${items.join(",")}]`;
|
|
@@ -11177,6 +11251,13 @@ var Experiment = class {
|
|
|
11177
11251
|
() => span.end()
|
|
11178
11252
|
);
|
|
11179
11253
|
}
|
|
11254
|
+
async lazyParentIds() {
|
|
11255
|
+
return {
|
|
11256
|
+
kind: "experiment",
|
|
11257
|
+
project_id: (await this.project).id,
|
|
11258
|
+
experiment_id: await this.id
|
|
11259
|
+
};
|
|
11260
|
+
}
|
|
11180
11261
|
/**
|
|
11181
11262
|
* Lower-level alternative to `traced`, which does not automatically end the span or mark it as current.
|
|
11182
11263
|
*
|
|
@@ -11184,13 +11265,8 @@ var Experiment = class {
|
|
|
11184
11265
|
*/
|
|
11185
11266
|
startSpan(args) {
|
|
11186
11267
|
const { name, ...argsRest } = args ?? {};
|
|
11187
|
-
const parentIds = (async () => ({
|
|
11188
|
-
kind: "experiment",
|
|
11189
|
-
project_id: (await this.project).id,
|
|
11190
|
-
experiment_id: await this.id
|
|
11191
|
-
}))();
|
|
11192
11268
|
return new SpanImpl({
|
|
11193
|
-
parentIds,
|
|
11269
|
+
parentIds: this.lazyParentIds(),
|
|
11194
11270
|
bgLogger: this.bgLogger,
|
|
11195
11271
|
name: name ?? "root",
|
|
11196
11272
|
...argsRest
|
|
@@ -11252,6 +11328,20 @@ var Experiment = class {
|
|
|
11252
11328
|
metrics
|
|
11253
11329
|
};
|
|
11254
11330
|
}
|
|
11331
|
+
/**
|
|
11332
|
+
* Log feedback to an event in the experiment. Feedback is used to save feedback scores, set an expected value, or add a comment.
|
|
11333
|
+
*
|
|
11334
|
+
* @param event
|
|
11335
|
+
* @param event.id The id of the event to log feedback for. This is the `id` returned by `log` or accessible as the `id` field of a span.
|
|
11336
|
+
* @param event.scores (Optional) a dictionary of numeric values (between 0 and 1) to log. These scores will be merged into the existing scores for the event.
|
|
11337
|
+
* @param event.expected (Optional) the ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not.
|
|
11338
|
+
* @param event.comment (Optional) an optional comment string to log about the event.
|
|
11339
|
+
* @param event.metadata (Optional) a dictionary with additional data about the feedback. If you have a `user_id`, you can log it here and access it in the Braintrust UI.
|
|
11340
|
+
* @param event.source (Optional) the source of the feedback. Must be one of "external" (default), "app", or "api".
|
|
11341
|
+
*/
|
|
11342
|
+
logFeedback(event) {
|
|
11343
|
+
logFeedbackImpl(this.bgLogger, this.lazyParentIds(), event);
|
|
11344
|
+
}
|
|
11255
11345
|
/**
|
|
11256
11346
|
* Flush any pending rows to the server.
|
|
11257
11347
|
*/
|
|
@@ -11302,10 +11392,12 @@ var SpanImpl = class _SpanImpl {
|
|
|
11302
11392
|
this.rowIds = {
|
|
11303
11393
|
id,
|
|
11304
11394
|
span_id,
|
|
11305
|
-
root_span_id: args.parentSpanInfo?.root_span_id
|
|
11395
|
+
root_span_id: "parentSpanInfo" in args && args.parentSpanInfo?.root_span_id ? args.parentSpanInfo.root_span_id : span_id
|
|
11306
11396
|
};
|
|
11307
|
-
if (args.parentSpanInfo) {
|
|
11397
|
+
if ("parentSpanInfo" in args && args.parentSpanInfo?.span_id) {
|
|
11308
11398
|
this.internalData.span_parents = [args.parentSpanInfo.span_id];
|
|
11399
|
+
} else if ("parentId" in args && !isEmpty(args.parentId)) {
|
|
11400
|
+
this.rowIds[PARENT_ID_FIELD] = args.parentId;
|
|
11309
11401
|
}
|
|
11310
11402
|
this.isMerge = false;
|
|
11311
11403
|
const { id: _id, ...eventRest } = args.event ?? {};
|
|
@@ -11329,16 +11421,26 @@ var SpanImpl = class _SpanImpl {
|
|
|
11329
11421
|
if (sanitizedAndInternalData.metrics?.end) {
|
|
11330
11422
|
this.loggedEndTime = sanitizedAndInternalData.metrics?.end;
|
|
11331
11423
|
}
|
|
11424
|
+
const parentIds = (async () => {
|
|
11425
|
+
const { kind, ...ids } = await this.parentIds;
|
|
11426
|
+
return ids;
|
|
11427
|
+
})();
|
|
11332
11428
|
const record = (async () => {
|
|
11333
11429
|
return {
|
|
11334
11430
|
...sanitizedAndInternalData,
|
|
11335
11431
|
...this.rowIds,
|
|
11336
|
-
...await
|
|
11432
|
+
...await parentIds,
|
|
11337
11433
|
[IS_MERGE_FIELD]: this.isMerge
|
|
11338
11434
|
};
|
|
11339
11435
|
})();
|
|
11340
11436
|
this.bgLogger.log([record]);
|
|
11341
11437
|
}
|
|
11438
|
+
logFeedback(event) {
|
|
11439
|
+
logFeedbackImpl(this.bgLogger, this.parentIds, {
|
|
11440
|
+
...event,
|
|
11441
|
+
id: this.id
|
|
11442
|
+
});
|
|
11443
|
+
}
|
|
11342
11444
|
traced(callback, args) {
|
|
11343
11445
|
const { setCurrent, ...argsRest } = args ?? {};
|
|
11344
11446
|
const span = this.startSpan(argsRest);
|
package/dist/index.js
CHANGED
|
@@ -7875,6 +7875,10 @@ var v4_default = v4;
|
|
|
7875
7875
|
// ../core/js/dist/index.mjs
|
|
7876
7876
|
var TRANSACTION_ID_FIELD = "_xact_id";
|
|
7877
7877
|
var IS_MERGE_FIELD = "_is_merge";
|
|
7878
|
+
var AUDIT_SOURCE_FIELD = "_audit_source";
|
|
7879
|
+
var AUDIT_METADATA_FIELD = "_audit_metadata";
|
|
7880
|
+
var VALID_SOURCES = ["app", "api", "external"];
|
|
7881
|
+
var PARENT_ID_FIELD = "_parent_id";
|
|
7878
7882
|
function mergeDicts(mergeInto, mergeFrom) {
|
|
7879
7883
|
for (const [k, mergeFromV] of Object.entries(mergeFrom)) {
|
|
7880
7884
|
const mergeIntoV = mergeInto[k];
|
|
@@ -7887,6 +7891,7 @@ function mergeDicts(mergeInto, mergeFrom) {
|
|
|
7887
7891
|
mergeInto[k] = mergeFromV;
|
|
7888
7892
|
}
|
|
7889
7893
|
}
|
|
7894
|
+
return mergeInto;
|
|
7890
7895
|
}
|
|
7891
7896
|
function generateMergedRowKey(row) {
|
|
7892
7897
|
return JSON.stringify(
|
|
@@ -7950,6 +7955,9 @@ function runFinally(f, finallyF) {
|
|
|
7950
7955
|
function getCurrentUnixTimestamp() {
|
|
7951
7956
|
return (/* @__PURE__ */ new Date()).getTime() / 1e3;
|
|
7952
7957
|
}
|
|
7958
|
+
function isEmpty(a) {
|
|
7959
|
+
return a === void 0 || a === null;
|
|
7960
|
+
}
|
|
7953
7961
|
|
|
7954
7962
|
// src/logger.ts
|
|
7955
7963
|
var NoopSpan = class {
|
|
@@ -7961,6 +7969,8 @@ var NoopSpan = class {
|
|
|
7961
7969
|
}
|
|
7962
7970
|
log(_) {
|
|
7963
7971
|
}
|
|
7972
|
+
logFeedback(event) {
|
|
7973
|
+
}
|
|
7964
7974
|
traced(callback, _1) {
|
|
7965
7975
|
return callback(this);
|
|
7966
7976
|
}
|
|
@@ -8135,6 +8145,70 @@ var HTTPConnection = class _HTTPConnection {
|
|
|
8135
8145
|
return await resp.json();
|
|
8136
8146
|
}
|
|
8137
8147
|
};
|
|
8148
|
+
function logFeedbackImpl(bgLogger, parentIds, {
|
|
8149
|
+
id,
|
|
8150
|
+
expected,
|
|
8151
|
+
scores,
|
|
8152
|
+
metadata: inputMetadata,
|
|
8153
|
+
comment,
|
|
8154
|
+
source: inputSource
|
|
8155
|
+
}) {
|
|
8156
|
+
const source = inputSource ?? "external";
|
|
8157
|
+
if (!VALID_SOURCES.includes(source)) {
|
|
8158
|
+
throw new Error(`source must be one of ${VALID_SOURCES}`);
|
|
8159
|
+
}
|
|
8160
|
+
if (isEmpty(scores) && isEmpty(expected) && isEmpty(comment)) {
|
|
8161
|
+
throw new Error(
|
|
8162
|
+
"At least one of scores, expected, or comment must be specified"
|
|
8163
|
+
);
|
|
8164
|
+
}
|
|
8165
|
+
const validatedEvent = validateAndSanitizeExperimentLogPartialArgs({
|
|
8166
|
+
scores,
|
|
8167
|
+
metadata: inputMetadata,
|
|
8168
|
+
expected
|
|
8169
|
+
});
|
|
8170
|
+
let { metadata, ...updateEvent } = validatedEvent;
|
|
8171
|
+
updateEvent = Object.fromEntries(
|
|
8172
|
+
Object.entries(updateEvent).filter(([_, v]) => !isEmpty(v))
|
|
8173
|
+
);
|
|
8174
|
+
const trueParentIds = (async () => {
|
|
8175
|
+
const { kind, ...ids } = await parentIds;
|
|
8176
|
+
return ids;
|
|
8177
|
+
})();
|
|
8178
|
+
if (Object.keys(updateEvent).length > 0) {
|
|
8179
|
+
const record = (async () => {
|
|
8180
|
+
return {
|
|
8181
|
+
id,
|
|
8182
|
+
...updateEvent,
|
|
8183
|
+
...await trueParentIds,
|
|
8184
|
+
[AUDIT_SOURCE_FIELD]: source,
|
|
8185
|
+
[AUDIT_METADATA_FIELD]: metadata,
|
|
8186
|
+
[IS_MERGE_FIELD]: true
|
|
8187
|
+
};
|
|
8188
|
+
})();
|
|
8189
|
+
bgLogger.log([record]);
|
|
8190
|
+
}
|
|
8191
|
+
if (!isEmpty(comment)) {
|
|
8192
|
+
const record = (async () => {
|
|
8193
|
+
return {
|
|
8194
|
+
id: v4_default(),
|
|
8195
|
+
created: (/* @__PURE__ */ new Date()).toISOString(),
|
|
8196
|
+
origin: {
|
|
8197
|
+
// NOTE: We do not know (or care?) what the transaction id of the row that
|
|
8198
|
+
// we're commenting on is here, so we omit it.
|
|
8199
|
+
id
|
|
8200
|
+
},
|
|
8201
|
+
comment: {
|
|
8202
|
+
text: comment
|
|
8203
|
+
},
|
|
8204
|
+
...await trueParentIds,
|
|
8205
|
+
[AUDIT_SOURCE_FIELD]: source,
|
|
8206
|
+
[AUDIT_METADATA_FIELD]: metadata
|
|
8207
|
+
};
|
|
8208
|
+
})();
|
|
8209
|
+
bgLogger.log([record]);
|
|
8210
|
+
}
|
|
8211
|
+
}
|
|
8138
8212
|
var Logger = class {
|
|
8139
8213
|
constructor(lazyMetadata, logOptions = {}) {
|
|
8140
8214
|
// For type identification.
|
|
@@ -8213,6 +8287,14 @@ var Logger = class {
|
|
|
8213
8287
|
})();
|
|
8214
8288
|
}
|
|
8215
8289
|
}
|
|
8290
|
+
async lazyParentIds() {
|
|
8291
|
+
return {
|
|
8292
|
+
kind: "project_log",
|
|
8293
|
+
org_id: await this.org_id,
|
|
8294
|
+
project_id: (await this.project).id,
|
|
8295
|
+
log_id: "g"
|
|
8296
|
+
};
|
|
8297
|
+
}
|
|
8216
8298
|
/**
|
|
8217
8299
|
* Lower-level alternative to `traced`, which does not automatically end the span or mark it as current.
|
|
8218
8300
|
*
|
|
@@ -8220,19 +8302,27 @@ var Logger = class {
|
|
|
8220
8302
|
*/
|
|
8221
8303
|
startSpan(args) {
|
|
8222
8304
|
const { name, ...argsRest } = args ?? {};
|
|
8223
|
-
const parentIds = (async () => ({
|
|
8224
|
-
kind: "project_log",
|
|
8225
|
-
org_id: await this.org_id,
|
|
8226
|
-
project_id: (await this.project).id,
|
|
8227
|
-
log_id: "g"
|
|
8228
|
-
}))();
|
|
8229
8305
|
return new SpanImpl({
|
|
8230
|
-
parentIds,
|
|
8306
|
+
parentIds: this.lazyParentIds(),
|
|
8231
8307
|
bgLogger: this.bgLogger,
|
|
8232
8308
|
name: name ?? "root",
|
|
8233
8309
|
...argsRest
|
|
8234
8310
|
});
|
|
8235
8311
|
}
|
|
8312
|
+
/**
|
|
8313
|
+
* Log feedback to an event. Feedback is used to save feedback scores, set an expected value, or add a comment.
|
|
8314
|
+
*
|
|
8315
|
+
* @param event
|
|
8316
|
+
* @param event.id The id of the event to log feedback for. This is the `id` returned by `log` or accessible as the `id` field of a span.
|
|
8317
|
+
* @param event.scores (Optional) a dictionary of numeric values (between 0 and 1) to log. These scores will be merged into the existing scores for the event.
|
|
8318
|
+
* @param event.expected (Optional) the ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not.
|
|
8319
|
+
* @param event.comment (Optional) an optional comment string to log about the event.
|
|
8320
|
+
* @param event.metadata (Optional) a dictionary with additional data about the feedback. If you have a `user_id`, you can log it here and access it in the Braintrust UI.
|
|
8321
|
+
* @param event.source (Optional) the source of the feedback. Must be one of "external" (default), "app", or "api".
|
|
8322
|
+
*/
|
|
8323
|
+
logFeedback(event) {
|
|
8324
|
+
logFeedbackImpl(this.bgLogger, this.lazyParentIds(), event);
|
|
8325
|
+
}
|
|
8236
8326
|
/*
|
|
8237
8327
|
* Flush any pending logs to the server.
|
|
8238
8328
|
*/
|
|
@@ -8824,6 +8914,13 @@ var Experiment = class {
|
|
|
8824
8914
|
() => span.end()
|
|
8825
8915
|
);
|
|
8826
8916
|
}
|
|
8917
|
+
async lazyParentIds() {
|
|
8918
|
+
return {
|
|
8919
|
+
kind: "experiment",
|
|
8920
|
+
project_id: (await this.project).id,
|
|
8921
|
+
experiment_id: await this.id
|
|
8922
|
+
};
|
|
8923
|
+
}
|
|
8827
8924
|
/**
|
|
8828
8925
|
* Lower-level alternative to `traced`, which does not automatically end the span or mark it as current.
|
|
8829
8926
|
*
|
|
@@ -8831,13 +8928,8 @@ var Experiment = class {
|
|
|
8831
8928
|
*/
|
|
8832
8929
|
startSpan(args) {
|
|
8833
8930
|
const { name, ...argsRest } = args ?? {};
|
|
8834
|
-
const parentIds = (async () => ({
|
|
8835
|
-
kind: "experiment",
|
|
8836
|
-
project_id: (await this.project).id,
|
|
8837
|
-
experiment_id: await this.id
|
|
8838
|
-
}))();
|
|
8839
8931
|
return new SpanImpl({
|
|
8840
|
-
parentIds,
|
|
8932
|
+
parentIds: this.lazyParentIds(),
|
|
8841
8933
|
bgLogger: this.bgLogger,
|
|
8842
8934
|
name: name ?? "root",
|
|
8843
8935
|
...argsRest
|
|
@@ -8899,6 +8991,20 @@ var Experiment = class {
|
|
|
8899
8991
|
metrics
|
|
8900
8992
|
};
|
|
8901
8993
|
}
|
|
8994
|
+
/**
|
|
8995
|
+
* Log feedback to an event in the experiment. Feedback is used to save feedback scores, set an expected value, or add a comment.
|
|
8996
|
+
*
|
|
8997
|
+
* @param event
|
|
8998
|
+
* @param event.id The id of the event to log feedback for. This is the `id` returned by `log` or accessible as the `id` field of a span.
|
|
8999
|
+
* @param event.scores (Optional) a dictionary of numeric values (between 0 and 1) to log. These scores will be merged into the existing scores for the event.
|
|
9000
|
+
* @param event.expected (Optional) the ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not.
|
|
9001
|
+
* @param event.comment (Optional) an optional comment string to log about the event.
|
|
9002
|
+
* @param event.metadata (Optional) a dictionary with additional data about the feedback. If you have a `user_id`, you can log it here and access it in the Braintrust UI.
|
|
9003
|
+
* @param event.source (Optional) the source of the feedback. Must be one of "external" (default), "app", or "api".
|
|
9004
|
+
*/
|
|
9005
|
+
logFeedback(event) {
|
|
9006
|
+
logFeedbackImpl(this.bgLogger, this.lazyParentIds(), event);
|
|
9007
|
+
}
|
|
8902
9008
|
/**
|
|
8903
9009
|
* Flush any pending rows to the server.
|
|
8904
9010
|
*/
|
|
@@ -8949,10 +9055,12 @@ var SpanImpl = class _SpanImpl {
|
|
|
8949
9055
|
this.rowIds = {
|
|
8950
9056
|
id,
|
|
8951
9057
|
span_id,
|
|
8952
|
-
root_span_id: args.parentSpanInfo?.root_span_id
|
|
9058
|
+
root_span_id: "parentSpanInfo" in args && args.parentSpanInfo?.root_span_id ? args.parentSpanInfo.root_span_id : span_id
|
|
8953
9059
|
};
|
|
8954
|
-
if (args.parentSpanInfo) {
|
|
9060
|
+
if ("parentSpanInfo" in args && args.parentSpanInfo?.span_id) {
|
|
8955
9061
|
this.internalData.span_parents = [args.parentSpanInfo.span_id];
|
|
9062
|
+
} else if ("parentId" in args && !isEmpty(args.parentId)) {
|
|
9063
|
+
this.rowIds[PARENT_ID_FIELD] = args.parentId;
|
|
8956
9064
|
}
|
|
8957
9065
|
this.isMerge = false;
|
|
8958
9066
|
const { id: _id, ...eventRest } = args.event ?? {};
|
|
@@ -8976,16 +9084,26 @@ var SpanImpl = class _SpanImpl {
|
|
|
8976
9084
|
if (sanitizedAndInternalData.metrics?.end) {
|
|
8977
9085
|
this.loggedEndTime = sanitizedAndInternalData.metrics?.end;
|
|
8978
9086
|
}
|
|
9087
|
+
const parentIds = (async () => {
|
|
9088
|
+
const { kind, ...ids } = await this.parentIds;
|
|
9089
|
+
return ids;
|
|
9090
|
+
})();
|
|
8979
9091
|
const record = (async () => {
|
|
8980
9092
|
return {
|
|
8981
9093
|
...sanitizedAndInternalData,
|
|
8982
9094
|
...this.rowIds,
|
|
8983
|
-
...await
|
|
9095
|
+
...await parentIds,
|
|
8984
9096
|
[IS_MERGE_FIELD]: this.isMerge
|
|
8985
9097
|
};
|
|
8986
9098
|
})();
|
|
8987
9099
|
this.bgLogger.log([record]);
|
|
8988
9100
|
}
|
|
9101
|
+
logFeedback(event) {
|
|
9102
|
+
logFeedbackImpl(this.bgLogger, this.parentIds, {
|
|
9103
|
+
...event,
|
|
9104
|
+
id: this.id
|
|
9105
|
+
});
|
|
9106
|
+
}
|
|
8989
9107
|
traced(callback, args) {
|
|
8990
9108
|
const { setCurrent, ...argsRest } = args ?? {};
|
|
8991
9109
|
const span = this.startSpan(argsRest);
|
package/dist/logger.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference lib="dom" />
|
|
2
|
-
import { IS_MERGE_FIELD } from "@braintrust/core";
|
|
2
|
+
import { IS_MERGE_FIELD, PARENT_ID_FIELD, Source, AUDIT_SOURCE_FIELD, AUDIT_METADATA_FIELD } from "@braintrust/core";
|
|
3
3
|
import { IsoAsyncLocalStorage } from "./isomorph";
|
|
4
4
|
export type Metadata = Record<string, unknown>;
|
|
5
5
|
export type SetCurrentArg = {
|
|
@@ -10,6 +10,7 @@ export type StartSpanArgs = {
|
|
|
10
10
|
name?: string;
|
|
11
11
|
spanAttributes?: Record<any, any>;
|
|
12
12
|
startTime?: number;
|
|
13
|
+
parentId?: string;
|
|
13
14
|
event?: StartSpanEventArgs;
|
|
14
15
|
};
|
|
15
16
|
export type EndSpanArgs = {
|
|
@@ -41,6 +42,12 @@ export interface Span {
|
|
|
41
42
|
* @param event: Data to be logged. See `Experiment.log` for full details.
|
|
42
43
|
*/
|
|
43
44
|
log(event: ExperimentLogPartialArgs): void;
|
|
45
|
+
/**
|
|
46
|
+
* Add feedback to the current span. Unlike `Experiment.logFeedback` and `Logger.logFeedback`, this method does not accept an id parameter, because it logs feedback to the current span.
|
|
47
|
+
*
|
|
48
|
+
* @param event: Data to be logged. See `Experiment.logFeedback` for full details.
|
|
49
|
+
*/
|
|
50
|
+
logFeedback(event: Omit<LogFeedbackFullArgs, "id">): void;
|
|
44
51
|
/**
|
|
45
52
|
* Create a new span and run the provided callback. This is useful if you want to log more detailed trace information beyond the scope of a single log event. Data logged over several calls to `Span.log` will be merged into one logical row.
|
|
46
53
|
*
|
|
@@ -51,6 +58,7 @@ export interface Span {
|
|
|
51
58
|
* @param args.span_attributes Optional additional attributes to attach to the span, such as a type name.
|
|
52
59
|
* @param args.start_time Optional start time of the span, as a timestamp in seconds.
|
|
53
60
|
* @param args.setCurrent If true (the default), the span will be marked as the currently-active span for the duration of the callback.
|
|
61
|
+
* @param args.parentId Optional id of the parent span. If not provided, the current span will be used (depending on context). This is useful for adding spans to an existing trace.
|
|
54
62
|
* @param args.event Data to be logged. See `Experiment.log` for full details.
|
|
55
63
|
* @Returns The result of running `callback`.
|
|
56
64
|
*/
|
|
@@ -88,6 +96,7 @@ export declare class NoopSpan implements Span {
|
|
|
88
96
|
kind: "span";
|
|
89
97
|
constructor();
|
|
90
98
|
log(_: ExperimentLogPartialArgs): void;
|
|
99
|
+
logFeedback(event: Omit<LogFeedbackFullArgs, "id">): void;
|
|
91
100
|
traced<R>(callback: (span: Span) => R, _1: StartSpanArgs & SetCurrentArg): R;
|
|
92
101
|
startSpan(_1?: StartSpanArgs): this;
|
|
93
102
|
end(args?: EndSpanArgs): number;
|
|
@@ -183,12 +192,25 @@ export declare class Logger<IsAsyncFlush extends boolean> {
|
|
|
183
192
|
* See `Span.traced` for full details.
|
|
184
193
|
*/
|
|
185
194
|
traced<R>(callback: (span: Span) => R, args?: StartSpanArgs & SetCurrentArg): PromiseUnless<IsAsyncFlush, R>;
|
|
195
|
+
private lazyParentIds;
|
|
186
196
|
/**
|
|
187
197
|
* Lower-level alternative to `traced`, which does not automatically end the span or mark it as current.
|
|
188
198
|
*
|
|
189
199
|
* See `traced` for full details.
|
|
190
200
|
*/
|
|
191
201
|
startSpan(args?: StartSpanArgs): Span;
|
|
202
|
+
/**
|
|
203
|
+
* Log feedback to an event. Feedback is used to save feedback scores, set an expected value, or add a comment.
|
|
204
|
+
*
|
|
205
|
+
* @param event
|
|
206
|
+
* @param event.id The id of the event to log feedback for. This is the `id` returned by `log` or accessible as the `id` field of a span.
|
|
207
|
+
* @param event.scores (Optional) a dictionary of numeric values (between 0 and 1) to log. These scores will be merged into the existing scores for the event.
|
|
208
|
+
* @param event.expected (Optional) the ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not.
|
|
209
|
+
* @param event.comment (Optional) an optional comment string to log about the event.
|
|
210
|
+
* @param event.metadata (Optional) a dictionary with additional data about the feedback. If you have a `user_id`, you can log it here and access it in the Braintrust UI.
|
|
211
|
+
* @param event.source (Optional) the source of the feedback. Must be one of "external" (default), "app", or "api".
|
|
212
|
+
*/
|
|
213
|
+
logFeedback(event: LogFeedbackFullArgs): void;
|
|
192
214
|
flush(): Promise<void>;
|
|
193
215
|
get asyncFlush(): IsAsyncFlush | undefined;
|
|
194
216
|
}
|
|
@@ -211,10 +233,25 @@ export type OtherExperimentLogFields = {
|
|
|
211
233
|
};
|
|
212
234
|
export type ExperimentLogPartialArgs = Partial<OtherExperimentLogFields> & Partial<InputField | InputsField>;
|
|
213
235
|
export type ExperimentLogFullArgs = Partial<Omit<OtherExperimentLogFields, "scores">> & Required<Pick<OtherExperimentLogFields, "scores">> & Partial<InputField | InputsField> & Partial<IdField>;
|
|
236
|
+
export type LogFeedbackFullArgs = IdField & Partial<Omit<OtherExperimentLogFields, "output" | "metrics" | "datasetRecordId"> & {
|
|
237
|
+
comment: string;
|
|
238
|
+
source: Source;
|
|
239
|
+
}>;
|
|
240
|
+
export type LogCommentFullArgs = IdField & {
|
|
241
|
+
created: string;
|
|
242
|
+
origin: {
|
|
243
|
+
id: string;
|
|
244
|
+
};
|
|
245
|
+
comment: {
|
|
246
|
+
text: string;
|
|
247
|
+
};
|
|
248
|
+
[AUDIT_SOURCE_FIELD]: Source;
|
|
249
|
+
[AUDIT_METADATA_FIELD]?: Record<string, unknown>;
|
|
250
|
+
} & Omit<ParentExperimentIds | ParentProjectLogIds, "kind">;
|
|
214
251
|
type ExperimentEvent = Partial<InputField> & Partial<OtherExperimentLogFields> & {
|
|
215
252
|
id: string;
|
|
216
|
-
span_id
|
|
217
|
-
root_span_id
|
|
253
|
+
span_id?: string;
|
|
254
|
+
root_span_id?: string;
|
|
218
255
|
project_id: string;
|
|
219
256
|
experiment_id: string;
|
|
220
257
|
[IS_MERGE_FIELD]: boolean;
|
|
@@ -222,6 +259,9 @@ type ExperimentEvent = Partial<InputField> & Partial<OtherExperimentLogFields> &
|
|
|
222
259
|
created: string;
|
|
223
260
|
span_parents: string[];
|
|
224
261
|
span_attributes: Record<string, unknown>;
|
|
262
|
+
[PARENT_ID_FIELD]: string;
|
|
263
|
+
[AUDIT_SOURCE_FIELD]: Source;
|
|
264
|
+
[AUDIT_METADATA_FIELD]?: Record<string, unknown>;
|
|
225
265
|
}>;
|
|
226
266
|
interface DatasetEvent {
|
|
227
267
|
inputs?: unknown;
|
|
@@ -236,7 +276,18 @@ type LoggingEvent = Omit<ExperimentEvent, "experiment_id"> & {
|
|
|
236
276
|
org_id: string;
|
|
237
277
|
log_id: "g";
|
|
238
278
|
};
|
|
239
|
-
type
|
|
279
|
+
export type CommentEvent = IdField & {
|
|
280
|
+
created: string;
|
|
281
|
+
origin: {
|
|
282
|
+
id: string;
|
|
283
|
+
};
|
|
284
|
+
comment: {
|
|
285
|
+
text: string;
|
|
286
|
+
};
|
|
287
|
+
[AUDIT_SOURCE_FIELD]: Source;
|
|
288
|
+
[AUDIT_METADATA_FIELD]?: Record<string, unknown>;
|
|
289
|
+
} & Omit<ParentExperimentIds | ParentProjectLogIds, "kind">;
|
|
290
|
+
type BackgroundLogEvent = ExperimentEvent | DatasetEvent | LoggingEvent | CommentEvent;
|
|
240
291
|
export interface DatasetRecord {
|
|
241
292
|
id: string;
|
|
242
293
|
input: any;
|
|
@@ -467,6 +518,7 @@ export declare class Experiment {
|
|
|
467
518
|
* See `Span.traced` for full details.
|
|
468
519
|
*/
|
|
469
520
|
traced<R>(callback: (span: Span) => R, args?: StartSpanArgs & SetCurrentArg): R;
|
|
521
|
+
private lazyParentIds;
|
|
470
522
|
/**
|
|
471
523
|
* Lower-level alternative to `traced`, which does not automatically end the span or mark it as current.
|
|
472
524
|
*
|
|
@@ -485,6 +537,18 @@ export declare class Experiment {
|
|
|
485
537
|
readonly summarizeScores?: boolean;
|
|
486
538
|
readonly comparisonExperimentId?: string;
|
|
487
539
|
}): Promise<ExperimentSummary>;
|
|
540
|
+
/**
|
|
541
|
+
* Log feedback to an event in the experiment. Feedback is used to save feedback scores, set an expected value, or add a comment.
|
|
542
|
+
*
|
|
543
|
+
* @param event
|
|
544
|
+
* @param event.id The id of the event to log feedback for. This is the `id` returned by `log` or accessible as the `id` field of a span.
|
|
545
|
+
* @param event.scores (Optional) a dictionary of numeric values (between 0 and 1) to log. These scores will be merged into the existing scores for the event.
|
|
546
|
+
* @param event.expected (Optional) the ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not.
|
|
547
|
+
* @param event.comment (Optional) an optional comment string to log about the event.
|
|
548
|
+
* @param event.metadata (Optional) a dictionary with additional data about the feedback. If you have a `user_id`, you can log it here and access it in the Braintrust UI.
|
|
549
|
+
* @param event.source (Optional) the source of the feedback. Must be one of "external" (default), "app", or "api".
|
|
550
|
+
*/
|
|
551
|
+
logFeedback(event: LogFeedbackFullArgs): void;
|
|
488
552
|
/**
|
|
489
553
|
* Flush any pending rows to the server.
|
|
490
554
|
*/
|
|
@@ -521,17 +585,21 @@ export declare class SpanImpl implements Span {
|
|
|
521
585
|
constructor(args: {
|
|
522
586
|
parentIds: Promise<ParentExperimentIds | ParentProjectLogIds>;
|
|
523
587
|
bgLogger: BackgroundLogger;
|
|
588
|
+
} & Omit<StartSpanArgs, "parentId"> & ({
|
|
524
589
|
parentSpanInfo?: {
|
|
525
590
|
span_id: string;
|
|
526
591
|
root_span_id: string;
|
|
527
592
|
};
|
|
528
|
-
}
|
|
593
|
+
} | {
|
|
594
|
+
parentId?: string;
|
|
595
|
+
}));
|
|
529
596
|
get id(): string;
|
|
530
597
|
get span_id(): string;
|
|
531
598
|
get root_span_id(): string;
|
|
532
599
|
log(event: ExperimentLogPartialArgs): void;
|
|
600
|
+
logFeedback(event: Omit<LogFeedbackFullArgs, "id">): void;
|
|
533
601
|
traced<R>(callback: (span: Span) => R, args?: StartSpanArgs & SetCurrentArg): R;
|
|
534
|
-
startSpan(args?: StartSpanArgs): Span;
|
|
602
|
+
startSpan(args?: Omit<StartSpanArgs, "parent_id">): Span;
|
|
535
603
|
end(args?: EndSpanArgs): number;
|
|
536
604
|
close(args?: EndSpanArgs): number;
|
|
537
605
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/isomorph.ts","../../../node_modules/.pnpm/@types+uuid@9.0.7/node_modules/@types/uuid/index.d.ts","../../core/js/dist/index.d.ts","../src/util.ts","../src/logger.ts","../src/browser-config.ts","../src/oai.ts","../src/browser.ts","../src/cache.ts","../../../node_modules/.pnpm/esbuild@0.18.20/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/index.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/ast.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/escape.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/unescape.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/index.d.ts","../../../node_modules/.pnpm/@types+argparse@2.0.14/node_modules/@types/argparse/index.d.ts","../../../node_modules/.pnpm/@types+pluralize@0.0.30/node_modules/@types/pluralize/index.d.ts","../../../node_modules/.pnpm/@types+cli-progress@3.11.5/node_modules/@types/cli-progress/index.d.ts","../src/progress.ts","../../../node_modules/.pnpm/@types+graceful-fs@4.1.9/node_modules/@types/graceful-fs/index.d.ts","../src/jest/tryrealpath.ts","../src/jest/nodemodulespaths.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../src/framework.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/task.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/tasks.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/handlers.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/index.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/log.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/response.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/responses/getremotesummary.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/args/pathspec.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/apply-patch.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/check-is-repo.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/clean.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/clone.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/config.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/grep.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/reset.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/version.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/types.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-construct-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-plugin-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-response-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/task-configuration-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/errors.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/simple-git.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/index.d.ts","../src/gitutil.ts","../src/stackutil.ts","../src/node.ts","../src/cli.ts","../src/index.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"e3e7b677e8ad626f8a801ed3f7b49ca3bfc17e869d265a489518b5c5558fd0fa","signature":"f31a68039c0234a972bc0bc4d9388907ece056e3f76c6b9e880313639baa40d7"},"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","1e18db72322c4e3b67fa01f99696d4e52ea0465ee9b74f899d044bcf94ad1c71",{"version":"4ea88b8d479b479ee201b698604654c516876445a913da3a471a342b8bf7272a","signature":"04f768029af9f588c72da67db16b79a7ca12cb84777b221b0c4031cb3db031a6"},{"version":"f55857cb8e272b4227cf57b583172cf88b1dd8c76a26086f2b03bab42eab0a1b","signature":"274fc2953b29b53c17c12a41080a1b2be84c33dfa6bfb58ca0f46d8559925b29","affectsGlobalScope":true},{"version":"a2dc8e3d209bf33127af2d01bafe9407dc06ab605fe4e4bdc297d7d0fdb9add5","signature":"443148657b934a070c73ec27dfbbc63d3fcfdb703009ed36d997337abc2290e4","affectsGlobalScope":true},{"version":"2b5c5a505772679f386c60e0cbcf7d8148e446692dc4d06bae396d3b103ac8fc","signature":"9e9cf54696acd8abf09b7a2604ae86942c41009207791012283745cd7517fe57"},{"version":"ddf00d2734715528ba52cfaebaff7d70bbc5663688139efd7ffe0d0476688ff5","signature":"82f11771b6ef70327d9a7a1d43aa3e13dfa2825671bb591c7edeb954335b05e1"},{"version":"43361e6b831db1ef828f60d9219c09bfc43acb1b75ce86ead48f557a0935c0d2","signature":"b4324240466cc26262b0a4876ba6e405a8ad714cd15d4e309b765a3b41d90fb9"},"850040826cfa77593d44f44487133af21917f4f21507258bd4269501b80d32f0","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"185282b122cbca820c297a02a57b89cf5967ab43e220e3e174d872d3f9a94d2c","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","e8968b394e4365588f8f89cfff86435258cf10062585c1d2224627ab92acda22","285e512c7a0db217a0599e18c462d565fa35be4a5153dd7b80bee88c83e83ddf","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"7aae1df2053572c2cfc2089a77847aadbb38eedbaa837a846c6a49fb37c6e5bd","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","1f758340b027b18ae8773ac3d33a60648a2af49eaae9e4fde18d0a0dd608642c","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"dea4c00820d4fac5e530d4842aed2fb20d6744d75a674b95502cbd433f88bcb0","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"0d832a0650a74aafc276cb3f7bb26bde2e2270a6f87e6c871a64122e9203079b","affectsGlobalScope":true},{"version":"c6f3869f12bb5c3bb8ecd0b050ea20342b89b944eae18d313cde6b0ccc0925d7","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","d742ed2db6d5425b3b6ac5fb1f2e4b1ed2ae74fbeee8d0030d852121a4b05d2f","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"2225100373ca3d63bcc7f206e1177152d2e2161285a0bd83c8374db1503a0d1f","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","4a34b074b11c3597fb2ff890bc8f1484375b3b80793ab01f974534808d5777c7",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","c56ef8201a294d65d1132160ebc76ed0c0a98dcf983d20775c8c8c0912210572","de0199a112f75809a7f80ec071495159dcf3e434bc021347e0175627398264c3","1a2bed55cfa62b4649485df27c0e560b04d4da4911e3a9f0475468721495563f","854045924626ba585f454b53531c42aed4365f02301aa8eca596423f4675b71f","8b34a861518e75b68211e09ba8290cb5dc6705ef705e3cf912dac10bf1c851d2","5adf3c3c7204b3614dbc585681a33ef598c68df387298859f9a2521cfb449437","70b3cf5c5122849e757a21b3a4ec8cac43d06a133f161acf52189c38179badde",{"version":"d096d550acd00bd6d66825d9a4e572121bd854b28edc5ae2c1d4e80d51a147a9","signature":"46966a0da8f681c479166dd3060b63d3cafc3d5e9e218157490f3697122a3e57"},"afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5",{"version":"c0b4084226d4ad0a3c78580c50f85985f4a3e808eb59a15c9fb389c8349f9056","signature":"f155bcfea5ae8b647b26fef54caf159a514950ac9cb3c192dcfab787d4588eec"},{"version":"0f3a9fccbf341d90a4be583161e6415c8c0543f5dd180419ea13e3db991ccca0","signature":"d4cb0878684926011f20ef763f982c78e1b0b699c0faefee31d2a7bdcf44a7bb"},"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2",{"version":"2b9674d304cdad00a33c24c4bfb1e6ab411092f5b85f2a4bcd16c1f09846d43e","signature":"a93e59938be06ae31cc180d6f5a51d282f8e23924dfbd9dfda2699c65b37f496","affectsGlobalScope":true},"82c661f1f20d29212d2e0408bee2e0f54bf8930cdcdd88f23ef8e03e4618afb4","d53d8a71b9525be3fb65c331f20db99b826edfa922703578af284736dc780db5","6256cf36c8ae7e82bff606595af8fe08a06f8478140fcf304ee2f10c7716ddc8","2ba0457b958954b9b2041077df992fad015e85c615dc1ccebeddb561d4ab89cf","81c4fd49117bc25b8aac796a345db4315cc31861f61772da6bd405989ede0f79","1f8d4c8257ba50385865ce887940c8fdc745bcf3cea2dc09173bc8d3320b6efe","e624281c478c592ab5afac243a0f4303c2b3f56324a96df2ece5a53a279bc967","7c774169686976056434799723bd7a48348df9d2204b928a0b77920505585214","5e95379e81e2d373e5235cedc4579938e39db274a32cfa32f8906e7ff6698763","d3c8a891b0554f4319651b5c89c2d91a442a792bf84afcbc399be033b96b4abd","8758b438b12ea50fb8b678d29ab0ef42d77abfb801cec481596ce6002b537a6f","88074e936d33e224b83f81eebbaf835467e1c0a6ba1239b950e6476dd7f73356","c895675912a8b2d0dcb13d24433757d233de16a3bb5c60f7d903099d96d61ea8","f73cf81342d2a25b65179c262ca7c38df023969129094607d0eb52510a56f10f","e7d7e67bd66b30f2216e4678b97bb09629a2b31766a79119acaa30e3005ef5fb","4a7b9005bef99460ba60da67219f0aff852cfd44038f17626bf59a6b5c6960b5","e137f087bda0256410b28743ef9a1bf57a4cafd43ffa6b62d5c17a8f5a08b3b5","fa8d9c5ea6ad2a5d3d6ee7703cfe1ddd962f1e4da08a370c6db642b1a1a091b8","af504042a6db047c40cc0aeb14550bbc954f194f2b8c5ad8944f2da502f45bf5","5b25b6ab5ad6c17f90b592162b2e9978ad8d81edf24cd3957306eb6e5edb89a9","24693bd77ac3be0b16e564d0ab498a397feb758ce7f4ed9f13478d566e3aafde","208dad548b895c7d02465de6ba79064b7c67bc4d94e5227b09f21d58790e634c","048c0ced65fa41fbf4bcc3d5e8e5b6f6c7f27335ceb54d401be654e821adbc08","8d9ff4f53cb1fca7ec778e8df86076b3b99c4f21fd3c15ef3de42c7d6b4a0c5c","9a57d654b0a0e4bf56a8eb0aa3ede1c7d349cec6220e36b5288c26626c8688ed",{"version":"15367d56f678f79afa62839785e518c2341b80e194339fbfe5823cd1febbbacc","signature":"900f9b2002fba2fd7c27f3ba480412195cd0bb0f9ece2a4fe5c599d1a9200372"},{"version":"282c7c74d33d5ec6a9067728647227358018bf878a6c381973efd5be87f0d2a8","signature":"eef6c9e9e2ced98a276734cb82f81b12d154026659e84128ad42a3a69caced38"},{"version":"c1887ec121feae4f6a72ec295ad8cc2acd12e37b278672d1c1aa53d6ebba076c","signature":"1518a19a9cb02ce4439e1bd5d07e5dd4f496d4598142ff82264b40785ba28789"},{"version":"1d3627e56e2fa30b36746ca013d79bf889027a466c3ca6fc5a99e54840946244","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"9a96f063a32a1bc5a9c126092e97381aa696b6215a2634c386695633e9b3d759","signature":"83719c2149a90c33ae5b40a9e69186febff4f4d14485752e576dab3486380185"}],"root":[46,[49,54],165,167,168,170,[196,200]],"options":{"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[146,147],[147,148,149,150],[141,147,149],[146,148],[105,141],[105,141,142],[142,143,144,145],[142,144],[143],[122,141,151,152,153,156],[152,153,155],[104,141,151,152,153,154],[153],[151,152],[141,151],[104,141],[56],[91],[92,97,125],[93,104,105,112,122,133],[93,94,104,112],[95,134],[96,97,105,113],[97,122,130],[98,100,104,112],[99],[100,101],[104],[102,104],[91,104],[104,105,106,122,133],[104,105,106,119,122,125],[89,92,138],[100,104,107,112,122,133],[104,105,107,108,112,122,130,133],[107,109,122,130,133],[56,57,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140],[104,110],[111,133,138],[100,104,112,122],[113],[114],[91,115],[116,132,138],[117],[118],[104,119,120],[119,121,134,136],[92,104,122,123,124,125],[92,122,124],[122,123],[125],[126],[91,122],[104,128,129],[128,129],[97,112,122,130],[131],[112,132],[92,107,118,133],[97,134],[122,135],[111,136],[137],[92,97,104,106,115,122,133,136,138],[122,139],[161],[158,159,160],[173,175],[175],[173],[171,175,195],[171,175],[195],[175,195],[93,141,172,174],[141,171,175],[173,189,190,191,192],[177,188,193,194],[176],[177,188,193],[175,176,178,179,180,181,182,183,184,185,186,187],[66,70,133],[66,122,133],[61],[63,66,130,133],[112,130],[141],[61,141],[63,66,112,133],[58,59,62,65,92,104,122,133],[58,64],[62,66,92,125,133,141],[92,141],[82,92,141],[60,61,141],[66],[60,61,62,63,64,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,81,83,84,85,86,87,88],[66,73,74],[64,66,74,75],[65],[58,61,66],[66,70,74,75],[70],[64,66,69,133],[58,63,64,66,70,73],[92,122],[61,66,82,92,138,141],[46,50,91],[50,51,52],[113,114],[47,50,55,105,113,114,134,157,161,162,163,165,168,170,198],[48,50,163,165,169],[50,52,170,198],[114,167],[166],[46,47,48,49],[46,50,91,196,197],[49,50],[164],[46,114],[50,52],[48,50,165,169],[50,52,170],[46,48],[46]],"referencedMap":[[148,1],[151,2],[150,3],[149,4],[147,5],[143,6],[146,7],[145,8],[144,9],[142,5],[157,10],[156,11],[155,12],[154,13],[153,14],[152,15],[164,16],[166,5],[56,17],[57,17],[91,18],[92,19],[93,20],[94,21],[95,22],[96,23],[97,24],[98,25],[99,26],[100,27],[101,27],[103,28],[102,29],[104,30],[105,31],[106,32],[90,33],[107,34],[108,35],[109,36],[141,37],[110,38],[111,39],[112,40],[113,41],[114,42],[115,43],[116,44],[117,45],[118,46],[119,47],[120,47],[121,48],[122,49],[124,50],[123,51],[125,52],[126,53],[127,54],[128,55],[129,56],[130,57],[131,58],[132,59],[133,60],[134,61],[135,62],[136,63],[137,64],[138,65],[139,66],[158,67],[159,67],[161,68],[160,67],[189,69],[173,70],[190,69],[191,71],[192,71],[180,70],[181,70],[182,72],[183,73],[184,74],[185,74],[176,75],[186,70],[171,70],[187,74],[174,71],[175,76],[172,77],[193,78],[195,79],[177,80],[194,81],[188,82],[73,83],[80,84],[72,83],[87,85],[64,86],[63,87],[86,88],[81,89],[84,90],[66,91],[65,92],[61,93],[60,94],[83,95],[62,96],[67,97],[71,97],[89,98],[88,97],[75,99],[76,100],[78,101],[74,102],[77,103],[82,88],[69,104],[70,105],[79,106],[59,107],[85,108],[51,109],[53,110],[54,111],[199,112],[170,113],[196,74],[200,114],[168,115],[167,116],[50,117],[198,118],[52,119],[165,120],[197,121]],"exportedModulesMap":[[148,1],[151,2],[150,3],[149,4],[147,5],[143,6],[146,7],[145,8],[144,9],[142,5],[157,10],[156,11],[155,12],[154,13],[153,14],[152,15],[164,16],[166,5],[56,17],[57,17],[91,18],[92,19],[93,20],[94,21],[95,22],[96,23],[97,24],[98,25],[99,26],[100,27],[101,27],[103,28],[102,29],[104,30],[105,31],[106,32],[90,33],[107,34],[108,35],[109,36],[141,37],[110,38],[111,39],[112,40],[113,41],[114,42],[115,43],[116,44],[117,45],[118,46],[119,47],[120,47],[121,48],[122,49],[124,50],[123,51],[125,52],[126,53],[127,54],[128,55],[129,56],[130,57],[131,58],[132,59],[133,60],[134,61],[135,62],[136,63],[137,64],[138,65],[139,66],[158,67],[159,67],[161,68],[160,67],[189,69],[173,70],[190,69],[191,71],[192,71],[180,70],[181,70],[182,72],[183,73],[184,74],[185,74],[176,75],[186,70],[171,70],[187,74],[174,71],[175,76],[172,77],[193,78],[195,79],[177,80],[194,81],[188,82],[73,83],[80,84],[72,83],[87,85],[64,86],[63,87],[86,88],[81,89],[84,90],[66,91],[65,92],[61,93],[60,94],[83,95],[62,96],[67,97],[71,97],[89,98],[88,97],[75,99],[76,100],[78,101],[74,102],[77,103],[82,88],[69,104],[70,105],[79,106],[59,107],[85,108],[51,18],[53,122],[170,123],[196,74],[200,124],[50,125],[197,126]],"semanticDiagnosticsPerFile":[148,151,150,149,147,143,146,145,144,142,157,156,155,154,153,152,162,164,166,56,57,91,92,93,94,95,96,97,98,99,100,101,103,102,104,105,106,90,140,107,108,109,141,110,111,112,113,114,115,116,117,118,119,120,121,122,124,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,163,47,169,55,158,159,161,160,179,189,173,190,191,192,178,180,181,182,183,184,185,176,186,171,187,174,175,172,193,195,177,194,188,44,45,8,10,9,2,11,12,13,14,15,16,17,18,3,4,19,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,73,80,72,87,64,63,86,81,84,66,65,61,60,83,62,67,68,71,58,89,88,75,76,78,74,77,82,69,70,79,59,85,48,51,53,54,199,170,196,200,46,168,167,50,198,52,165,197,49]},"version":"5.3.3"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/isomorph.ts","../../../node_modules/.pnpm/@types+uuid@9.0.7/node_modules/@types/uuid/index.d.ts","../../core/js/dist/index.d.ts","../src/util.ts","../src/logger.ts","../src/browser-config.ts","../src/oai.ts","../src/browser.ts","../src/cache.ts","../../../node_modules/.pnpm/esbuild@0.18.20/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/index.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/ast.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/escape.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/unescape.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/index.d.ts","../../../node_modules/.pnpm/@types+argparse@2.0.14/node_modules/@types/argparse/index.d.ts","../../../node_modules/.pnpm/@types+pluralize@0.0.30/node_modules/@types/pluralize/index.d.ts","../../../node_modules/.pnpm/@types+cli-progress@3.11.5/node_modules/@types/cli-progress/index.d.ts","../src/progress.ts","../../../node_modules/.pnpm/@types+graceful-fs@4.1.9/node_modules/@types/graceful-fs/index.d.ts","../src/jest/tryrealpath.ts","../src/jest/nodemodulespaths.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../src/framework.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/task.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/tasks.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/handlers.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/index.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/log.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/response.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/responses/getremotesummary.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/args/pathspec.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/apply-patch.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/check-is-repo.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/clean.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/clone.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/config.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/grep.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/reset.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/version.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/types.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-construct-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-plugin-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-response-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/task-configuration-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/errors.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/simple-git.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/index.d.ts","../src/gitutil.ts","../src/stackutil.ts","../src/node.ts","../src/cli.ts","../src/index.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"e3e7b677e8ad626f8a801ed3f7b49ca3bfc17e869d265a489518b5c5558fd0fa","signature":"f31a68039c0234a972bc0bc4d9388907ece056e3f76c6b9e880313639baa40d7"},"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","2e1405685b76c389e7297f5281130f8e771029eb7adb49c480d052ea0554191d",{"version":"f8e993de64a77bdab94b26438693969a8653207470d433373dfd42a2aedc7455","signature":"d344485f78c9bf45b4a7908775868cd4f5efea36ccd53f8fc7fdb1c718e856dc"},{"version":"7e7f1875d2ebd87bd157cf1f0b7d6b58ac52447a247b4f0f2bee373a5708f00e","signature":"03d0ea586a520186b9d859b19ca641024e4961a4fd6dac0b56d298abc76eb268","affectsGlobalScope":true},{"version":"a2dc8e3d209bf33127af2d01bafe9407dc06ab605fe4e4bdc297d7d0fdb9add5","signature":"443148657b934a070c73ec27dfbbc63d3fcfdb703009ed36d997337abc2290e4","affectsGlobalScope":true},{"version":"2b5c5a505772679f386c60e0cbcf7d8148e446692dc4d06bae396d3b103ac8fc","signature":"9e9cf54696acd8abf09b7a2604ae86942c41009207791012283745cd7517fe57"},{"version":"ddf00d2734715528ba52cfaebaff7d70bbc5663688139efd7ffe0d0476688ff5","signature":"82f11771b6ef70327d9a7a1d43aa3e13dfa2825671bb591c7edeb954335b05e1"},{"version":"43361e6b831db1ef828f60d9219c09bfc43acb1b75ce86ead48f557a0935c0d2","signature":"b4324240466cc26262b0a4876ba6e405a8ad714cd15d4e309b765a3b41d90fb9"},"850040826cfa77593d44f44487133af21917f4f21507258bd4269501b80d32f0","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"185282b122cbca820c297a02a57b89cf5967ab43e220e3e174d872d3f9a94d2c","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","e8968b394e4365588f8f89cfff86435258cf10062585c1d2224627ab92acda22","285e512c7a0db217a0599e18c462d565fa35be4a5153dd7b80bee88c83e83ddf","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"7aae1df2053572c2cfc2089a77847aadbb38eedbaa837a846c6a49fb37c6e5bd","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","1f758340b027b18ae8773ac3d33a60648a2af49eaae9e4fde18d0a0dd608642c","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"dea4c00820d4fac5e530d4842aed2fb20d6744d75a674b95502cbd433f88bcb0","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"0d832a0650a74aafc276cb3f7bb26bde2e2270a6f87e6c871a64122e9203079b","affectsGlobalScope":true},{"version":"c6f3869f12bb5c3bb8ecd0b050ea20342b89b944eae18d313cde6b0ccc0925d7","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","d742ed2db6d5425b3b6ac5fb1f2e4b1ed2ae74fbeee8d0030d852121a4b05d2f","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"2225100373ca3d63bcc7f206e1177152d2e2161285a0bd83c8374db1503a0d1f","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","4a34b074b11c3597fb2ff890bc8f1484375b3b80793ab01f974534808d5777c7",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","c56ef8201a294d65d1132160ebc76ed0c0a98dcf983d20775c8c8c0912210572","de0199a112f75809a7f80ec071495159dcf3e434bc021347e0175627398264c3","1a2bed55cfa62b4649485df27c0e560b04d4da4911e3a9f0475468721495563f","854045924626ba585f454b53531c42aed4365f02301aa8eca596423f4675b71f","8b34a861518e75b68211e09ba8290cb5dc6705ef705e3cf912dac10bf1c851d2","5adf3c3c7204b3614dbc585681a33ef598c68df387298859f9a2521cfb449437","70b3cf5c5122849e757a21b3a4ec8cac43d06a133f161acf52189c38179badde",{"version":"d096d550acd00bd6d66825d9a4e572121bd854b28edc5ae2c1d4e80d51a147a9","signature":"46966a0da8f681c479166dd3060b63d3cafc3d5e9e218157490f3697122a3e57"},"afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5",{"version":"c0b4084226d4ad0a3c78580c50f85985f4a3e808eb59a15c9fb389c8349f9056","signature":"f155bcfea5ae8b647b26fef54caf159a514950ac9cb3c192dcfab787d4588eec"},{"version":"0f3a9fccbf341d90a4be583161e6415c8c0543f5dd180419ea13e3db991ccca0","signature":"d4cb0878684926011f20ef763f982c78e1b0b699c0faefee31d2a7bdcf44a7bb"},"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2",{"version":"2b9674d304cdad00a33c24c4bfb1e6ab411092f5b85f2a4bcd16c1f09846d43e","signature":"a93e59938be06ae31cc180d6f5a51d282f8e23924dfbd9dfda2699c65b37f496","affectsGlobalScope":true},"82c661f1f20d29212d2e0408bee2e0f54bf8930cdcdd88f23ef8e03e4618afb4","d53d8a71b9525be3fb65c331f20db99b826edfa922703578af284736dc780db5","6256cf36c8ae7e82bff606595af8fe08a06f8478140fcf304ee2f10c7716ddc8","2ba0457b958954b9b2041077df992fad015e85c615dc1ccebeddb561d4ab89cf","81c4fd49117bc25b8aac796a345db4315cc31861f61772da6bd405989ede0f79","1f8d4c8257ba50385865ce887940c8fdc745bcf3cea2dc09173bc8d3320b6efe","e624281c478c592ab5afac243a0f4303c2b3f56324a96df2ece5a53a279bc967","7c774169686976056434799723bd7a48348df9d2204b928a0b77920505585214","5e95379e81e2d373e5235cedc4579938e39db274a32cfa32f8906e7ff6698763","d3c8a891b0554f4319651b5c89c2d91a442a792bf84afcbc399be033b96b4abd","8758b438b12ea50fb8b678d29ab0ef42d77abfb801cec481596ce6002b537a6f","88074e936d33e224b83f81eebbaf835467e1c0a6ba1239b950e6476dd7f73356","c895675912a8b2d0dcb13d24433757d233de16a3bb5c60f7d903099d96d61ea8","f73cf81342d2a25b65179c262ca7c38df023969129094607d0eb52510a56f10f","e7d7e67bd66b30f2216e4678b97bb09629a2b31766a79119acaa30e3005ef5fb","4a7b9005bef99460ba60da67219f0aff852cfd44038f17626bf59a6b5c6960b5","e137f087bda0256410b28743ef9a1bf57a4cafd43ffa6b62d5c17a8f5a08b3b5","fa8d9c5ea6ad2a5d3d6ee7703cfe1ddd962f1e4da08a370c6db642b1a1a091b8","af504042a6db047c40cc0aeb14550bbc954f194f2b8c5ad8944f2da502f45bf5","5b25b6ab5ad6c17f90b592162b2e9978ad8d81edf24cd3957306eb6e5edb89a9","24693bd77ac3be0b16e564d0ab498a397feb758ce7f4ed9f13478d566e3aafde","208dad548b895c7d02465de6ba79064b7c67bc4d94e5227b09f21d58790e634c","048c0ced65fa41fbf4bcc3d5e8e5b6f6c7f27335ceb54d401be654e821adbc08","8d9ff4f53cb1fca7ec778e8df86076b3b99c4f21fd3c15ef3de42c7d6b4a0c5c","9a57d654b0a0e4bf56a8eb0aa3ede1c7d349cec6220e36b5288c26626c8688ed",{"version":"15367d56f678f79afa62839785e518c2341b80e194339fbfe5823cd1febbbacc","signature":"900f9b2002fba2fd7c27f3ba480412195cd0bb0f9ece2a4fe5c599d1a9200372"},{"version":"282c7c74d33d5ec6a9067728647227358018bf878a6c381973efd5be87f0d2a8","signature":"eef6c9e9e2ced98a276734cb82f81b12d154026659e84128ad42a3a69caced38"},{"version":"c1887ec121feae4f6a72ec295ad8cc2acd12e37b278672d1c1aa53d6ebba076c","signature":"1518a19a9cb02ce4439e1bd5d07e5dd4f496d4598142ff82264b40785ba28789"},{"version":"1d3627e56e2fa30b36746ca013d79bf889027a466c3ca6fc5a99e54840946244","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"9a96f063a32a1bc5a9c126092e97381aa696b6215a2634c386695633e9b3d759","signature":"83719c2149a90c33ae5b40a9e69186febff4f4d14485752e576dab3486380185"}],"root":[46,[49,54],166,168,169,171,[197,201]],"options":{"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[147,148],[148,149,150,151],[142,148,150],[147,149],[106,142],[106,142,143],[143,144,145,146],[143,145],[144],[123,142,152,153,154,157],[153,154,156],[105,142,152,153,154,155],[154],[152,153],[142,152],[105,142],[56],[92],[93,98,126],[94,105,106,113,123,134],[94,95,105,113],[96,135],[97,98,106,114],[98,123,131],[99,101,105,113],[100],[101,102],[105],[103,105],[92,105],[105,106,107,123,134],[105,106,107,120,123,126],[90,93,139],[101,105,108,113,123,134],[105,106,108,109,113,123,131,134],[108,110,123,131,134],[56,57,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141],[105,111],[112,134,139],[101,105,113,123],[114],[115],[92,116],[117,133,139],[118],[119],[105,120,121],[120,122,135,137],[93,105,123,124,125,126],[93,123,125],[123,124],[126],[127],[92,123],[105,129,130],[129,130],[98,113,123,131],[132],[113,133],[93,108,119,134],[98,135],[123,136],[112,137],[138],[93,98,105,107,116,123,134,137,139],[123,140],[162],[159,160,161],[174,176],[176],[174],[172,176,196],[172,176],[196],[176,196],[94,142,173,175],[142,172,176],[174,190,191,192,193],[178,189,194,195],[177],[178,189,194],[176,177,179,180,181,182,183,184,185,186,187,188],[67,71,134],[67,123,134],[62],[64,67,131,134],[113,131],[142],[62,142],[64,67,113,134],[59,60,63,66,93,105,123,134],[59,65],[63,67,93,126,134,142],[93,142],[83,93,142],[61,62,142],[67],[61,62,63,64,65,66,67,68,69,71,72,73,74,75,76,77,78,79,80,81,82,84,85,86,87,88,89],[67,74,75],[65,67,75,76],[66],[59,62,67],[67,71,75,76],[71],[65,67,70,134],[59,64,65,67,71,74],[93,123],[62,67,83,93,139,142],[46,50,92],[50,51,52],[114,115],[47,50,55,106,114,115,135,158,162,163,164,166,169,171,199],[48,50,164,166,170],[50,52,171,199],[115,168],[167],[46,47,48,49],[46,50,92,197,198],[49,50],[165],[46,115],[50,52],[48,50,166,170],[50,52,171],[46,48],[46]],"referencedMap":[[149,1],[152,2],[151,3],[150,4],[148,5],[144,6],[147,7],[146,8],[145,9],[143,5],[158,10],[157,11],[156,12],[155,13],[154,14],[153,15],[165,16],[167,5],[56,17],[57,17],[92,18],[93,19],[94,20],[95,21],[96,22],[97,23],[98,24],[99,25],[100,26],[101,27],[102,27],[104,28],[103,29],[105,30],[106,31],[107,32],[91,33],[108,34],[109,35],[110,36],[142,37],[111,38],[112,39],[113,40],[114,41],[115,42],[116,43],[117,44],[118,45],[119,46],[120,47],[121,47],[122,48],[123,49],[125,50],[124,51],[126,52],[127,53],[128,54],[129,55],[130,56],[131,57],[132,58],[133,59],[134,60],[135,61],[136,62],[137,63],[138,64],[139,65],[140,66],[159,67],[160,67],[162,68],[161,67],[190,69],[174,70],[191,69],[192,71],[193,71],[181,70],[182,70],[183,72],[184,73],[185,74],[186,74],[177,75],[187,70],[172,70],[188,74],[175,71],[176,76],[173,77],[194,78],[196,79],[178,80],[195,81],[189,82],[74,83],[81,84],[73,83],[88,85],[65,86],[64,87],[87,88],[82,89],[85,90],[67,91],[66,92],[62,93],[61,94],[84,95],[63,96],[68,97],[72,97],[90,98],[89,97],[76,99],[77,100],[79,101],[75,102],[78,103],[83,88],[70,104],[71,105],[80,106],[60,107],[86,108],[51,109],[53,110],[54,111],[200,112],[171,113],[197,74],[201,114],[169,115],[168,116],[50,117],[199,118],[52,119],[166,120],[198,121]],"exportedModulesMap":[[149,1],[152,2],[151,3],[150,4],[148,5],[144,6],[147,7],[146,8],[145,9],[143,5],[158,10],[157,11],[156,12],[155,13],[154,14],[153,15],[165,16],[167,5],[56,17],[57,17],[92,18],[93,19],[94,20],[95,21],[96,22],[97,23],[98,24],[99,25],[100,26],[101,27],[102,27],[104,28],[103,29],[105,30],[106,31],[107,32],[91,33],[108,34],[109,35],[110,36],[142,37],[111,38],[112,39],[113,40],[114,41],[115,42],[116,43],[117,44],[118,45],[119,46],[120,47],[121,47],[122,48],[123,49],[125,50],[124,51],[126,52],[127,53],[128,54],[129,55],[130,56],[131,57],[132,58],[133,59],[134,60],[135,61],[136,62],[137,63],[138,64],[139,65],[140,66],[159,67],[160,67],[162,68],[161,67],[190,69],[174,70],[191,69],[192,71],[193,71],[181,70],[182,70],[183,72],[184,73],[185,74],[186,74],[177,75],[187,70],[172,70],[188,74],[175,71],[176,76],[173,77],[194,78],[196,79],[178,80],[195,81],[189,82],[74,83],[81,84],[73,83],[88,85],[65,86],[64,87],[87,88],[82,89],[85,90],[67,91],[66,92],[62,93],[61,94],[84,95],[63,96],[68,97],[72,97],[90,98],[89,97],[76,99],[77,100],[79,101],[75,102],[78,103],[83,88],[70,104],[71,105],[80,106],[60,107],[86,108],[51,18],[53,122],[171,123],[197,74],[201,124],[50,125],[198,126]],"semanticDiagnosticsPerFile":[149,152,151,150,148,144,147,146,145,143,158,157,156,155,154,153,163,165,167,56,57,92,93,94,95,96,97,98,99,100,101,102,104,103,105,106,107,91,141,108,109,110,142,111,112,113,114,115,116,117,118,119,120,121,122,123,125,124,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,164,47,58,170,55,159,160,162,161,180,190,174,191,192,193,179,181,182,183,184,185,186,177,187,172,188,175,176,173,194,196,178,195,189,44,45,8,10,9,2,11,12,13,14,15,16,17,18,3,4,19,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,74,81,73,88,65,64,87,82,85,67,66,62,61,84,63,68,69,72,59,90,89,76,77,79,75,78,83,70,71,80,60,86,48,51,53,54,200,171,197,201,46,169,168,50,199,52,166,198,49]},"version":"5.3.3"}
|
package/dist/util.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "braintrust",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.90",
|
|
4
4
|
"description": "SDK for integrating Braintrust",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"browser": {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"typescript": "^5.3.3"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@braintrust/core": "^0.0.
|
|
46
|
+
"@braintrust/core": "^0.0.11",
|
|
47
47
|
"argparse": "^2.0.1",
|
|
48
48
|
"chalk": "^4.1.2",
|
|
49
49
|
"cli-progress": "^3.12.0",
|