braintrust 0.0.119 → 0.0.121

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.d.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  export * from "./logger";
2
- export * from "./oai";
2
+ export * from "./wrappers/oai";
package/dist/browser.js CHANGED
@@ -1752,14 +1752,14 @@ var SpanParentComponents = class _SpanParentComponents {
1752
1752
  return out;
1753
1753
  }
1754
1754
  };
1755
- var SpanTypeAttribute = /* @__PURE__ */ ((SpanTypeAttribute22) => {
1756
- SpanTypeAttribute22["LLM"] = "llm";
1757
- SpanTypeAttribute22["SCORE"] = "score";
1758
- SpanTypeAttribute22["FUNCTION"] = "function";
1759
- SpanTypeAttribute22["EVAL"] = "eval";
1760
- SpanTypeAttribute22["TASK"] = "task";
1761
- SpanTypeAttribute22["TOOL"] = "tool";
1762
- return SpanTypeAttribute22;
1755
+ var SpanTypeAttribute = /* @__PURE__ */ ((SpanTypeAttribute2) => {
1756
+ SpanTypeAttribute2["LLM"] = "llm";
1757
+ SpanTypeAttribute2["SCORE"] = "score";
1758
+ SpanTypeAttribute2["FUNCTION"] = "function";
1759
+ SpanTypeAttribute2["EVAL"] = "eval";
1760
+ SpanTypeAttribute2["TASK"] = "task";
1761
+ SpanTypeAttribute2["TOOL"] = "tool";
1762
+ return SpanTypeAttribute2;
1763
1763
  })(SpanTypeAttribute || {});
1764
1764
  function mergeGitMetadataSettings(s1, s2) {
1765
1765
  var _a2;
@@ -5538,6 +5538,7 @@ var objectTypes = z.enum([
5538
5538
  "experiment",
5539
5539
  "dataset",
5540
5540
  "prompt",
5541
+ "prompt_session",
5541
5542
  "role",
5542
5543
  "group",
5543
5544
  "acl",
@@ -5547,7 +5548,8 @@ var objectTypesWithEvent = z.enum([
5547
5548
  "project",
5548
5549
  "experiment",
5549
5550
  "dataset",
5550
- "prompt"
5551
+ "prompt",
5552
+ "prompt_session"
5551
5553
  ]);
5552
5554
  function getEventObjectType(objectType2) {
5553
5555
  return objectType2 === "project" ? "project_logs" : objectType2;
@@ -6042,9 +6044,12 @@ var createExperimentSchema = z.strictObject({
6042
6044
  dataset_id: experimentSchema.shape.dataset_id,
6043
6045
  dataset_version: experimentSchema.shape.dataset_version,
6044
6046
  public: experimentSchema.shape.public.nullish(),
6045
- metadata: experimentSchema.shape.metadata
6047
+ metadata: experimentSchema.shape.metadata,
6048
+ ensure_new: z.boolean().nullish().describe(
6049
+ "Normally, creating an experiment with the same name as an existing experiment will return the existing one un-modified. But if `ensure_new` is true, registration will generate a new experiment with a unique name in case of a conflict."
6050
+ )
6046
6051
  }).openapi("CreateExperiment");
6047
- var patchExperimentSchema = createExperimentSchema.omit({ project_id: true }).openapi("PatchExperiment");
6052
+ var patchExperimentSchema = createExperimentSchema.omit({ project_id: true, ensure_new: true }).openapi("PatchExperiment");
6048
6053
  var createDatasetSchema = z.strictObject({
6049
6054
  project_id: datasetSchema.shape.project_id,
6050
6055
  name: datasetSchema.shape.name,
@@ -6115,15 +6120,14 @@ var IS_MERGE_FIELD2 = "_is_merge";
6115
6120
  var MERGE_PATHS_FIELD2 = "_merge_paths";
6116
6121
  var VALID_SOURCES2 = ["app", "api", "external"];
6117
6122
  var PARENT_ID_FIELD2 = "_parent_id";
6118
- var SpanTypeAttribute2 = /* @__PURE__ */ ((SpanTypeAttribute22) => {
6119
- SpanTypeAttribute22["LLM"] = "llm";
6120
- SpanTypeAttribute22["SCORE"] = "score";
6121
- SpanTypeAttribute22["FUNCTION"] = "function";
6122
- SpanTypeAttribute22["EVAL"] = "eval";
6123
- SpanTypeAttribute22["TASK"] = "task";
6124
- SpanTypeAttribute22["TOOL"] = "tool";
6125
- return SpanTypeAttribute22;
6126
- })(SpanTypeAttribute2 || {});
6123
+ var spanTypeAttributeValues = [
6124
+ "llm",
6125
+ "score",
6126
+ "function",
6127
+ "eval",
6128
+ "task",
6129
+ "tool"
6130
+ ];
6127
6131
  (0, import_zod_to_openapi.extendZodWithOpenApi)(z);
6128
6132
  var auditSourcesSchema = z.enum(VALID_SOURCES2);
6129
6133
  function generateBaseEventOpSchema(objectType2) {
@@ -6135,7 +6139,9 @@ function generateBaseEventOpSchema(objectType2) {
6135
6139
  [TRANSACTION_ID_FIELD2]: z.string().describe(
6136
6140
  `The transaction id of an event is unique to the network operation that processed the event insertion. Transaction ids are monotonically increasing over time and can be used to retrieve a versioned snapshot of the ${eventDescription} (see the \`version\` parameter)`
6137
6141
  ),
6138
- created: datetimeStringSchema.nullish().describe(`The timestamp the ${eventDescription} event was created`),
6142
+ created: datetimeStringSchema.describe(
6143
+ `The timestamp the ${eventDescription} event was created`
6144
+ ),
6139
6145
  input: customTypes.any,
6140
6146
  output: customTypes.any,
6141
6147
  expected: customTypes.any,
@@ -6150,6 +6156,15 @@ function generateBaseEventOpSchema(objectType2) {
6150
6156
  ),
6151
6157
  end: z.number().nullish().describe(
6152
6158
  `A unix timestamp recording when the section of code which produced the ${eventDescription} event finished`
6159
+ ),
6160
+ prompt_tokens: z.number().int().nullish().describe(
6161
+ `The number of tokens in the prompt used to generate the ${eventDescription} event (only set if this is an LLM span)`
6162
+ ),
6163
+ completion_tokens: z.number().int().nullish().describe(
6164
+ `The number of tokens in the completion generated by the model (only set if this is an LLM span)`
6165
+ ),
6166
+ tokens: z.number().int().nullish().describe(
6167
+ `The total number of tokens in the input and output of the ${eventDescription} event.`
6153
6168
  )
6154
6169
  }).catchall(customTypes.any).nullish().describe(
6155
6170
  `Metrics are numerical measurements tracking the execution of the code that produced the ${eventDescription} event. Use "start" and "end" to track the time span over which the ${eventDescription} event was produced`
@@ -6178,7 +6193,7 @@ function generateBaseEventOpSchema(objectType2) {
6178
6193
  ),
6179
6194
  span_attributes: z.strictObject({
6180
6195
  name: z.string().nullish().describe("Name of the span, for display purposes only"),
6181
- type: z.nativeEnum(SpanTypeAttribute2).nullish().describe("Type of the span, for display purposes only")
6196
+ type: z.enum(spanTypeAttributeValues).nullish().describe("Type of the span, for display purposes only")
6182
6197
  }).catchall(customTypes.any).nullish().describe(
6183
6198
  "Human-identifying attributes of the span, such as name, type, etc."
6184
6199
  ),
@@ -6321,6 +6336,21 @@ var datasetEventSchema = z.strictObject({
6321
6336
  span_id: datasetEventBaseSchema.shape.span_id,
6322
6337
  root_span_id: datasetEventBaseSchema.shape.root_span_id
6323
6338
  }).openapi("DatasetEvent");
6339
+ var promptSessionEventBaseSchema = generateBaseEventOpSchema("prompt_session");
6340
+ var promptSessionEventSchema = z.strictObject({
6341
+ id: promptSessionEventBaseSchema.shape.id,
6342
+ [TRANSACTION_ID_FIELD2]: promptSessionEventBaseSchema.shape[TRANSACTION_ID_FIELD2],
6343
+ created: promptSessionEventBaseSchema.shape.created,
6344
+ project_id: promptSchema.shape.project_id,
6345
+ prompt_session_id: promptSchema.shape.id,
6346
+ prompt_session_data: customTypes.any.describe(
6347
+ "Data about the prompt session"
6348
+ ),
6349
+ prompt_data: customTypes.any.describe("Data about the prompt"),
6350
+ object_data: customTypes.any.describe("Data about the mapped data"),
6351
+ completion: customTypes.any.describe("Data about the completion"),
6352
+ tags: promptSessionEventBaseSchema.shape.tags
6353
+ }).openapi("PromptSessionEvent");
6324
6354
  var projectLogsEventBaseSchema = generateBaseEventOpSchema("project");
6325
6355
  var projectLogsEventSchema = z.strictObject({
6326
6356
  id: projectLogsEventBaseSchema.shape.id,
@@ -6503,8 +6533,20 @@ var feedbackPromptRequestSchema = makeFeedbackRequestSchema(
6503
6533
  "prompt",
6504
6534
  feedbackPromptItemSchema
6505
6535
  );
6536
+ var feedbackPromptSessionRequestBaseSchema = generateBaseEventFeedbackSchema("prompt_session");
6537
+ var feedbackPromptSessionItemSchema = z.strictObject({
6538
+ id: feedbackPromptSessionRequestBaseSchema.shape.id,
6539
+ comment: feedbackPromptSessionRequestBaseSchema.shape.comment,
6540
+ metadata: feedbackPromptSessionRequestBaseSchema.shape.metadata,
6541
+ source: feedbackPromptSessionRequestBaseSchema.shape.source
6542
+ }).openapi("FeedbackPromptSessionItem");
6543
+ var feedbackPromptSessionRequestSchema = makeFeedbackRequestSchema(
6544
+ "prompt_session",
6545
+ feedbackPromptSessionItemSchema
6546
+ );
6506
6547
  var eventObjectSchemas = {
6507
6548
  experiment: {
6549
+ event: experimentEventSchema,
6508
6550
  fetchResponse: makeFetchEventsResponseSchema(
6509
6551
  "experiment",
6510
6552
  experimentEventSchema
@@ -6515,6 +6557,7 @@ var eventObjectSchemas = {
6515
6557
  feedbackRequest: feedbackExperimentRequestSchema
6516
6558
  },
6517
6559
  dataset: {
6560
+ event: datasetEventSchema,
6518
6561
  fetchResponse: makeFetchEventsResponseSchema("dataset", datasetEventSchema),
6519
6562
  insertEvent: insertDatasetEventSchema,
6520
6563
  insertRequest: insertDatasetEventsRequestSchema,
@@ -6522,6 +6565,7 @@ var eventObjectSchemas = {
6522
6565
  feedbackRequest: feedbackDatasetRequestSchema
6523
6566
  },
6524
6567
  project_logs: {
6568
+ event: projectLogsEventSchema,
6525
6569
  fetchResponse: makeFetchEventsResponseSchema(
6526
6570
  "project",
6527
6571
  projectLogsEventSchema
@@ -6532,11 +6576,20 @@ var eventObjectSchemas = {
6532
6576
  feedbackRequest: feedbackProjectLogsRequestSchema
6533
6577
  },
6534
6578
  prompt: {
6579
+ event: promptSchema,
6535
6580
  fetchResponse: void 0,
6536
6581
  insertEvent: void 0,
6537
6582
  insertRequest: void 0,
6538
6583
  feedbackItem: feedbackPromptItemSchema,
6539
6584
  feedbackRequest: feedbackPromptRequestSchema
6585
+ },
6586
+ prompt_session: {
6587
+ event: promptSessionEventSchema,
6588
+ fetchResponse: void 0,
6589
+ insertEvent: void 0,
6590
+ insertRequest: void 0,
6591
+ feedbackItem: feedbackPromptSessionItemSchema,
6592
+ feedbackRequest: feedbackPromptRequestBaseSchema
6540
6593
  }
6541
6594
  };
6542
6595
  function makeCrossObjectIndividualRequestSchema(objectType2) {
@@ -7840,12 +7893,9 @@ function init(projectOrOptions, optionalOptions) {
7840
7893
  if (open && update) {
7841
7894
  throw new Error("Cannot open and update an experiment at the same time");
7842
7895
  }
7843
- if (open || update) {
7896
+ if (open) {
7844
7897
  if (isEmpty(experiment)) {
7845
- const action = open ? "open" : "update";
7846
- throw new Error(
7847
- `Cannot ${action} an experiment without specifying its name`
7848
- );
7898
+ throw new Error(`Cannot open an experiment without specifying its name`);
7849
7899
  }
7850
7900
  const lazyMetadata2 = new LazyValue(
7851
7901
  async () => {
@@ -7881,17 +7931,9 @@ function init(projectOrOptions, optionalOptions) {
7881
7931
  };
7882
7932
  }
7883
7933
  );
7884
- if (open) {
7885
- return new ReadonlyExperiment(
7886
- lazyMetadata2
7887
- );
7888
- } else {
7889
- const ret2 = new Experiment(lazyMetadata2, dataset);
7890
- if (options.setCurrent ?? true) {
7891
- _state.currentExperiment = ret2;
7892
- }
7893
- return ret2;
7894
- }
7934
+ return new ReadonlyExperiment(
7935
+ lazyMetadata2
7936
+ );
7895
7937
  }
7896
7938
  const lazyMetadata = new LazyValue(
7897
7939
  async () => {
@@ -7903,7 +7945,8 @@ function init(projectOrOptions, optionalOptions) {
7903
7945
  const args = {
7904
7946
  project_name: project,
7905
7947
  project_id: projectId,
7906
- org_id: _state.orgId
7948
+ org_id: _state.orgId,
7949
+ update
7907
7950
  };
7908
7951
  if (experiment) {
7909
7952
  args["experiment_name"] = experiment;
@@ -9183,7 +9226,7 @@ function configureBrowser() {
9183
9226
  browserConfigured = true;
9184
9227
  }
9185
9228
 
9186
- // src/oai.ts
9229
+ // src/wrappers/oai.ts
9187
9230
  function wrapOpenAI(openai) {
9188
9231
  if (openai?.chat?.completions?.create) {
9189
9232
  return wrapOpenAIv4(openai);
package/dist/cli.js CHANGED
@@ -10366,7 +10366,7 @@ var require_package = __commonJS({
10366
10366
  "package.json"(exports2, module2) {
10367
10367
  module2.exports = {
10368
10368
  name: "braintrust",
10369
- version: "0.0.119",
10369
+ version: "0.0.121",
10370
10370
  description: "SDK for integrating Braintrust",
10371
10371
  main: "./dist/index.js",
10372
10372
  browser: {
@@ -10410,7 +10410,8 @@ var require_package = __commonJS({
10410
10410
  typescript: "^5.3.3"
10411
10411
  },
10412
10412
  dependencies: {
10413
- "@braintrust/core": "0.0.31",
10413
+ "@ai-sdk/provider": "^0.0.0",
10414
+ "@braintrust/core": "0.0.32",
10414
10415
  argparse: "^2.0.1",
10415
10416
  chalk: "^4.1.2",
10416
10417
  "cli-progress": "^3.12.0",
@@ -12135,14 +12136,14 @@ var SpanParentComponents = class _SpanParentComponents {
12135
12136
  return out;
12136
12137
  }
12137
12138
  };
12138
- var SpanTypeAttribute = /* @__PURE__ */ ((SpanTypeAttribute22) => {
12139
- SpanTypeAttribute22["LLM"] = "llm";
12140
- SpanTypeAttribute22["SCORE"] = "score";
12141
- SpanTypeAttribute22["FUNCTION"] = "function";
12142
- SpanTypeAttribute22["EVAL"] = "eval";
12143
- SpanTypeAttribute22["TASK"] = "task";
12144
- SpanTypeAttribute22["TOOL"] = "tool";
12145
- return SpanTypeAttribute22;
12139
+ var SpanTypeAttribute = /* @__PURE__ */ ((SpanTypeAttribute2) => {
12140
+ SpanTypeAttribute2["LLM"] = "llm";
12141
+ SpanTypeAttribute2["SCORE"] = "score";
12142
+ SpanTypeAttribute2["FUNCTION"] = "function";
12143
+ SpanTypeAttribute2["EVAL"] = "eval";
12144
+ SpanTypeAttribute2["TASK"] = "task";
12145
+ SpanTypeAttribute2["TOOL"] = "tool";
12146
+ return SpanTypeAttribute2;
12146
12147
  })(SpanTypeAttribute || {});
12147
12148
  function mergeGitMetadataSettings(s1, s2) {
12148
12149
  var _a3;
@@ -15921,6 +15922,7 @@ var objectTypes = z.enum([
15921
15922
  "experiment",
15922
15923
  "dataset",
15923
15924
  "prompt",
15925
+ "prompt_session",
15924
15926
  "role",
15925
15927
  "group",
15926
15928
  "acl",
@@ -15930,7 +15932,8 @@ var objectTypesWithEvent = z.enum([
15930
15932
  "project",
15931
15933
  "experiment",
15932
15934
  "dataset",
15933
- "prompt"
15935
+ "prompt",
15936
+ "prompt_session"
15934
15937
  ]);
15935
15938
  function getEventObjectType(objectType2) {
15936
15939
  return objectType2 === "project" ? "project_logs" : objectType2;
@@ -16425,9 +16428,12 @@ var createExperimentSchema = z.strictObject({
16425
16428
  dataset_id: experimentSchema.shape.dataset_id,
16426
16429
  dataset_version: experimentSchema.shape.dataset_version,
16427
16430
  public: experimentSchema.shape.public.nullish(),
16428
- metadata: experimentSchema.shape.metadata
16431
+ metadata: experimentSchema.shape.metadata,
16432
+ ensure_new: z.boolean().nullish().describe(
16433
+ "Normally, creating an experiment with the same name as an existing experiment will return the existing one un-modified. But if `ensure_new` is true, registration will generate a new experiment with a unique name in case of a conflict."
16434
+ )
16429
16435
  }).openapi("CreateExperiment");
16430
- var patchExperimentSchema = createExperimentSchema.omit({ project_id: true }).openapi("PatchExperiment");
16436
+ var patchExperimentSchema = createExperimentSchema.omit({ project_id: true, ensure_new: true }).openapi("PatchExperiment");
16431
16437
  var createDatasetSchema = z.strictObject({
16432
16438
  project_id: datasetSchema.shape.project_id,
16433
16439
  name: datasetSchema.shape.name,
@@ -16498,15 +16504,14 @@ var IS_MERGE_FIELD2 = "_is_merge";
16498
16504
  var MERGE_PATHS_FIELD2 = "_merge_paths";
16499
16505
  var VALID_SOURCES2 = ["app", "api", "external"];
16500
16506
  var PARENT_ID_FIELD2 = "_parent_id";
16501
- var SpanTypeAttribute2 = /* @__PURE__ */ ((SpanTypeAttribute22) => {
16502
- SpanTypeAttribute22["LLM"] = "llm";
16503
- SpanTypeAttribute22["SCORE"] = "score";
16504
- SpanTypeAttribute22["FUNCTION"] = "function";
16505
- SpanTypeAttribute22["EVAL"] = "eval";
16506
- SpanTypeAttribute22["TASK"] = "task";
16507
- SpanTypeAttribute22["TOOL"] = "tool";
16508
- return SpanTypeAttribute22;
16509
- })(SpanTypeAttribute2 || {});
16507
+ var spanTypeAttributeValues = [
16508
+ "llm",
16509
+ "score",
16510
+ "function",
16511
+ "eval",
16512
+ "task",
16513
+ "tool"
16514
+ ];
16510
16515
  (0, import_zod_to_openapi.extendZodWithOpenApi)(z);
16511
16516
  var auditSourcesSchema = z.enum(VALID_SOURCES2);
16512
16517
  function generateBaseEventOpSchema(objectType2) {
@@ -16518,7 +16523,9 @@ function generateBaseEventOpSchema(objectType2) {
16518
16523
  [TRANSACTION_ID_FIELD2]: z.string().describe(
16519
16524
  `The transaction id of an event is unique to the network operation that processed the event insertion. Transaction ids are monotonically increasing over time and can be used to retrieve a versioned snapshot of the ${eventDescription} (see the \`version\` parameter)`
16520
16525
  ),
16521
- created: datetimeStringSchema.nullish().describe(`The timestamp the ${eventDescription} event was created`),
16526
+ created: datetimeStringSchema.describe(
16527
+ `The timestamp the ${eventDescription} event was created`
16528
+ ),
16522
16529
  input: customTypes.any,
16523
16530
  output: customTypes.any,
16524
16531
  expected: customTypes.any,
@@ -16533,6 +16540,15 @@ function generateBaseEventOpSchema(objectType2) {
16533
16540
  ),
16534
16541
  end: z.number().nullish().describe(
16535
16542
  `A unix timestamp recording when the section of code which produced the ${eventDescription} event finished`
16543
+ ),
16544
+ prompt_tokens: z.number().int().nullish().describe(
16545
+ `The number of tokens in the prompt used to generate the ${eventDescription} event (only set if this is an LLM span)`
16546
+ ),
16547
+ completion_tokens: z.number().int().nullish().describe(
16548
+ `The number of tokens in the completion generated by the model (only set if this is an LLM span)`
16549
+ ),
16550
+ tokens: z.number().int().nullish().describe(
16551
+ `The total number of tokens in the input and output of the ${eventDescription} event.`
16536
16552
  )
16537
16553
  }).catchall(customTypes.any).nullish().describe(
16538
16554
  `Metrics are numerical measurements tracking the execution of the code that produced the ${eventDescription} event. Use "start" and "end" to track the time span over which the ${eventDescription} event was produced`
@@ -16561,7 +16577,7 @@ function generateBaseEventOpSchema(objectType2) {
16561
16577
  ),
16562
16578
  span_attributes: z.strictObject({
16563
16579
  name: z.string().nullish().describe("Name of the span, for display purposes only"),
16564
- type: z.nativeEnum(SpanTypeAttribute2).nullish().describe("Type of the span, for display purposes only")
16580
+ type: z.enum(spanTypeAttributeValues).nullish().describe("Type of the span, for display purposes only")
16565
16581
  }).catchall(customTypes.any).nullish().describe(
16566
16582
  "Human-identifying attributes of the span, such as name, type, etc."
16567
16583
  ),
@@ -16704,6 +16720,21 @@ var datasetEventSchema = z.strictObject({
16704
16720
  span_id: datasetEventBaseSchema.shape.span_id,
16705
16721
  root_span_id: datasetEventBaseSchema.shape.root_span_id
16706
16722
  }).openapi("DatasetEvent");
16723
+ var promptSessionEventBaseSchema = generateBaseEventOpSchema("prompt_session");
16724
+ var promptSessionEventSchema = z.strictObject({
16725
+ id: promptSessionEventBaseSchema.shape.id,
16726
+ [TRANSACTION_ID_FIELD2]: promptSessionEventBaseSchema.shape[TRANSACTION_ID_FIELD2],
16727
+ created: promptSessionEventBaseSchema.shape.created,
16728
+ project_id: promptSchema.shape.project_id,
16729
+ prompt_session_id: promptSchema.shape.id,
16730
+ prompt_session_data: customTypes.any.describe(
16731
+ "Data about the prompt session"
16732
+ ),
16733
+ prompt_data: customTypes.any.describe("Data about the prompt"),
16734
+ object_data: customTypes.any.describe("Data about the mapped data"),
16735
+ completion: customTypes.any.describe("Data about the completion"),
16736
+ tags: promptSessionEventBaseSchema.shape.tags
16737
+ }).openapi("PromptSessionEvent");
16707
16738
  var projectLogsEventBaseSchema = generateBaseEventOpSchema("project");
16708
16739
  var projectLogsEventSchema = z.strictObject({
16709
16740
  id: projectLogsEventBaseSchema.shape.id,
@@ -16886,8 +16917,20 @@ var feedbackPromptRequestSchema = makeFeedbackRequestSchema(
16886
16917
  "prompt",
16887
16918
  feedbackPromptItemSchema
16888
16919
  );
16920
+ var feedbackPromptSessionRequestBaseSchema = generateBaseEventFeedbackSchema("prompt_session");
16921
+ var feedbackPromptSessionItemSchema = z.strictObject({
16922
+ id: feedbackPromptSessionRequestBaseSchema.shape.id,
16923
+ comment: feedbackPromptSessionRequestBaseSchema.shape.comment,
16924
+ metadata: feedbackPromptSessionRequestBaseSchema.shape.metadata,
16925
+ source: feedbackPromptSessionRequestBaseSchema.shape.source
16926
+ }).openapi("FeedbackPromptSessionItem");
16927
+ var feedbackPromptSessionRequestSchema = makeFeedbackRequestSchema(
16928
+ "prompt_session",
16929
+ feedbackPromptSessionItemSchema
16930
+ );
16889
16931
  var eventObjectSchemas = {
16890
16932
  experiment: {
16933
+ event: experimentEventSchema,
16891
16934
  fetchResponse: makeFetchEventsResponseSchema(
16892
16935
  "experiment",
16893
16936
  experimentEventSchema
@@ -16898,6 +16941,7 @@ var eventObjectSchemas = {
16898
16941
  feedbackRequest: feedbackExperimentRequestSchema
16899
16942
  },
16900
16943
  dataset: {
16944
+ event: datasetEventSchema,
16901
16945
  fetchResponse: makeFetchEventsResponseSchema("dataset", datasetEventSchema),
16902
16946
  insertEvent: insertDatasetEventSchema,
16903
16947
  insertRequest: insertDatasetEventsRequestSchema,
@@ -16905,6 +16949,7 @@ var eventObjectSchemas = {
16905
16949
  feedbackRequest: feedbackDatasetRequestSchema
16906
16950
  },
16907
16951
  project_logs: {
16952
+ event: projectLogsEventSchema,
16908
16953
  fetchResponse: makeFetchEventsResponseSchema(
16909
16954
  "project",
16910
16955
  projectLogsEventSchema
@@ -16915,11 +16960,20 @@ var eventObjectSchemas = {
16915
16960
  feedbackRequest: feedbackProjectLogsRequestSchema
16916
16961
  },
16917
16962
  prompt: {
16963
+ event: promptSchema,
16918
16964
  fetchResponse: void 0,
16919
16965
  insertEvent: void 0,
16920
16966
  insertRequest: void 0,
16921
16967
  feedbackItem: feedbackPromptItemSchema,
16922
16968
  feedbackRequest: feedbackPromptRequestSchema
16969
+ },
16970
+ prompt_session: {
16971
+ event: promptSessionEventSchema,
16972
+ fetchResponse: void 0,
16973
+ insertEvent: void 0,
16974
+ insertRequest: void 0,
16975
+ feedbackItem: feedbackPromptSessionItemSchema,
16976
+ feedbackRequest: feedbackPromptRequestBaseSchema
16923
16977
  }
16924
16978
  };
16925
16979
  function makeCrossObjectIndividualRequestSchema(objectType2) {
@@ -18082,12 +18136,9 @@ function init(projectOrOptions, optionalOptions) {
18082
18136
  if (open && update) {
18083
18137
  throw new Error("Cannot open and update an experiment at the same time");
18084
18138
  }
18085
- if (open || update) {
18139
+ if (open) {
18086
18140
  if (isEmpty(experiment)) {
18087
- const action = open ? "open" : "update";
18088
- throw new Error(
18089
- `Cannot ${action} an experiment without specifying its name`
18090
- );
18141
+ throw new Error(`Cannot open an experiment without specifying its name`);
18091
18142
  }
18092
18143
  const lazyMetadata2 = new LazyValue(
18093
18144
  async () => {
@@ -18123,17 +18174,9 @@ function init(projectOrOptions, optionalOptions) {
18123
18174
  };
18124
18175
  }
18125
18176
  );
18126
- if (open) {
18127
- return new ReadonlyExperiment(
18128
- lazyMetadata2
18129
- );
18130
- } else {
18131
- const ret2 = new Experiment(lazyMetadata2, dataset);
18132
- if (options.setCurrent ?? true) {
18133
- _state.currentExperiment = ret2;
18134
- }
18135
- return ret2;
18136
- }
18177
+ return new ReadonlyExperiment(
18178
+ lazyMetadata2
18179
+ );
18137
18180
  }
18138
18181
  const lazyMetadata = new LazyValue(
18139
18182
  async () => {
@@ -18145,7 +18188,8 @@ function init(projectOrOptions, optionalOptions) {
18145
18188
  const args = {
18146
18189
  project_name: project,
18147
18190
  project_id: projectId,
18148
- org_id: _state.orgId
18191
+ org_id: _state.orgId,
18192
+ update
18149
18193
  };
18150
18194
  if (experiment) {
18151
18195
  args["experiment_name"] = experiment;
package/dist/index.d.ts CHANGED
@@ -49,5 +49,6 @@
49
49
  */
50
50
  export * from "./logger";
51
51
  export { BaseExperiment, Evaluator, EvalTask, Eval, EvalScorerArgs, ReporterBody, Reporter, buildLocalSummary, reportFailures, } from "./framework";
52
- export * from "./oai";
52
+ export * from "./wrappers/oai";
53
+ export * from "./wrappers/ai-sdk";
53
54
  export { ParentExperimentIds, ParentProjectLogIds, IdField, InputField, InputsField, OtherExperimentLogFields, ExperimentLogPartialArgs, ExperimentLogFullArgs, LogFeedbackFullArgs, LogCommentFullArgs, CommentEvent, DatasetRecord, } from "@braintrust/core";
package/dist/index.js CHANGED
@@ -4981,6 +4981,7 @@ __export(src_exports, {
4981
4981
  withDataset: () => withDataset,
4982
4982
  withExperiment: () => withExperiment,
4983
4983
  withLogger: () => withLogger,
4984
+ wrapAISDKModel: () => wrapAISDKModel,
4984
4985
  wrapOpenAI: () => wrapOpenAI,
4985
4986
  wrapOpenAIv4: () => wrapOpenAIv4
4986
4987
  });
@@ -9553,14 +9554,14 @@ var SpanParentComponents = class _SpanParentComponents {
9553
9554
  return out;
9554
9555
  }
9555
9556
  };
9556
- var SpanTypeAttribute = /* @__PURE__ */ ((SpanTypeAttribute22) => {
9557
- SpanTypeAttribute22["LLM"] = "llm";
9558
- SpanTypeAttribute22["SCORE"] = "score";
9559
- SpanTypeAttribute22["FUNCTION"] = "function";
9560
- SpanTypeAttribute22["EVAL"] = "eval";
9561
- SpanTypeAttribute22["TASK"] = "task";
9562
- SpanTypeAttribute22["TOOL"] = "tool";
9563
- return SpanTypeAttribute22;
9557
+ var SpanTypeAttribute = /* @__PURE__ */ ((SpanTypeAttribute2) => {
9558
+ SpanTypeAttribute2["LLM"] = "llm";
9559
+ SpanTypeAttribute2["SCORE"] = "score";
9560
+ SpanTypeAttribute2["FUNCTION"] = "function";
9561
+ SpanTypeAttribute2["EVAL"] = "eval";
9562
+ SpanTypeAttribute2["TASK"] = "task";
9563
+ SpanTypeAttribute2["TOOL"] = "tool";
9564
+ return SpanTypeAttribute2;
9564
9565
  })(SpanTypeAttribute || {});
9565
9566
  function mergeGitMetadataSettings(s1, s2) {
9566
9567
  var _a3;
@@ -13339,6 +13340,7 @@ var objectTypes = z.enum([
13339
13340
  "experiment",
13340
13341
  "dataset",
13341
13342
  "prompt",
13343
+ "prompt_session",
13342
13344
  "role",
13343
13345
  "group",
13344
13346
  "acl",
@@ -13348,7 +13350,8 @@ var objectTypesWithEvent = z.enum([
13348
13350
  "project",
13349
13351
  "experiment",
13350
13352
  "dataset",
13351
- "prompt"
13353
+ "prompt",
13354
+ "prompt_session"
13352
13355
  ]);
13353
13356
  function getEventObjectType(objectType2) {
13354
13357
  return objectType2 === "project" ? "project_logs" : objectType2;
@@ -13843,9 +13846,12 @@ var createExperimentSchema = z.strictObject({
13843
13846
  dataset_id: experimentSchema.shape.dataset_id,
13844
13847
  dataset_version: experimentSchema.shape.dataset_version,
13845
13848
  public: experimentSchema.shape.public.nullish(),
13846
- metadata: experimentSchema.shape.metadata
13849
+ metadata: experimentSchema.shape.metadata,
13850
+ ensure_new: z.boolean().nullish().describe(
13851
+ "Normally, creating an experiment with the same name as an existing experiment will return the existing one un-modified. But if `ensure_new` is true, registration will generate a new experiment with a unique name in case of a conflict."
13852
+ )
13847
13853
  }).openapi("CreateExperiment");
13848
- var patchExperimentSchema = createExperimentSchema.omit({ project_id: true }).openapi("PatchExperiment");
13854
+ var patchExperimentSchema = createExperimentSchema.omit({ project_id: true, ensure_new: true }).openapi("PatchExperiment");
13849
13855
  var createDatasetSchema = z.strictObject({
13850
13856
  project_id: datasetSchema.shape.project_id,
13851
13857
  name: datasetSchema.shape.name,
@@ -13916,15 +13922,14 @@ var IS_MERGE_FIELD2 = "_is_merge";
13916
13922
  var MERGE_PATHS_FIELD2 = "_merge_paths";
13917
13923
  var VALID_SOURCES2 = ["app", "api", "external"];
13918
13924
  var PARENT_ID_FIELD2 = "_parent_id";
13919
- var SpanTypeAttribute2 = /* @__PURE__ */ ((SpanTypeAttribute22) => {
13920
- SpanTypeAttribute22["LLM"] = "llm";
13921
- SpanTypeAttribute22["SCORE"] = "score";
13922
- SpanTypeAttribute22["FUNCTION"] = "function";
13923
- SpanTypeAttribute22["EVAL"] = "eval";
13924
- SpanTypeAttribute22["TASK"] = "task";
13925
- SpanTypeAttribute22["TOOL"] = "tool";
13926
- return SpanTypeAttribute22;
13927
- })(SpanTypeAttribute2 || {});
13925
+ var spanTypeAttributeValues = [
13926
+ "llm",
13927
+ "score",
13928
+ "function",
13929
+ "eval",
13930
+ "task",
13931
+ "tool"
13932
+ ];
13928
13933
  (0, import_zod_to_openapi.extendZodWithOpenApi)(z);
13929
13934
  var auditSourcesSchema = z.enum(VALID_SOURCES2);
13930
13935
  function generateBaseEventOpSchema(objectType2) {
@@ -13936,7 +13941,9 @@ function generateBaseEventOpSchema(objectType2) {
13936
13941
  [TRANSACTION_ID_FIELD2]: z.string().describe(
13937
13942
  `The transaction id of an event is unique to the network operation that processed the event insertion. Transaction ids are monotonically increasing over time and can be used to retrieve a versioned snapshot of the ${eventDescription} (see the \`version\` parameter)`
13938
13943
  ),
13939
- created: datetimeStringSchema.nullish().describe(`The timestamp the ${eventDescription} event was created`),
13944
+ created: datetimeStringSchema.describe(
13945
+ `The timestamp the ${eventDescription} event was created`
13946
+ ),
13940
13947
  input: customTypes.any,
13941
13948
  output: customTypes.any,
13942
13949
  expected: customTypes.any,
@@ -13951,6 +13958,15 @@ function generateBaseEventOpSchema(objectType2) {
13951
13958
  ),
13952
13959
  end: z.number().nullish().describe(
13953
13960
  `A unix timestamp recording when the section of code which produced the ${eventDescription} event finished`
13961
+ ),
13962
+ prompt_tokens: z.number().int().nullish().describe(
13963
+ `The number of tokens in the prompt used to generate the ${eventDescription} event (only set if this is an LLM span)`
13964
+ ),
13965
+ completion_tokens: z.number().int().nullish().describe(
13966
+ `The number of tokens in the completion generated by the model (only set if this is an LLM span)`
13967
+ ),
13968
+ tokens: z.number().int().nullish().describe(
13969
+ `The total number of tokens in the input and output of the ${eventDescription} event.`
13954
13970
  )
13955
13971
  }).catchall(customTypes.any).nullish().describe(
13956
13972
  `Metrics are numerical measurements tracking the execution of the code that produced the ${eventDescription} event. Use "start" and "end" to track the time span over which the ${eventDescription} event was produced`
@@ -13979,7 +13995,7 @@ function generateBaseEventOpSchema(objectType2) {
13979
13995
  ),
13980
13996
  span_attributes: z.strictObject({
13981
13997
  name: z.string().nullish().describe("Name of the span, for display purposes only"),
13982
- type: z.nativeEnum(SpanTypeAttribute2).nullish().describe("Type of the span, for display purposes only")
13998
+ type: z.enum(spanTypeAttributeValues).nullish().describe("Type of the span, for display purposes only")
13983
13999
  }).catchall(customTypes.any).nullish().describe(
13984
14000
  "Human-identifying attributes of the span, such as name, type, etc."
13985
14001
  ),
@@ -14122,6 +14138,21 @@ var datasetEventSchema = z.strictObject({
14122
14138
  span_id: datasetEventBaseSchema.shape.span_id,
14123
14139
  root_span_id: datasetEventBaseSchema.shape.root_span_id
14124
14140
  }).openapi("DatasetEvent");
14141
+ var promptSessionEventBaseSchema = generateBaseEventOpSchema("prompt_session");
14142
+ var promptSessionEventSchema = z.strictObject({
14143
+ id: promptSessionEventBaseSchema.shape.id,
14144
+ [TRANSACTION_ID_FIELD2]: promptSessionEventBaseSchema.shape[TRANSACTION_ID_FIELD2],
14145
+ created: promptSessionEventBaseSchema.shape.created,
14146
+ project_id: promptSchema.shape.project_id,
14147
+ prompt_session_id: promptSchema.shape.id,
14148
+ prompt_session_data: customTypes.any.describe(
14149
+ "Data about the prompt session"
14150
+ ),
14151
+ prompt_data: customTypes.any.describe("Data about the prompt"),
14152
+ object_data: customTypes.any.describe("Data about the mapped data"),
14153
+ completion: customTypes.any.describe("Data about the completion"),
14154
+ tags: promptSessionEventBaseSchema.shape.tags
14155
+ }).openapi("PromptSessionEvent");
14125
14156
  var projectLogsEventBaseSchema = generateBaseEventOpSchema("project");
14126
14157
  var projectLogsEventSchema = z.strictObject({
14127
14158
  id: projectLogsEventBaseSchema.shape.id,
@@ -14304,8 +14335,20 @@ var feedbackPromptRequestSchema = makeFeedbackRequestSchema(
14304
14335
  "prompt",
14305
14336
  feedbackPromptItemSchema
14306
14337
  );
14338
+ var feedbackPromptSessionRequestBaseSchema = generateBaseEventFeedbackSchema("prompt_session");
14339
+ var feedbackPromptSessionItemSchema = z.strictObject({
14340
+ id: feedbackPromptSessionRequestBaseSchema.shape.id,
14341
+ comment: feedbackPromptSessionRequestBaseSchema.shape.comment,
14342
+ metadata: feedbackPromptSessionRequestBaseSchema.shape.metadata,
14343
+ source: feedbackPromptSessionRequestBaseSchema.shape.source
14344
+ }).openapi("FeedbackPromptSessionItem");
14345
+ var feedbackPromptSessionRequestSchema = makeFeedbackRequestSchema(
14346
+ "prompt_session",
14347
+ feedbackPromptSessionItemSchema
14348
+ );
14307
14349
  var eventObjectSchemas = {
14308
14350
  experiment: {
14351
+ event: experimentEventSchema,
14309
14352
  fetchResponse: makeFetchEventsResponseSchema(
14310
14353
  "experiment",
14311
14354
  experimentEventSchema
@@ -14316,6 +14359,7 @@ var eventObjectSchemas = {
14316
14359
  feedbackRequest: feedbackExperimentRequestSchema
14317
14360
  },
14318
14361
  dataset: {
14362
+ event: datasetEventSchema,
14319
14363
  fetchResponse: makeFetchEventsResponseSchema("dataset", datasetEventSchema),
14320
14364
  insertEvent: insertDatasetEventSchema,
14321
14365
  insertRequest: insertDatasetEventsRequestSchema,
@@ -14323,6 +14367,7 @@ var eventObjectSchemas = {
14323
14367
  feedbackRequest: feedbackDatasetRequestSchema
14324
14368
  },
14325
14369
  project_logs: {
14370
+ event: projectLogsEventSchema,
14326
14371
  fetchResponse: makeFetchEventsResponseSchema(
14327
14372
  "project",
14328
14373
  projectLogsEventSchema
@@ -14333,11 +14378,20 @@ var eventObjectSchemas = {
14333
14378
  feedbackRequest: feedbackProjectLogsRequestSchema
14334
14379
  },
14335
14380
  prompt: {
14381
+ event: promptSchema,
14336
14382
  fetchResponse: void 0,
14337
14383
  insertEvent: void 0,
14338
14384
  insertRequest: void 0,
14339
14385
  feedbackItem: feedbackPromptItemSchema,
14340
14386
  feedbackRequest: feedbackPromptRequestSchema
14387
+ },
14388
+ prompt_session: {
14389
+ event: promptSessionEventSchema,
14390
+ fetchResponse: void 0,
14391
+ insertEvent: void 0,
14392
+ insertRequest: void 0,
14393
+ feedbackItem: feedbackPromptSessionItemSchema,
14394
+ feedbackRequest: feedbackPromptRequestBaseSchema
14341
14395
  }
14342
14396
  };
14343
14397
  function makeCrossObjectIndividualRequestSchema(objectType2) {
@@ -15641,12 +15695,9 @@ function init(projectOrOptions, optionalOptions) {
15641
15695
  if (open && update) {
15642
15696
  throw new Error("Cannot open and update an experiment at the same time");
15643
15697
  }
15644
- if (open || update) {
15698
+ if (open) {
15645
15699
  if (isEmpty(experiment)) {
15646
- const action = open ? "open" : "update";
15647
- throw new Error(
15648
- `Cannot ${action} an experiment without specifying its name`
15649
- );
15700
+ throw new Error(`Cannot open an experiment without specifying its name`);
15650
15701
  }
15651
15702
  const lazyMetadata2 = new LazyValue(
15652
15703
  async () => {
@@ -15682,17 +15733,9 @@ function init(projectOrOptions, optionalOptions) {
15682
15733
  };
15683
15734
  }
15684
15735
  );
15685
- if (open) {
15686
- return new ReadonlyExperiment(
15687
- lazyMetadata2
15688
- );
15689
- } else {
15690
- const ret2 = new Experiment(lazyMetadata2, dataset);
15691
- if (options.setCurrent ?? true) {
15692
- _state.currentExperiment = ret2;
15693
- }
15694
- return ret2;
15695
- }
15736
+ return new ReadonlyExperiment(
15737
+ lazyMetadata2
15738
+ );
15696
15739
  }
15697
15740
  const lazyMetadata = new LazyValue(
15698
15741
  async () => {
@@ -15704,7 +15747,8 @@ function init(projectOrOptions, optionalOptions) {
15704
15747
  const args = {
15705
15748
  project_name: project,
15706
15749
  project_id: projectId,
15707
- org_id: _state.orgId
15750
+ org_id: _state.orgId,
15751
+ update
15708
15752
  };
15709
15753
  if (experiment) {
15710
15754
  args["experiment_name"] = experiment;
@@ -17413,7 +17457,7 @@ var defaultReporter = {
17413
17457
  }
17414
17458
  };
17415
17459
 
17416
- // src/oai.ts
17460
+ // src/wrappers/oai.ts
17417
17461
  function wrapOpenAI(openai) {
17418
17462
  if (openai?.chat?.completions?.create) {
17419
17463
  return wrapOpenAIv4(openai);
@@ -17721,6 +17765,178 @@ var WrapperStream = class {
17721
17765
  }
17722
17766
  };
17723
17767
 
17768
+ // src/wrappers/ai-sdk.ts
17769
+ function wrapAISDKModel(model) {
17770
+ const m = model;
17771
+ if (m?.specificationVersion === "v1" && typeof m?.provider === "string" && typeof m?.modelId === "string") {
17772
+ return new BraintrustLanguageModelWrapper(m);
17773
+ } else {
17774
+ console.warn("Unsupported AI SDK model. Not wrapping.");
17775
+ return model;
17776
+ }
17777
+ }
17778
+ var BraintrustLanguageModelWrapper = class {
17779
+ constructor(model) {
17780
+ this.model = model;
17781
+ }
17782
+ get specificationVersion() {
17783
+ return this.model.specificationVersion;
17784
+ }
17785
+ get provider() {
17786
+ return this.model.provider;
17787
+ }
17788
+ get modelId() {
17789
+ return this.model.modelId;
17790
+ }
17791
+ get defaultObjectGenerationMode() {
17792
+ return this.model.defaultObjectGenerationMode;
17793
+ }
17794
+ // For the first cut, do not support custom span_info arguments. We can
17795
+ // propagate those via async local storage
17796
+ async doGenerate(options) {
17797
+ const span = startSpan({
17798
+ name: "Chat Completion",
17799
+ spanAttributes: {
17800
+ type: "llm"
17801
+ }
17802
+ });
17803
+ const { prompt, mode: mode2, ...rest } = options;
17804
+ const startTime = getCurrentUnixTimestamp();
17805
+ try {
17806
+ const ret = await this.model.doGenerate(options);
17807
+ span.log({
17808
+ input: prompt,
17809
+ metadata: {
17810
+ ...rest,
17811
+ ..."tools" in mode2 && mode2.tools ? { tools: convertTools(mode2.tools) } : "tool" in mode2 && mode2.tool ? { tools: convertTools([mode2.tool]) } : {}
17812
+ },
17813
+ output: postProcessOutput(ret.text, ret.toolCalls, ret.finishReason),
17814
+ metrics: {
17815
+ time_to_first_token: getCurrentUnixTimestamp() - startTime,
17816
+ tokens: !isEmpty(ret.usage) ? ret.usage.promptTokens + ret.usage.completionTokens : void 0,
17817
+ prompt_tokens: ret.usage?.promptTokens,
17818
+ completion_tokens: ret.usage?.completionTokens
17819
+ }
17820
+ });
17821
+ return ret;
17822
+ } finally {
17823
+ span.end();
17824
+ }
17825
+ }
17826
+ async doStream(options) {
17827
+ const { prompt, mode: mode2, ...rest } = options;
17828
+ const startTime = getCurrentUnixTimestamp();
17829
+ const span = startSpan({
17830
+ name: "Chat Completion",
17831
+ spanAttributes: {
17832
+ type: "llm"
17833
+ }
17834
+ });
17835
+ span.log({
17836
+ input: prompt,
17837
+ metadata: {
17838
+ ...rest,
17839
+ ..."tools" in mode2 && mode2.tools ? { tools: convertTools(mode2.tools) } : "tool" in mode2 && mode2.tool ? { tools: convertTools([mode2.tool]) } : {}
17840
+ }
17841
+ });
17842
+ let ended = false;
17843
+ const end = () => {
17844
+ if (!ended) {
17845
+ span.end();
17846
+ ended = true;
17847
+ }
17848
+ };
17849
+ try {
17850
+ const ret = await this.model.doStream(options);
17851
+ let time_to_first_token = void 0;
17852
+ let usage = void 0;
17853
+ let fullText = void 0;
17854
+ let toolCalls = {};
17855
+ let finishReason = void 0;
17856
+ return {
17857
+ ...ret,
17858
+ stream: ret.stream.pipeThrough(
17859
+ new TransformStream({
17860
+ transform(chunk, controller) {
17861
+ if (time_to_first_token === void 0) {
17862
+ time_to_first_token = getCurrentUnixTimestamp() - startTime;
17863
+ span.log({ metrics: { time_to_first_token } });
17864
+ }
17865
+ switch (chunk.type) {
17866
+ case "text-delta":
17867
+ if (fullText === void 0) {
17868
+ fullText = "";
17869
+ }
17870
+ fullText += chunk.textDelta;
17871
+ break;
17872
+ case "tool-call":
17873
+ toolCalls[chunk.toolCallId] = {
17874
+ toolCallType: chunk.toolCallType,
17875
+ toolCallId: chunk.toolCallId,
17876
+ toolName: chunk.toolName,
17877
+ args: chunk.args
17878
+ };
17879
+ break;
17880
+ case "tool-call-delta":
17881
+ if (toolCalls[chunk.toolCallId] === void 0) {
17882
+ toolCalls[chunk.toolCallId] = {
17883
+ toolCallType: chunk.toolCallType,
17884
+ toolCallId: chunk.toolCallId,
17885
+ toolName: chunk.toolName,
17886
+ args: ""
17887
+ };
17888
+ }
17889
+ toolCalls[chunk.toolCallId].args += chunk.argsTextDelta;
17890
+ break;
17891
+ case "finish":
17892
+ usage = chunk.usage;
17893
+ finishReason = chunk.finishReason;
17894
+ break;
17895
+ }
17896
+ controller.enqueue(chunk);
17897
+ },
17898
+ async flush(controller) {
17899
+ span.log({
17900
+ output: postProcessOutput(
17901
+ fullText,
17902
+ Object.keys(toolCalls).length > 0 ? Object.values(toolCalls) : void 0,
17903
+ finishReason
17904
+ ),
17905
+ metrics: {
17906
+ time_to_first_token: getCurrentUnixTimestamp() - startTime,
17907
+ tokens: !isEmpty(usage) ? usage.promptTokens + usage.completionTokens : void 0,
17908
+ prompt_tokens: usage?.promptTokens,
17909
+ completion_tokens: usage?.completionTokens
17910
+ }
17911
+ });
17912
+ end();
17913
+ controller.terminate();
17914
+ }
17915
+ })
17916
+ )
17917
+ };
17918
+ } finally {
17919
+ end();
17920
+ }
17921
+ }
17922
+ };
17923
+ function convertTools(tools) {
17924
+ return tools.map((tool) => {
17925
+ const { type, ...rest } = tool;
17926
+ return {
17927
+ type: tool.type,
17928
+ function: rest
17929
+ };
17930
+ });
17931
+ }
17932
+ function postProcessOutput(text, tool_calls, finish_reason) {
17933
+ return {
17934
+ text,
17935
+ tool_calls,
17936
+ finish_reason
17937
+ };
17938
+ }
17939
+
17724
17940
  // src/index.ts
17725
17941
  configureNode();
17726
17942
  // Annotate the CommonJS export names for ESM import in node:
@@ -17758,6 +17974,7 @@ configureNode();
17758
17974
  withDataset,
17759
17975
  withExperiment,
17760
17976
  withLogger,
17977
+ wrapAISDKModel,
17761
17978
  wrapOpenAI,
17762
17979
  wrapOpenAIv4
17763
17980
  });
package/dist/logger.d.ts CHANGED
@@ -290,7 +290,7 @@ type InitializedExperiment<IsOpen extends boolean | undefined> = IsOpen extends
290
290
  * @param options.experiment The name of the experiment to create. If not specified, a name will be generated automatically.
291
291
  * @param options.description An optional description of the experiment.
292
292
  * @param options.dataset (Optional) A dataset to associate with the experiment. You can pass in the name of the dataset (in the same project) or a dataset object (from any project).
293
- * @param options.update If the experiment already exists, continue logging to it.
293
+ * @param options.update If the experiment already exists, continue logging to it. If it does not exist, creates the experiment with the specified arguments.
294
294
  * @param options.baseExperiment An optional experiment name to use as a base. If specified, the new experiment will be summarized and compared to this experiment. Otherwise, it will pick an experiment by finding the closest ancestor on the default (e.g. main) branch.
295
295
  * @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.
296
296
  * @param options.appUrl The URL of the Braintrust App. Defaults to https://www.braintrustdata.com.
@@ -299,7 +299,7 @@ type InitializedExperiment<IsOpen extends boolean | undefined> = IsOpen extends
299
299
  * @param options.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.
300
300
  * @param options.gitMetadataSettings (Optional) Settings for collecting git metadata. By default, will collect all git metadata fields allowed in org-level settings.
301
301
  * @param setCurrent If true (the default), set the global current-experiment to the newly-created one.
302
- * @param options.open If the experiment already exists, open it in read-only mode.
302
+ * @param options.open If the experiment already exists, open it in read-only mode. Throws an error if the experiment does not already exist.
303
303
  * @param options.projectId The id of the project to create the experiment in. This takes precedence over `project` if specified.
304
304
  * @param options.baseExperimentId An optional experiment id to use as a base. If specified, the new experiment will be summarized and compared to this. This takes precedence over `baseExperiment` if specified.
305
305
  * @param options.repoInfo (Optional) Explicitly specify the git metadata for this experiment. This takes precedence over `gitMetadataSettings` if specified.
@@ -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.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.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.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.regexp.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","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/helpers/typealiases.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/helpers/util.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/zoderror.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/locales/en.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/errors.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/helpers/parseutil.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/helpers/enumutil.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/helpers/errorutil.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/helpers/partialutil.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/types.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/external.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/index.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/index.d.ts","../../core/js/typespecs/dist/index.d.ts","../src/util.ts","../../../node_modules/.pnpm/@types+mustache@4.2.5/node_modules/@types/mustache/index.d.ts","../src/logger.ts","../src/browser-config.ts","../src/oai.ts","../src/browser.ts","../../../node_modules/.pnpm/esbuild@0.18.20/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/index.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/ast.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/escape.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/unescape.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/index.d.ts","../../../node_modules/.pnpm/@types+argparse@2.0.14/node_modules/@types/argparse/index.d.ts","../../../node_modules/.pnpm/@types+pluralize@0.0.30/node_modules/@types/pluralize/index.d.ts","../../../node_modules/.pnpm/@types+cli-progress@3.11.5/node_modules/@types/cli-progress/index.d.ts","../src/progress.ts","../../../node_modules/.pnpm/@types+graceful-fs@4.1.9/node_modules/@types/graceful-fs/index.d.ts","../src/jest/tryrealpath.ts","../src/jest/nodemodulespaths.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../src/framework.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/task.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/tasks.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/handlers.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/index.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/log.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/response.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/responses/getremotesummary.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/args/pathspec.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/apply-patch.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/check-is-repo.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/clean.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/clone.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/config.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/grep.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/reset.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/version.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/types.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-construct-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-plugin-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-response-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/task-configuration-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/errors.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/simple-git.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/index.d.ts","../src/gitutil.ts","../src/stackutil.ts","../src/node.ts","../src/cli.ts","../src/index.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"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":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"62a4966981264d1f04c44eb0f4b5bdc3d81c1a54725608861e44755aa24ad6a5","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"86a34c7a13de9cabc43161348f663624b56871ed80986e41d214932ddd8d6719","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"1184d9f350b3844048d85a01b1055454e88bc0b57d4f3dbde158000bc100b248",{"version":"50970a7d2eb9a631afe638868cf7a1948c33fa71ae2b2fe7a8d23e78cbc187e2","signature":"bdca93799a589c0adeed3800c20e25424a3fb9356ca14201cd6859b0accf928a"},"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","5487b97cfa28b26b4a9ef0770f872bdbebd4c46124858de00f242c3eed7519f4","7a01f546ace66019156e4232a1bee2fabc2f8eabeb052473d926ee1693956265","fb53b1c6a6c799b7e3cc2de3fb5c9a1c04a1c60d4380a37792d84c5f8b33933b","8485b6da53ec35637d072e516631d25dae53984500de70a6989058f24354666f","ebe80346928736532e4a822154eb77f57ef3389dbe2b3ba4e571366a15448ef2","c2cb3c8ff388781258ea9ddbcd8a947f751bddd6886e1d3b3ea09ddaa895df80","f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","98a9cc18f661d28e6bd31c436e1984f3980f35e0f0aa9cf795c54f8ccb667ffe","c76b0c5727302341d0bdfa2cc2cee4b19ff185b554edb6e8543f0661d8487116","2a317fff5810a628d205a507998a77521120b462b03d36babf6eb387da991bee","f5ef066942e4f0bd98200aa6a6694b831e73200c9b3ade77ad0aa2409e8fe1b1","b9e99cd94f4166a245f5158f7286c05406e2a4c694619bceb7a4f3519d1d768e","5568d7c32e5cf5f35e092649f4e5e168c3114c800b1d7545b7ae5e0415704802","e20b4c29714be30bb42efee82c00a72977c7f365b11dd8dcda391b78abe2b0f8",{"version":"6493b90b749f608dd84465fe3153197d32d9e4cc0a6b01d6e3e3543178152391","signature":"cd9e926824743fd331d196c744146dc650ddaed30afee4b0f485b6ca6d0f5678"},"b58c81d4cc365d3986aee6c2a86592edc50f141b796899079196ffb103047390",{"version":"6dd1418cee9139617573f3a01e5c1c45468df35790a8745173c40b36ce1a9671","signature":"15223e2fe7566448260291d494855e701d813438f0dbd968be243f17643d7d39","affectsGlobalScope":true},{"version":"a2dc8e3d209bf33127af2d01bafe9407dc06ab605fe4e4bdc297d7d0fdb9add5","signature":"443148657b934a070c73ec27dfbbc63d3fcfdb703009ed36d997337abc2290e4","affectsGlobalScope":true},{"version":"e918ec9c1de1d94e1db42e4bb3a79e5f8a8a7f9ebf50bebc0594b5d29da6f341","signature":"14cef2b567a470ca5665d4567381a80a292a8282610b9cc8fa22bde4aea4eacf","affectsGlobalScope":true},{"version":"ddf00d2734715528ba52cfaebaff7d70bbc5663688139efd7ffe0d0476688ff5","signature":"82f11771b6ef70327d9a7a1d43aa3e13dfa2825671bb591c7edeb954335b05e1"},"850040826cfa77593d44f44487133af21917f4f21507258bd4269501b80d32f0","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","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":"72612c8c582de91001656ad05130484d538b026897782c0f05324fca24069b13","signature":"5a8b130105a917b999541d402eaa7461a82b1eb22a3f18642630390f92930cef","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":"cc6e021f5997d73c430009276950c8d2b1ec6d85413a0824b4bcc248ac8c65aa","signature":"1e0254277b3bcfc734a9676b233c7a346ba4b36ca272bc5b6aca54f446dfc4b4"},{"version":"282c7c74d33d5ec6a9067728647227358018bf878a6c381973efd5be87f0d2a8","signature":"eef6c9e9e2ced98a276734cb82f81b12d154026659e84128ad42a3a69caced38"},{"version":"8f264bcdac70e46d591c8dd2d811ec51b1137b7d56d80184ab572866eff56829","signature":"1518a19a9cb02ce4439e1bd5d07e5dd4f496d4598142ff82264b40785ba28789"},{"version":"ddbff89bc9d7d08769a809074dd59c4531992878ca67221412d9610f116a7385","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"e7ac387afdc488efdb12f20e53832e3250a1f6a721672ea6f877d82d96b8d6d2","signature":"aaaf528b0f582ce56ffcaa916e857ea338e963c767e5b5ea1c9ec5a4ea92d3d5"}],"root":[60,76,[78,81],193,195,196,198,[224,228]],"options":{"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"strict":true,"target":9},"fileIdsList":[[174,175],[175,176,177,178],[169,175,177],[174,176],[133,169],[133,169,170],[170,171,172,173],[170,172],[171],[150,169,179,180,181,184],[180,181,183],[132,169,179,180,181,182],[181],[179,180],[169,179],[132,169],[83],[119],[120,125,153],[121,132,133,140,150,161],[121,122,132,140],[123,162],[124,125,133,141],[125,150,158],[126,128,132,140],[127],[128,129],[132],[130,132],[119,132],[132,133,134,150,161],[132,133,134,147,150,153],[117,120,166],[128,132,135,140,150,161],[132,133,135,136,140,150,158,161],[135,137,150,158,161],[83,84,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168],[132,138],[139,161,166],[128,132,140,150],[141],[142],[119,143],[144,160,166],[145],[146],[132,147,148],[147,149,162,164],[120,132,150,151,152,153],[120,150,152],[150,151],[153],[154],[119,150],[132,156,157],[156,157],[125,140,150,158],[159],[140,160],[120,135,146,161],[125,162],[150,163],[139,164],[165],[120,125,132,134,143,150,161,164,166],[150,167],[189],[186,187,188],[201,203],[203],[201],[199,203,223],[199,203],[223],[203,223],[121,169,200,202],[169,199,203],[201,217,218,219,220],[205,216,221,222],[204],[205,216,221],[203,204,206,207,208,209,210,211,212,213,214,215],[94,98,161],[94,150,161],[89],[91,94,158,161],[140,158],[169],[89,169],[91,94,140,161],[86,87,90,93,120,132,150,161],[86,92],[90,94,120,153,161,169],[120,169],[110,120,169],[88,89,169],[94],[88,89,90,91,92,93,94,95,96,98,99,100,101,102,103,104,105,106,107,108,109,111,112,113,114,115,116],[94,101,102],[92,94,102,103],[93],[86,89,94],[94,98,102,103],[98],[92,94,97,161],[86,91,92,94,98,101],[120,150],[89,94,110,120,166,169],[73],[64,65],[62,63,64,66,67,71],[63,64],[72],[64],[62,63,64,67,68,69,70],[62,63,73],[74],[60,78,119],[78,79,80],[61,76,78,82,133,141,142,162,185,189,190,191,193,196,198,226],[59,76,78,191,193,197],[59,223],[59,78,80,198,226],[59],[142,195],[194],[59,60,61,75,76,77],[60,78,119,224,225],[59,76,78],[192],[60,142],[78,80],[59,78,193,197],[59,78,80,198],[59,60,75,76],[60]],"referencedMap":[[176,1],[179,2],[178,3],[177,4],[175,5],[171,6],[174,7],[173,8],[172,9],[170,5],[185,10],[184,11],[183,12],[182,13],[181,14],[180,15],[192,16],[194,5],[83,17],[84,17],[119,18],[120,19],[121,20],[122,21],[123,22],[124,23],[125,24],[126,25],[127,26],[128,27],[129,27],[131,28],[130,29],[132,30],[133,31],[134,32],[118,33],[135,34],[136,35],[137,36],[169,37],[138,38],[139,39],[140,40],[141,41],[142,42],[143,43],[144,44],[145,45],[146,46],[147,47],[148,47],[149,48],[150,49],[152,50],[151,51],[153,52],[154,53],[155,54],[156,55],[157,56],[158,57],[159,58],[160,59],[161,60],[162,61],[163,62],[164,63],[165,64],[166,65],[167,66],[186,67],[187,67],[189,68],[188,67],[217,69],[201,70],[218,69],[219,71],[220,71],[208,70],[209,70],[210,72],[211,73],[212,74],[213,74],[204,75],[214,70],[199,70],[215,74],[202,71],[203,76],[200,77],[221,78],[223,79],[205,80],[222,81],[216,82],[101,83],[108,84],[100,83],[115,85],[92,86],[91,87],[114,88],[109,89],[112,90],[94,91],[93,92],[89,93],[88,94],[111,95],[90,96],[95,97],[99,97],[117,98],[116,97],[103,99],[104,100],[106,101],[102,102],[105,103],[110,88],[97,104],[98,105],[107,106],[87,107],[113,108],[74,109],[66,110],[72,111],[67,112],[70,109],[73,113],[65,114],[71,115],[64,116],[75,117],[79,118],[81,119],[227,120],[198,121],[224,122],[228,123],[60,124],[196,125],[195,126],[78,127],[226,128],[80,129],[193,130],[225,131]],"exportedModulesMap":[[176,1],[179,2],[178,3],[177,4],[175,5],[171,6],[174,7],[173,8],[172,9],[170,5],[185,10],[184,11],[183,12],[182,13],[181,14],[180,15],[192,16],[194,5],[83,17],[84,17],[119,18],[120,19],[121,20],[122,21],[123,22],[124,23],[125,24],[126,25],[127,26],[128,27],[129,27],[131,28],[130,29],[132,30],[133,31],[134,32],[118,33],[135,34],[136,35],[137,36],[169,37],[138,38],[139,39],[140,40],[141,41],[142,42],[143,43],[144,44],[145,45],[146,46],[147,47],[148,47],[149,48],[150,49],[152,50],[151,51],[153,52],[154,53],[155,54],[156,55],[157,56],[158,57],[159,58],[160,59],[161,60],[162,61],[163,62],[164,63],[165,64],[166,65],[167,66],[186,67],[187,67],[189,68],[188,67],[217,69],[201,70],[218,69],[219,71],[220,71],[208,70],[209,70],[210,72],[211,73],[212,74],[213,74],[204,75],[214,70],[199,70],[215,74],[202,71],[203,76],[200,77],[221,78],[223,79],[205,80],[222,81],[216,82],[101,83],[108,84],[100,83],[115,85],[92,86],[91,87],[114,88],[109,89],[112,90],[94,91],[93,92],[89,93],[88,94],[111,95],[90,96],[95,97],[99,97],[117,98],[116,97],[103,99],[104,100],[106,101],[102,102],[105,103],[110,88],[97,104],[98,105],[107,106],[87,107],[113,108],[74,109],[66,110],[72,111],[67,112],[70,109],[73,113],[65,114],[71,115],[64,116],[75,117],[79,18],[81,132],[198,133],[224,122],[228,134],[60,124],[78,135],[225,136]],"semanticDiagnosticsPerFile":[176,179,178,177,175,171,174,173,172,170,185,184,183,182,181,180,190,192,194,77,83,84,119,120,121,122,123,124,125,126,127,128,129,131,130,132,133,134,118,168,135,136,137,169,138,139,140,141,142,143,144,145,146,147,148,149,150,152,151,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,191,61,85,197,82,186,187,189,188,207,217,201,218,219,220,206,208,209,210,211,212,213,204,214,199,215,202,203,200,221,223,205,222,216,57,58,10,12,11,2,13,14,15,16,17,18,19,20,3,4,21,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,55,53,54,1,56,101,108,100,115,92,91,114,109,112,94,93,89,88,111,90,95,96,99,86,117,116,103,104,106,102,105,110,97,98,107,87,113,74,66,72,68,69,67,70,62,63,73,65,71,64,59,75,79,81,227,198,224,228,60,196,195,78,226,80,193,225,76]},"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.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.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.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.regexp.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","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/helpers/typealiases.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/helpers/util.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/zoderror.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/locales/en.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/errors.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/helpers/parseutil.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/helpers/enumutil.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/helpers/errorutil.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/helpers/partialutil.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/types.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/external.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/index.d.ts","../../../node_modules/.pnpm/zod@3.22.4/node_modules/zod/index.d.ts","../../core/js/typespecs/dist/index.d.ts","../src/util.ts","../../../node_modules/.pnpm/@types+mustache@4.2.5/node_modules/@types/mustache/index.d.ts","../src/logger.ts","../src/browser-config.ts","../src/wrappers/oai.ts","../src/browser.ts","../../../node_modules/.pnpm/esbuild@0.18.20/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/index.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/ast.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/escape.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/unescape.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/index.d.ts","../../../node_modules/.pnpm/@types+argparse@2.0.14/node_modules/@types/argparse/index.d.ts","../../../node_modules/.pnpm/@types+pluralize@0.0.30/node_modules/@types/pluralize/index.d.ts","../../../node_modules/.pnpm/@types+cli-progress@3.11.5/node_modules/@types/cli-progress/index.d.ts","../src/progress.ts","../../../node_modules/.pnpm/@types+graceful-fs@4.1.9/node_modules/@types/graceful-fs/index.d.ts","../src/jest/tryrealpath.ts","../src/jest/nodemodulespaths.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../src/framework.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/task.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/tasks.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/handlers.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/index.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/log.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/response.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/responses/getremotesummary.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/args/pathspec.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/apply-patch.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/check-is-repo.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/clean.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/clone.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/config.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/grep.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/reset.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/version.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/types.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-construct-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-plugin-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-response-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/task-configuration-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/errors.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/simple-git.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/index.d.ts","../src/gitutil.ts","../src/stackutil.ts","../src/node.ts","../src/cli.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/@ai-sdk+provider@0.0.0/node_modules/@ai-sdk/provider/dist/index.d.ts","../src/wrappers/ai-sdk.ts","../src/index.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"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":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"62a4966981264d1f04c44eb0f4b5bdc3d81c1a54725608861e44755aa24ad6a5","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"86a34c7a13de9cabc43161348f663624b56871ed80986e41d214932ddd8d6719","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"fcd5005bfa64b78fb27754e5d9fab45164d662d57f9f007785928b8fa71de568",{"version":"50970a7d2eb9a631afe638868cf7a1948c33fa71ae2b2fe7a8d23e78cbc187e2","signature":"bdca93799a589c0adeed3800c20e25424a3fb9356ca14201cd6859b0accf928a"},"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","5487b97cfa28b26b4a9ef0770f872bdbebd4c46124858de00f242c3eed7519f4","7a01f546ace66019156e4232a1bee2fabc2f8eabeb052473d926ee1693956265","a5d8f51097a535bb2a228251033dbb1063debe5b29530f5210801e358842b33e","8485b6da53ec35637d072e516631d25dae53984500de70a6989058f24354666f","ebe80346928736532e4a822154eb77f57ef3389dbe2b3ba4e571366a15448ef2","c2cb3c8ff388781258ea9ddbcd8a947f751bddd6886e1d3b3ea09ddaa895df80","f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","98a9cc18f661d28e6bd31c436e1984f3980f35e0f0aa9cf795c54f8ccb667ffe","c76b0c5727302341d0bdfa2cc2cee4b19ff185b554edb6e8543f0661d8487116","2a317fff5810a628d205a507998a77521120b462b03d36babf6eb387da991bee","f5ef066942e4f0bd98200aa6a6694b831e73200c9b3ade77ad0aa2409e8fe1b1","b9e99cd94f4166a245f5158f7286c05406e2a4c694619bceb7a4f3519d1d768e","5568d7c32e5cf5f35e092649f4e5e168c3114c800b1d7545b7ae5e0415704802","0aab96727089f23824ed305e3f7fbe6393abb479ddc5eedee6a30f9176dd14ef",{"version":"6493b90b749f608dd84465fe3153197d32d9e4cc0a6b01d6e3e3543178152391","signature":"cd9e926824743fd331d196c744146dc650ddaed30afee4b0f485b6ca6d0f5678"},"b58c81d4cc365d3986aee6c2a86592edc50f141b796899079196ffb103047390",{"version":"909f7825da3d981962c8be0a6cbaf3f1c85ded93499233ff6b728625b25b17ab","signature":"c9e961c448ec8987ca1717c8cee2244219ef7ffec288f49ad83aef5deb04f7f9","affectsGlobalScope":true},{"version":"a2dc8e3d209bf33127af2d01bafe9407dc06ab605fe4e4bdc297d7d0fdb9add5","signature":"443148657b934a070c73ec27dfbbc63d3fcfdb703009ed36d997337abc2290e4","affectsGlobalScope":true},{"version":"a565d8e7e5519ee7e04fa08e25aaffe254e6cbe98dc81f4b0ecd979b75ce03c2","signature":"14cef2b567a470ca5665d4567381a80a292a8282610b9cc8fa22bde4aea4eacf","affectsGlobalScope":true},{"version":"db324d0035a52856f39148837226539a17d4989a82994dbcafd70001c977bd9d","signature":"876ae029f36d889e23716abcc5d04dfe59b0349f306fe40777a891df9d29dea2"},"850040826cfa77593d44f44487133af21917f4f21507258bd4269501b80d32f0","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","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":"72612c8c582de91001656ad05130484d538b026897782c0f05324fca24069b13","signature":"5a8b130105a917b999541d402eaa7461a82b1eb22a3f18642630390f92930cef","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":"cc6e021f5997d73c430009276950c8d2b1ec6d85413a0824b4bcc248ac8c65aa","signature":"1e0254277b3bcfc734a9676b233c7a346ba4b36ca272bc5b6aca54f446dfc4b4"},{"version":"282c7c74d33d5ec6a9067728647227358018bf878a6c381973efd5be87f0d2a8","signature":"eef6c9e9e2ced98a276734cb82f81b12d154026659e84128ad42a3a69caced38"},{"version":"8f264bcdac70e46d591c8dd2d811ec51b1137b7d56d80184ab572866eff56829","signature":"1518a19a9cb02ce4439e1bd5d07e5dd4f496d4598142ff82264b40785ba28789"},{"version":"ddbff89bc9d7d08769a809074dd59c4531992878ca67221412d9610f116a7385","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","eaeb02f3c0a38f42946513761c67c84df58a7aede1a707cf24b7c58787fcc512",{"version":"de01da195b2d911323020c23ab823691a48e434a46254609bb10fe026fe27934","signature":"581573f30c20657861a24c31358e81eb66e1d3d7c8212cdda7c79bdfff6382c8"},{"version":"a80ca3d9e42d24b0ab13946382e2977a65aae2199da68c49b57a49ed50366fe9","signature":"3b9c0b5e7f64b974b029d6f13ece58daf5dab901bb38342283d4609e03e2440a"}],"root":[60,76,[78,81],193,195,196,198,[224,227],230,231],"options":{"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"strict":true,"target":9},"fileIdsList":[[228],[174,175],[175,176,177,178],[169,175,177],[174,176],[133,169],[133,169,170],[170,171,172,173],[170,172],[171],[150,169,179,180,181,184],[180,181,183],[132,169,179,180,181,182],[181],[179,180],[169,179],[132,169],[83],[119],[120,125,153],[121,132,133,140,150,161],[121,122,132,140],[123,162],[124,125,133,141],[125,150,158],[126,128,132,140],[127],[128,129],[132],[130,132],[119,132],[132,133,134,150,161],[132,133,134,147,150,153],[117,120,166],[128,132,135,140,150,161],[132,133,135,136,140,150,158,161],[135,137,150,158,161],[83,84,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168],[132,138],[139,161,166],[128,132,140,150],[141],[142],[119,143],[144,160,166],[145],[146],[132,147,148],[147,149,162,164],[120,132,150,151,152,153],[120,150,152],[150,151],[153],[154],[119,150],[132,156,157],[156,157],[125,140,150,158],[159],[140,160],[120,135,146,161],[125,162],[150,163],[139,164],[165],[120,125,132,134,143,150,161,164,166],[150,167],[189],[186,187,188],[201,203],[203],[201],[199,203,223],[199,203],[223],[203,223],[121,169,200,202],[169,199,203],[201,217,218,219,220],[205,216,221,222],[204],[205,216,221],[203,204,206,207,208,209,210,211,212,213,214,215],[94,98,161],[94,150,161],[89],[91,94,158,161],[140,158],[169],[89,169],[91,94,140,161],[86,87,90,93,120,132,150,161],[86,92],[90,94,120,153,161,169],[120,169],[110,120,169],[88,89,169],[94],[88,89,90,91,92,93,94,95,96,98,99,100,101,102,103,104,105,106,107,108,109,111,112,113,114,115,116],[94,101,102],[92,94,102,103],[93],[86,89,94],[94,98,102,103],[98],[92,94,97,161],[86,91,92,94,98,101],[120,150],[89,94,110,120,166,169],[73],[64,65],[62,63,64,66,67,71],[63,64],[72],[64],[62,63,64,67,68,69,70],[62,63,73],[74],[60,78,119],[78,79,80],[61,76,78,82,133,141,142,162,185,189,190,191,193,196,198,226],[59,76,78,191,193,197],[59,223],[59,78,80,198,226,230],[59],[142,195],[194],[59,60,61,75,76,77],[60,78,119,224,225],[192],[60,142],[75,76,78,229],[59,76,78],[78,80],[59,78,193,197],[59,78,80,198,230],[59,60,75,76],[60]],"referencedMap":[[229,1],[176,2],[179,3],[178,4],[177,5],[175,6],[171,7],[174,8],[173,9],[172,10],[170,6],[185,11],[184,12],[183,13],[182,14],[181,15],[180,16],[192,17],[194,6],[83,18],[84,18],[119,19],[120,20],[121,21],[122,22],[123,23],[124,24],[125,25],[126,26],[127,27],[128,28],[129,28],[131,29],[130,30],[132,31],[133,32],[134,33],[118,34],[135,35],[136,36],[137,37],[169,38],[138,39],[139,40],[140,41],[141,42],[142,43],[143,44],[144,45],[145,46],[146,47],[147,48],[148,48],[149,49],[150,50],[152,51],[151,52],[153,53],[154,54],[155,55],[156,56],[157,57],[158,58],[159,59],[160,60],[161,61],[162,62],[163,63],[164,64],[165,65],[166,66],[167,67],[186,68],[187,68],[189,69],[188,68],[217,70],[201,71],[218,70],[219,72],[220,72],[208,71],[209,71],[210,73],[211,74],[212,75],[213,75],[204,76],[214,71],[199,71],[215,75],[202,72],[203,77],[200,78],[221,79],[223,80],[205,81],[222,82],[216,83],[101,84],[108,85],[100,84],[115,86],[92,87],[91,88],[114,89],[109,90],[112,91],[94,92],[93,93],[89,94],[88,95],[111,96],[90,97],[95,98],[99,98],[117,99],[116,98],[103,100],[104,101],[106,102],[102,103],[105,104],[110,89],[97,105],[98,106],[107,107],[87,108],[113,109],[74,110],[66,111],[72,112],[67,113],[70,110],[73,114],[65,115],[71,116],[64,117],[75,118],[79,119],[81,120],[227,121],[198,122],[224,123],[231,124],[60,125],[196,126],[195,127],[78,128],[226,129],[193,130],[225,131],[230,132],[80,133]],"exportedModulesMap":[[229,1],[176,2],[179,3],[178,4],[177,5],[175,6],[171,7],[174,8],[173,9],[172,10],[170,6],[185,11],[184,12],[183,13],[182,14],[181,15],[180,16],[192,17],[194,6],[83,18],[84,18],[119,19],[120,20],[121,21],[122,22],[123,23],[124,24],[125,25],[126,26],[127,27],[128,28],[129,28],[131,29],[130,30],[132,31],[133,32],[134,33],[118,34],[135,35],[136,36],[137,37],[169,38],[138,39],[139,40],[140,41],[141,42],[142,43],[143,44],[144,45],[145,46],[146,47],[147,48],[148,48],[149,49],[150,50],[152,51],[151,52],[153,53],[154,54],[155,55],[156,56],[157,57],[158,58],[159,59],[160,60],[161,61],[162,62],[163,63],[164,64],[165,65],[166,66],[167,67],[186,68],[187,68],[189,69],[188,68],[217,70],[201,71],[218,70],[219,72],[220,72],[208,71],[209,71],[210,73],[211,74],[212,75],[213,75],[204,76],[214,71],[199,71],[215,75],[202,72],[203,77],[200,78],[221,79],[223,80],[205,81],[222,82],[216,83],[101,84],[108,85],[100,84],[115,86],[92,87],[91,88],[114,89],[109,90],[112,91],[94,92],[93,93],[89,94],[88,95],[111,96],[90,97],[95,98],[99,98],[117,99],[116,98],[103,100],[104,101],[106,102],[102,103],[105,104],[110,89],[97,105],[98,106],[107,107],[87,108],[113,109],[74,110],[66,111],[72,112],[67,113],[70,110],[73,114],[65,115],[71,116],[64,117],[75,118],[79,19],[81,134],[198,135],[224,123],[231,136],[60,125],[78,137],[225,138]],"semanticDiagnosticsPerFile":[229,176,179,178,177,175,171,174,173,172,170,185,184,183,182,181,180,190,192,194,228,77,83,84,119,120,121,122,123,124,125,126,127,128,129,131,130,132,133,134,118,168,135,136,137,169,138,139,140,141,142,143,144,145,146,147,148,149,150,152,151,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,191,61,85,197,82,186,187,189,188,207,217,201,218,219,220,206,208,209,210,211,212,213,204,214,199,215,202,203,200,221,223,205,222,216,57,58,10,12,11,2,13,14,15,16,17,18,19,20,3,4,21,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,55,53,54,1,56,101,108,100,115,92,91,114,109,112,94,93,89,88,111,90,95,96,99,86,117,116,103,104,106,102,105,110,97,98,107,87,113,74,66,72,68,69,67,70,62,63,73,65,71,64,59,75,79,81,227,198,224,231,60,196,195,78,226,193,225,76,230,80]},"version":"5.3.3"}
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Wrap an ai-sdk model (created with `.chat()`, `.completion()`, etc.) to add tracing. If Braintrust is
3
+ * not configured, this is a no-op
4
+ *
5
+ * @param model
6
+ * @returns The wrapped object.
7
+ */
8
+ export declare function wrapAISDKModel<T extends object>(model: T): T;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "braintrust",
3
- "version": "0.0.119",
3
+ "version": "0.0.121",
4
4
  "description": "SDK for integrating Braintrust",
5
5
  "main": "./dist/index.js",
6
6
  "browser": {
@@ -44,7 +44,8 @@
44
44
  "typescript": "^5.3.3"
45
45
  },
46
46
  "dependencies": {
47
- "@braintrust/core": "0.0.31",
47
+ "@ai-sdk/provider": "^0.0.0",
48
+ "@braintrust/core": "0.0.32",
48
49
  "argparse": "^2.0.1",
49
50
  "chalk": "^4.1.2",
50
51
  "cli-progress": "^3.12.0",
File without changes