braintrust 0.0.117 → 0.0.118

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/browser.js CHANGED
@@ -5533,14 +5533,30 @@ var jsonSchema = z.lazy(
5533
5533
  () => z.union([literalSchema, z.array(jsonSchema), z.record(jsonSchema)])
5534
5534
  );
5535
5535
  var datetimeStringSchema = z.string().datetime({ offset: true });
5536
+ var objectTypes = z.enum([
5537
+ "project",
5538
+ "experiment",
5539
+ "dataset",
5540
+ "prompt",
5541
+ "role",
5542
+ "team",
5543
+ "acl",
5544
+ "user"
5545
+ ]);
5546
+ var objectTypesWithEvent = z.enum([
5547
+ "project",
5548
+ "experiment",
5549
+ "dataset",
5550
+ "prompt"
5551
+ ]);
5536
5552
  function getEventObjectType(objectType2) {
5537
5553
  return objectType2 === "project" ? "project_logs" : objectType2;
5538
5554
  }
5539
5555
  function getEventObjectDescription(objectType2) {
5540
5556
  return getEventObjectType(objectType2).replace("_", " ");
5541
5557
  }
5542
- function getEventObjectArticle(objectType2) {
5543
- return objectType2 === "experiment" ? "an" : "a";
5558
+ function getObjectArticle(objectType2) {
5559
+ return ["acl", "experiment"].includes(objectType2) ? "an" : "a";
5544
5560
  }
5545
5561
  (0, import_zod_to_openapi3.extendZodWithOpenApi)(z);
5546
5562
  var modeSchema = z.enum(["default", "stainless"]);
@@ -5743,7 +5759,6 @@ function generateBaseTableSchema(objectName, opts) {
5743
5759
  var userBaseSchema = generateBaseTableSchema("user");
5744
5760
  var userSchema = z.strictObject({
5745
5761
  id: userBaseSchema.shape.id,
5746
- auth_id: z.string().uuid().nullish().describe("Internal authentication token used to identify the user"),
5747
5762
  given_name: z.string().nullish().describe("Given name of the user"),
5748
5763
  family_name: z.string().nullish().describe("Family name of the user"),
5749
5764
  email: z.string().nullish().describe("The user's email"),
@@ -5763,8 +5778,6 @@ var memberSchema = z.strictObject({
5763
5778
  }).openapi("Member");
5764
5779
  var meSchema = z.strictObject({
5765
5780
  id: userSchema.shape.id,
5766
- // By filtering by auth_id equality, we will ensure this is not-null.
5767
- auth_id: userSchema.shape.auth_id.unwrap().unwrap(),
5768
5781
  organizations: z.strictObject({
5769
5782
  id: memberSchema.shape.org_id,
5770
5783
  name: organizationSchema.shape.name
@@ -5865,6 +5878,123 @@ var experimentSchema = z.strictObject({
5865
5878
  user_id: experimentBaseSchema.shape.user_id,
5866
5879
  metadata: experimentBaseSchema.shape.metadata
5867
5880
  }).openapi("Experiment");
5881
+ var privilegeEnum = z.enum([
5882
+ "create",
5883
+ "read",
5884
+ "update",
5885
+ "delete",
5886
+ "create_acls",
5887
+ "read_acls",
5888
+ "update_acls",
5889
+ "delete_acls"
5890
+ ]).describe(
5891
+ [
5892
+ "Each privilege permits a certain type of operation on an object in the system",
5893
+ "Privileges can be assigned to to objects on an individual basis, or grouped into roles"
5894
+ ].join("\n\n")
5895
+ );
5896
+ var roleBaseSchema = generateBaseTableSchema("role");
5897
+ var roleSchema = z.strictObject({
5898
+ id: roleBaseSchema.shape.id,
5899
+ org_id: z.string().uuid().nullish().describe(
5900
+ [
5901
+ "Unique id for the organization that the role belongs under",
5902
+ "A null org_id indicates a system role, which may be assigned to anybody and inherited by any other role, but cannot be edited.",
5903
+ "It is forbidden to change the org after creating a role"
5904
+ ].join("\n\n")
5905
+ ),
5906
+ user_id: roleBaseSchema.shape.user_id,
5907
+ created: roleBaseSchema.shape.created,
5908
+ name: roleBaseSchema.shape.name,
5909
+ description: roleBaseSchema.shape.description,
5910
+ deleted_at: roleBaseSchema.shape.deleted_at,
5911
+ member_privileges: z.array(privilegeEnum).nullish().describe("Privileges which belong to this role"),
5912
+ member_roles: z.array(z.string().uuid()).nullish().describe(
5913
+ [
5914
+ "Ids of the roles this role inherits from",
5915
+ "An inheriting role has all the privileges contained in its member roles, as well as all of their inherited privileges"
5916
+ ].join("\n\n")
5917
+ )
5918
+ }).describe(
5919
+ [
5920
+ "A role is a collection of privileges which can be granted as part of an ACL",
5921
+ "Roles can consist of individual privileges, as well as a set of roles they inherit from"
5922
+ ].join("\n\n")
5923
+ ).openapi("Role");
5924
+ var teamBaseSchema = generateBaseTableSchema("team");
5925
+ var teamSchema = z.strictObject({
5926
+ id: teamBaseSchema.shape.id,
5927
+ org_id: z.string().uuid().describe(
5928
+ [
5929
+ "Unique id for the organization that the team belongs under",
5930
+ "It is forbidden to change the org after creating a team"
5931
+ ].join("\n\n")
5932
+ ),
5933
+ user_id: teamBaseSchema.shape.user_id,
5934
+ created: teamBaseSchema.shape.created,
5935
+ name: teamBaseSchema.shape.name,
5936
+ description: teamBaseSchema.shape.description,
5937
+ deleted_at: teamBaseSchema.shape.deleted_at,
5938
+ member_users: z.array(z.string().uuid()).nullish().describe("Ids of users which belong to this team"),
5939
+ member_teams: z.array(z.string().uuid()).nullish().describe(
5940
+ [
5941
+ "Ids of the teams this team inherits from",
5942
+ "An inheriting team has all the users contained in its member teams, as well as all of their inherited users"
5943
+ ].join("\n\n")
5944
+ )
5945
+ }).describe(
5946
+ [
5947
+ "A team is a collection of users which can be assigned an ACL",
5948
+ "Teams can consist of individual users, as well as a set of teams they inherit from"
5949
+ ].join("\n\n")
5950
+ ).openapi("Team");
5951
+ var aclObjectTypeEnum = z.enum([
5952
+ "organization",
5953
+ "project",
5954
+ "experiment",
5955
+ "dataset",
5956
+ "prompt",
5957
+ "prompt_session",
5958
+ "project_score",
5959
+ "project_tag",
5960
+ "team",
5961
+ "role"
5962
+ ]).describe("The object type that the ACL applies to");
5963
+ var aclBaseSchema = generateBaseTableSchema("acl");
5964
+ var aclObjectSchema = z.strictObject({
5965
+ id: aclBaseSchema.shape.id,
5966
+ object_type: aclObjectTypeEnum,
5967
+ object_id: z.string().uuid().describe("The id of the object the ACL applies to"),
5968
+ restrict_object_type: z.optional(z.union([aclObjectTypeEnum, z.null()])).describe(
5969
+ "Optionally restricts the permission grant to just the specified object type"
5970
+ ),
5971
+ _object_org_id: z.string().uuid().describe("The organization the ACL's referred object belongs to"),
5972
+ created: aclBaseSchema.shape.created
5973
+ });
5974
+ var aclUserObjectSchema = z.strictObject({
5975
+ user_id: z.string().uuid().describe("Id of the user the ACL applies to")
5976
+ });
5977
+ var aclTeamObjectSchema = z.strictObject({
5978
+ team_id: z.string().uuid().describe("Id of the team the ACL applies to")
5979
+ });
5980
+ var aclPrivilegeObjectSchema = z.strictObject({
5981
+ privilege: privilegeEnum.describe("Privilege the ACL grants")
5982
+ });
5983
+ var aclRoleObjectSchema = z.strictObject({
5984
+ role_id: z.string().uuid().describe("Id of the role the ACL grants")
5985
+ });
5986
+ var aclSchema = z.union([
5987
+ aclObjectSchema.merge(aclUserObjectSchema).merge(aclPrivilegeObjectSchema).openapi("UserPrivilegeAcl"),
5988
+ aclObjectSchema.merge(aclUserObjectSchema).merge(aclRoleObjectSchema).openapi("UserRoleAcl"),
5989
+ aclObjectSchema.merge(aclTeamObjectSchema).merge(aclPrivilegeObjectSchema).openapi("TeamPrivilegeAcl"),
5990
+ aclObjectSchema.merge(aclTeamObjectSchema).merge(aclRoleObjectSchema).openapi("TeamRoleAcl")
5991
+ ]).describe(
5992
+ [
5993
+ "An ACL grants a certain privilege or role to a certain user or team on an object.",
5994
+ "ACLs are inherited across the object hierarchy. So for example, if a user has read privileges on a project, they will also have read privileges on any experiment, dataset, etc. created within that project.",
5995
+ "To restrict a grant to a particular sub-object, you may specify `restrict_object_type` in the ACL."
5996
+ ].join("\n\n")
5997
+ ).openapi("Acl");
5868
5998
  var appLimitSchema = z.number().int().nonnegative().describe("Limit the number of objects to return");
5869
5999
  function generateBaseTableOpSchema(objectName) {
5870
6000
  return z.strictObject({
@@ -5910,7 +6040,10 @@ var createDatasetSchema = z.strictObject({
5910
6040
  name: datasetSchema.shape.name,
5911
6041
  description: datasetSchema.shape.description
5912
6042
  }).openapi("CreateDataset");
5913
- var patchDatasetSchema = createDatasetSchema.omit({ project_id: true }).openapi("PatchDataset");
6043
+ var patchDatasetSchema = z.strictObject({
6044
+ name: datasetSchema.shape.name.nullish(),
6045
+ description: datasetSchema.shape.description
6046
+ }).openapi("PatchDataset");
5914
6047
  var createPromptSchema = promptSchema.omit({
5915
6048
  id: true,
5916
6049
  _xact_id: true,
@@ -5925,6 +6058,43 @@ var patchPromptSchema = z.strictObject({
5925
6058
  prompt_data: promptSchema.shape.prompt_data.nullish(),
5926
6059
  tags: promptSchema.shape.tags.nullish()
5927
6060
  }).openapi("PatchPrompt");
6061
+ var createRoleBaseSchema = generateBaseTableOpSchema("role");
6062
+ var createRoleSchema = z.strictObject({
6063
+ name: roleSchema.shape.name,
6064
+ description: roleSchema.shape.description,
6065
+ member_privileges: roleSchema.shape.member_privileges,
6066
+ member_roles: roleSchema.shape.member_roles,
6067
+ org_name: createRoleBaseSchema.shape.org_name
6068
+ }).openapi("CreateRole");
6069
+ var patchRoleSchema = createRoleSchema.omit({ name: true, org_name: true }).merge(
6070
+ z.strictObject({
6071
+ name: createRoleSchema.shape.name.nullish()
6072
+ })
6073
+ ).openapi("PatchRole");
6074
+ var createTeamBaseSchema = generateBaseTableOpSchema("team");
6075
+ var createTeamSchema = z.strictObject({
6076
+ name: teamSchema.shape.name,
6077
+ description: teamSchema.shape.description,
6078
+ member_users: teamSchema.shape.member_users,
6079
+ member_teams: teamSchema.shape.member_teams,
6080
+ org_name: createTeamBaseSchema.shape.org_name
6081
+ }).openapi("CreateTeam");
6082
+ var patchTeamSchema = createTeamSchema.omit({ name: true, org_name: true }).merge(
6083
+ z.strictObject({
6084
+ name: createTeamSchema.shape.name.nullish()
6085
+ })
6086
+ ).openapi("PatchTeam");
6087
+ var createAclObjectSchema = aclObjectSchema.omit({
6088
+ id: true,
6089
+ created: true,
6090
+ _object_org_id: true
6091
+ });
6092
+ var createAclSchema = z.union([
6093
+ createAclObjectSchema.merge(aclUserObjectSchema).merge(aclPrivilegeObjectSchema).openapi("CreateUserPrivilegeAcl"),
6094
+ createAclObjectSchema.merge(aclUserObjectSchema).merge(aclRoleObjectSchema).openapi("CreateUserRoleAcl"),
6095
+ createAclObjectSchema.merge(aclTeamObjectSchema).merge(aclPrivilegeObjectSchema).openapi("CreateTeamPrivilegeAcl"),
6096
+ createAclObjectSchema.merge(aclTeamObjectSchema).merge(aclRoleObjectSchema).openapi("CreateTeamRoleAcl")
6097
+ ]).openapi("CreateAcl");
5928
6098
  function capitalize(s, sep) {
5929
6099
  const items = sep ? s.split(sep) : [s];
5930
6100
  return items.map((s2) => s2 ? s2.charAt(0).toUpperCase() + s2.slice(1) : s2).join(sep || "");
@@ -6194,7 +6364,7 @@ var replacementEventSchema = z.strictObject({
6194
6364
  });
6195
6365
  function makeInsertEventSchemas(objectType2, insertSchema) {
6196
6366
  const eventDescription = getEventObjectDescription(objectType2);
6197
- const article = getEventObjectArticle(objectType2);
6367
+ const article = getObjectArticle(objectType2);
6198
6368
  const eventSchemaName = capitalize(
6199
6369
  getEventObjectType(objectType2),
6200
6370
  "_"
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.117",
10369
+ version: "0.0.118",
10370
10370
  description: "SDK for integrating Braintrust",
10371
10371
  main: "./dist/index.js",
10372
10372
  browser: {
@@ -15916,14 +15916,30 @@ var jsonSchema = z.lazy(
15916
15916
  () => z.union([literalSchema, z.array(jsonSchema), z.record(jsonSchema)])
15917
15917
  );
15918
15918
  var datetimeStringSchema = z.string().datetime({ offset: true });
15919
+ var objectTypes = z.enum([
15920
+ "project",
15921
+ "experiment",
15922
+ "dataset",
15923
+ "prompt",
15924
+ "role",
15925
+ "team",
15926
+ "acl",
15927
+ "user"
15928
+ ]);
15929
+ var objectTypesWithEvent = z.enum([
15930
+ "project",
15931
+ "experiment",
15932
+ "dataset",
15933
+ "prompt"
15934
+ ]);
15919
15935
  function getEventObjectType(objectType2) {
15920
15936
  return objectType2 === "project" ? "project_logs" : objectType2;
15921
15937
  }
15922
15938
  function getEventObjectDescription(objectType2) {
15923
15939
  return getEventObjectType(objectType2).replace("_", " ");
15924
15940
  }
15925
- function getEventObjectArticle(objectType2) {
15926
- return objectType2 === "experiment" ? "an" : "a";
15941
+ function getObjectArticle(objectType2) {
15942
+ return ["acl", "experiment"].includes(objectType2) ? "an" : "a";
15927
15943
  }
15928
15944
  (0, import_zod_to_openapi3.extendZodWithOpenApi)(z);
15929
15945
  var modeSchema = z.enum(["default", "stainless"]);
@@ -16126,7 +16142,6 @@ function generateBaseTableSchema(objectName, opts) {
16126
16142
  var userBaseSchema = generateBaseTableSchema("user");
16127
16143
  var userSchema = z.strictObject({
16128
16144
  id: userBaseSchema.shape.id,
16129
- auth_id: z.string().uuid().nullish().describe("Internal authentication token used to identify the user"),
16130
16145
  given_name: z.string().nullish().describe("Given name of the user"),
16131
16146
  family_name: z.string().nullish().describe("Family name of the user"),
16132
16147
  email: z.string().nullish().describe("The user's email"),
@@ -16146,8 +16161,6 @@ var memberSchema = z.strictObject({
16146
16161
  }).openapi("Member");
16147
16162
  var meSchema = z.strictObject({
16148
16163
  id: userSchema.shape.id,
16149
- // By filtering by auth_id equality, we will ensure this is not-null.
16150
- auth_id: userSchema.shape.auth_id.unwrap().unwrap(),
16151
16164
  organizations: z.strictObject({
16152
16165
  id: memberSchema.shape.org_id,
16153
16166
  name: organizationSchema.shape.name
@@ -16248,6 +16261,123 @@ var experimentSchema = z.strictObject({
16248
16261
  user_id: experimentBaseSchema.shape.user_id,
16249
16262
  metadata: experimentBaseSchema.shape.metadata
16250
16263
  }).openapi("Experiment");
16264
+ var privilegeEnum = z.enum([
16265
+ "create",
16266
+ "read",
16267
+ "update",
16268
+ "delete",
16269
+ "create_acls",
16270
+ "read_acls",
16271
+ "update_acls",
16272
+ "delete_acls"
16273
+ ]).describe(
16274
+ [
16275
+ "Each privilege permits a certain type of operation on an object in the system",
16276
+ "Privileges can be assigned to to objects on an individual basis, or grouped into roles"
16277
+ ].join("\n\n")
16278
+ );
16279
+ var roleBaseSchema = generateBaseTableSchema("role");
16280
+ var roleSchema = z.strictObject({
16281
+ id: roleBaseSchema.shape.id,
16282
+ org_id: z.string().uuid().nullish().describe(
16283
+ [
16284
+ "Unique id for the organization that the role belongs under",
16285
+ "A null org_id indicates a system role, which may be assigned to anybody and inherited by any other role, but cannot be edited.",
16286
+ "It is forbidden to change the org after creating a role"
16287
+ ].join("\n\n")
16288
+ ),
16289
+ user_id: roleBaseSchema.shape.user_id,
16290
+ created: roleBaseSchema.shape.created,
16291
+ name: roleBaseSchema.shape.name,
16292
+ description: roleBaseSchema.shape.description,
16293
+ deleted_at: roleBaseSchema.shape.deleted_at,
16294
+ member_privileges: z.array(privilegeEnum).nullish().describe("Privileges which belong to this role"),
16295
+ member_roles: z.array(z.string().uuid()).nullish().describe(
16296
+ [
16297
+ "Ids of the roles this role inherits from",
16298
+ "An inheriting role has all the privileges contained in its member roles, as well as all of their inherited privileges"
16299
+ ].join("\n\n")
16300
+ )
16301
+ }).describe(
16302
+ [
16303
+ "A role is a collection of privileges which can be granted as part of an ACL",
16304
+ "Roles can consist of individual privileges, as well as a set of roles they inherit from"
16305
+ ].join("\n\n")
16306
+ ).openapi("Role");
16307
+ var teamBaseSchema = generateBaseTableSchema("team");
16308
+ var teamSchema = z.strictObject({
16309
+ id: teamBaseSchema.shape.id,
16310
+ org_id: z.string().uuid().describe(
16311
+ [
16312
+ "Unique id for the organization that the team belongs under",
16313
+ "It is forbidden to change the org after creating a team"
16314
+ ].join("\n\n")
16315
+ ),
16316
+ user_id: teamBaseSchema.shape.user_id,
16317
+ created: teamBaseSchema.shape.created,
16318
+ name: teamBaseSchema.shape.name,
16319
+ description: teamBaseSchema.shape.description,
16320
+ deleted_at: teamBaseSchema.shape.deleted_at,
16321
+ member_users: z.array(z.string().uuid()).nullish().describe("Ids of users which belong to this team"),
16322
+ member_teams: z.array(z.string().uuid()).nullish().describe(
16323
+ [
16324
+ "Ids of the teams this team inherits from",
16325
+ "An inheriting team has all the users contained in its member teams, as well as all of their inherited users"
16326
+ ].join("\n\n")
16327
+ )
16328
+ }).describe(
16329
+ [
16330
+ "A team is a collection of users which can be assigned an ACL",
16331
+ "Teams can consist of individual users, as well as a set of teams they inherit from"
16332
+ ].join("\n\n")
16333
+ ).openapi("Team");
16334
+ var aclObjectTypeEnum = z.enum([
16335
+ "organization",
16336
+ "project",
16337
+ "experiment",
16338
+ "dataset",
16339
+ "prompt",
16340
+ "prompt_session",
16341
+ "project_score",
16342
+ "project_tag",
16343
+ "team",
16344
+ "role"
16345
+ ]).describe("The object type that the ACL applies to");
16346
+ var aclBaseSchema = generateBaseTableSchema("acl");
16347
+ var aclObjectSchema = z.strictObject({
16348
+ id: aclBaseSchema.shape.id,
16349
+ object_type: aclObjectTypeEnum,
16350
+ object_id: z.string().uuid().describe("The id of the object the ACL applies to"),
16351
+ restrict_object_type: z.optional(z.union([aclObjectTypeEnum, z.null()])).describe(
16352
+ "Optionally restricts the permission grant to just the specified object type"
16353
+ ),
16354
+ _object_org_id: z.string().uuid().describe("The organization the ACL's referred object belongs to"),
16355
+ created: aclBaseSchema.shape.created
16356
+ });
16357
+ var aclUserObjectSchema = z.strictObject({
16358
+ user_id: z.string().uuid().describe("Id of the user the ACL applies to")
16359
+ });
16360
+ var aclTeamObjectSchema = z.strictObject({
16361
+ team_id: z.string().uuid().describe("Id of the team the ACL applies to")
16362
+ });
16363
+ var aclPrivilegeObjectSchema = z.strictObject({
16364
+ privilege: privilegeEnum.describe("Privilege the ACL grants")
16365
+ });
16366
+ var aclRoleObjectSchema = z.strictObject({
16367
+ role_id: z.string().uuid().describe("Id of the role the ACL grants")
16368
+ });
16369
+ var aclSchema = z.union([
16370
+ aclObjectSchema.merge(aclUserObjectSchema).merge(aclPrivilegeObjectSchema).openapi("UserPrivilegeAcl"),
16371
+ aclObjectSchema.merge(aclUserObjectSchema).merge(aclRoleObjectSchema).openapi("UserRoleAcl"),
16372
+ aclObjectSchema.merge(aclTeamObjectSchema).merge(aclPrivilegeObjectSchema).openapi("TeamPrivilegeAcl"),
16373
+ aclObjectSchema.merge(aclTeamObjectSchema).merge(aclRoleObjectSchema).openapi("TeamRoleAcl")
16374
+ ]).describe(
16375
+ [
16376
+ "An ACL grants a certain privilege or role to a certain user or team on an object.",
16377
+ "ACLs are inherited across the object hierarchy. So for example, if a user has read privileges on a project, they will also have read privileges on any experiment, dataset, etc. created within that project.",
16378
+ "To restrict a grant to a particular sub-object, you may specify `restrict_object_type` in the ACL."
16379
+ ].join("\n\n")
16380
+ ).openapi("Acl");
16251
16381
  var appLimitSchema = z.number().int().nonnegative().describe("Limit the number of objects to return");
16252
16382
  function generateBaseTableOpSchema(objectName) {
16253
16383
  return z.strictObject({
@@ -16293,7 +16423,10 @@ var createDatasetSchema = z.strictObject({
16293
16423
  name: datasetSchema.shape.name,
16294
16424
  description: datasetSchema.shape.description
16295
16425
  }).openapi("CreateDataset");
16296
- var patchDatasetSchema = createDatasetSchema.omit({ project_id: true }).openapi("PatchDataset");
16426
+ var patchDatasetSchema = z.strictObject({
16427
+ name: datasetSchema.shape.name.nullish(),
16428
+ description: datasetSchema.shape.description
16429
+ }).openapi("PatchDataset");
16297
16430
  var createPromptSchema = promptSchema.omit({
16298
16431
  id: true,
16299
16432
  _xact_id: true,
@@ -16308,6 +16441,43 @@ var patchPromptSchema = z.strictObject({
16308
16441
  prompt_data: promptSchema.shape.prompt_data.nullish(),
16309
16442
  tags: promptSchema.shape.tags.nullish()
16310
16443
  }).openapi("PatchPrompt");
16444
+ var createRoleBaseSchema = generateBaseTableOpSchema("role");
16445
+ var createRoleSchema = z.strictObject({
16446
+ name: roleSchema.shape.name,
16447
+ description: roleSchema.shape.description,
16448
+ member_privileges: roleSchema.shape.member_privileges,
16449
+ member_roles: roleSchema.shape.member_roles,
16450
+ org_name: createRoleBaseSchema.shape.org_name
16451
+ }).openapi("CreateRole");
16452
+ var patchRoleSchema = createRoleSchema.omit({ name: true, org_name: true }).merge(
16453
+ z.strictObject({
16454
+ name: createRoleSchema.shape.name.nullish()
16455
+ })
16456
+ ).openapi("PatchRole");
16457
+ var createTeamBaseSchema = generateBaseTableOpSchema("team");
16458
+ var createTeamSchema = z.strictObject({
16459
+ name: teamSchema.shape.name,
16460
+ description: teamSchema.shape.description,
16461
+ member_users: teamSchema.shape.member_users,
16462
+ member_teams: teamSchema.shape.member_teams,
16463
+ org_name: createTeamBaseSchema.shape.org_name
16464
+ }).openapi("CreateTeam");
16465
+ var patchTeamSchema = createTeamSchema.omit({ name: true, org_name: true }).merge(
16466
+ z.strictObject({
16467
+ name: createTeamSchema.shape.name.nullish()
16468
+ })
16469
+ ).openapi("PatchTeam");
16470
+ var createAclObjectSchema = aclObjectSchema.omit({
16471
+ id: true,
16472
+ created: true,
16473
+ _object_org_id: true
16474
+ });
16475
+ var createAclSchema = z.union([
16476
+ createAclObjectSchema.merge(aclUserObjectSchema).merge(aclPrivilegeObjectSchema).openapi("CreateUserPrivilegeAcl"),
16477
+ createAclObjectSchema.merge(aclUserObjectSchema).merge(aclRoleObjectSchema).openapi("CreateUserRoleAcl"),
16478
+ createAclObjectSchema.merge(aclTeamObjectSchema).merge(aclPrivilegeObjectSchema).openapi("CreateTeamPrivilegeAcl"),
16479
+ createAclObjectSchema.merge(aclTeamObjectSchema).merge(aclRoleObjectSchema).openapi("CreateTeamRoleAcl")
16480
+ ]).openapi("CreateAcl");
16311
16481
  function capitalize(s, sep2) {
16312
16482
  const items = sep2 ? s.split(sep2) : [s];
16313
16483
  return items.map((s2) => s2 ? s2.charAt(0).toUpperCase() + s2.slice(1) : s2).join(sep2 || "");
@@ -16577,7 +16747,7 @@ var replacementEventSchema = z.strictObject({
16577
16747
  });
16578
16748
  function makeInsertEventSchemas(objectType2, insertSchema) {
16579
16749
  const eventDescription = getEventObjectDescription(objectType2);
16580
- const article = getEventObjectArticle(objectType2);
16750
+ const article = getObjectArticle(objectType2);
16581
16751
  const eventSchemaName = capitalize(
16582
16752
  getEventObjectType(objectType2),
16583
16753
  "_"
@@ -23776,7 +23946,7 @@ async function run(args) {
23776
23946
  async function main() {
23777
23947
  const [, ...args] = process.argv;
23778
23948
  const parser3 = new import_argparse.ArgumentParser({
23779
- description: "Argparse example"
23949
+ description: "Braintrust CLI"
23780
23950
  });
23781
23951
  parser3.add_argument("-v", "--version", { action: "version", version });
23782
23952
  const parentParser = new import_argparse.ArgumentParser({ add_help: false });
package/dist/index.js CHANGED
@@ -13334,14 +13334,30 @@ var jsonSchema = z.lazy(
13334
13334
  () => z.union([literalSchema, z.array(jsonSchema), z.record(jsonSchema)])
13335
13335
  );
13336
13336
  var datetimeStringSchema = z.string().datetime({ offset: true });
13337
+ var objectTypes = z.enum([
13338
+ "project",
13339
+ "experiment",
13340
+ "dataset",
13341
+ "prompt",
13342
+ "role",
13343
+ "team",
13344
+ "acl",
13345
+ "user"
13346
+ ]);
13347
+ var objectTypesWithEvent = z.enum([
13348
+ "project",
13349
+ "experiment",
13350
+ "dataset",
13351
+ "prompt"
13352
+ ]);
13337
13353
  function getEventObjectType(objectType2) {
13338
13354
  return objectType2 === "project" ? "project_logs" : objectType2;
13339
13355
  }
13340
13356
  function getEventObjectDescription(objectType2) {
13341
13357
  return getEventObjectType(objectType2).replace("_", " ");
13342
13358
  }
13343
- function getEventObjectArticle(objectType2) {
13344
- return objectType2 === "experiment" ? "an" : "a";
13359
+ function getObjectArticle(objectType2) {
13360
+ return ["acl", "experiment"].includes(objectType2) ? "an" : "a";
13345
13361
  }
13346
13362
  (0, import_zod_to_openapi3.extendZodWithOpenApi)(z);
13347
13363
  var modeSchema = z.enum(["default", "stainless"]);
@@ -13544,7 +13560,6 @@ function generateBaseTableSchema(objectName, opts) {
13544
13560
  var userBaseSchema = generateBaseTableSchema("user");
13545
13561
  var userSchema = z.strictObject({
13546
13562
  id: userBaseSchema.shape.id,
13547
- auth_id: z.string().uuid().nullish().describe("Internal authentication token used to identify the user"),
13548
13563
  given_name: z.string().nullish().describe("Given name of the user"),
13549
13564
  family_name: z.string().nullish().describe("Family name of the user"),
13550
13565
  email: z.string().nullish().describe("The user's email"),
@@ -13564,8 +13579,6 @@ var memberSchema = z.strictObject({
13564
13579
  }).openapi("Member");
13565
13580
  var meSchema = z.strictObject({
13566
13581
  id: userSchema.shape.id,
13567
- // By filtering by auth_id equality, we will ensure this is not-null.
13568
- auth_id: userSchema.shape.auth_id.unwrap().unwrap(),
13569
13582
  organizations: z.strictObject({
13570
13583
  id: memberSchema.shape.org_id,
13571
13584
  name: organizationSchema.shape.name
@@ -13666,6 +13679,123 @@ var experimentSchema = z.strictObject({
13666
13679
  user_id: experimentBaseSchema.shape.user_id,
13667
13680
  metadata: experimentBaseSchema.shape.metadata
13668
13681
  }).openapi("Experiment");
13682
+ var privilegeEnum = z.enum([
13683
+ "create",
13684
+ "read",
13685
+ "update",
13686
+ "delete",
13687
+ "create_acls",
13688
+ "read_acls",
13689
+ "update_acls",
13690
+ "delete_acls"
13691
+ ]).describe(
13692
+ [
13693
+ "Each privilege permits a certain type of operation on an object in the system",
13694
+ "Privileges can be assigned to to objects on an individual basis, or grouped into roles"
13695
+ ].join("\n\n")
13696
+ );
13697
+ var roleBaseSchema = generateBaseTableSchema("role");
13698
+ var roleSchema = z.strictObject({
13699
+ id: roleBaseSchema.shape.id,
13700
+ org_id: z.string().uuid().nullish().describe(
13701
+ [
13702
+ "Unique id for the organization that the role belongs under",
13703
+ "A null org_id indicates a system role, which may be assigned to anybody and inherited by any other role, but cannot be edited.",
13704
+ "It is forbidden to change the org after creating a role"
13705
+ ].join("\n\n")
13706
+ ),
13707
+ user_id: roleBaseSchema.shape.user_id,
13708
+ created: roleBaseSchema.shape.created,
13709
+ name: roleBaseSchema.shape.name,
13710
+ description: roleBaseSchema.shape.description,
13711
+ deleted_at: roleBaseSchema.shape.deleted_at,
13712
+ member_privileges: z.array(privilegeEnum).nullish().describe("Privileges which belong to this role"),
13713
+ member_roles: z.array(z.string().uuid()).nullish().describe(
13714
+ [
13715
+ "Ids of the roles this role inherits from",
13716
+ "An inheriting role has all the privileges contained in its member roles, as well as all of their inherited privileges"
13717
+ ].join("\n\n")
13718
+ )
13719
+ }).describe(
13720
+ [
13721
+ "A role is a collection of privileges which can be granted as part of an ACL",
13722
+ "Roles can consist of individual privileges, as well as a set of roles they inherit from"
13723
+ ].join("\n\n")
13724
+ ).openapi("Role");
13725
+ var teamBaseSchema = generateBaseTableSchema("team");
13726
+ var teamSchema = z.strictObject({
13727
+ id: teamBaseSchema.shape.id,
13728
+ org_id: z.string().uuid().describe(
13729
+ [
13730
+ "Unique id for the organization that the team belongs under",
13731
+ "It is forbidden to change the org after creating a team"
13732
+ ].join("\n\n")
13733
+ ),
13734
+ user_id: teamBaseSchema.shape.user_id,
13735
+ created: teamBaseSchema.shape.created,
13736
+ name: teamBaseSchema.shape.name,
13737
+ description: teamBaseSchema.shape.description,
13738
+ deleted_at: teamBaseSchema.shape.deleted_at,
13739
+ member_users: z.array(z.string().uuid()).nullish().describe("Ids of users which belong to this team"),
13740
+ member_teams: z.array(z.string().uuid()).nullish().describe(
13741
+ [
13742
+ "Ids of the teams this team inherits from",
13743
+ "An inheriting team has all the users contained in its member teams, as well as all of their inherited users"
13744
+ ].join("\n\n")
13745
+ )
13746
+ }).describe(
13747
+ [
13748
+ "A team is a collection of users which can be assigned an ACL",
13749
+ "Teams can consist of individual users, as well as a set of teams they inherit from"
13750
+ ].join("\n\n")
13751
+ ).openapi("Team");
13752
+ var aclObjectTypeEnum = z.enum([
13753
+ "organization",
13754
+ "project",
13755
+ "experiment",
13756
+ "dataset",
13757
+ "prompt",
13758
+ "prompt_session",
13759
+ "project_score",
13760
+ "project_tag",
13761
+ "team",
13762
+ "role"
13763
+ ]).describe("The object type that the ACL applies to");
13764
+ var aclBaseSchema = generateBaseTableSchema("acl");
13765
+ var aclObjectSchema = z.strictObject({
13766
+ id: aclBaseSchema.shape.id,
13767
+ object_type: aclObjectTypeEnum,
13768
+ object_id: z.string().uuid().describe("The id of the object the ACL applies to"),
13769
+ restrict_object_type: z.optional(z.union([aclObjectTypeEnum, z.null()])).describe(
13770
+ "Optionally restricts the permission grant to just the specified object type"
13771
+ ),
13772
+ _object_org_id: z.string().uuid().describe("The organization the ACL's referred object belongs to"),
13773
+ created: aclBaseSchema.shape.created
13774
+ });
13775
+ var aclUserObjectSchema = z.strictObject({
13776
+ user_id: z.string().uuid().describe("Id of the user the ACL applies to")
13777
+ });
13778
+ var aclTeamObjectSchema = z.strictObject({
13779
+ team_id: z.string().uuid().describe("Id of the team the ACL applies to")
13780
+ });
13781
+ var aclPrivilegeObjectSchema = z.strictObject({
13782
+ privilege: privilegeEnum.describe("Privilege the ACL grants")
13783
+ });
13784
+ var aclRoleObjectSchema = z.strictObject({
13785
+ role_id: z.string().uuid().describe("Id of the role the ACL grants")
13786
+ });
13787
+ var aclSchema = z.union([
13788
+ aclObjectSchema.merge(aclUserObjectSchema).merge(aclPrivilegeObjectSchema).openapi("UserPrivilegeAcl"),
13789
+ aclObjectSchema.merge(aclUserObjectSchema).merge(aclRoleObjectSchema).openapi("UserRoleAcl"),
13790
+ aclObjectSchema.merge(aclTeamObjectSchema).merge(aclPrivilegeObjectSchema).openapi("TeamPrivilegeAcl"),
13791
+ aclObjectSchema.merge(aclTeamObjectSchema).merge(aclRoleObjectSchema).openapi("TeamRoleAcl")
13792
+ ]).describe(
13793
+ [
13794
+ "An ACL grants a certain privilege or role to a certain user or team on an object.",
13795
+ "ACLs are inherited across the object hierarchy. So for example, if a user has read privileges on a project, they will also have read privileges on any experiment, dataset, etc. created within that project.",
13796
+ "To restrict a grant to a particular sub-object, you may specify `restrict_object_type` in the ACL."
13797
+ ].join("\n\n")
13798
+ ).openapi("Acl");
13669
13799
  var appLimitSchema = z.number().int().nonnegative().describe("Limit the number of objects to return");
13670
13800
  function generateBaseTableOpSchema(objectName) {
13671
13801
  return z.strictObject({
@@ -13711,7 +13841,10 @@ var createDatasetSchema = z.strictObject({
13711
13841
  name: datasetSchema.shape.name,
13712
13842
  description: datasetSchema.shape.description
13713
13843
  }).openapi("CreateDataset");
13714
- var patchDatasetSchema = createDatasetSchema.omit({ project_id: true }).openapi("PatchDataset");
13844
+ var patchDatasetSchema = z.strictObject({
13845
+ name: datasetSchema.shape.name.nullish(),
13846
+ description: datasetSchema.shape.description
13847
+ }).openapi("PatchDataset");
13715
13848
  var createPromptSchema = promptSchema.omit({
13716
13849
  id: true,
13717
13850
  _xact_id: true,
@@ -13726,6 +13859,43 @@ var patchPromptSchema = z.strictObject({
13726
13859
  prompt_data: promptSchema.shape.prompt_data.nullish(),
13727
13860
  tags: promptSchema.shape.tags.nullish()
13728
13861
  }).openapi("PatchPrompt");
13862
+ var createRoleBaseSchema = generateBaseTableOpSchema("role");
13863
+ var createRoleSchema = z.strictObject({
13864
+ name: roleSchema.shape.name,
13865
+ description: roleSchema.shape.description,
13866
+ member_privileges: roleSchema.shape.member_privileges,
13867
+ member_roles: roleSchema.shape.member_roles,
13868
+ org_name: createRoleBaseSchema.shape.org_name
13869
+ }).openapi("CreateRole");
13870
+ var patchRoleSchema = createRoleSchema.omit({ name: true, org_name: true }).merge(
13871
+ z.strictObject({
13872
+ name: createRoleSchema.shape.name.nullish()
13873
+ })
13874
+ ).openapi("PatchRole");
13875
+ var createTeamBaseSchema = generateBaseTableOpSchema("team");
13876
+ var createTeamSchema = z.strictObject({
13877
+ name: teamSchema.shape.name,
13878
+ description: teamSchema.shape.description,
13879
+ member_users: teamSchema.shape.member_users,
13880
+ member_teams: teamSchema.shape.member_teams,
13881
+ org_name: createTeamBaseSchema.shape.org_name
13882
+ }).openapi("CreateTeam");
13883
+ var patchTeamSchema = createTeamSchema.omit({ name: true, org_name: true }).merge(
13884
+ z.strictObject({
13885
+ name: createTeamSchema.shape.name.nullish()
13886
+ })
13887
+ ).openapi("PatchTeam");
13888
+ var createAclObjectSchema = aclObjectSchema.omit({
13889
+ id: true,
13890
+ created: true,
13891
+ _object_org_id: true
13892
+ });
13893
+ var createAclSchema = z.union([
13894
+ createAclObjectSchema.merge(aclUserObjectSchema).merge(aclPrivilegeObjectSchema).openapi("CreateUserPrivilegeAcl"),
13895
+ createAclObjectSchema.merge(aclUserObjectSchema).merge(aclRoleObjectSchema).openapi("CreateUserRoleAcl"),
13896
+ createAclObjectSchema.merge(aclTeamObjectSchema).merge(aclPrivilegeObjectSchema).openapi("CreateTeamPrivilegeAcl"),
13897
+ createAclObjectSchema.merge(aclTeamObjectSchema).merge(aclRoleObjectSchema).openapi("CreateTeamRoleAcl")
13898
+ ]).openapi("CreateAcl");
13729
13899
  function capitalize(s, sep) {
13730
13900
  const items = sep ? s.split(sep) : [s];
13731
13901
  return items.map((s2) => s2 ? s2.charAt(0).toUpperCase() + s2.slice(1) : s2).join(sep || "");
@@ -13995,7 +14165,7 @@ var replacementEventSchema = z.strictObject({
13995
14165
  });
13996
14166
  function makeInsertEventSchemas(objectType2, insertSchema) {
13997
14167
  const eventDescription = getEventObjectDescription(objectType2);
13998
- const article = getEventObjectArticle(objectType2);
14168
+ const article = getObjectArticle(objectType2);
13999
14169
  const eventSchemaName = capitalize(
14000
14170
  getEventObjectType(objectType2),
14001
14171
  "_"
@@ -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","../src/cache.ts","../../../node_modules/.pnpm/esbuild@0.18.20/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/buffer@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","82d9ccdc52ece51fc75ab867e01d0c2d2f23fdbd28fd7d8253cba469fb888c96",{"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"},{"version":"43361e6b831db1ef828f60d9219c09bfc43acb1b75ce86ead48f557a0935c0d2","signature":"b4324240466cc26262b0a4876ba6e405a8ad714cd15d4e309b765a3b41d90fb9"},"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":"a099c2a20b878dc652c260c2de6486f61b1f9643735c0cd1f9f656e989492329","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"e7ac387afdc488efdb12f20e53832e3250a1f6a721672ea6f877d82d96b8d6d2","signature":"aaaf528b0f582ce56ffcaa916e857ea338e963c767e5b5ea1c9ec5a4ea92d3d5"}],"root":[60,76,[78,82],194,196,197,199,[225,229]],"options":{"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"strict":true,"target":9},"fileIdsList":[[175,176],[176,177,178,179],[170,176,178],[175,177],[134,170],[134,170,171],[171,172,173,174],[171,173],[172],[151,170,180,181,182,185],[181,182,184],[133,170,180,181,182,183],[182],[180,181],[170,180],[133,170],[84],[120],[121,126,154],[122,133,134,141,151,162],[122,123,133,141],[124,163],[125,126,134,142],[126,151,159],[127,129,133,141],[128],[129,130],[133],[131,133],[120,133],[133,134,135,151,162],[133,134,135,148,151,154],[118,121,167],[129,133,136,141,151,162],[133,134,136,137,141,151,159,162],[136,138,151,159,162],[84,85,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,169],[133,139],[140,162,167],[129,133,141,151],[142],[143],[120,144],[145,161,167],[146],[147],[133,148,149],[148,150,163,165],[121,133,151,152,153,154],[121,151,153],[151,152],[154],[155],[120,151],[133,157,158],[157,158],[126,141,151,159],[160],[141,161],[121,136,147,162],[126,163],[151,164],[140,165],[166],[121,126,133,135,144,151,162,165,167],[151,168],[190],[187,188,189],[202,204],[204],[202],[200,204,224],[200,204],[224],[204,224],[122,170,201,203],[170,200,204],[202,218,219,220,221],[206,217,222,223],[205],[206,217,222],[204,205,207,208,209,210,211,212,213,214,215,216],[95,99,162],[95,151,162],[90],[92,95,159,162],[141,159],[170],[90,170],[92,95,141,162],[87,88,91,94,121,133,151,162],[87,93],[91,95,121,154,162,170],[121,170],[111,121,170],[89,90,170],[95],[89,90,91,92,93,94,95,96,97,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117],[95,102,103],[93,95,103,104],[94],[87,90,95],[95,99,103,104],[99],[93,95,98,162],[87,92,93,95,99,102],[121,151],[90,95,111,121,167,170],[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,120],[78,79,80],[142,143],[61,76,78,83,134,142,143,163,186,190,191,192,194,197,199,227],[59,76,78,192,194,198],[59,224],[59,78,80,199,227],[59],[143,196],[195],[59,60,61,75,76,77],[60,78,120,225,226],[59,76,78],[193],[60,143],[78,80],[59,78,194,198],[59,78,80,199],[59,60,75,76],[60]],"referencedMap":[[177,1],[180,2],[179,3],[178,4],[176,5],[172,6],[175,7],[174,8],[173,9],[171,5],[186,10],[185,11],[184,12],[183,13],[182,14],[181,15],[193,16],[195,5],[84,17],[85,17],[120,18],[121,19],[122,20],[123,21],[124,22],[125,23],[126,24],[127,25],[128,26],[129,27],[130,27],[132,28],[131,29],[133,30],[134,31],[135,32],[119,33],[136,34],[137,35],[138,36],[170,37],[139,38],[140,39],[141,40],[142,41],[143,42],[144,43],[145,44],[146,45],[147,46],[148,47],[149,47],[150,48],[151,49],[153,50],[152,51],[154,52],[155,53],[156,54],[157,55],[158,56],[159,57],[160,58],[161,59],[162,60],[163,61],[164,62],[165,63],[166,64],[167,65],[168,66],[187,67],[188,67],[190,68],[189,67],[218,69],[202,70],[219,69],[220,71],[221,71],[209,70],[210,70],[211,72],[212,73],[213,74],[214,74],[205,75],[215,70],[200,70],[216,74],[203,71],[204,76],[201,77],[222,78],[224,79],[206,80],[223,81],[217,82],[102,83],[109,84],[101,83],[116,85],[93,86],[92,87],[115,88],[110,89],[113,90],[95,91],[94,92],[90,93],[89,94],[112,95],[91,96],[96,97],[100,97],[118,98],[117,97],[104,99],[105,100],[107,101],[103,102],[106,103],[111,88],[98,104],[99,105],[108,106],[88,107],[114,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],[82,120],[228,121],[199,122],[225,123],[229,124],[60,125],[197,126],[196,127],[78,128],[227,129],[80,130],[194,131],[226,132]],"exportedModulesMap":[[177,1],[180,2],[179,3],[178,4],[176,5],[172,6],[175,7],[174,8],[173,9],[171,5],[186,10],[185,11],[184,12],[183,13],[182,14],[181,15],[193,16],[195,5],[84,17],[85,17],[120,18],[121,19],[122,20],[123,21],[124,22],[125,23],[126,24],[127,25],[128,26],[129,27],[130,27],[132,28],[131,29],[133,30],[134,31],[135,32],[119,33],[136,34],[137,35],[138,36],[170,37],[139,38],[140,39],[141,40],[142,41],[143,42],[144,43],[145,44],[146,45],[147,46],[148,47],[149,47],[150,48],[151,49],[153,50],[152,51],[154,52],[155,53],[156,54],[157,55],[158,56],[159,57],[160,58],[161,59],[162,60],[163,61],[164,62],[165,63],[166,64],[167,65],[168,66],[187,67],[188,67],[190,68],[189,67],[218,69],[202,70],[219,69],[220,71],[221,71],[209,70],[210,70],[211,72],[212,73],[213,74],[214,74],[205,75],[215,70],[200,70],[216,74],[203,71],[204,76],[201,77],[222,78],[224,79],[206,80],[223,81],[217,82],[102,83],[109,84],[101,83],[116,85],[93,86],[92,87],[115,88],[110,89],[113,90],[95,91],[94,92],[90,93],[89,94],[112,95],[91,96],[96,97],[100,97],[118,98],[117,97],[104,99],[105,100],[107,101],[103,102],[106,103],[111,88],[98,104],[99,105],[108,106],[88,107],[114,108],[74,109],[66,110],[72,111],[67,112],[70,109],[73,113],[65,114],[71,115],[64,116],[75,117],[79,18],[81,133],[199,134],[225,123],[229,135],[60,125],[78,136],[226,137]],"semanticDiagnosticsPerFile":[177,180,179,178,176,172,175,174,173,171,186,185,184,183,182,181,191,193,195,77,84,85,120,121,122,123,124,125,126,127,128,129,130,132,131,133,134,135,119,169,136,137,138,170,139,140,141,142,143,144,145,146,147,148,149,150,151,153,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,192,61,86,198,83,187,188,190,189,208,218,202,219,220,221,207,209,210,211,212,213,214,205,215,200,216,203,204,201,222,224,206,223,217,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,102,109,101,116,93,92,115,110,113,95,94,90,89,112,91,96,97,100,87,118,117,104,105,107,103,106,111,98,99,108,88,114,74,66,72,68,69,67,70,62,63,73,65,71,64,59,75,79,81,82,228,199,225,229,60,197,196,78,227,80,194,226,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/oai.ts","../src/browser.ts","../src/cache.ts","../../../node_modules/.pnpm/esbuild@0.18.20/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/buffer@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","a5d8f51097a535bb2a228251033dbb1063debe5b29530f5210801e358842b33e","8485b6da53ec35637d072e516631d25dae53984500de70a6989058f24354666f","ebe80346928736532e4a822154eb77f57ef3389dbe2b3ba4e571366a15448ef2","c2cb3c8ff388781258ea9ddbcd8a947f751bddd6886e1d3b3ea09ddaa895df80","f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","98a9cc18f661d28e6bd31c436e1984f3980f35e0f0aa9cf795c54f8ccb667ffe","c76b0c5727302341d0bdfa2cc2cee4b19ff185b554edb6e8543f0661d8487116","2a317fff5810a628d205a507998a77521120b462b03d36babf6eb387da991bee","f5ef066942e4f0bd98200aa6a6694b831e73200c9b3ade77ad0aa2409e8fe1b1","b9e99cd94f4166a245f5158f7286c05406e2a4c694619bceb7a4f3519d1d768e","5568d7c32e5cf5f35e092649f4e5e168c3114c800b1d7545b7ae5e0415704802","14aef8597ada2cceb667505c27959c3977bb22d8fdb70b29f8ff9d67a9a89025",{"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"},{"version":"43361e6b831db1ef828f60d9219c09bfc43acb1b75ce86ead48f557a0935c0d2","signature":"b4324240466cc26262b0a4876ba6e405a8ad714cd15d4e309b765a3b41d90fb9"},"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,82],194,196,197,199,[225,229]],"options":{"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"strict":true,"target":9},"fileIdsList":[[175,176],[176,177,178,179],[170,176,178],[175,177],[134,170],[134,170,171],[171,172,173,174],[171,173],[172],[151,170,180,181,182,185],[181,182,184],[133,170,180,181,182,183],[182],[180,181],[170,180],[133,170],[84],[120],[121,126,154],[122,133,134,141,151,162],[122,123,133,141],[124,163],[125,126,134,142],[126,151,159],[127,129,133,141],[128],[129,130],[133],[131,133],[120,133],[133,134,135,151,162],[133,134,135,148,151,154],[118,121,167],[129,133,136,141,151,162],[133,134,136,137,141,151,159,162],[136,138,151,159,162],[84,85,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,169],[133,139],[140,162,167],[129,133,141,151],[142],[143],[120,144],[145,161,167],[146],[147],[133,148,149],[148,150,163,165],[121,133,151,152,153,154],[121,151,153],[151,152],[154],[155],[120,151],[133,157,158],[157,158],[126,141,151,159],[160],[141,161],[121,136,147,162],[126,163],[151,164],[140,165],[166],[121,126,133,135,144,151,162,165,167],[151,168],[190],[187,188,189],[202,204],[204],[202],[200,204,224],[200,204],[224],[204,224],[122,170,201,203],[170,200,204],[202,218,219,220,221],[206,217,222,223],[205],[206,217,222],[204,205,207,208,209,210,211,212,213,214,215,216],[95,99,162],[95,151,162],[90],[92,95,159,162],[141,159],[170],[90,170],[92,95,141,162],[87,88,91,94,121,133,151,162],[87,93],[91,95,121,154,162,170],[121,170],[111,121,170],[89,90,170],[95],[89,90,91,92,93,94,95,96,97,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117],[95,102,103],[93,95,103,104],[94],[87,90,95],[95,99,103,104],[99],[93,95,98,162],[87,92,93,95,99,102],[121,151],[90,95,111,121,167,170],[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,120],[78,79,80],[142,143],[61,76,78,83,134,142,143,163,186,190,191,192,194,197,199,227],[59,76,78,192,194,198],[59,224],[59,78,80,199,227],[59],[143,196],[195],[59,60,61,75,76,77],[60,78,120,225,226],[59,76,78],[193],[60,143],[78,80],[59,78,194,198],[59,78,80,199],[59,60,75,76],[60]],"referencedMap":[[177,1],[180,2],[179,3],[178,4],[176,5],[172,6],[175,7],[174,8],[173,9],[171,5],[186,10],[185,11],[184,12],[183,13],[182,14],[181,15],[193,16],[195,5],[84,17],[85,17],[120,18],[121,19],[122,20],[123,21],[124,22],[125,23],[126,24],[127,25],[128,26],[129,27],[130,27],[132,28],[131,29],[133,30],[134,31],[135,32],[119,33],[136,34],[137,35],[138,36],[170,37],[139,38],[140,39],[141,40],[142,41],[143,42],[144,43],[145,44],[146,45],[147,46],[148,47],[149,47],[150,48],[151,49],[153,50],[152,51],[154,52],[155,53],[156,54],[157,55],[158,56],[159,57],[160,58],[161,59],[162,60],[163,61],[164,62],[165,63],[166,64],[167,65],[168,66],[187,67],[188,67],[190,68],[189,67],[218,69],[202,70],[219,69],[220,71],[221,71],[209,70],[210,70],[211,72],[212,73],[213,74],[214,74],[205,75],[215,70],[200,70],[216,74],[203,71],[204,76],[201,77],[222,78],[224,79],[206,80],[223,81],[217,82],[102,83],[109,84],[101,83],[116,85],[93,86],[92,87],[115,88],[110,89],[113,90],[95,91],[94,92],[90,93],[89,94],[112,95],[91,96],[96,97],[100,97],[118,98],[117,97],[104,99],[105,100],[107,101],[103,102],[106,103],[111,88],[98,104],[99,105],[108,106],[88,107],[114,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],[82,120],[228,121],[199,122],[225,123],[229,124],[60,125],[197,126],[196,127],[78,128],[227,129],[80,130],[194,131],[226,132]],"exportedModulesMap":[[177,1],[180,2],[179,3],[178,4],[176,5],[172,6],[175,7],[174,8],[173,9],[171,5],[186,10],[185,11],[184,12],[183,13],[182,14],[181,15],[193,16],[195,5],[84,17],[85,17],[120,18],[121,19],[122,20],[123,21],[124,22],[125,23],[126,24],[127,25],[128,26],[129,27],[130,27],[132,28],[131,29],[133,30],[134,31],[135,32],[119,33],[136,34],[137,35],[138,36],[170,37],[139,38],[140,39],[141,40],[142,41],[143,42],[144,43],[145,44],[146,45],[147,46],[148,47],[149,47],[150,48],[151,49],[153,50],[152,51],[154,52],[155,53],[156,54],[157,55],[158,56],[159,57],[160,58],[161,59],[162,60],[163,61],[164,62],[165,63],[166,64],[167,65],[168,66],[187,67],[188,67],[190,68],[189,67],[218,69],[202,70],[219,69],[220,71],[221,71],[209,70],[210,70],[211,72],[212,73],[213,74],[214,74],[205,75],[215,70],[200,70],[216,74],[203,71],[204,76],[201,77],[222,78],[224,79],[206,80],[223,81],[217,82],[102,83],[109,84],[101,83],[116,85],[93,86],[92,87],[115,88],[110,89],[113,90],[95,91],[94,92],[90,93],[89,94],[112,95],[91,96],[96,97],[100,97],[118,98],[117,97],[104,99],[105,100],[107,101],[103,102],[106,103],[111,88],[98,104],[99,105],[108,106],[88,107],[114,108],[74,109],[66,110],[72,111],[67,112],[70,109],[73,113],[65,114],[71,115],[64,116],[75,117],[79,18],[81,133],[199,134],[225,123],[229,135],[60,125],[78,136],[226,137]],"semanticDiagnosticsPerFile":[177,180,179,178,176,172,175,174,173,171,186,185,184,183,182,181,191,193,195,77,84,85,120,121,122,123,124,125,126,127,128,129,130,132,131,133,134,135,119,169,136,137,138,170,139,140,141,142,143,144,145,146,147,148,149,150,151,153,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,192,61,86,198,83,187,188,190,189,208,218,202,219,220,221,207,209,210,211,212,213,214,205,215,200,216,203,204,201,222,224,206,223,217,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,102,109,101,116,93,92,115,110,113,95,94,90,89,112,91,96,97,100,87,118,117,104,105,107,103,106,111,98,99,108,88,114,74,66,72,68,69,67,70,62,63,73,65,71,64,59,75,79,81,82,228,199,225,229,60,197,196,78,227,80,194,226,76]},"version":"5.3.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "braintrust",
3
- "version": "0.0.117",
3
+ "version": "0.0.118",
4
4
  "description": "SDK for integrating Braintrust",
5
5
  "main": "./dist/index.js",
6
6
  "browser": {