@hasna/todos 0.15.25 → 0.15.27

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.
@@ -70,7 +70,7 @@ var package_default;
70
70
  var init_package = __esm(() => {
71
71
  package_default = {
72
72
  name: "@hasna/todos",
73
- version: "0.15.25",
73
+ version: "0.15.27",
74
74
  description: "Universal task management for AI coding agents - CLI + MCP server + interactive TUI",
75
75
  type: "module",
76
76
  main: "dist/index.js",
@@ -119,7 +119,8 @@ var init_package = __esm(() => {
119
119
  }
120
120
  },
121
121
  workspaces: [
122
- "dashboard"
122
+ "dashboard",
123
+ "ai"
123
124
  ],
124
125
  files: [
125
126
  "dist",
@@ -143,7 +144,9 @@ var init_package = __esm(() => {
143
144
  "verify:release": "bun run scripts/verify-public-release.ts --mode=review",
144
145
  "verify:release-review": "bun run scripts/verify-npm-release-agent-review.ts",
145
146
  "verify:attested-container-candidate": "bun run scripts/attested-container-candidate.ts verify",
146
- "test:attested-container-candidate": "bun test scripts/attested-container-candidate.test.ts",
147
+ "test:attested-container-candidate": "bun test scripts/attested-container-candidate.test.ts scripts/attested-container-compatibility-vector.test.ts",
148
+ "emit:iapp-deployment-compatibility-vector": "bun run scripts/attested-container-compatibility-vector.ts emit",
149
+ "verify:iapp-deployment-compatibility-vector": "bun run scripts/attested-container-compatibility-vector.ts verify",
147
150
  "issue:release-review": "bun run scripts/issue-npm-release-agent-review.ts",
148
151
  prepublishOnly: "bun run scripts/verify-public-release.ts --mode=publish",
149
152
  postinstall: "mkdir -p $HOME/.hasna/todos $HOME/.hasna/todos/training 2>/dev/null || true"
@@ -190,6 +193,7 @@ var init_package = __esm(() => {
190
193
  zod: "^3.24.2"
191
194
  },
192
195
  overrides: {
196
+ ajv: "8.20.0",
193
197
  "fast-uri": "3.1.2"
194
198
  },
195
199
  devDependencies: {
@@ -26134,6 +26138,13 @@ var init_schema2 = __esm(() => {
26134
26138
  }).strict();
26135
26139
  });
26136
26140
 
26141
+ // src/task-manifest/plan-slug.ts
26142
+ function taskManifestPlanSlug(manifest, planId) {
26143
+ const base = normalizeSlug(manifest.plan.key) || normalizeSlug(manifest.plan.name) || "plan";
26144
+ return `${base}-${planId}`;
26145
+ }
26146
+ var init_plan_slug = () => {};
26147
+
26137
26148
  // src/task-manifest/backend.ts
26138
26149
  function validateTaskManifestBindingLookupRows(rows, tenantId, planId) {
26139
26150
  if (rows.length === 0) {
@@ -26270,6 +26281,7 @@ function postgresTodosTaskManifestSchemaSql(tenantId = "default") {
26270
26281
  var sqliteTails;
26271
26282
  var init_sqlite2 = __esm(() => {
26272
26283
  init_canonical();
26284
+ init_plan_slug();
26273
26285
  init_backend();
26274
26286
  init_types5();
26275
26287
  sqliteTails = new WeakMap;
@@ -26370,7 +26382,7 @@ function taskPayload(manifest, task2, taskId, planId, now3) {
26370
26382
  function planPayload(input) {
26371
26383
  return {
26372
26384
  id: input.graph.plan_id,
26373
- slug: null,
26385
+ slug: taskManifestPlanSlug(input.manifest, input.graph.plan_id),
26374
26386
  project_id: input.manifest.project_id,
26375
26387
  task_list_id: input.manifest.task_list_id ?? null,
26376
26388
  agent_id: null,
@@ -26919,6 +26931,7 @@ class PostgresTodosTaskManifestBackend {
26919
26931
  }
26920
26932
  var init_postgres3 = __esm(() => {
26921
26933
  init_canonical();
26934
+ init_plan_slug();
26922
26935
  init_backend();
26923
26936
  init_postgres_sync();
26924
26937
  init_types5();
@@ -29593,7 +29606,7 @@ __export(exports_openapi, {
29593
29606
  buildV1OpenApiDocument: () => buildV1OpenApiDocument
29594
29607
  });
29595
29608
  function buildV1OpenApiDocument(version = getPackageVersion()) {
29596
- return {
29609
+ return structuredClone({
29597
29610
  openapi: "3.1.0",
29598
29611
  info: {
29599
29612
  title: "Todos V1 API",
@@ -29608,6 +29621,9 @@ function buildV1OpenApiDocument(version = getPackageVersion()) {
29608
29621
  schemas: {
29609
29622
  Task: taskSchema,
29610
29623
  Project: projectSchema,
29624
+ TaskManifestBounds: taskManifestBoundsSchema,
29625
+ TaskManifestCapability: taskManifestCapabilitySchema,
29626
+ TaskManifestCapabilityResponse: taskManifestCapabilityResponseSchema,
29611
29627
  TaskManifestBindingLookupRequest: taskManifestBindingLookupRequestSchema,
29612
29628
  TaskManifestBindingLookupResult: taskManifestBindingLookupResultSchema,
29613
29629
  TaskManifestBindingLookupResponse: taskManifestBindingLookupResponseSchema,
@@ -30607,6 +30623,23 @@ function buildV1OpenApiDocument(version = getPackageVersion()) {
30607
30623
  },
30608
30624
  security: [{ apiKey: [] }],
30609
30625
  paths: {
30626
+ "/v1/task-manifest/capability": {
30627
+ get: {
30628
+ operationId: "getTaskManifestCapability",
30629
+ summary: "Read the current task-manifest authority capability and tenant",
30630
+ responses: {
30631
+ "200": {
30632
+ content: {
30633
+ "application/json": {
30634
+ schema: { $ref: "#/components/schemas/TaskManifestCapabilityResponse" }
30635
+ }
30636
+ }
30637
+ },
30638
+ "401": { content: { "application/json": { schema: { $ref: "#/components/schemas/ErrorResponse" } } } },
30639
+ "503": { content: { "application/json": { schema: { $ref: "#/components/schemas/ErrorResponse" } } } }
30640
+ }
30641
+ }
30642
+ },
30610
30643
  "/v1/task-manifest/bindings/lookup": {
30611
30644
  post: {
30612
30645
  operationId: "lookupTaskManifestBinding",
@@ -31465,9 +31498,9 @@ function buildV1OpenApiDocument(version = getPackageVersion()) {
31465
31498
  }
31466
31499
  }
31467
31500
  }
31468
- };
31501
+ });
31469
31502
  }
31470
- var taskSchema, projectSchema, taskManifestBindingLookupRequestSchema, taskManifestBindingLookupResultSchema, taskManifestBindingLookupResponseSchema, taskListSchema, projectTaskListEnsureReceiptSchema, projectTaskListEnsureResultSchema, projectTaskListRollbackResultSchema, taskCommentSchema, staleLockHandoffInputSchema, staleLockHandoffReceiptSchema, taskGitRefSchema, planSchema, planProjectLinkReceiptSchema, planProjectLinkResultSchema, planProjectLinkRollbackResultSchema, templateTaskSchema, templateSchema, templateVariableSchema, createTemplateTaskInputSchema;
31503
+ var taskSchema, taskManifestBoundsSchema, taskManifestCapabilitySchema, taskManifestCapabilityResponseSchema, projectSchema, taskManifestBindingLookupRequestSchema, taskManifestBindingLookupResultSchema, taskManifestBindingLookupResponseSchema, taskListSchema, projectTaskListEnsureReceiptSchema, projectTaskListEnsureResultSchema, projectTaskListRollbackResultSchema, taskCommentSchema, staleLockHandoffInputSchema, staleLockHandoffReceiptSchema, taskGitRefSchema, planSchema, planProjectLinkReceiptSchema, planProjectLinkResultSchema, planProjectLinkRollbackResultSchema, templateTaskSchema, templateSchema, templateVariableSchema, createTemplateTaskInputSchema;
31471
31504
  var init_openapi = __esm(() => {
31472
31505
  init_package_version();
31473
31506
  init_types();
@@ -31493,6 +31526,74 @@ var init_openapi = __esm(() => {
31493
31526
  updated_at: { type: "string" }
31494
31527
  }
31495
31528
  };
31529
+ taskManifestBoundsSchema = {
31530
+ type: "object",
31531
+ additionalProperties: false,
31532
+ required: [
31533
+ "tasks",
31534
+ "dependencies",
31535
+ "comments",
31536
+ "verifications",
31537
+ "effects",
31538
+ "metadata_fields",
31539
+ "effect_payload_fields",
31540
+ "request_bytes",
31541
+ "response_bytes"
31542
+ ],
31543
+ properties: {
31544
+ tasks: { type: "integer", minimum: 1 },
31545
+ dependencies: { type: "integer", minimum: 1 },
31546
+ comments: { type: "integer", minimum: 1 },
31547
+ verifications: { type: "integer", minimum: 1 },
31548
+ effects: { type: "integer", minimum: 1 },
31549
+ metadata_fields: { type: "integer", minimum: 1 },
31550
+ effect_payload_fields: { type: "integer", minimum: 1 },
31551
+ request_bytes: { type: "integer", minimum: 1 },
31552
+ response_bytes: { type: "integer", minimum: 1 }
31553
+ }
31554
+ };
31555
+ taskManifestCapabilitySchema = {
31556
+ type: "object",
31557
+ additionalProperties: false,
31558
+ required: [
31559
+ "authority",
31560
+ "route",
31561
+ "schema_version",
31562
+ "tenant_id",
31563
+ "backend",
31564
+ "deterministic_ids",
31565
+ "immutable_receipts",
31566
+ "transactional_outbox",
31567
+ "idempotent_outbox_delivery",
31568
+ "exact_bounded_readback",
31569
+ "conditional_compensation",
31570
+ "transcript_safe",
31571
+ "bounds"
31572
+ ],
31573
+ properties: {
31574
+ authority: { type: "string", enum: ["todos"] },
31575
+ route: { type: "string", enum: ["todos.task-manifest.v1"] },
31576
+ schema_version: { type: "integer", enum: [1] },
31577
+ tenant_id: { type: "string", minLength: 1, maxLength: 200 },
31578
+ backend: { type: "string", enum: ["sqlite", "postgresql", "http"] },
31579
+ deterministic_ids: { type: "boolean", enum: [true] },
31580
+ immutable_receipts: { type: "boolean", enum: [true] },
31581
+ transactional_outbox: { type: "boolean", enum: [true] },
31582
+ idempotent_outbox_delivery: { type: "boolean", enum: [true] },
31583
+ exact_bounded_readback: { type: "boolean", enum: [true] },
31584
+ conditional_compensation: { type: "boolean", enum: [true] },
31585
+ transcript_safe: { type: "boolean", enum: [false] },
31586
+ bounds: { $ref: "#/components/schemas/TaskManifestBounds" }
31587
+ }
31588
+ };
31589
+ taskManifestCapabilityResponseSchema = {
31590
+ type: "object",
31591
+ additionalProperties: false,
31592
+ required: ["capability"],
31593
+ properties: {
31594
+ capability: { $ref: "#/components/schemas/TaskManifestCapability" }
31595
+ }
31596
+ };
31496
31597
  projectSchema = {
31497
31598
  type: "object",
31498
31599
  properties: {
@@ -42338,7 +42439,7 @@ var init_protocol = __esm(() => {
42338
42439
  init_zod_json_schema_compat();
42339
42440
  });
42340
42441
 
42341
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/code.js
42442
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/codegen/code.js
42342
42443
  var require_code = __commonJS((exports) => {
42343
42444
  Object.defineProperty(exports, "__esModule", { value: true });
42344
42445
  exports.regexpCode = exports.getEsmExportName = exports.getProperty = exports.safeStringify = exports.stringify = exports.strConcat = exports.addCodeArg = exports.str = exports._ = exports.nil = exports._Code = exports.Name = exports.IDENTIFIER = exports._CodeOrName = undefined;
@@ -42492,7 +42593,7 @@ var require_code = __commonJS((exports) => {
42492
42593
  exports.regexpCode = regexpCode;
42493
42594
  });
42494
42595
 
42495
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/scope.js
42596
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/codegen/scope.js
42496
42597
  var require_scope = __commonJS((exports) => {
42497
42598
  Object.defineProperty(exports, "__esModule", { value: true });
42498
42599
  exports.ValueScope = exports.ValueScopeName = exports.Scope = exports.varKinds = exports.UsedValueState = undefined;
@@ -42638,7 +42739,7 @@ var require_scope = __commonJS((exports) => {
42638
42739
  exports.ValueScope = ValueScope;
42639
42740
  });
42640
42741
 
42641
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/index.js
42742
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/codegen/index.js
42642
42743
  var require_codegen = __commonJS((exports) => {
42643
42744
  Object.defineProperty(exports, "__esModule", { value: true });
42644
42745
  exports.or = exports.and = exports.not = exports.CodeGen = exports.operators = exports.varKinds = exports.ValueScopeName = exports.ValueScope = exports.Scope = exports.Name = exports.regexpCode = exports.stringify = exports.getProperty = exports.nil = exports.strConcat = exports.str = exports._ = undefined;
@@ -43348,7 +43449,7 @@ var require_codegen = __commonJS((exports) => {
43348
43449
  }
43349
43450
  });
43350
43451
 
43351
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/util.js
43452
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/util.js
43352
43453
  var require_util = __commonJS((exports) => {
43353
43454
  Object.defineProperty(exports, "__esModule", { value: true });
43354
43455
  exports.checkStrictMode = exports.getErrorPath = exports.Type = exports.useFunc = exports.setEvaluated = exports.evaluatedPropsToName = exports.mergeEvaluated = exports.eachItem = exports.unescapeJsonPointer = exports.escapeJsonPointer = exports.escapeFragment = exports.unescapeFragment = exports.schemaRefOrVal = exports.schemaHasRulesButRef = exports.schemaHasRules = exports.checkUnknownRules = exports.alwaysValidSchema = exports.toHash = undefined;
@@ -43512,7 +43613,7 @@ var require_util = __commonJS((exports) => {
43512
43613
  exports.checkStrictMode = checkStrictMode;
43513
43614
  });
43514
43615
 
43515
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/names.js
43616
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/names.js
43516
43617
  var require_names = __commonJS((exports) => {
43517
43618
  Object.defineProperty(exports, "__esModule", { value: true });
43518
43619
  var codegen_1 = require_codegen();
@@ -43537,7 +43638,7 @@ var require_names = __commonJS((exports) => {
43537
43638
  exports.default = names;
43538
43639
  });
43539
43640
 
43540
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/errors.js
43641
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/errors.js
43541
43642
  var require_errors = __commonJS((exports) => {
43542
43643
  Object.defineProperty(exports, "__esModule", { value: true });
43543
43644
  exports.extendErrors = exports.resetErrorsCount = exports.reportExtraError = exports.reportError = exports.keyword$DataError = exports.keywordError = undefined;
@@ -43655,7 +43756,7 @@ var require_errors = __commonJS((exports) => {
43655
43756
  }
43656
43757
  });
43657
43758
 
43658
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/boolSchema.js
43759
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/validate/boolSchema.js
43659
43760
  var require_boolSchema = __commonJS((exports) => {
43660
43761
  Object.defineProperty(exports, "__esModule", { value: true });
43661
43762
  exports.boolOrEmptySchema = exports.topBoolOrEmptySchema = undefined;
@@ -43703,7 +43804,7 @@ var require_boolSchema = __commonJS((exports) => {
43703
43804
  }
43704
43805
  });
43705
43806
 
43706
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/rules.js
43807
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/rules.js
43707
43808
  var require_rules = __commonJS((exports) => {
43708
43809
  Object.defineProperty(exports, "__esModule", { value: true });
43709
43810
  exports.getRules = exports.isJSONType = undefined;
@@ -43731,7 +43832,7 @@ var require_rules = __commonJS((exports) => {
43731
43832
  exports.getRules = getRules;
43732
43833
  });
43733
43834
 
43734
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/applicability.js
43835
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/validate/applicability.js
43735
43836
  var require_applicability = __commonJS((exports) => {
43736
43837
  Object.defineProperty(exports, "__esModule", { value: true });
43737
43838
  exports.shouldUseRule = exports.shouldUseGroup = exports.schemaHasRulesForType = undefined;
@@ -43751,7 +43852,7 @@ var require_applicability = __commonJS((exports) => {
43751
43852
  exports.shouldUseRule = shouldUseRule;
43752
43853
  });
43753
43854
 
43754
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/dataType.js
43855
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/validate/dataType.js
43755
43856
  var require_dataType = __commonJS((exports) => {
43756
43857
  Object.defineProperty(exports, "__esModule", { value: true });
43757
43858
  exports.reportTypeError = exports.checkDataTypes = exports.checkDataType = exports.coerceAndCheckDataType = exports.getJSONTypes = exports.getSchemaTypes = exports.DataType = undefined;
@@ -43932,7 +44033,7 @@ var require_dataType = __commonJS((exports) => {
43932
44033
  }
43933
44034
  });
43934
44035
 
43935
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/defaults.js
44036
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/validate/defaults.js
43936
44037
  var require_defaults = __commonJS((exports) => {
43937
44038
  Object.defineProperty(exports, "__esModule", { value: true });
43938
44039
  exports.assignDefaults = undefined;
@@ -43966,7 +44067,7 @@ var require_defaults = __commonJS((exports) => {
43966
44067
  }
43967
44068
  });
43968
44069
 
43969
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/code.js
44070
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/code.js
43970
44071
  var require_code2 = __commonJS((exports) => {
43971
44072
  Object.defineProperty(exports, "__esModule", { value: true });
43972
44073
  exports.validateUnion = exports.validateArray = exports.usePattern = exports.callValidateCode = exports.schemaProperties = exports.allSchemaProperties = exports.noPropertyInData = exports.propertyInData = exports.isOwnProperty = exports.hasPropFunc = exports.reportMissingProp = exports.checkMissingProp = exports.checkReportMissingProp = undefined;
@@ -44095,7 +44196,7 @@ var require_code2 = __commonJS((exports) => {
44095
44196
  exports.validateUnion = validateUnion;
44096
44197
  });
44097
44198
 
44098
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/keyword.js
44199
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/validate/keyword.js
44099
44200
  var require_keyword = __commonJS((exports) => {
44100
44201
  Object.defineProperty(exports, "__esModule", { value: true });
44101
44202
  exports.validateKeywordUsage = exports.validSchemaType = exports.funcKeywordCode = exports.macroKeywordCode = undefined;
@@ -44210,7 +44311,7 @@ var require_keyword = __commonJS((exports) => {
44210
44311
  exports.validateKeywordUsage = validateKeywordUsage;
44211
44312
  });
44212
44313
 
44213
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/subschema.js
44314
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/validate/subschema.js
44214
44315
  var require_subschema = __commonJS((exports) => {
44215
44316
  Object.defineProperty(exports, "__esModule", { value: true });
44216
44317
  exports.extendSubschemaMode = exports.extendSubschemaData = exports.getSubschema = undefined;
@@ -44415,7 +44516,7 @@ var require_json_schema_traverse = __commonJS((exports, module) => {
44415
44516
  }
44416
44517
  });
44417
44518
 
44418
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/resolve.js
44519
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/resolve.js
44419
44520
  var require_resolve = __commonJS((exports) => {
44420
44521
  Object.defineProperty(exports, "__esModule", { value: true });
44421
44522
  exports.getSchemaRefs = exports.resolveUrl = exports.normalizeId = exports._getFullPath = exports.getFullPath = exports.inlineRef = undefined;
@@ -44568,7 +44669,7 @@ var require_resolve = __commonJS((exports) => {
44568
44669
  exports.getSchemaRefs = getSchemaRefs;
44569
44670
  });
44570
44671
 
44571
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/index.js
44672
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/validate/index.js
44572
44673
  var require_validate = __commonJS((exports) => {
44573
44674
  Object.defineProperty(exports, "__esModule", { value: true });
44574
44675
  exports.getData = exports.KeywordCxt = exports.validateFunctionCode = undefined;
@@ -45073,7 +45174,7 @@ var require_validate = __commonJS((exports) => {
45073
45174
  exports.getData = getData;
45074
45175
  });
45075
45176
 
45076
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/validation_error.js
45177
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/runtime/validation_error.js
45077
45178
  var require_validation_error = __commonJS((exports) => {
45078
45179
  Object.defineProperty(exports, "__esModule", { value: true });
45079
45180
 
@@ -45087,7 +45188,7 @@ var require_validation_error = __commonJS((exports) => {
45087
45188
  exports.default = ValidationError;
45088
45189
  });
45089
45190
 
45090
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/ref_error.js
45191
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/ref_error.js
45091
45192
  var require_ref_error = __commonJS((exports) => {
45092
45193
  Object.defineProperty(exports, "__esModule", { value: true });
45093
45194
  var resolve_1 = require_resolve();
@@ -45102,7 +45203,7 @@ var require_ref_error = __commonJS((exports) => {
45102
45203
  exports.default = MissingRefError;
45103
45204
  });
45104
45205
 
45105
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/index.js
45206
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/compile/index.js
45106
45207
  var require_compile = __commonJS((exports) => {
45107
45208
  Object.defineProperty(exports, "__esModule", { value: true });
45108
45209
  exports.resolveSchema = exports.getCompilingSchema = exports.resolveRef = exports.compileSchema = exports.SchemaEnv = undefined;
@@ -45323,7 +45424,7 @@ var require_compile = __commonJS((exports) => {
45323
45424
  }
45324
45425
  });
45325
45426
 
45326
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/refs/data.json
45427
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/refs/data.json
45327
45428
  var require_data = __commonJS((exports, module) => {
45328
45429
  module.exports = {
45329
45430
  $id: "https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",
@@ -46107,7 +46208,7 @@ var require_fast_uri = __commonJS((exports, module) => {
46107
46208
  module.exports.fastUri = fastUri;
46108
46209
  });
46109
46210
 
46110
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/uri.js
46211
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/runtime/uri.js
46111
46212
  var require_uri = __commonJS((exports) => {
46112
46213
  Object.defineProperty(exports, "__esModule", { value: true });
46113
46214
  var uri = require_fast_uri();
@@ -46115,7 +46216,7 @@ var require_uri = __commonJS((exports) => {
46115
46216
  exports.default = uri;
46116
46217
  });
46117
46218
 
46118
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/core.js
46219
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/core.js
46119
46220
  var require_core = __commonJS((exports) => {
46120
46221
  Object.defineProperty(exports, "__esModule", { value: true });
46121
46222
  exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = undefined;
@@ -46226,7 +46327,7 @@ var require_core = __commonJS((exports) => {
46226
46327
  constructor(opts = {}) {
46227
46328
  this.schemas = {};
46228
46329
  this.refs = {};
46229
- this.formats = {};
46330
+ this.formats = Object.create(null);
46230
46331
  this._compilations = new Set;
46231
46332
  this._loading = {};
46232
46333
  this._cache = new Map;
@@ -46708,7 +46809,7 @@ var require_core = __commonJS((exports) => {
46708
46809
  }
46709
46810
  });
46710
46811
 
46711
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/id.js
46812
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/core/id.js
46712
46813
  var require_id = __commonJS((exports) => {
46713
46814
  Object.defineProperty(exports, "__esModule", { value: true });
46714
46815
  var def = {
@@ -46720,7 +46821,7 @@ var require_id = __commonJS((exports) => {
46720
46821
  exports.default = def;
46721
46822
  });
46722
46823
 
46723
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/ref.js
46824
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/core/ref.js
46724
46825
  var require_ref = __commonJS((exports) => {
46725
46826
  Object.defineProperty(exports, "__esModule", { value: true });
46726
46827
  exports.callRef = exports.getValidate = undefined;
@@ -46839,7 +46940,7 @@ var require_ref = __commonJS((exports) => {
46839
46940
  exports.default = def;
46840
46941
  });
46841
46942
 
46842
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/index.js
46943
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/core/index.js
46843
46944
  var require_core2 = __commonJS((exports) => {
46844
46945
  Object.defineProperty(exports, "__esModule", { value: true });
46845
46946
  var id_1 = require_id();
@@ -46857,7 +46958,7 @@ var require_core2 = __commonJS((exports) => {
46857
46958
  exports.default = core2;
46858
46959
  });
46859
46960
 
46860
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitNumber.js
46961
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/limitNumber.js
46861
46962
  var require_limitNumber = __commonJS((exports) => {
46862
46963
  Object.defineProperty(exports, "__esModule", { value: true });
46863
46964
  var codegen_1 = require_codegen();
@@ -46886,7 +46987,7 @@ var require_limitNumber = __commonJS((exports) => {
46886
46987
  exports.default = def;
46887
46988
  });
46888
46989
 
46889
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/multipleOf.js
46990
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/multipleOf.js
46890
46991
  var require_multipleOf = __commonJS((exports) => {
46891
46992
  Object.defineProperty(exports, "__esModule", { value: true });
46892
46993
  var codegen_1 = require_codegen();
@@ -46911,7 +47012,7 @@ var require_multipleOf = __commonJS((exports) => {
46911
47012
  exports.default = def;
46912
47013
  });
46913
47014
 
46914
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/ucs2length.js
47015
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/runtime/ucs2length.js
46915
47016
  var require_ucs2length = __commonJS((exports) => {
46916
47017
  Object.defineProperty(exports, "__esModule", { value: true });
46917
47018
  function ucs2length(str) {
@@ -46934,7 +47035,7 @@ var require_ucs2length = __commonJS((exports) => {
46934
47035
  ucs2length.code = 'require("ajv/dist/runtime/ucs2length").default';
46935
47036
  });
46936
47037
 
46937
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitLength.js
47038
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/limitLength.js
46938
47039
  var require_limitLength = __commonJS((exports) => {
46939
47040
  Object.defineProperty(exports, "__esModule", { value: true });
46940
47041
  var codegen_1 = require_codegen();
@@ -46963,7 +47064,7 @@ var require_limitLength = __commonJS((exports) => {
46963
47064
  exports.default = def;
46964
47065
  });
46965
47066
 
46966
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/pattern.js
47067
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/pattern.js
46967
47068
  var require_pattern = __commonJS((exports) => {
46968
47069
  Object.defineProperty(exports, "__esModule", { value: true });
46969
47070
  var code_1 = require_code2();
@@ -46997,7 +47098,7 @@ var require_pattern = __commonJS((exports) => {
46997
47098
  exports.default = def;
46998
47099
  });
46999
47100
 
47000
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitProperties.js
47101
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/limitProperties.js
47001
47102
  var require_limitProperties = __commonJS((exports) => {
47002
47103
  Object.defineProperty(exports, "__esModule", { value: true });
47003
47104
  var codegen_1 = require_codegen();
@@ -47023,7 +47124,7 @@ var require_limitProperties = __commonJS((exports) => {
47023
47124
  exports.default = def;
47024
47125
  });
47025
47126
 
47026
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/required.js
47127
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/required.js
47027
47128
  var require_required = __commonJS((exports) => {
47028
47129
  Object.defineProperty(exports, "__esModule", { value: true });
47029
47130
  var code_1 = require_code2();
@@ -47102,7 +47203,7 @@ var require_required = __commonJS((exports) => {
47102
47203
  exports.default = def;
47103
47204
  });
47104
47205
 
47105
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitItems.js
47206
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/limitItems.js
47106
47207
  var require_limitItems = __commonJS((exports) => {
47107
47208
  Object.defineProperty(exports, "__esModule", { value: true });
47108
47209
  var codegen_1 = require_codegen();
@@ -47128,7 +47229,7 @@ var require_limitItems = __commonJS((exports) => {
47128
47229
  exports.default = def;
47129
47230
  });
47130
47231
 
47131
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/equal.js
47232
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/runtime/equal.js
47132
47233
  var require_equal = __commonJS((exports) => {
47133
47234
  Object.defineProperty(exports, "__esModule", { value: true });
47134
47235
  var equal = require_fast_deep_equal();
@@ -47136,7 +47237,7 @@ var require_equal = __commonJS((exports) => {
47136
47237
  exports.default = equal;
47137
47238
  });
47138
47239
 
47139
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js
47240
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js
47140
47241
  var require_uniqueItems = __commonJS((exports) => {
47141
47242
  Object.defineProperty(exports, "__esModule", { value: true });
47142
47243
  var dataType_1 = require_dataType();
@@ -47200,7 +47301,7 @@ var require_uniqueItems = __commonJS((exports) => {
47200
47301
  exports.default = def;
47201
47302
  });
47202
47303
 
47203
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/const.js
47304
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/const.js
47204
47305
  var require_const = __commonJS((exports) => {
47205
47306
  Object.defineProperty(exports, "__esModule", { value: true });
47206
47307
  var codegen_1 = require_codegen();
@@ -47226,7 +47327,7 @@ var require_const = __commonJS((exports) => {
47226
47327
  exports.default = def;
47227
47328
  });
47228
47329
 
47229
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/enum.js
47330
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/enum.js
47230
47331
  var require_enum = __commonJS((exports) => {
47231
47332
  Object.defineProperty(exports, "__esModule", { value: true });
47232
47333
  var codegen_1 = require_codegen();
@@ -47272,7 +47373,7 @@ var require_enum = __commonJS((exports) => {
47272
47373
  exports.default = def;
47273
47374
  });
47274
47375
 
47275
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/index.js
47376
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/index.js
47276
47377
  var require_validation = __commonJS((exports) => {
47277
47378
  Object.defineProperty(exports, "__esModule", { value: true });
47278
47379
  var limitNumber_1 = require_limitNumber();
@@ -47302,7 +47403,7 @@ var require_validation = __commonJS((exports) => {
47302
47403
  exports.default = validation;
47303
47404
  });
47304
47405
 
47305
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js
47406
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js
47306
47407
  var require_additionalItems = __commonJS((exports) => {
47307
47408
  Object.defineProperty(exports, "__esModule", { value: true });
47308
47409
  exports.validateAdditionalItems = undefined;
@@ -47352,7 +47453,7 @@ var require_additionalItems = __commonJS((exports) => {
47352
47453
  exports.default = def;
47353
47454
  });
47354
47455
 
47355
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/items.js
47456
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/items.js
47356
47457
  var require_items = __commonJS((exports) => {
47357
47458
  Object.defineProperty(exports, "__esModule", { value: true });
47358
47459
  exports.validateTuple = undefined;
@@ -47406,7 +47507,7 @@ var require_items = __commonJS((exports) => {
47406
47507
  exports.default = def;
47407
47508
  });
47408
47509
 
47409
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js
47510
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js
47410
47511
  var require_prefixItems = __commonJS((exports) => {
47411
47512
  Object.defineProperty(exports, "__esModule", { value: true });
47412
47513
  var items_1 = require_items();
@@ -47420,7 +47521,7 @@ var require_prefixItems = __commonJS((exports) => {
47420
47521
  exports.default = def;
47421
47522
  });
47422
47523
 
47423
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/items2020.js
47524
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/items2020.js
47424
47525
  var require_items2020 = __commonJS((exports) => {
47425
47526
  Object.defineProperty(exports, "__esModule", { value: true });
47426
47527
  var codegen_1 = require_codegen();
@@ -47452,7 +47553,7 @@ var require_items2020 = __commonJS((exports) => {
47452
47553
  exports.default = def;
47453
47554
  });
47454
47555
 
47455
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/contains.js
47556
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/contains.js
47456
47557
  var require_contains = __commonJS((exports) => {
47457
47558
  Object.defineProperty(exports, "__esModule", { value: true });
47458
47559
  var codegen_1 = require_codegen();
@@ -47543,7 +47644,7 @@ var require_contains = __commonJS((exports) => {
47543
47644
  exports.default = def;
47544
47645
  });
47545
47646
 
47546
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/dependencies.js
47647
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/dependencies.js
47547
47648
  var require_dependencies = __commonJS((exports) => {
47548
47649
  Object.defineProperty(exports, "__esModule", { value: true });
47549
47650
  exports.validateSchemaDeps = exports.validatePropertyDeps = exports.error = undefined;
@@ -47628,7 +47729,7 @@ var require_dependencies = __commonJS((exports) => {
47628
47729
  exports.default = def;
47629
47730
  });
47630
47731
 
47631
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js
47732
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js
47632
47733
  var require_propertyNames = __commonJS((exports) => {
47633
47734
  Object.defineProperty(exports, "__esModule", { value: true });
47634
47735
  var codegen_1 = require_codegen();
@@ -47668,7 +47769,7 @@ var require_propertyNames = __commonJS((exports) => {
47668
47769
  exports.default = def;
47669
47770
  });
47670
47771
 
47671
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js
47772
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js
47672
47773
  var require_additionalProperties = __commonJS((exports) => {
47673
47774
  Object.defineProperty(exports, "__esModule", { value: true });
47674
47775
  var code_1 = require_code2();
@@ -47771,7 +47872,7 @@ var require_additionalProperties = __commonJS((exports) => {
47771
47872
  exports.default = def;
47772
47873
  });
47773
47874
 
47774
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/properties.js
47875
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/properties.js
47775
47876
  var require_properties = __commonJS((exports) => {
47776
47877
  Object.defineProperty(exports, "__esModule", { value: true });
47777
47878
  var validate_1 = require_validate();
@@ -47826,7 +47927,7 @@ var require_properties = __commonJS((exports) => {
47826
47927
  exports.default = def;
47827
47928
  });
47828
47929
 
47829
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js
47930
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js
47830
47931
  var require_patternProperties = __commonJS((exports) => {
47831
47932
  Object.defineProperty(exports, "__esModule", { value: true });
47832
47933
  var code_1 = require_code2();
@@ -47897,7 +47998,7 @@ var require_patternProperties = __commonJS((exports) => {
47897
47998
  exports.default = def;
47898
47999
  });
47899
48000
 
47900
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/not.js
48001
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/not.js
47901
48002
  var require_not = __commonJS((exports) => {
47902
48003
  Object.defineProperty(exports, "__esModule", { value: true });
47903
48004
  var util_1 = require_util();
@@ -47925,7 +48026,7 @@ var require_not = __commonJS((exports) => {
47925
48026
  exports.default = def;
47926
48027
  });
47927
48028
 
47928
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/anyOf.js
48029
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/anyOf.js
47929
48030
  var require_anyOf = __commonJS((exports) => {
47930
48031
  Object.defineProperty(exports, "__esModule", { value: true });
47931
48032
  var code_1 = require_code2();
@@ -47939,7 +48040,7 @@ var require_anyOf = __commonJS((exports) => {
47939
48040
  exports.default = def;
47940
48041
  });
47941
48042
 
47942
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/oneOf.js
48043
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/oneOf.js
47943
48044
  var require_oneOf = __commonJS((exports) => {
47944
48045
  Object.defineProperty(exports, "__esModule", { value: true });
47945
48046
  var codegen_1 = require_codegen();
@@ -47994,7 +48095,7 @@ var require_oneOf = __commonJS((exports) => {
47994
48095
  exports.default = def;
47995
48096
  });
47996
48097
 
47997
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/allOf.js
48098
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/allOf.js
47998
48099
  var require_allOf = __commonJS((exports) => {
47999
48100
  Object.defineProperty(exports, "__esModule", { value: true });
48000
48101
  var util_1 = require_util();
@@ -48018,7 +48119,7 @@ var require_allOf = __commonJS((exports) => {
48018
48119
  exports.default = def;
48019
48120
  });
48020
48121
 
48021
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/if.js
48122
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/if.js
48022
48123
  var require_if = __commonJS((exports) => {
48023
48124
  Object.defineProperty(exports, "__esModule", { value: true });
48024
48125
  var codegen_1 = require_codegen();
@@ -48084,7 +48185,7 @@ var require_if = __commonJS((exports) => {
48084
48185
  exports.default = def;
48085
48186
  });
48086
48187
 
48087
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/thenElse.js
48188
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/thenElse.js
48088
48189
  var require_thenElse = __commonJS((exports) => {
48089
48190
  Object.defineProperty(exports, "__esModule", { value: true });
48090
48191
  var util_1 = require_util();
@@ -48099,7 +48200,7 @@ var require_thenElse = __commonJS((exports) => {
48099
48200
  exports.default = def;
48100
48201
  });
48101
48202
 
48102
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/index.js
48203
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/index.js
48103
48204
  var require_applicator = __commonJS((exports) => {
48104
48205
  Object.defineProperty(exports, "__esModule", { value: true });
48105
48206
  var additionalItems_1 = require_additionalItems();
@@ -48142,7 +48243,7 @@ var require_applicator = __commonJS((exports) => {
48142
48243
  exports.default = getApplicator;
48143
48244
  });
48144
48245
 
48145
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/format/format.js
48246
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/format/format.js
48146
48247
  var require_format = __commonJS((exports) => {
48147
48248
  Object.defineProperty(exports, "__esModule", { value: true });
48148
48249
  var codegen_1 = require_codegen();
@@ -48229,7 +48330,7 @@ var require_format = __commonJS((exports) => {
48229
48330
  exports.default = def;
48230
48331
  });
48231
48332
 
48232
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/format/index.js
48333
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/format/index.js
48233
48334
  var require_format2 = __commonJS((exports) => {
48234
48335
  Object.defineProperty(exports, "__esModule", { value: true });
48235
48336
  var format_1 = require_format();
@@ -48237,7 +48338,7 @@ var require_format2 = __commonJS((exports) => {
48237
48338
  exports.default = format;
48238
48339
  });
48239
48340
 
48240
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/metadata.js
48341
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/metadata.js
48241
48342
  var require_metadata = __commonJS((exports) => {
48242
48343
  Object.defineProperty(exports, "__esModule", { value: true });
48243
48344
  exports.contentVocabulary = exports.metadataVocabulary = undefined;
@@ -48257,7 +48358,7 @@ var require_metadata = __commonJS((exports) => {
48257
48358
  ];
48258
48359
  });
48259
48360
 
48260
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/draft7.js
48361
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/draft7.js
48261
48362
  var require_draft7 = __commonJS((exports) => {
48262
48363
  Object.defineProperty(exports, "__esModule", { value: true });
48263
48364
  var core_1 = require_core2();
@@ -48276,7 +48377,7 @@ var require_draft7 = __commonJS((exports) => {
48276
48377
  exports.default = draft7Vocabularies;
48277
48378
  });
48278
48379
 
48279
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/discriminator/types.js
48380
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/discriminator/types.js
48280
48381
  var require_types = __commonJS((exports) => {
48281
48382
  Object.defineProperty(exports, "__esModule", { value: true });
48282
48383
  exports.DiscrError = undefined;
@@ -48287,7 +48388,7 @@ var require_types = __commonJS((exports) => {
48287
48388
  })(DiscrError || (exports.DiscrError = DiscrError = {}));
48288
48389
  });
48289
48390
 
48290
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/discriminator/index.js
48391
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/vocabularies/discriminator/index.js
48291
48392
  var require_discriminator = __commonJS((exports) => {
48292
48393
  Object.defineProperty(exports, "__esModule", { value: true });
48293
48394
  var codegen_1 = require_codegen();
@@ -48389,7 +48490,7 @@ var require_discriminator = __commonJS((exports) => {
48389
48490
  exports.default = def;
48390
48491
  });
48391
48492
 
48392
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/refs/json-schema-draft-07.json
48493
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/refs/json-schema-draft-07.json
48393
48494
  var require_json_schema_draft_07 = __commonJS((exports, module) => {
48394
48495
  module.exports = {
48395
48496
  $schema: "http://json-schema.org/draft-07/schema#",
@@ -48544,7 +48645,7 @@ var require_json_schema_draft_07 = __commonJS((exports, module) => {
48544
48645
  };
48545
48646
  });
48546
48647
 
48547
- // node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/ajv.js
48648
+ // node_modules/.bun/ajv@8.20.0/node_modules/ajv/dist/ajv.js
48548
48649
  var require_ajv = __commonJS((exports, module) => {
48549
48650
  Object.defineProperty(exports, "__esModule", { value: true });
48550
48651
  exports.MissingRefError = exports.ValidationError = exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = exports.Ajv = undefined;