braintrust 0.0.92 → 0.0.93

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 CHANGED
@@ -212,7 +212,7 @@ var NoopSpan = class {
212
212
  var NOOP_SPAN = new NoopSpan();
213
213
  var BraintrustState = class {
214
214
  constructor() {
215
- this.apiUrl = null;
215
+ this.appUrl = null;
216
216
  this.loginToken = null;
217
217
  this.orgId = null;
218
218
  this.orgName = null;
@@ -228,7 +228,7 @@ var BraintrustState = class {
228
228
  globalThis.__inherited_braintrust_state = this;
229
229
  }
230
230
  resetLoginInfo() {
231
- this.apiUrl = null;
231
+ this.appUrl = null;
232
232
  this.loginToken = null;
233
233
  this.orgId = null;
234
234
  this.orgName = null;
@@ -240,10 +240,10 @@ var BraintrustState = class {
240
240
  }
241
241
  apiConn() {
242
242
  if (!this._apiConn) {
243
- if (!this.apiUrl) {
244
- throw new Error("Must initialize apiUrl before requesting apiConn");
243
+ if (!this.appUrl) {
244
+ throw new Error("Must initialize appUrl before requesting apiConn");
245
245
  }
246
- this._apiConn = new HTTPConnection(this.apiUrl);
246
+ this._apiConn = new HTTPConnection(this.appUrl);
247
247
  }
248
248
  return this._apiConn;
249
249
  }
@@ -463,10 +463,10 @@ var Logger = class {
463
463
  * Log a single event. The event will be batched and uploaded behind the scenes if `logOptions.asyncFlush` is true.
464
464
  *
465
465
  * @param event The event to log.
466
- * @param event.input: The arguments that uniquely define a user input (an arbitrary, JSON serializable object).
467
- * @param event.output: The output of your application, including post-processing (an arbitrary, JSON serializable object), that allows you to determine whether the result is correct or not. For example, in an app that generates SQL queries, the `output` should be the _result_ of the SQL query generated by the model, not the query itself, because there may be multiple valid queries that answer a single question.
468
- * @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
469
- * @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare logs.
466
+ * @param event.input: (Optional) the arguments that uniquely define a user input (an arbitrary, JSON serializable object).
467
+ * @param event.output: (Optional) the output of your application, including post-processing (an arbitrary, JSON serializable object), that allows you to determine whether the result is correct or not. For example, in an app that generates SQL queries, the `output` should be the _result_ of the SQL query generated by the model, not the query itself, because there may be multiple valid queries that answer a single question.
468
+ * @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. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
469
+ * @param event.scores: (Optional) a dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare logs.
470
470
  * @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
471
471
  * @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end".
472
472
  * @param event.id: (Optional) a unique identifier for the event. If you don't provide one, BrainTrust will generate one for you.
@@ -522,7 +522,9 @@ var Logger = class {
522
522
  };
523
523
  }
524
524
  /**
525
- * Lower-level alternative to `traced`, which does not automatically end the span or mark it as current.
525
+ * Lower-level alternative to `traced`. This allows you to start a span yourself, and can be useful in situations
526
+ * where you cannot use callbacks. However, spans started with `startSpan` will not be marked as the "current span",
527
+ * so `currentSpan()` and `traced()` will be no-ops. If you want to mark a span as current, use `traced` instead.
526
528
  *
527
529
  * See `traced` for full details.
528
530
  */
@@ -673,7 +675,7 @@ function init(project, options = {}) {
673
675
  baseExperiment,
674
676
  isPublic,
675
677
  update,
676
- apiUrl,
678
+ appUrl,
677
679
  apiKey,
678
680
  orgName,
679
681
  metadata,
@@ -683,7 +685,7 @@ function init(project, options = {}) {
683
685
  await login({
684
686
  orgName,
685
687
  apiKey,
686
- apiUrl
688
+ appUrl
687
689
  });
688
690
  const args = {
689
691
  project_name: project,
@@ -776,12 +778,12 @@ function withLogger(callback, options = {}) {
776
778
  return callback(logger);
777
779
  }
778
780
  function initDataset(project, options = {}) {
779
- const { dataset, description, version, apiUrl, apiKey, orgName } = options || {};
781
+ const { dataset, description, version, appUrl, apiKey, orgName } = options || {};
780
782
  const lazyMetadata = (async () => {
781
783
  await login({
782
784
  orgName,
783
785
  apiKey,
784
- apiUrl
786
+ appUrl
785
787
  });
786
788
  const args = {
787
789
  org_id: _state.orgId,
@@ -817,7 +819,7 @@ function initLogger(options = {}) {
817
819
  projectName,
818
820
  projectId,
819
821
  asyncFlush,
820
- apiUrl,
822
+ appUrl,
821
823
  apiKey,
822
824
  orgName,
823
825
  forceLogin
@@ -826,7 +828,7 @@ function initLogger(options = {}) {
826
828
  await login({
827
829
  orgName,
828
830
  apiKey,
829
- apiUrl,
831
+ appUrl,
830
832
  forceLogin
831
833
  });
832
834
  const org_id = _state.orgId;
@@ -872,7 +874,7 @@ function initLogger(options = {}) {
872
874
  }
873
875
  async function login(options = {}) {
874
876
  const {
875
- apiUrl = isomorph_default.getEnv("BRAINTRUST_API_URL") || "https://www.braintrustdata.com",
877
+ appUrl = isomorph_default.getEnv("BRAINTRUST_APP_URL") || "https://www.braintrustdata.com",
876
878
  apiKey = isomorph_default.getEnv("BRAINTRUST_API_KEY"),
877
879
  orgName = isomorph_default.getEnv("BRAINTRUST_ORG_NAME")
878
880
  } = options || {};
@@ -881,11 +883,11 @@ async function login(options = {}) {
881
883
  return;
882
884
  }
883
885
  _state.resetLoginInfo();
884
- _state.apiUrl = apiUrl;
886
+ _state.appUrl = appUrl;
885
887
  let conn = null;
886
888
  if (apiKey !== void 0) {
887
889
  const resp = await checkResponse(
888
- await fetch(_urljoin(_state.apiUrl, `/api/apikey/login`), {
890
+ await fetch(_urljoin(_state.appUrl, `/api/apikey/login`), {
889
891
  method: "POST",
890
892
  headers: {
891
893
  "Content-Type": "application/json"
@@ -1002,7 +1004,7 @@ function _check_org_info(org_info, org_name) {
1002
1004
  if (org_name === void 0 || org.name === org_name) {
1003
1005
  _state.orgId = org.id;
1004
1006
  _state.orgName = org.name;
1005
- _state.logUrl = isomorph_default.getEnv("BRAINTRUST_LOG_URL") ?? org.api_url;
1007
+ _state.logUrl = isomorph_default.getEnv("BRAINTRUST_API_URL") ?? org.api_url;
1006
1008
  _state.gitMetadataSettings = org.git_metadata || void 0;
1007
1009
  break;
1008
1010
  }
@@ -1072,6 +1074,9 @@ function validateAndSanitizeExperimentLogFullArgs(event, hasDataset) {
1072
1074
  "Exactly one of input or inputs (deprecated) must be specified. Prefer input."
1073
1075
  );
1074
1076
  }
1077
+ if (!event.output) {
1078
+ throw new Error("output must be specified");
1079
+ }
1075
1080
  if (!event.scores) {
1076
1081
  throw new Error("scores must be specified");
1077
1082
  }
@@ -1119,7 +1124,7 @@ var Experiment = class {
1119
1124
  * @param event The event to log.
1120
1125
  * @param event.input: The arguments that uniquely define a test case (an arbitrary, JSON serializable object). Later on, Braintrust will use the `input` to know whether two test cases are the same between experiments, so they should not contain experiment-specific state. A simple rule of thumb is that if you run the same experiment twice, the `input` should be identical.
1121
1126
  * @param event.output: The output of your application, including post-processing (an arbitrary, JSON serializable object), that allows you to determine whether the result is correct or not. For example, in an app that generates SQL queries, the `output` should be the _result_ of the SQL query generated by the model, not the query itself, because there may be multiple valid queries that answer a single question.
1122
- * @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate your experiments while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
1127
+ * @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. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate your experiments while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
1123
1128
  * @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare experiments.
1124
1129
  * @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
1125
1130
  * @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end".
@@ -1161,7 +1166,9 @@ var Experiment = class {
1161
1166
  };
1162
1167
  }
1163
1168
  /**
1164
- * Lower-level alternative to `traced`, which does not automatically end the span or mark it as current.
1169
+ * Lower-level alternative to `traced`. This allows you to start a span yourself, and can be useful in situations
1170
+ * where you cannot use callbacks. However, spans started with `startSpan` will not be marked as the "current span",
1171
+ * so `currentSpan()` and `traced()` will be no-ops. If you want to mark a span as current, use `traced` instead.
1165
1172
  *
1166
1173
  * See `traced` for full details.
1167
1174
  */
@@ -1186,7 +1193,7 @@ var Experiment = class {
1186
1193
  let { summarizeScores = true, comparisonExperimentId = void 0 } = options || {};
1187
1194
  await this.bgLogger.flush();
1188
1195
  const state = await this.getState();
1189
- const projectUrl = `${state.apiUrl}/app/${encodeURIComponent(
1196
+ const projectUrl = `${state.appUrl}/app/${encodeURIComponent(
1190
1197
  state.orgName
1191
1198
  )}/p/${encodeURIComponent((await this.project).name)}`;
1192
1199
  const experimentUrl = `${projectUrl}/${encodeURIComponent(
@@ -1471,7 +1478,7 @@ var Dataset = class {
1471
1478
  let { summarizeData = true } = options || {};
1472
1479
  await this.bgLogger.flush();
1473
1480
  const state = await this.getState();
1474
- const projectUrl = `${state.apiUrl}/app/${encodeURIComponent(
1481
+ const projectUrl = `${state.appUrl}/app/${encodeURIComponent(
1475
1482
  state.orgName
1476
1483
  )}/p/${encodeURIComponent((await this.project).name)}`;
1477
1484
  const datasetUrl = `${projectUrl}/d/${encodeURIComponent(await this.name)}`;
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.92",
9068
+ version: "0.0.93",
9069
9069
  description: "SDK for integrating Braintrust",
9070
9070
  main: "./dist/index.js",
9071
9071
  browser: {
@@ -10673,7 +10673,7 @@ var NoopSpan = class {
10673
10673
  var NOOP_SPAN = new NoopSpan();
10674
10674
  var BraintrustState = class {
10675
10675
  constructor() {
10676
- this.apiUrl = null;
10676
+ this.appUrl = null;
10677
10677
  this.loginToken = null;
10678
10678
  this.orgId = null;
10679
10679
  this.orgName = null;
@@ -10689,7 +10689,7 @@ var BraintrustState = class {
10689
10689
  globalThis.__inherited_braintrust_state = this;
10690
10690
  }
10691
10691
  resetLoginInfo() {
10692
- this.apiUrl = null;
10692
+ this.appUrl = null;
10693
10693
  this.loginToken = null;
10694
10694
  this.orgId = null;
10695
10695
  this.orgName = null;
@@ -10701,10 +10701,10 @@ var BraintrustState = class {
10701
10701
  }
10702
10702
  apiConn() {
10703
10703
  if (!this._apiConn) {
10704
- if (!this.apiUrl) {
10705
- throw new Error("Must initialize apiUrl before requesting apiConn");
10704
+ if (!this.appUrl) {
10705
+ throw new Error("Must initialize appUrl before requesting apiConn");
10706
10706
  }
10707
- this._apiConn = new HTTPConnection(this.apiUrl);
10707
+ this._apiConn = new HTTPConnection(this.appUrl);
10708
10708
  }
10709
10709
  return this._apiConn;
10710
10710
  }
@@ -11000,7 +11000,7 @@ function init(project, options = {}) {
11000
11000
  baseExperiment,
11001
11001
  isPublic,
11002
11002
  update,
11003
- apiUrl,
11003
+ appUrl,
11004
11004
  apiKey,
11005
11005
  orgName,
11006
11006
  metadata,
@@ -11010,7 +11010,7 @@ function init(project, options = {}) {
11010
11010
  await login({
11011
11011
  orgName,
11012
11012
  apiKey,
11013
- apiUrl
11013
+ appUrl
11014
11014
  });
11015
11015
  const args = {
11016
11016
  project_name: project,
@@ -11090,7 +11090,7 @@ function init(project, options = {}) {
11090
11090
  }
11091
11091
  async function login(options = {}) {
11092
11092
  const {
11093
- apiUrl = isomorph_default.getEnv("BRAINTRUST_API_URL") || "https://www.braintrustdata.com",
11093
+ appUrl = isomorph_default.getEnv("BRAINTRUST_APP_URL") || "https://www.braintrustdata.com",
11094
11094
  apiKey = isomorph_default.getEnv("BRAINTRUST_API_KEY"),
11095
11095
  orgName = isomorph_default.getEnv("BRAINTRUST_ORG_NAME")
11096
11096
  } = options || {};
@@ -11099,11 +11099,11 @@ async function login(options = {}) {
11099
11099
  return;
11100
11100
  }
11101
11101
  _state.resetLoginInfo();
11102
- _state.apiUrl = apiUrl;
11102
+ _state.appUrl = appUrl;
11103
11103
  let conn = null;
11104
11104
  if (apiKey !== void 0) {
11105
11105
  const resp = await checkResponse(
11106
- await fetch(_urljoin(_state.apiUrl, `/api/apikey/login`), {
11106
+ await fetch(_urljoin(_state.appUrl, `/api/apikey/login`), {
11107
11107
  method: "POST",
11108
11108
  headers: {
11109
11109
  "Content-Type": "application/json"
@@ -11141,7 +11141,7 @@ function _check_org_info(org_info, org_name) {
11141
11141
  if (org_name === void 0 || org.name === org_name) {
11142
11142
  _state.orgId = org.id;
11143
11143
  _state.orgName = org.name;
11144
- _state.logUrl = isomorph_default.getEnv("BRAINTRUST_LOG_URL") ?? org.api_url;
11144
+ _state.logUrl = isomorph_default.getEnv("BRAINTRUST_API_URL") ?? org.api_url;
11145
11145
  _state.gitMetadataSettings = org.git_metadata || void 0;
11146
11146
  break;
11147
11147
  }
@@ -11211,6 +11211,9 @@ function validateAndSanitizeExperimentLogFullArgs(event, hasDataset) {
11211
11211
  "Exactly one of input or inputs (deprecated) must be specified. Prefer input."
11212
11212
  );
11213
11213
  }
11214
+ if (!event.output) {
11215
+ throw new Error("output must be specified");
11216
+ }
11214
11217
  if (!event.scores) {
11215
11218
  throw new Error("scores must be specified");
11216
11219
  }
@@ -11258,7 +11261,7 @@ var Experiment = class {
11258
11261
  * @param event The event to log.
11259
11262
  * @param event.input: The arguments that uniquely define a test case (an arbitrary, JSON serializable object). Later on, Braintrust will use the `input` to know whether two test cases are the same between experiments, so they should not contain experiment-specific state. A simple rule of thumb is that if you run the same experiment twice, the `input` should be identical.
11260
11263
  * @param event.output: The output of your application, including post-processing (an arbitrary, JSON serializable object), that allows you to determine whether the result is correct or not. For example, in an app that generates SQL queries, the `output` should be the _result_ of the SQL query generated by the model, not the query itself, because there may be multiple valid queries that answer a single question.
11261
- * @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate your experiments while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
11264
+ * @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. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate your experiments while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
11262
11265
  * @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare experiments.
11263
11266
  * @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
11264
11267
  * @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end".
@@ -11300,7 +11303,9 @@ var Experiment = class {
11300
11303
  };
11301
11304
  }
11302
11305
  /**
11303
- * Lower-level alternative to `traced`, which does not automatically end the span or mark it as current.
11306
+ * Lower-level alternative to `traced`. This allows you to start a span yourself, and can be useful in situations
11307
+ * where you cannot use callbacks. However, spans started with `startSpan` will not be marked as the "current span",
11308
+ * so `currentSpan()` and `traced()` will be no-ops. If you want to mark a span as current, use `traced` instead.
11304
11309
  *
11305
11310
  * See `traced` for full details.
11306
11311
  */
@@ -11325,7 +11330,7 @@ var Experiment = class {
11325
11330
  let { summarizeScores = true, comparisonExperimentId = void 0 } = options || {};
11326
11331
  await this.bgLogger.flush();
11327
11332
  const state = await this.getState();
11328
- const projectUrl = `${state.apiUrl}/app/${encodeURIComponent(
11333
+ const projectUrl = `${state.appUrl}/app/${encodeURIComponent(
11329
11334
  state.orgName
11330
11335
  )}/p/${encodeURIComponent((await this.project).name)}`;
11331
11336
  const experimentUrl = `${projectUrl}/${encodeURIComponent(
@@ -11610,7 +11615,7 @@ var Dataset = class {
11610
11615
  let { summarizeData = true } = options || {};
11611
11616
  await this.bgLogger.flush();
11612
11617
  const state = await this.getState();
11613
- const projectUrl = `${state.apiUrl}/app/${encodeURIComponent(
11618
+ const projectUrl = `${state.appUrl}/app/${encodeURIComponent(
11614
11619
  state.orgName
11615
11620
  )}/p/${encodeURIComponent((await this.project).name)}`;
11616
11621
  const datasetUrl = `${projectUrl}/d/${encodeURIComponent(await this.name)}`;
@@ -16555,7 +16560,7 @@ async function run(args) {
16555
16560
  verbose: args.verbose,
16556
16561
  apiKey: args.api_key,
16557
16562
  orgName: args.org_name,
16558
- apiUrl: args.api_url,
16563
+ appUrl: args.app_url,
16559
16564
  noSendLogs: !!args.no_send_logs,
16560
16565
  terminateOnFailure: !!args.terminate_on_failure,
16561
16566
  watch: !!args.watch,
@@ -16569,7 +16574,7 @@ async function run(args) {
16569
16574
  await login({
16570
16575
  apiKey: args.api_key,
16571
16576
  orgName: args.org_name,
16572
- apiUrl: args.api_url
16577
+ appUrl: args.app_url
16573
16578
  });
16574
16579
  }
16575
16580
  if (args.watch) {
@@ -16607,8 +16612,8 @@ async function main() {
16607
16612
  parser_run.add_argument("--org-name", {
16608
16613
  help: "The name of a specific organization to connect to. This is useful if you belong to multiple."
16609
16614
  });
16610
- parser_run.add_argument("--api-url", {
16611
- help: "Specify a custom braintrust api url. Defaults to https://www.braintrustdata.com. This is only necessary if you are using an experimental version of Braintrust"
16615
+ parser_run.add_argument("--app-url", {
16616
+ help: "Specify a custom braintrust app url. Defaults to https://www.braintrustdata.com. This is only necessary if you are using an experimental version of Braintrust"
16612
16617
  });
16613
16618
  parser_run.add_argument("--watch", {
16614
16619
  action: "store_true",
package/dist/index.js CHANGED
@@ -8028,7 +8028,7 @@ var NoopSpan = class {
8028
8028
  var NOOP_SPAN = new NoopSpan();
8029
8029
  var BraintrustState = class {
8030
8030
  constructor() {
8031
- this.apiUrl = null;
8031
+ this.appUrl = null;
8032
8032
  this.loginToken = null;
8033
8033
  this.orgId = null;
8034
8034
  this.orgName = null;
@@ -8044,7 +8044,7 @@ var BraintrustState = class {
8044
8044
  globalThis.__inherited_braintrust_state = this;
8045
8045
  }
8046
8046
  resetLoginInfo() {
8047
- this.apiUrl = null;
8047
+ this.appUrl = null;
8048
8048
  this.loginToken = null;
8049
8049
  this.orgId = null;
8050
8050
  this.orgName = null;
@@ -8056,10 +8056,10 @@ var BraintrustState = class {
8056
8056
  }
8057
8057
  apiConn() {
8058
8058
  if (!this._apiConn) {
8059
- if (!this.apiUrl) {
8060
- throw new Error("Must initialize apiUrl before requesting apiConn");
8059
+ if (!this.appUrl) {
8060
+ throw new Error("Must initialize appUrl before requesting apiConn");
8061
8061
  }
8062
- this._apiConn = new HTTPConnection(this.apiUrl);
8062
+ this._apiConn = new HTTPConnection(this.appUrl);
8063
8063
  }
8064
8064
  return this._apiConn;
8065
8065
  }
@@ -8279,10 +8279,10 @@ var Logger = class {
8279
8279
  * Log a single event. The event will be batched and uploaded behind the scenes if `logOptions.asyncFlush` is true.
8280
8280
  *
8281
8281
  * @param event The event to log.
8282
- * @param event.input: The arguments that uniquely define a user input (an arbitrary, JSON serializable object).
8283
- * @param event.output: The output of your application, including post-processing (an arbitrary, JSON serializable object), that allows you to determine whether the result is correct or not. For example, in an app that generates SQL queries, the `output` should be the _result_ of the SQL query generated by the model, not the query itself, because there may be multiple valid queries that answer a single question.
8284
- * @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
8285
- * @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare logs.
8282
+ * @param event.input: (Optional) the arguments that uniquely define a user input (an arbitrary, JSON serializable object).
8283
+ * @param event.output: (Optional) the output of your application, including post-processing (an arbitrary, JSON serializable object), that allows you to determine whether the result is correct or not. For example, in an app that generates SQL queries, the `output` should be the _result_ of the SQL query generated by the model, not the query itself, because there may be multiple valid queries that answer a single question.
8284
+ * @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. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
8285
+ * @param event.scores: (Optional) a dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare logs.
8286
8286
  * @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
8287
8287
  * @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end".
8288
8288
  * @param event.id: (Optional) a unique identifier for the event. If you don't provide one, BrainTrust will generate one for you.
@@ -8338,7 +8338,9 @@ var Logger = class {
8338
8338
  };
8339
8339
  }
8340
8340
  /**
8341
- * Lower-level alternative to `traced`, which does not automatically end the span or mark it as current.
8341
+ * Lower-level alternative to `traced`. This allows you to start a span yourself, and can be useful in situations
8342
+ * where you cannot use callbacks. However, spans started with `startSpan` will not be marked as the "current span",
8343
+ * so `currentSpan()` and `traced()` will be no-ops. If you want to mark a span as current, use `traced` instead.
8342
8344
  *
8343
8345
  * See `traced` for full details.
8344
8346
  */
@@ -8489,7 +8491,7 @@ function init(project, options = {}) {
8489
8491
  baseExperiment,
8490
8492
  isPublic,
8491
8493
  update,
8492
- apiUrl,
8494
+ appUrl,
8493
8495
  apiKey,
8494
8496
  orgName,
8495
8497
  metadata,
@@ -8499,7 +8501,7 @@ function init(project, options = {}) {
8499
8501
  await login({
8500
8502
  orgName,
8501
8503
  apiKey,
8502
- apiUrl
8504
+ appUrl
8503
8505
  });
8504
8506
  const args = {
8505
8507
  project_name: project,
@@ -8592,12 +8594,12 @@ function withLogger(callback, options = {}) {
8592
8594
  return callback(logger);
8593
8595
  }
8594
8596
  function initDataset(project, options = {}) {
8595
- const { dataset, description, version, apiUrl, apiKey, orgName } = options || {};
8597
+ const { dataset, description, version, appUrl, apiKey, orgName } = options || {};
8596
8598
  const lazyMetadata = (async () => {
8597
8599
  await login({
8598
8600
  orgName,
8599
8601
  apiKey,
8600
- apiUrl
8602
+ appUrl
8601
8603
  });
8602
8604
  const args = {
8603
8605
  org_id: _state.orgId,
@@ -8633,7 +8635,7 @@ function initLogger(options = {}) {
8633
8635
  projectName,
8634
8636
  projectId,
8635
8637
  asyncFlush,
8636
- apiUrl,
8638
+ appUrl,
8637
8639
  apiKey,
8638
8640
  orgName,
8639
8641
  forceLogin
@@ -8642,7 +8644,7 @@ function initLogger(options = {}) {
8642
8644
  await login({
8643
8645
  orgName,
8644
8646
  apiKey,
8645
- apiUrl,
8647
+ appUrl,
8646
8648
  forceLogin
8647
8649
  });
8648
8650
  const org_id = _state.orgId;
@@ -8688,7 +8690,7 @@ function initLogger(options = {}) {
8688
8690
  }
8689
8691
  async function login(options = {}) {
8690
8692
  const {
8691
- apiUrl = isomorph_default.getEnv("BRAINTRUST_API_URL") || "https://www.braintrustdata.com",
8693
+ appUrl = isomorph_default.getEnv("BRAINTRUST_APP_URL") || "https://www.braintrustdata.com",
8692
8694
  apiKey = isomorph_default.getEnv("BRAINTRUST_API_KEY"),
8693
8695
  orgName = isomorph_default.getEnv("BRAINTRUST_ORG_NAME")
8694
8696
  } = options || {};
@@ -8697,11 +8699,11 @@ async function login(options = {}) {
8697
8699
  return;
8698
8700
  }
8699
8701
  _state.resetLoginInfo();
8700
- _state.apiUrl = apiUrl;
8702
+ _state.appUrl = appUrl;
8701
8703
  let conn = null;
8702
8704
  if (apiKey !== void 0) {
8703
8705
  const resp = await checkResponse(
8704
- await fetch(_urljoin(_state.apiUrl, `/api/apikey/login`), {
8706
+ await fetch(_urljoin(_state.appUrl, `/api/apikey/login`), {
8705
8707
  method: "POST",
8706
8708
  headers: {
8707
8709
  "Content-Type": "application/json"
@@ -8818,7 +8820,7 @@ function _check_org_info(org_info, org_name) {
8818
8820
  if (org_name === void 0 || org.name === org_name) {
8819
8821
  _state.orgId = org.id;
8820
8822
  _state.orgName = org.name;
8821
- _state.logUrl = isomorph_default.getEnv("BRAINTRUST_LOG_URL") ?? org.api_url;
8823
+ _state.logUrl = isomorph_default.getEnv("BRAINTRUST_API_URL") ?? org.api_url;
8822
8824
  _state.gitMetadataSettings = org.git_metadata || void 0;
8823
8825
  break;
8824
8826
  }
@@ -8888,6 +8890,9 @@ function validateAndSanitizeExperimentLogFullArgs(event, hasDataset) {
8888
8890
  "Exactly one of input or inputs (deprecated) must be specified. Prefer input."
8889
8891
  );
8890
8892
  }
8893
+ if (!event.output) {
8894
+ throw new Error("output must be specified");
8895
+ }
8891
8896
  if (!event.scores) {
8892
8897
  throw new Error("scores must be specified");
8893
8898
  }
@@ -8935,7 +8940,7 @@ var Experiment = class {
8935
8940
  * @param event The event to log.
8936
8941
  * @param event.input: The arguments that uniquely define a test case (an arbitrary, JSON serializable object). Later on, Braintrust will use the `input` to know whether two test cases are the same between experiments, so they should not contain experiment-specific state. A simple rule of thumb is that if you run the same experiment twice, the `input` should be identical.
8937
8942
  * @param event.output: The output of your application, including post-processing (an arbitrary, JSON serializable object), that allows you to determine whether the result is correct or not. For example, in an app that generates SQL queries, the `output` should be the _result_ of the SQL query generated by the model, not the query itself, because there may be multiple valid queries that answer a single question.
8938
- * @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate your experiments while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
8943
+ * @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. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate your experiments while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
8939
8944
  * @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare experiments.
8940
8945
  * @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
8941
8946
  * @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end".
@@ -8977,7 +8982,9 @@ var Experiment = class {
8977
8982
  };
8978
8983
  }
8979
8984
  /**
8980
- * Lower-level alternative to `traced`, which does not automatically end the span or mark it as current.
8985
+ * Lower-level alternative to `traced`. This allows you to start a span yourself, and can be useful in situations
8986
+ * where you cannot use callbacks. However, spans started with `startSpan` will not be marked as the "current span",
8987
+ * so `currentSpan()` and `traced()` will be no-ops. If you want to mark a span as current, use `traced` instead.
8981
8988
  *
8982
8989
  * See `traced` for full details.
8983
8990
  */
@@ -9002,7 +9009,7 @@ var Experiment = class {
9002
9009
  let { summarizeScores = true, comparisonExperimentId = void 0 } = options || {};
9003
9010
  await this.bgLogger.flush();
9004
9011
  const state = await this.getState();
9005
- const projectUrl = `${state.apiUrl}/app/${encodeURIComponent(
9012
+ const projectUrl = `${state.appUrl}/app/${encodeURIComponent(
9006
9013
  state.orgName
9007
9014
  )}/p/${encodeURIComponent((await this.project).name)}`;
9008
9015
  const experimentUrl = `${projectUrl}/${encodeURIComponent(
@@ -9287,7 +9294,7 @@ var Dataset = class {
9287
9294
  let { summarizeData = true } = options || {};
9288
9295
  await this.bgLogger.flush();
9289
9296
  const state = await this.getState();
9290
- const projectUrl = `${state.apiUrl}/app/${encodeURIComponent(
9297
+ const projectUrl = `${state.appUrl}/app/${encodeURIComponent(
9291
9298
  state.orgName
9292
9299
  )}/p/${encodeURIComponent((await this.project).name)}`;
9293
9300
  const datasetUrl = `${projectUrl}/d/${encodeURIComponent(await this.name)}`;
package/dist/logger.d.ts CHANGED
@@ -64,7 +64,9 @@ export interface Span {
64
64
  */
65
65
  traced<R>(callback: (span: Span) => R, args?: StartSpanArgs & SetCurrentArg): R;
66
66
  /**
67
- * Lower-level alternative to `traced`, which does not automatically end the span or mark it as current. Be sure to end the span with `span.end()` when it has finished.
67
+ * Lower-level alternative to `traced`. This allows you to start a span yourself, and can be useful in situations
68
+ * where you cannot use callbacks. However, spans started with `startSpan` will not be marked as the "current span",
69
+ * so `currentSpan()` and `traced()` will be no-ops. If you want to mark a span as current, use `traced` instead.
68
70
  *
69
71
  * See `traced` for full details.
70
72
  *
@@ -111,7 +113,7 @@ declare class BraintrustState {
111
113
  currentExperiment: Experiment | undefined;
112
114
  currentLogger: Logger<false> | undefined;
113
115
  currentSpan: IsoAsyncLocalStorage<Span>;
114
- apiUrl: string | null;
116
+ appUrl: string | null;
115
117
  loginToken: string | null;
116
118
  orgId: string | null;
117
119
  orgName: string | null;
@@ -177,10 +179,10 @@ export declare class Logger<IsAsyncFlush extends boolean> {
177
179
  * Log a single event. The event will be batched and uploaded behind the scenes if `logOptions.asyncFlush` is true.
178
180
  *
179
181
  * @param event The event to log.
180
- * @param event.input: The arguments that uniquely define a user input (an arbitrary, JSON serializable object).
181
- * @param event.output: The output of your application, including post-processing (an arbitrary, JSON serializable object), that allows you to determine whether the result is correct or not. For example, in an app that generates SQL queries, the `output` should be the _result_ of the SQL query generated by the model, not the query itself, because there may be multiple valid queries that answer a single question.
182
- * @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
183
- * @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare logs.
182
+ * @param event.input: (Optional) the arguments that uniquely define a user input (an arbitrary, JSON serializable object).
183
+ * @param event.output: (Optional) the output of your application, including post-processing (an arbitrary, JSON serializable object), that allows you to determine whether the result is correct or not. For example, in an app that generates SQL queries, the `output` should be the _result_ of the SQL query generated by the model, not the query itself, because there may be multiple valid queries that answer a single question.
184
+ * @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. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
185
+ * @param event.scores: (Optional) a dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare logs.
184
186
  * @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
185
187
  * @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end".
186
188
  * @param event.id: (Optional) a unique identifier for the event. If you don't provide one, BrainTrust will generate one for you.
@@ -195,7 +197,9 @@ export declare class Logger<IsAsyncFlush extends boolean> {
195
197
  traced<R>(callback: (span: Span) => R, args?: StartSpanArgs & SetCurrentArg): PromiseUnless<IsAsyncFlush, R>;
196
198
  private lazyParentIds;
197
199
  /**
198
- * Lower-level alternative to `traced`, which does not automatically end the span or mark it as current.
200
+ * Lower-level alternative to `traced`. This allows you to start a span yourself, and can be useful in situations
201
+ * where you cannot use callbacks. However, spans started with `startSpan` will not be marked as the "current span",
202
+ * so `currentSpan()` and `traced()` will be no-ops. If you want to mark a span as current, use `traced` instead.
199
203
  *
200
204
  * See `traced` for full details.
201
205
  */
@@ -233,7 +237,7 @@ export type OtherExperimentLogFields = {
233
237
  datasetRecordId: string;
234
238
  };
235
239
  export type ExperimentLogPartialArgs = Partial<OtherExperimentLogFields> & Partial<InputField | InputsField>;
236
- export type ExperimentLogFullArgs = Partial<Omit<OtherExperimentLogFields, "scores">> & Required<Pick<OtherExperimentLogFields, "scores">> & Partial<InputField | InputsField> & Partial<IdField>;
240
+ export type ExperimentLogFullArgs = Partial<Omit<OtherExperimentLogFields, "output" | "scores">> & Required<Pick<OtherExperimentLogFields, "output" | "scores">> & Partial<InputField | InputsField> & Partial<IdField>;
237
241
  export type LogFeedbackFullArgs = IdField & Partial<Omit<OtherExperimentLogFields, "output" | "metrics" | "datasetRecordId"> & {
238
242
  comment: string;
239
243
  source: Source;
@@ -313,7 +317,7 @@ export type InitOptions = {
313
317
  update?: boolean;
314
318
  baseExperiment?: string;
315
319
  isPublic?: boolean;
316
- apiUrl?: string;
320
+ appUrl?: string;
317
321
  apiKey?: string;
318
322
  orgName?: string;
319
323
  metadata?: Metadata;
@@ -333,7 +337,7 @@ export type InitOptions = {
333
337
  * @param options.baseExperiment An optional experiment name to use as a base. If specified, the new experiment will be summarized and compared to this
334
338
  * experiment. Otherwise, it will pick an experiment by finding the closest ancestor on the default (e.g. main) branch.
335
339
  * @param options.isPublic An optional parameter to control whether the experiment is publicly visible to anybody with the link or privately visible to only members of the organization. Defaults to private.
336
- * @param options.apiUrl The URL of the Braintrust API. Defaults to https://www.braintrustdata.com.
340
+ * @param options.appUrl The URL of the Braintrust App. Defaults to https://www.braintrustdata.com.
337
341
  * @param options.apiKey The API key to use. If the parameter is not specified, will try to use the `BRAINTRUST_API_KEY` environment variable. If no API
338
342
  * key is specified, will prompt the user to login.
339
343
  * @param options.orgName (Optional) The name of a specific organization to connect to. This is useful if you belong to multiple.
@@ -358,7 +362,7 @@ type InitDatasetOptions = {
358
362
  dataset?: string;
359
363
  description?: string;
360
364
  version?: string;
361
- apiUrl?: string;
365
+ appUrl?: string;
362
366
  apiKey?: string;
363
367
  orgName?: string;
364
368
  };
@@ -369,7 +373,7 @@ type InitDatasetOptions = {
369
373
  * @param options Additional options for configuring init().
370
374
  * @param options.dataset The name of the dataset to create. If not specified, a name will be generated automatically.
371
375
  * @param options.description An optional description of the dataset.
372
- * @param options.apiUrl The URL of the Braintrust API. Defaults to https://www.braintrustdata.com.
376
+ * @param options.appUrl The URL of the Braintrust App. Defaults to https://www.braintrustdata.com.
373
377
  * @param options.apiKey The API key to use. If the parameter is not specified, will try to use the `BRAINTRUST_API_KEY` environment variable. If no API
374
378
  * key is specified, will prompt the user to login.
375
379
  * @param options.orgName (Optional) The name of a specific organization to connect to. This is useful if you belong to multiple.
@@ -386,7 +390,7 @@ type AsyncFlushArg<IsAsyncFlush> = {
386
390
  type InitLoggerOptions<IsAsyncFlush> = {
387
391
  projectName?: string;
388
392
  projectId?: string;
389
- apiUrl?: string;
393
+ appUrl?: string;
390
394
  apiKey?: string;
391
395
  orgName?: string;
392
396
  forceLogin?: boolean;
@@ -399,7 +403,7 @@ type InitLoggerOptions<IsAsyncFlush> = {
399
403
  * @param options.projectName The name of the project to log into. If unspecified, will default to the Global project.
400
404
  * @param options.projectId The id of the project to log into. This takes precedence over projectName if specified.
401
405
  * @param options.asyncFlush If true, will log asynchronously in the background. Otherwise, will log synchronously. (false by default, to support serverless environments)
402
- * @param options.apiUrl The URL of the Braintrust API. Defaults to https://www.braintrustdata.com.
406
+ * @param options.appUrl The URL of the Braintrust App. Defaults to https://www.braintrustdata.com.
403
407
  * @param options.apiKey The API key to use. If the parameter is not specified, will try to use the `BRAINTRUST_API_KEY` environment variable. If no API
404
408
  * key is specified, will prompt the user to login.
405
409
  * @param options.orgName (Optional) The name of a specific organization to connect to. This is useful if you belong to multiple.
@@ -413,14 +417,14 @@ export declare function initLogger<IsAsyncFlush extends boolean = false>(options
413
417
  * https://www.braintrustdata.com/app/token. This method is called automatically by `init()`.
414
418
  *
415
419
  * @param options Options for configuring login().
416
- * @param options.apiUrl The URL of the Braintrust API. Defaults to https://www.braintrustdata.com.
420
+ * @param options.appUrl The URL of the Braintrust App. Defaults to https://www.braintrustdata.com.
417
421
  * @param options.apiKey The API key to use. If the parameter is not specified, will try to use the `BRAINTRUST_API_KEY` environment variable. If no API
418
422
  * key is specified, will prompt the user to login.
419
423
  * @param options.orgName (Optional) The name of a specific organization to connect to. This is useful if you belong to multiple.
420
424
  * @param options.forceLogin Login again, even if you have already logged in (by default, this function will exit quickly if you have already logged in)
421
425
  */
422
426
  export declare function login(options?: {
423
- apiUrl?: string;
427
+ appUrl?: string;
424
428
  apiKey?: string;
425
429
  orgName?: string;
426
430
  forceLogin?: boolean;
@@ -474,7 +478,11 @@ export declare function getSpanParentObject<IsAsyncFlush extends boolean>(option
474
478
  */
475
479
  export declare function traced<IsAsyncFlush extends boolean = false, R = void>(callback: (span: Span) => R, args?: StartSpanArgs & SetCurrentArg & AsyncFlushArg<IsAsyncFlush>): PromiseUnless<IsAsyncFlush, R>;
476
480
  /**
477
- * Lower-level alternative to `traced`, which does not automatically end the span or mark it as current. See `traced` for full details.
481
+ * Lower-level alternative to `traced`. This allows you to start a span yourself, and can be useful in situations
482
+ * where you cannot use callbacks. However, spans started with `startSpan` will not be marked as the "current span",
483
+ * so `currentSpan()` and `traced()` will be no-ops. If you want to mark a span as current, use `traced` instead.
484
+ *
485
+ * See `traced` for full details.
478
486
  */
479
487
  export declare function startSpan<IsAsyncFlush extends boolean = false>(args?: StartSpanArgs & AsyncFlushArg<IsAsyncFlush>): Span;
480
488
  /**
@@ -506,7 +514,7 @@ export declare class Experiment {
506
514
  * @param event The event to log.
507
515
  * @param event.input: The arguments that uniquely define a test case (an arbitrary, JSON serializable object). Later on, Braintrust will use the `input` to know whether two test cases are the same between experiments, so they should not contain experiment-specific state. A simple rule of thumb is that if you run the same experiment twice, the `input` should be identical.
508
516
  * @param event.output: The output of your application, including post-processing (an arbitrary, JSON serializable object), that allows you to determine whether the result is correct or not. For example, in an app that generates SQL queries, the `output` should be the _result_ of the SQL query generated by the model, not the query itself, because there may be multiple valid queries that answer a single question.
509
- * @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate your experiments while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
517
+ * @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. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate your experiments while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
510
518
  * @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare experiments.
511
519
  * @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
512
520
  * @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end".
@@ -524,7 +532,9 @@ export declare class Experiment {
524
532
  traced<R>(callback: (span: Span) => R, args?: StartSpanArgs & SetCurrentArg): R;
525
533
  private lazyParentIds;
526
534
  /**
527
- * Lower-level alternative to `traced`, which does not automatically end the span or mark it as current.
535
+ * Lower-level alternative to `traced`. This allows you to start a span yourself, and can be useful in situations
536
+ * where you cannot use callbacks. However, spans started with `startSpan` will not be marked as the "current span",
537
+ * so `currentSpan()` and `traced()` will be no-ops. If you want to mark a span as current, use `traced` instead.
528
538
  *
529
539
  * See `traced` for full details.
530
540
  */
@@ -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","../../core/js/dist/index.d.ts","../src/isomorph.ts","../../../node_modules/.pnpm/@types+uuid@9.0.7/node_modules/@types/uuid/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},"306e104c0f30e1ec7cf07a990cce9fb3dddd1b81060cecf9b3a78e0e0afbeaad",{"version":"305e8eac7b68332f9b61fcd021c2e6c183e51a5c096dc8a7e9f83ad63e7cc0c8","signature":"89e8564f2492d65f315f612d88f9a8e0dad644bd3325f2f660df27258086e1a0"},"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d",{"version":"f8e993de64a77bdab94b26438693969a8653207470d433373dfd42a2aedc7455","signature":"d344485f78c9bf45b4a7908775868cd4f5efea36ccd53f8fc7fdb1c718e856dc"},{"version":"1a5473acde076c352b6a9f6b97613539d8b31766fd213962d7aa33d870f2782e","signature":"3cd8d1587d494978f88f326d12728e6c95aaf44a23b1a270feefb8c901bb8d78","affectsGlobalScope":true},{"version":"a2dc8e3d209bf33127af2d01bafe9407dc06ab605fe4e4bdc297d7d0fdb9add5","signature":"443148657b934a070c73ec27dfbbc63d3fcfdb703009ed36d997337abc2290e4","affectsGlobalScope":true},{"version":"5db8cbebf6695d08185c558f026bf079af2651e26dcf3c2fad9523828ad6d579","signature":"14cef2b567a470ca5665d4567381a80a292a8282610b9cc8fa22bde4aea4eacf","affectsGlobalScope":true},{"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":"e3c68ef250a60467c07c91eb430ef0f398dd626dc308c0e638b88bb5d7852b85","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":"ba9362b9171786cfd3021fb1b8ed58e44418d03882060408d53bdbb8e09471dc","signature":"83688e624421f7b5389f56d71542f133bd835c6a0c728ef7dd399922a2231264"},{"version":"282c7c74d33d5ec6a9067728647227358018bf878a6c381973efd5be87f0d2a8","signature":"eef6c9e9e2ced98a276734cb82f81b12d154026659e84128ad42a3a69caced38"},{"version":"c1887ec121feae4f6a72ec295ad8cc2acd12e37b278672d1c1aa53d6ebba076c","signature":"1518a19a9cb02ce4439e1bd5d07e5dd4f496d4598142ff82264b40785ba28789"},{"version":"1d3627e56e2fa30b36746ca013d79bf889027a466c3ca6fc5a99e54840946244","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"9a96f063a32a1bc5a9c126092e97381aa696b6215a2634c386695633e9b3d759","signature":"83719c2149a90c33ae5b40a9e69186febff4f4d14485752e576dab3486380185"}],"root":[47,[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],[47,50,91],[50,51,52],[113,114],[48,50,55,105,113,114,134,157,161,162,163,165,168,170,198],[46,50,163,165,169],[46,195],[50,52,170,198],[46],[114,167],[166],[46,47,48,49],[47,50,91,196,197],[46,49,50,109],[164],[47,114],[50,52],[46,50,165,169],[50,52,170],[46,47],[47]],"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,114],[200,115],[47,116],[168,117],[167,118],[50,119],[198,120],[52,121],[165,122],[197,123]],"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,124],[170,125],[196,114],[200,126],[47,116],[50,127],[197,128]],"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,48,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,46,51,53,54,199,170,196,200,47,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","../../core/js/dist/index.d.ts","../src/isomorph.ts","../../../node_modules/.pnpm/@types+uuid@9.0.7/node_modules/@types/uuid/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},"306e104c0f30e1ec7cf07a990cce9fb3dddd1b81060cecf9b3a78e0e0afbeaad",{"version":"305e8eac7b68332f9b61fcd021c2e6c183e51a5c096dc8a7e9f83ad63e7cc0c8","signature":"89e8564f2492d65f315f612d88f9a8e0dad644bd3325f2f660df27258086e1a0"},"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d",{"version":"f8e993de64a77bdab94b26438693969a8653207470d433373dfd42a2aedc7455","signature":"d344485f78c9bf45b4a7908775868cd4f5efea36ccd53f8fc7fdb1c718e856dc"},{"version":"f3e850b3ee412587b0eae7583d433f982477d2117e21342dddef204c1a36a310","signature":"a4044766b1e1afc7e77783c8c85e3631ad74a3e96ec19b8ec21b9a8334079b8d","affectsGlobalScope":true},{"version":"a2dc8e3d209bf33127af2d01bafe9407dc06ab605fe4e4bdc297d7d0fdb9add5","signature":"443148657b934a070c73ec27dfbbc63d3fcfdb703009ed36d997337abc2290e4","affectsGlobalScope":true},{"version":"5db8cbebf6695d08185c558f026bf079af2651e26dcf3c2fad9523828ad6d579","signature":"14cef2b567a470ca5665d4567381a80a292a8282610b9cc8fa22bde4aea4eacf","affectsGlobalScope":true},{"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":"e3c68ef250a60467c07c91eb430ef0f398dd626dc308c0e638b88bb5d7852b85","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":"ba9362b9171786cfd3021fb1b8ed58e44418d03882060408d53bdbb8e09471dc","signature":"83688e624421f7b5389f56d71542f133bd835c6a0c728ef7dd399922a2231264"},{"version":"282c7c74d33d5ec6a9067728647227358018bf878a6c381973efd5be87f0d2a8","signature":"eef6c9e9e2ced98a276734cb82f81b12d154026659e84128ad42a3a69caced38"},{"version":"c1887ec121feae4f6a72ec295ad8cc2acd12e37b278672d1c1aa53d6ebba076c","signature":"1518a19a9cb02ce4439e1bd5d07e5dd4f496d4598142ff82264b40785ba28789"},{"version":"c99ed7362552852d95b85642aad454da496cb150460f156021d8baf04775eeac","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"9a96f063a32a1bc5a9c126092e97381aa696b6215a2634c386695633e9b3d759","signature":"83719c2149a90c33ae5b40a9e69186febff4f4d14485752e576dab3486380185"}],"root":[47,[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],[47,50,91],[50,51,52],[113,114],[48,50,55,105,113,114,134,157,161,162,163,165,168,170,198],[46,50,163,165,169],[46,195],[50,52,170,198],[46],[114,167],[166],[46,47,48,49],[47,50,91,196,197],[46,49,50,109],[164],[47,114],[50,52],[46,50,165,169],[50,52,170],[46,47],[47]],"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,114],[200,115],[47,116],[168,117],[167,118],[50,119],[198,120],[52,121],[165,122],[197,123]],"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,124],[170,125],[196,114],[200,126],[47,116],[50,127],[197,128]],"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,48,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,46,51,53,54,199,170,196,200,47,168,167,50,198,52,165,197,49]},"version":"5.3.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "braintrust",
3
- "version": "0.0.92",
3
+ "version": "0.0.93",
4
4
  "description": "SDK for integrating Braintrust",
5
5
  "main": "./dist/index.js",
6
6
  "browser": {