@astrale-os/cli 1.0.0-beta.1 → 1.0.0-beta.2

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.
Files changed (180) hide show
  1. package/README.md +7 -11
  2. package/dist/astrale.js +3737 -3523
  3. package/dist/public/connect-core.js +396 -392
  4. package/dist/public/keys/index.js +371 -378
  5. package/dist/public/paths/index.js +371 -378
  6. package/dist/types/lib/idp.d.ts +6 -0
  7. package/dist/types/lib/meta.d.ts +2 -2
  8. package/package.json +6 -4
  9. package/src/admin/binding.ts +168 -0
  10. package/src/admin/catalog/__tests__/client.test.ts +2 -2
  11. package/src/admin/catalog/client.ts +4 -9
  12. package/src/admin/instance/__tests__/client.test.ts +2 -2
  13. package/src/admin/instance/client.ts +6 -11
  14. package/src/commands/__tests__/auth-login.test.ts +54 -1
  15. package/src/commands/__tests__/call.test.ts +5 -1
  16. package/src/commands/__tests__/domain-install-operation.test.ts +23 -7
  17. package/src/commands/__tests__/domain-install-owned.test.ts +5 -1
  18. package/src/commands/__tests__/domain-list.test.ts +83 -4
  19. package/src/commands/__tests__/install-identity-override.test.ts +30 -19
  20. package/src/commands/__tests__/studio-descriptor.test.ts +22 -0
  21. package/src/commands/__tests__/update.test.ts +23 -16
  22. package/src/commands/domain/install.ts +11 -15
  23. package/src/commands/domain/list.ts +17 -12
  24. package/src/commands/studio.ts +20 -0
  25. package/src/commands/update.ts +9 -5
  26. package/src/connection/__tests__/errors.test.ts +16 -12
  27. package/src/connection/__tests__/exchange.test.ts +6 -5
  28. package/src/connection/exchange.ts +5 -4
  29. package/src/lib/__tests__/domain-publication.test.ts +144 -0
  30. package/src/lib/__tests__/idp-session.test.ts +22 -0
  31. package/src/lib/__tests__/idp.test.ts +2 -0
  32. package/src/lib/__tests__/instance.test.ts +6 -0
  33. package/src/lib/__tests__/studio-server-deps.test.ts +53 -16
  34. package/src/lib/__tests__/update.test.ts +12 -0
  35. package/src/lib/domain-publication.ts +102 -0
  36. package/src/lib/idp.ts +5 -1
  37. package/src/lib/instance.ts +6 -1
  38. package/src/lib/login-flow.ts +13 -3
  39. package/src/lib/meta.ts +2 -2
  40. package/src/lib/update.ts +4 -4
  41. package/src/program/__tests__/program.test.ts +1 -1
  42. package/studio/client/dist/assets/{elk-api-D2xgMJvi.js → elk-api-lwhFo7vB.js} +1 -1
  43. package/studio/client/dist/assets/index-B-c-smo9.js +8 -0
  44. package/studio/client/dist/assets/index-BckHuAWk.js +81 -0
  45. package/studio/client/dist/assets/index-C4aNQ6dz.css +1 -0
  46. package/studio/client/dist/index.html +2 -2
  47. package/studio/package.json +3 -1
  48. package/studio/server/agent/bridge/stdio.ts +8 -1
  49. package/studio/server/agent/conversation.test.ts +10 -5
  50. package/studio/server/agent/conversation.ts +56 -8
  51. package/studio/server/agent/harness/codex/loadout.ts +18 -21
  52. package/studio/server/agent/harness/gateway/config.ts +20 -18
  53. package/studio/server/agent/harness/selection.ts +9 -1
  54. package/studio/server/agent/prompts/system.ts +3 -2
  55. package/studio/server/agent/prompts/turn.ts +13 -4
  56. package/studio/server/agent/run/completion.ts +2 -2
  57. package/studio/server/agent/run/preparation.ts +6 -5
  58. package/studio/server/agent/run/transcript.test.ts +35 -1
  59. package/studio/server/agent/run/transcript.ts +169 -3
  60. package/studio/server/agent/run/usage.test.ts +24 -0
  61. package/studio/server/agent/run/usage.ts +26 -1
  62. package/studio/server/api/canvas.ts +44 -0
  63. package/studio/server/api/comments.ts +85 -0
  64. package/studio/server/api/context.ts +61 -0
  65. package/studio/server/api/deployment.ts +39 -0
  66. package/studio/server/api/documents.ts +55 -0
  67. package/studio/server/api/domain.ts +59 -0
  68. package/studio/server/api/http.ts +45 -0
  69. package/studio/server/api/project.ts +57 -0
  70. package/studio/server/api/schema.ts +12 -0
  71. package/studio/server/api/views.ts +57 -0
  72. package/studio/server/api/workspace.ts +60 -0
  73. package/studio/server/api.test.ts +147 -0
  74. package/studio/server/api.ts +20 -422
  75. package/studio/server/cache.test.ts +111 -0
  76. package/studio/server/cache.ts +163 -9
  77. package/studio/server/cli-consumers.test.ts +494 -0
  78. package/studio/server/cli.test.ts +88 -0
  79. package/studio/server/cli.ts +240 -0
  80. package/studio/server/client-package.ts +25 -1
  81. package/studio/server/domain.test.ts +30 -2
  82. package/studio/server/domain.ts +14 -2
  83. package/studio/server/environment/dotenv-preview.test.ts +39 -0
  84. package/studio/server/environment/dotenv-preview.ts +27 -0
  85. package/studio/server/environment/files.test.ts +53 -0
  86. package/studio/server/{state/env.ts → environment/files.ts} +7 -48
  87. package/studio/server/{state → handoff}/copy.ts +21 -6
  88. package/studio/server/handoff/service.test.ts +22 -0
  89. package/studio/server/{state/handoff.ts → handoff/service.ts} +21 -14
  90. package/studio/server/instances/active.ts +72 -0
  91. package/studio/server/instances/deploy-record.test.ts +31 -0
  92. package/studio/server/instances/deploy-record.ts +37 -0
  93. package/studio/server/instances/deploy.ts +56 -0
  94. package/studio/server/{state/instance.test.ts → instances/probe.test.ts} +25 -21
  95. package/studio/server/instances/probe.ts +67 -0
  96. package/studio/server/instances/status.test.ts +12 -0
  97. package/studio/server/instances/status.ts +49 -0
  98. package/studio/server/introspect/anatomy/client-tree.ts +57 -0
  99. package/studio/server/introspect/anatomy/env-fields.ts +66 -0
  100. package/studio/server/introspect/anatomy/schema-definition.ts +53 -0
  101. package/studio/server/introspect/anatomy/source.ts +181 -0
  102. package/studio/server/introspect/anatomy/views/legacy.ts +232 -0
  103. package/studio/server/introspect/anatomy/views/routes.ts +105 -0
  104. package/studio/server/introspect/anatomy/views.ts +58 -0
  105. package/studio/server/introspect/anatomy-extras.test.ts +91 -4
  106. package/studio/server/introspect/anatomy-extras.ts +7 -726
  107. package/studio/server/introspect/anatomy.ts +46 -19
  108. package/studio/server/introspect/bundle.ts +15 -6
  109. package/studio/server/introspect/canonical-schema.test.ts +79 -0
  110. package/studio/server/introspect/canonical-schema.ts +80 -18
  111. package/studio/server/introspect/config-preview.test.ts +32 -0
  112. package/studio/server/introspect/config-preview.ts +119 -0
  113. package/studio/server/introspect/diff.test.ts +7 -11
  114. package/studio/server/introspect/diff.ts +28 -37
  115. package/studio/server/introspect/extractor.ts +8 -6
  116. package/studio/server/introspect/hash.ts +5 -2
  117. package/studio/server/introspect/overlay-tsmorph.ts +7 -1305
  118. package/studio/server/introspect/revision.test.ts +54 -0
  119. package/studio/server/introspect/revision.ts +49 -0
  120. package/studio/server/introspect/runtime.test.ts +63 -5
  121. package/studio/server/introspect/runtime.ts +49 -3
  122. package/studio/server/introspect/schema-ir-json.ts +181 -0
  123. package/studio/server/introspect/source-overlay/annotations.ts +14 -0
  124. package/studio/server/introspect/source-overlay/handlers.ts +681 -0
  125. package/studio/server/introspect/source-overlay/kernel-calls.ts +49 -0
  126. package/studio/server/introspect/source-overlay/project.ts +248 -0
  127. package/studio/server/introspect/source-overlay/spans.ts +360 -0
  128. package/studio/server/json.ts +46 -0
  129. package/studio/server/lifecycle.ts +5 -1
  130. package/studio/server/sse.test.ts +26 -0
  131. package/studio/server/sse.ts +4 -1
  132. package/studio/server/state/baseline.test.ts +212 -1
  133. package/studio/server/state/baseline.ts +145 -29
  134. package/studio/server/state/comments.test.ts +66 -1
  135. package/studio/server/state/comments.ts +173 -10
  136. package/studio/server/state/context.ts +34 -2
  137. package/studio/server/state/documents.ts +42 -1
  138. package/studio/server/state/integrations.ts +27 -1
  139. package/studio/server/state/layout.test.ts +34 -0
  140. package/studio/server/state/layout.ts +44 -17
  141. package/studio/server/state/settings.ts +29 -22
  142. package/studio/server/state/store.test.ts +122 -0
  143. package/studio/server/state/store.ts +66 -17
  144. package/studio/server/state/visibility.ts +22 -7
  145. package/studio/server/views/model.test.ts +57 -0
  146. package/studio/server/views/model.ts +66 -0
  147. package/studio/server/views/runtime.ts +40 -0
  148. package/studio/server/views/selection-repository.test.ts +31 -0
  149. package/studio/server/views/selection-repository.ts +60 -0
  150. package/studio/server/views/session.test.ts +73 -0
  151. package/studio/server/views/session.ts +166 -0
  152. package/studio/server/{state/views.test.ts → views/target.test.ts} +8 -159
  153. package/studio/server/views/target.ts +248 -0
  154. package/studio/server/watch.ts +1 -1
  155. package/studio/server/workspace/catalog.test.ts +17 -0
  156. package/studio/server/workspace/catalog.ts +43 -0
  157. package/studio/server/{state → workspace}/create.test.ts +1 -1
  158. package/studio/server/{state → workspace}/create.ts +1 -1
  159. package/studio/server/{state → workspace}/git.ts +1 -1
  160. package/studio/server/workspace/updates.ts +83 -0
  161. package/studio/server/workspace-state.ts +1 -1
  162. package/studio/shared/contracts/README.md +16 -0
  163. package/studio/shared/contracts/agent.ts +270 -0
  164. package/studio/shared/contracts/runtime.ts +50 -0
  165. package/studio/shared/contracts/schema.ts +462 -0
  166. package/studio/shared/contracts/surface.test.ts +319 -0
  167. package/studio/shared/contracts/workspace.ts +274 -0
  168. package/studio/shared/layout.test.ts +116 -0
  169. package/studio/shared/schema/identity.test.ts +58 -0
  170. package/studio/shared/schema/identity.ts +82 -0
  171. package/studio/shared/types.ts +11 -1099
  172. package/studio/tsconfig.json +1 -1
  173. package/viewer/dist/main.js +35 -35
  174. package/studio/client/dist/assets/index-BMdnsIJA.css +0 -1
  175. package/studio/client/dist/assets/index-D-vRV8w7.js +0 -8
  176. package/studio/client/dist/assets/index-LGSWRrk8.js +0 -81
  177. package/studio/server/state/catalog.ts +0 -117
  178. package/studio/server/state/instance.ts +0 -280
  179. package/studio/server/state/updates.ts +0 -63
  180. package/studio/server/state/views.ts +0 -535
@@ -134,7 +134,7 @@ function isPidAlive(pid) {
134
134
  function sleep(milliseconds) {
135
135
  return new Promise((resolve) => setTimeout(resolve, milliseconds));
136
136
  }
137
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/error/index.js
137
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/error/index.js
138
138
  class AuthValueError extends TypeError {
139
139
  code;
140
140
  path;
@@ -145,7 +145,7 @@ class AuthValueError extends TypeError {
145
145
  this.path = path;
146
146
  }
147
147
  }
148
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/error.js
148
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/error.js
149
149
  class BoundaryError extends TypeError {
150
150
  code;
151
151
  pointer;
@@ -169,7 +169,7 @@ class DecodeError extends SyntaxError {
169
169
  }
170
170
  }
171
171
 
172
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/limits.js
172
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/limits.js
173
173
  var defaultLimits = Object.freeze({
174
174
  maxBytes: 16 * 1024 * 1024,
175
175
  maxDepth: 64,
@@ -186,7 +186,7 @@ function limitsFor(options) {
186
186
  return candidate;
187
187
  }
188
188
 
189
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/unicode.js
189
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/unicode.js
190
190
  function utf8Length(value, max = Number.MAX_SAFE_INTEGER) {
191
191
  let bytes = 0;
192
192
  for (let index = 0;index < value.length; index += 1) {
@@ -250,7 +250,7 @@ function isLowSurrogate(codeUnit) {
250
250
  return codeUnit >= 56320 && codeUnit <= 57343;
251
251
  }
252
252
 
253
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/accept.js
253
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/accept.js
254
254
  function accept2(input, options) {
255
255
  const state = { active: new WeakSet, limits: limitsFor(options), members: 0 };
256
256
  try {
@@ -370,7 +370,7 @@ function reflect(operation, pointer, message) {
370
370
  function child(pointer, token) {
371
371
  return `${pointer}/${token.replaceAll("~", "~0").replaceAll("/", "~1")}`;
372
372
  }
373
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/json.js
373
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/json.js
374
374
  var exports_json = {};
375
375
  __export(exports_json, {
376
376
  DecodeError: () => DecodeError,
@@ -379,7 +379,7 @@ __export(exports_json, {
379
379
  serialize: () => serialize
380
380
  });
381
381
 
382
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/canonical.js
382
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/canonical.js
383
383
  var encoder = new TextEncoder;
384
384
  function serialize(input, options) {
385
385
  const limits = limitsFor(options);
@@ -1209,7 +1209,7 @@ function printParseErrorCode(code) {
1209
1209
  return "<unknown ParseErrorCode>";
1210
1210
  }
1211
1211
 
1212
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/decode.js
1212
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/decode.js
1213
1213
  var decoder = new TextDecoder("utf-8", { fatal: true, ignoreBOM: true });
1214
1214
  function decode(input, options) {
1215
1215
  const limits = limitsFor(options);
@@ -1309,11 +1309,11 @@ function endContainer(state, kind, offset) {
1309
1309
  function failSyntax(message, offset) {
1310
1310
  throw new DecodeError("JSON_SYNTAX", message, offset);
1311
1311
  }
1312
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/equal.js
1312
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/value/equal.js
1313
1313
  function equal(left, right) {
1314
1314
  return left === right || serialize(left) === serialize(right);
1315
1315
  }
1316
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/internal/authoring.js
1316
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/internal/authoring.js
1317
1317
  var AUTHORING = Symbol("astrale.v1.authoring");
1318
1318
  function authoringValue(kind, value) {
1319
1319
  return Object.freeze(Object.defineProperty({ ...value }, AUTHORING, {
@@ -1327,7 +1327,7 @@ function isAuthoringValue(value, kind) {
1327
1327
  return typeof value === "object" && value !== null && value[AUTHORING] === kind;
1328
1328
  }
1329
1329
 
1330
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/diagnostic.js
1330
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/diagnostic.js
1331
1331
  class DomainSchemaError extends Error {
1332
1332
  diagnostics;
1333
1333
  constructor(diagnostics) {
@@ -1348,7 +1348,7 @@ function formatDiagnostic(value) {
1348
1348
  return `${value.pointer || "/"} [${value.code}] ${value.message}`;
1349
1349
  }
1350
1350
 
1351
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/internal/diagnostic.js
1351
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/internal/diagnostic.js
1352
1352
  function assertKnownKeys(value, allowed, pointer = "") {
1353
1353
  const accepted = new Set(allowed);
1354
1354
  for (const key of Object.keys(value)) {
@@ -1364,7 +1364,7 @@ function escapeToken(value) {
1364
1364
  return value.replaceAll("~", "~0").replaceAll("/", "~1");
1365
1365
  }
1366
1366
 
1367
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/callable.js
1367
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/callable.js
1368
1368
  function fn(config) {
1369
1369
  assertKnownKeys(config, [
1370
1370
  "description",
@@ -1407,14 +1407,14 @@ var output = Object.freeze({
1407
1407
  function isCallableOutputAuthoring(value) {
1408
1408
  return isAuthoringValue(value, "callable-output");
1409
1409
  }
1410
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/core.js
1410
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/core.js
1411
1411
  function node(definition, properties) {
1412
1412
  return authoringValue("core-node", {
1413
1413
  class: definition,
1414
1414
  properties: accept2(properties)
1415
1415
  });
1416
1416
  }
1417
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/definition.js
1417
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/definition.js
1418
1418
  function defineInterface(config) {
1419
1419
  if (config.family === "both") {
1420
1420
  assertKnownKeys(config, ["family", "description", "extends", "properties"]);
@@ -22171,7 +22171,7 @@ var RE2JS = class RE2JS2 {
22171
22171
  }
22172
22172
  };
22173
22173
 
22174
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/regexp/pattern.js
22174
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/regexp/pattern.js
22175
22175
  function lowerIRegexpPattern(pattern) {
22176
22176
  let result = "";
22177
22177
  let escaped = false;
@@ -22210,7 +22210,7 @@ function lowerIRegexpPattern(pattern) {
22210
22210
  return result;
22211
22211
  }
22212
22212
 
22213
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/regexp/linear.js
22213
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/regexp/linear.js
22214
22214
  var linearRegExp = Object.assign((pattern, _unicodeFlag) => RE2JS.compile(pattern), {
22215
22215
  code: '((pattern) => require("re2js").RE2JS.compile(pattern))'
22216
22216
  });
@@ -22226,7 +22226,7 @@ function compileIRegexp(source) {
22226
22226
  return RE2JS.compile(lowerIRegexpPattern(source));
22227
22227
  }
22228
22228
 
22229
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/regexp/syntax.js
22229
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/regexp/syntax.js
22230
22230
  var CATEGORY = /^(?:L[lmotu]?|M[cen]?|N[dlo]?|P[cdfios]?|Z[lps]?|S[ckmo]?|C[cfno]?)$/u;
22231
22231
  var MAX_IREGEXP_CODE_POINTS = 4096;
22232
22232
  var MAX_IREGEXP_NESTING = 32;
@@ -22433,7 +22433,7 @@ function isUnicodeScalarString(value) {
22433
22433
  return true;
22434
22434
  }
22435
22435
 
22436
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/full-match.js
22436
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/full-match.js
22437
22437
  var sources = new WeakMap;
22438
22438
  function fullMatch(source) {
22439
22439
  if (!isIRegexp(source)) {
@@ -22449,12 +22449,12 @@ function fullMatch(source) {
22449
22449
  function fullMatchSource(check2) {
22450
22450
  return check2 !== null && typeof check2 === "object" ? sources.get(check2) : undefined;
22451
22451
  }
22452
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/internal/path.metadata.js
22452
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/internal/path.metadata.js
22453
22453
  var pathInputs = new WeakMap;
22454
22454
  function pathAccepts(schema) {
22455
22455
  return pathInputs.get(schema);
22456
22456
  }
22457
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/policy.js
22457
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/policy.js
22458
22458
  var policy = Object.freeze({
22459
22459
  allOf: (...policies) => composition("allOf", policies),
22460
22460
  anyOf: (...policies) => composition("anyOf", policies)
@@ -22520,7 +22520,7 @@ function nonEmpty(values, pointer) {
22520
22520
  if (values.length === 0)
22521
22521
  fail("BUILDER_POLICY_EMPTY_COMPOSITION", pointer, "Policy composition must be non-empty.");
22522
22522
  }
22523
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/property.js
22523
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/property.js
22524
22524
  function property(schema, options) {
22525
22525
  const admitted = options ?? {};
22526
22526
  assertKnownKeys(admitted, ["visibility", "required"]);
@@ -22554,7 +22554,7 @@ function auto(property2, options) {
22554
22554
  options: { on: Object.freeze(events), set: options.set }
22555
22555
  });
22556
22556
  }
22557
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/addressing/patterns.js
22557
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/addressing/patterns.js
22558
22558
  var DOMAIN_ORIGIN_PATTERN = /^(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?$/u;
22559
22559
  var MEMBER_NAME_PATTERN = /^[A-Za-z][A-Za-z0-9_]*$/u;
22560
22560
  var CORE_SLUG_PATTERN = /^[a-z][a-z0-9-]{0,99}$/u;
@@ -22574,7 +22574,7 @@ function assertMemberName(name) {
22574
22574
  throw new TypeError(`Invalid member name: ${JSON.stringify(name)}.`);
22575
22575
  }
22576
22576
  }
22577
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/addressing/ref.js
22577
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/addressing/ref.js
22578
22578
  var DEFINITION = /^(class|interface|function|policy|view|type)\.([A-Za-z][A-Za-z0-9_]*)$/u;
22579
22579
  var MEMBER = /^(class|interface)\.([A-Za-z][A-Za-z0-9_]*)\.(property|method)\.([A-Za-z][A-Za-z0-9_]*)$/u;
22580
22580
  function Ref(input) {
@@ -22666,7 +22666,7 @@ function assertOwner(owner, member) {
22666
22666
  function assertInvalidOwner(owner, member) {
22667
22667
  throw new TypeError(`${member} owner must be a Class or Interface Ref; received ${JSON.stringify(owner)}.`);
22668
22668
  }
22669
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/addressing/key.js
22669
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/addressing/key.js
22670
22670
  var admitKey = (input) => {
22671
22671
  const split = input.indexOf(":");
22672
22672
  if (split < 0 || !DOMAIN_ORIGIN_PATTERN.test(input.slice(0, split)) || !Ref.is(input.slice(split + 1))) {
@@ -22709,7 +22709,7 @@ function Key(input) {
22709
22709
  }
22710
22710
  Key2.is = is;
22711
22711
  })(Key || (Key = {}));
22712
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/addressing/property-key.js
22712
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/addressing/property-key.js
22713
22713
  function PropertyKey(input) {
22714
22714
  if (!PropertyKey.is(input)) {
22715
22715
  throw new TypeError(`Invalid canonical PropertyKey: ${JSON.stringify(input)}.`);
@@ -22735,7 +22735,7 @@ function PropertyKey(input) {
22735
22735
  }
22736
22736
  PropertyKey2.is = is;
22737
22737
  })(PropertyKey || (PropertyKey = {}));
22738
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/reference.js
22738
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/reference.js
22739
22739
  var DOMAIN_FORMAT = "astrale.dsl";
22740
22740
  var DOMAIN_VERSION = "v1";
22741
22741
  function schemaRefIndex(ref) {
@@ -22761,7 +22761,7 @@ function formatSchemaRef(ref) {
22761
22761
  return `${ref.origin}:${ref.kind}.${ref.name}`;
22762
22762
  }
22763
22763
 
22764
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/normalize.js
22764
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/normalize.js
22765
22765
  var textEncoder = new TextEncoder;
22766
22766
  function normalizePolicyDeclaration(value) {
22767
22767
  if ("match" in value) {
@@ -22978,7 +22978,7 @@ function isEdge(value) {
22978
22978
  return "source" in value;
22979
22979
  }
22980
22980
 
22981
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/location/keywords.js
22981
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/location/keywords.js
22982
22982
  var SCHEMA_ARRAY_KEYWORDS = new Set(["allOf", "anyOf", "oneOf", "prefixItems"]);
22983
22983
  var SCHEMA_MAP_KEYWORDS = new Set([
22984
22984
  "$defs",
@@ -23000,12 +23000,12 @@ var SCHEMA_SINGLE_KEYWORDS = new Set([
23000
23000
  "unevaluatedProperties"
23001
23001
  ]);
23002
23002
 
23003
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/object.js
23003
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/object.js
23004
23004
  function isValueObject(value) {
23005
23005
  return value !== null && typeof value === "object" && !Array.isArray(value);
23006
23006
  }
23007
23007
 
23008
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/profile/canonicalize.js
23008
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/profile/canonicalize.js
23009
23009
  var TYPE_ORDER = ["null", "boolean", "integer", "number", "string", "array", "object"];
23010
23010
  var TYPE_RANK = new Map(TYPE_ORDER.map((name, index) => [name, index]));
23011
23011
  var encoder2 = new TextEncoder;
@@ -23121,7 +23121,7 @@ function isJsonSchema(value) {
23121
23121
  return typeof value === "boolean" || isValueObject(value);
23122
23122
  }
23123
23123
 
23124
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/canonical/domain.js
23124
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/canonical/domain.js
23125
23125
  function canonicalizeDomainSchema(schema) {
23126
23126
  const classes = mapRecord(schema.classes, canonicalizeClass);
23127
23127
  const orientationByClass = new Map(Object.entries(classes).filter((entry) => entry[1].family === "edge").map(([name, declaration]) => [name, declaration.orientation]));
@@ -23322,7 +23322,7 @@ function copyJsonValue(value) {
23322
23322
  return Object.fromEntries(Object.entries(value).map(([key, entry]) => [key, copyJsonValue(entry)]));
23323
23323
  }
23324
23324
 
23325
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/canonical/freeze.js
23325
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/canonical/freeze.js
23326
23326
  function deepFreeze(value) {
23327
23327
  if (value === null || typeof value !== "object" || Object.isFrozen(value)) {
23328
23328
  return value;
@@ -23671,7 +23671,7 @@ class _SHA256 extends SHA2_32B {
23671
23671
  }
23672
23672
  var sha256 = /* @__PURE__ */ createHasher(() => new _SHA256, /* @__PURE__ */ oidNist(1));
23673
23673
 
23674
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/canonical/domain.digest.js
23674
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/canonical/domain.digest.js
23675
23675
  function digestDomainSchemaBytes(bytes) {
23676
23676
  let hexadecimal = "";
23677
23677
  for (const byte of sha256(bytes))
@@ -23679,12 +23679,12 @@ function digestDomainSchemaBytes(bytes) {
23679
23679
  return `sha256:${hexadecimal}`;
23680
23680
  }
23681
23681
 
23682
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.ir.js
23682
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.ir.js
23683
23683
  function asDomainSchema(value) {
23684
23684
  return deepFreeze(value);
23685
23685
  }
23686
23686
 
23687
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.revision.js
23687
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.revision.js
23688
23688
  function canonicalDomainSchema(value) {
23689
23689
  return canonicalDomainSchemaAfterValidation(value);
23690
23690
  }
@@ -23698,7 +23698,7 @@ function revisionOfDomainSchema(schema) {
23698
23698
  return canonicalDomainSchema(schema).revision;
23699
23699
  }
23700
23700
 
23701
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.lookup.js
23701
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.lookup.js
23702
23702
  class MemoryDomainSchemaLookup {
23703
23703
  #entries = new Map;
23704
23704
  constructor(entries = []) {
@@ -23732,7 +23732,7 @@ function lookupKey(origin, revision) {
23732
23732
  return `${origin}\x00${revision}`;
23733
23733
  }
23734
23734
 
23735
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/location/pointer.js
23735
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/location/pointer.js
23736
23736
  function appendPointer(pointer, token) {
23737
23737
  const encoded = String(token).replaceAll("~", "~0").replaceAll("/", "~1");
23738
23738
  return `${pointer}/${encoded}`;
@@ -23781,7 +23781,7 @@ function resolvePointer(root, tokens) {
23781
23781
  return value;
23782
23782
  }
23783
23783
 
23784
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/location/walk.js
23784
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/location/walk.js
23785
23785
  function walkSchema(schema, visit3, pointer = "") {
23786
23786
  const active = new Set;
23787
23787
  function walk(current, currentPointer, depth, parentKeyword) {
@@ -23832,12 +23832,12 @@ function isJsonSchema2(value) {
23832
23832
  return typeof value === "boolean" || isValueObject(value);
23833
23833
  }
23834
23834
 
23835
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/schema.js
23835
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/schema.js
23836
23836
  var JSON_SCHEMA_DIALECT = "https://json-schema.org/draft/2020-12/schema";
23837
23837
  var VALUE_SCHEMA_DIALECT = "https://schemas.astrale.ai/dsl/v1/value-schema";
23838
23838
  var VALUE_SCHEMA_VOCABULARY = "https://schemas.astrale.ai/dsl/v1/value-schema/vocabulary";
23839
23839
 
23840
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/extensions/node-path/schema.js
23840
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/extensions/node-path/schema.js
23841
23841
  var GRAPH_NODE_PATH_SCHEMA_ID = "https://schemas.astrale.ai/graph/1/node-path";
23842
23842
  var graphNodePathSchema = Object.freeze({
23843
23843
  $schema: JSON_SCHEMA_DIALECT,
@@ -23852,7 +23852,7 @@ function hasNodePathAnnotation(schema) {
23852
23852
  return isValueObject(schema) && schema.$ref === GRAPH_NODE_PATH_SCHEMA_ID && Object.hasOwn(schema, "x-astrale-path");
23853
23853
  }
23854
23854
 
23855
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/resources/registry.index.js
23855
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/resources/registry.index.js
23856
23856
  function indexRegistry(registry2, pointer) {
23857
23857
  const diagnostics = [];
23858
23858
  const domains = new Map;
@@ -23952,7 +23952,7 @@ function validateGraphNodePathResource(schema, pointer, diagnostics) {
23952
23952
  }
23953
23953
  }
23954
23954
 
23955
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/resources/references.js
23955
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/resources/references.js
23956
23956
  function resolveSchemaReference(ref, from, index, pointer, nodePathPlacement) {
23957
23957
  if (ref === GRAPH_NODE_PATH_SCHEMA_ID) {
23958
23958
  if (!nodePathPlacement) {
@@ -24039,7 +24039,7 @@ function parseNamedTypeReference(ref) {
24039
24039
  return { origin, name, pointer };
24040
24040
  }
24041
24041
 
24042
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/resources/closure.js
24042
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/resources/closure.js
24043
24043
  function collectResourceClosure(schema, context, index, pointer, namedType) {
24044
24044
  const diagnostics = [];
24045
24045
  const resources = new Map;
@@ -24089,7 +24089,7 @@ function escapeToken2(value) {
24089
24089
  return value.replaceAll("~", "~0").replaceAll("/", "~1");
24090
24090
  }
24091
24091
 
24092
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/instance/compiler.js
24092
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/instance/compiler.js
24093
24093
  function compileInstanceSchema(schema, registry2, pointer) {
24094
24094
  const indexed = indexRegistry(registry2, pointer);
24095
24095
  if (indexed.diagnostics.length > 0)
@@ -24153,7 +24153,7 @@ function failed(diagnostics) {
24153
24153
  };
24154
24154
  }
24155
24155
 
24156
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/instant.js
24156
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/instant.js
24157
24157
  var INSTANT_VALUE_KIND = "instant";
24158
24158
  var instant = Object.freeze({
24159
24159
  type: "string",
@@ -24183,7 +24183,7 @@ function isLeapYear(year) {
24183
24183
  return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0);
24184
24184
  }
24185
24185
 
24186
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/instance/assertions.js
24186
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/instance/assertions.js
24187
24187
  function matchesType(input, value) {
24188
24188
  switch (input) {
24189
24189
  case "null":
@@ -24240,7 +24240,7 @@ function powerOfTen(exponent) {
24240
24240
  return 10n ** BigInt(exponent);
24241
24241
  }
24242
24242
 
24243
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/instance/types.js
24243
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/instance/types.js
24244
24244
  function evaluation(failures = [], properties = new Set, items = new Set) {
24245
24245
  return { valid: failures.length === 0, failures, properties, items };
24246
24246
  }
@@ -24251,7 +24251,7 @@ function mergeAnnotations(targetProperties, targetItems, source) {
24251
24251
  targetItems.add(item);
24252
24252
  }
24253
24253
 
24254
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/instance/evaluator.js
24254
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/instance/evaluator.js
24255
24255
  function evaluateInstance(compiled, input) {
24256
24256
  return new InstanceEvaluator(compiled).evaluate(compiled.root, input, "");
24257
24257
  }
@@ -24608,7 +24608,7 @@ function invalid(instancePointer, keyword, message) {
24608
24608
  return { instancePointer, keyword, message };
24609
24609
  }
24610
24610
 
24611
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/profile/json.validate.js
24611
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/profile/json.validate.js
24612
24612
  function validateCanonicalJsonDomain(value, pointer) {
24613
24613
  try {
24614
24614
  accept2(value);
@@ -24621,7 +24621,7 @@ function validateCanonicalJsonDomain(value, pointer) {
24621
24621
  }
24622
24622
  }
24623
24623
 
24624
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/instance.validate.js
24624
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/instance.validate.js
24625
24625
  var validatorCache = new WeakMap;
24626
24626
  function validateJsonInstance(schema, value, registry2, pointer = "") {
24627
24627
  const diagnostics = [...validateCanonicalJsonDomain(value, pointer)];
@@ -24653,7 +24653,7 @@ function preparedInstanceValidator(schema, registry2, pointer) {
24653
24653
  return prepared;
24654
24654
  }
24655
24655
 
24656
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/core/validate.js
24656
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/core/validate.js
24657
24657
  function validateCore(environment, analysis, registry2) {
24658
24658
  const diagnostics = [];
24659
24659
  const nodesByRef = resolveCoreNodes(environment, analysis, registry2, diagnostics);
@@ -24882,7 +24882,7 @@ function escapePointer(value) {
24882
24882
  return value.replaceAll("~", "~0").replaceAll("/", "~1");
24883
24883
  }
24884
24884
 
24885
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/definition/analysis.js
24885
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/definition/analysis.js
24886
24886
  function analyzeDefinitions(environment) {
24887
24887
  const diagnostics = [];
24888
24888
  const result = new Map;
@@ -25062,7 +25062,7 @@ function canonicalPolicy(value) {
25062
25062
  return exports_json.serialize(value === undefined ? null : normalizePolicyChecks(value));
25063
25063
  }
25064
25064
 
25065
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/resolution/closure.js
25065
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/resolution/closure.js
25066
25066
  var knownClosure = new WeakMap;
25067
25067
  function rememberDomainClosure(schema, dependencies) {
25068
25068
  const entries = new Map;
@@ -25104,7 +25104,7 @@ function closureKey(origin, revision) {
25104
25104
  return `${origin}\x00${revision}`;
25105
25105
  }
25106
25106
 
25107
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/resolution/definition.index.js
25107
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/resolution/definition.index.js
25108
25108
  function indexSchemaDefinitions(schema) {
25109
25109
  const result = new Map;
25110
25110
  for (const [name, declaration] of Object.entries(schema.interfaces)) {
@@ -25128,7 +25128,7 @@ function indexSchemaDefinitions(schema) {
25128
25128
  return result;
25129
25129
  }
25130
25130
 
25131
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/resolution/origins.js
25131
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/resolution/origins.js
25132
25132
  function collectUsedForeignOrigins(schema) {
25133
25133
  return new Set(collectDomainSchemaRefs(schema).filter((ref) => ref.origin !== schema.origin).map((ref) => ref.origin));
25134
25134
  }
@@ -25248,7 +25248,7 @@ function collectValueSchemaRefs(schema, add) {
25248
25248
  });
25249
25249
  }
25250
25250
 
25251
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/resolution/context.js
25251
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/resolution/context.js
25252
25252
  function buildDomainResolutionContext(candidate, lookup) {
25253
25253
  const diagnostics = [];
25254
25254
  const dependencies = new Map;
@@ -25369,7 +25369,7 @@ function validateDependencyUse(candidate, directOrigins, diagnostics) {
25369
25369
  }
25370
25370
  }
25371
25371
 
25372
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/resolution/value.registry.js
25372
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/resolution/value.registry.js
25373
25373
  function createDomainValueSchemaRegistry(schema, lookup = lookupForDomainClosure(schema)) {
25374
25374
  return createValueSchemaRegistry(buildDomainResolutionContext(schema, lookup));
25375
25375
  }
@@ -25407,7 +25407,7 @@ function domainValueRegistry(schema) {
25407
25407
  });
25408
25408
  }
25409
25409
 
25410
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/ordering.js
25410
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/ordering.js
25411
25411
  var ALL_JSON_KINDS = new Set([
25412
25412
  "null",
25413
25413
  "boolean",
@@ -25565,7 +25565,7 @@ function schemaList2(input) {
25565
25565
  return Array.isArray(input) ? input : undefined;
25566
25566
  }
25567
25567
 
25568
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/definition/validate.js
25568
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/definition/validate.js
25569
25569
  function validateDefinitions(environment, analysis) {
25570
25570
  const diagnostics = [...analysis.diagnostics];
25571
25571
  const schema = environment.candidate;
@@ -25765,7 +25765,7 @@ function escapePointer2(value) {
25765
25765
  return value.replaceAll("~", "~0").replaceAll("/", "~1");
25766
25766
  }
25767
25767
 
25768
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/validation/context.js
25768
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/validation/context.js
25769
25769
  class PolicyValidationContext {
25770
25770
  environment;
25771
25771
  analysis;
@@ -25855,7 +25855,7 @@ function escapePointer3(value) {
25855
25855
  return value.replaceAll("~", "~0").replaceAll("/", "~1");
25856
25856
  }
25857
25857
 
25858
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/validation/budgets.js
25858
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/validation/budgets.js
25859
25859
  var MAX_PATTERN_DEPTH = 4;
25860
25860
  var MAX_BRANCHES = 8;
25861
25861
  var MAX_VARIABLES = 4;
@@ -25981,7 +25981,7 @@ function isEdge2(value) {
25981
25981
  return "source" in value;
25982
25982
  }
25983
25983
 
25984
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/validation/branches.js
25984
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/validation/branches.js
25985
25985
  function branchesOf(pattern, namespace) {
25986
25986
  const variables = collectVariableClasses(pattern, namespace);
25987
25987
  return branchesForNode(pattern, namespace, variables);
@@ -26133,7 +26133,7 @@ class UnionFind {
26133
26133
  }
26134
26134
  }
26135
26135
 
26136
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/validation/references.js
26136
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/validation/references.js
26137
26137
  function validatePolicyReferences(context) {
26138
26138
  for (const [name, declaration] of Object.entries(context.environment.candidate.policies)) {
26139
26139
  const pointer = `/policies/${escapePointer3(name)}`;
@@ -26258,7 +26258,7 @@ function isEdge4(value) {
26258
26258
  return "source" in value;
26259
26259
  }
26260
26260
 
26261
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/validation/typing.js
26261
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/validation/typing.js
26262
26262
  var IDENTITY_REF = {
26263
26263
  origin: "kernel.astrale.ai",
26264
26264
  kind: "interface",
@@ -26600,7 +26600,7 @@ class UnionFind2 {
26600
26600
  }
26601
26601
  }
26602
26602
 
26603
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/validation/uses.js
26603
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/validation/uses.js
26604
26604
  var KERNEL_ORIGIN = "kernel.astrale.ai";
26605
26605
  var PROJECTION_CLASS = nodeClassRef("Class");
26606
26606
  var PROJECTION_FUNCTION = nodeClassRef("Function");
@@ -26823,7 +26823,7 @@ function nodeClassRef(name) {
26823
26823
  return { origin: KERNEL_ORIGIN, kind: "class", name };
26824
26824
  }
26825
26825
 
26826
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/validation/validate.js
26826
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/policy/validation/validate.js
26827
26827
  function validatePolicies(environment, analysis) {
26828
26828
  const context = new PolicyValidationContext(environment, analysis);
26829
26829
  validatePolicyReferences(context);
@@ -26836,7 +26836,7 @@ function validatePolicies(environment, analysis) {
26836
26836
  return Object.freeze(context.diagnostics);
26837
26837
  }
26838
26838
 
26839
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/extensions/node-path/validate.js
26839
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/extensions/node-path/validate.js
26840
26840
  function validateNodePathExtension(schema, context, pointer, definitionExists) {
26841
26841
  const diagnostics = [];
26842
26842
  walkSchema(schema, (location) => {
@@ -26897,7 +26897,7 @@ function hasExactKeys(value, expected) {
26897
26897
  return actual.length === expected.length && expected.every((key) => Object.hasOwn(value, key));
26898
26898
  }
26899
26899
 
26900
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/resources/recursion.js
26900
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/resources/recursion.js
26901
26901
  var CONSUMING_SCHEMA_KEYWORDS = new Set([
26902
26902
  "additionalProperties",
26903
26903
  "contains",
@@ -26988,7 +26988,7 @@ function findCycle(node2, adjacency, visiting, visited) {
26988
26988
  return;
26989
26989
  }
26990
26990
 
26991
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/profile/meta-schema.compiled.js
26991
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/profile/meta-schema.compiled.js
26992
26992
  var meta_schema_compiled_default = validate20;
26993
26993
  var schema0 = { $schema: "https://json-schema.org/draft/2020-12/schema", $id: "https://json-schema.org/draft/2020-12/schema", $vocabulary: { "https://json-schema.org/draft/2020-12/vocab/core": true, "https://json-schema.org/draft/2020-12/vocab/applicator": true, "https://json-schema.org/draft/2020-12/vocab/unevaluated": true, "https://json-schema.org/draft/2020-12/vocab/validation": true, "https://json-schema.org/draft/2020-12/vocab/meta-data": true, "https://json-schema.org/draft/2020-12/vocab/format-annotation": true, "https://json-schema.org/draft/2020-12/vocab/content": true }, $dynamicAnchor: "meta", title: "Core and Validation specifications meta-schema", allOf: [{ $ref: "meta/core" }, { $ref: "meta/applicator" }, { $ref: "meta/unevaluated" }, { $ref: "meta/validation" }, { $ref: "meta/meta-data" }, { $ref: "meta/format-annotation" }, { $ref: "meta/content" }], type: ["object", "boolean"], $comment: "This meta-schema also defines keywords that have appeared in previous drafts in order to prevent incompatible extensions as they remain in common use.", properties: { definitions: { $comment: '"definitions" has been replaced by "$defs".', type: "object", additionalProperties: { $dynamicRef: "#meta" }, deprecated: true, default: {} }, dependencies: { $comment: '"dependencies" has been split and replaced by "dependentSchemas" and "dependentRequired" in order to serve their differing semantics.', type: "object", additionalProperties: { anyOf: [{ $dynamicRef: "#meta" }, { $ref: "meta/validation#/$defs/stringArray" }] }, deprecated: true, default: {} }, $recursiveAnchor: { $comment: '"$recursiveAnchor" has been replaced by "$dynamicAnchor".', $ref: "meta/core#/$defs/anchorString", deprecated: true }, $recursiveRef: { $comment: '"$recursiveRef" has been replaced by "$dynamicRef".', $ref: "meta/core#/$defs/uriReferenceString", deprecated: true } } };
26994
26994
  var schema1 = { $schema: "https://json-schema.org/draft/2020-12/schema", $id: "https://json-schema.org/draft/2020-12/meta/core", $vocabulary: { "https://json-schema.org/draft/2020-12/vocab/core": true }, $dynamicAnchor: "meta", title: "Core vocabulary meta-schema", type: ["object", "boolean"], properties: { $id: { $ref: "#/$defs/uriReferenceString", $comment: "Non-empty fragments not allowed.", pattern: "^[^#]*#?$" }, $schema: { $ref: "#/$defs/uriString" }, $ref: { $ref: "#/$defs/uriReferenceString" }, $anchor: { $ref: "#/$defs/anchorString" }, $dynamicRef: { $ref: "#/$defs/uriReferenceString" }, $dynamicAnchor: { $ref: "#/$defs/anchorString" }, $vocabulary: { type: "object", propertyNames: { $ref: "#/$defs/uriString" }, additionalProperties: { type: "boolean" } }, $comment: { type: "string" }, $defs: { type: "object", additionalProperties: { $dynamicRef: "#meta" } } }, $defs: { anchorString: { type: "string", pattern: "^[A-Za-z_][-A-Za-z0-9._]*$" }, uriString: { type: "string", format: "uri" }, uriReferenceString: { type: "string", format: "uri-reference" } } };
@@ -28868,7 +28868,7 @@ function validate20(data, { instancePath = "", parentData, parentDataProperty, r
28868
28868
  }
28869
28869
  validate20.evaluated = { props: { fullMatch: true, "x-astrale-path": true, definitions: true, dependencies: true, $recursiveAnchor: true, $recursiveRef: true, contentEncoding: true, contentMediaType: true, contentSchema: true, format: true, title: true, description: true, default: true, deprecated: true, readOnly: true, writeOnly: true, examples: true, type: true, const: true, enum: true, multipleOf: true, maximum: true, exclusiveMaximum: true, minimum: true, exclusiveMinimum: true, maxLength: true, minLength: true, pattern: true, maxItems: true, minItems: true, uniqueItems: true, maxContains: true, minContains: true, maxProperties: true, minProperties: true, required: true, dependentRequired: true, unevaluatedItems: true, unevaluatedProperties: true, prefixItems: true, items: true, contains: true, additionalProperties: true, properties: true, patternProperties: true, dependentSchemas: true, propertyNames: true, if: true, then: true, else: true, allOf: true, anyOf: true, oneOf: true, not: true, $id: true, $schema: true, $ref: true, $anchor: true, $dynamicRef: true, $dynamicAnchor: true, $vocabulary: true, $comment: true, $defs: true }, dynamicProps: false, dynamicItems: false };
28870
28870
 
28871
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/profile/meta-schema.validate.js
28871
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/profile/meta-schema.validate.js
28872
28872
  var validate = meta_schema_compiled_default;
28873
28873
  function validateValueSchemaMetaSchema(schema, pointer) {
28874
28874
  try {
@@ -28885,7 +28885,7 @@ function errorMessage(error51) {
28885
28885
  return error51 instanceof Error ? error51.message : String(error51);
28886
28886
  }
28887
28887
 
28888
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/profile/vocabulary.js
28888
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/profile/vocabulary.js
28889
28889
  var STANDARD_SCHEMA_KEYWORDS = new Set([
28890
28890
  "$anchor",
28891
28891
  "$comment",
@@ -28955,7 +28955,7 @@ var FORBIDDEN_DYNAMIC_KEYWORDS = new Set([
28955
28955
  "$vocabulary"
28956
28956
  ]);
28957
28957
 
28958
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/profile/rules.js
28958
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/profile/rules.js
28959
28959
  function validateSchemaProfile(schema, context, pointer, namedType) {
28960
28960
  const diagnostics = [];
28961
28961
  if (context === "named-type" && namedType === undefined) {
@@ -29092,7 +29092,7 @@ function escapeToken3(value) {
29092
29092
  return value.replaceAll("~", "~0").replaceAll("/", "~1");
29093
29093
  }
29094
29094
 
29095
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/profile/validate.js
29095
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/profile/validate.js
29096
29096
  function validateValueSchema(schema, context, registry2, pointer = "") {
29097
29097
  const diagnostics = [];
29098
29098
  diagnostics.push(...validateCanonicalJsonDomain(schema, pointer));
@@ -29123,7 +29123,7 @@ function orderAndDeduplicate(diagnostics) {
29123
29123
  return [...unique2.values()].sort((left, right) => left.pointer.localeCompare(right.pointer) || left.code.localeCompare(right.code) || left.message.localeCompare(right.message));
29124
29124
  }
29125
29125
 
29126
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/validation/value.js
29126
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/validation/value.js
29127
29127
  function validateEmbeddedValueSchemas(schema, registry2) {
29128
29128
  const diagnostics = [];
29129
29129
  for (const [name, value] of Object.entries(schema.types)) {
@@ -29165,7 +29165,7 @@ function escapePointer4(value) {
29165
29165
  return value.replaceAll("~", "~0").replaceAll("/", "~1");
29166
29166
  }
29167
29167
 
29168
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/view/validate.js
29168
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/view/validate.js
29169
29169
  function validateViews(environment) {
29170
29170
  const diagnostics = [];
29171
29171
  for (const [name, view] of Object.entries(environment.candidate.views)) {
@@ -29186,7 +29186,7 @@ function escapePointer5(value) {
29186
29186
  return value.replaceAll("~", "~0").replaceAll("/", "~1");
29187
29187
  }
29188
29188
 
29189
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.validate.js
29189
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.validate.js
29190
29190
  function validateDomainSchemaSemantics(schema, lookup) {
29191
29191
  const context = buildDomainResolutionContext(schema, lookup);
29192
29192
  const analysis = analyzeDefinitions(context);
@@ -29213,10 +29213,10 @@ function orderAndDeduplicate2(diagnostics) {
29213
29213
  return [...unique2.values()].sort((left, right) => left.pointer.localeCompare(right.pointer) || left.code.localeCompare(right.code) || left.message.localeCompare(right.message));
29214
29214
  }
29215
29215
 
29216
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/definition/data.js
29216
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/definition/data.js
29217
29217
  var MEDIA_TYPE_PATTERN = /^[a-z0-9][a-z0-9!#$&^_.+-]{0,126}\/[a-z0-9][a-z0-9!#$&^_.+-]{0,126}$/u;
29218
29218
 
29219
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/metadata.js
29219
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/metadata.js
29220
29220
  var exports_metadata = {};
29221
29221
  __export(exports_metadata, {
29222
29222
  description: () => description,
@@ -29233,7 +29233,7 @@ var icon = Object.freeze({
29233
29233
  maxLength: 8000
29234
29234
  });
29235
29235
 
29236
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/validation/domain.structure.js
29236
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/validation/domain.structure.js
29237
29237
  var originSchema = exports_external.string().min(3).max(253).regex(DOMAIN_ORIGIN_PATTERN);
29238
29238
  var memberNameSchema = exports_external.string().regex(MEMBER_NAME_PATTERN);
29239
29239
  var propertyKeySchema = exports_external.string().refine(PropertyKey.is, "Expected a canonical PropertyKey.");
@@ -29663,7 +29663,7 @@ function escapePointerSegment(segment) {
29663
29663
  return segment.replaceAll("~", "~0").replaceAll("/", "~1");
29664
29664
  }
29665
29665
 
29666
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/validation/domain.route.js
29666
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/validation/domain.route.js
29667
29667
  var decoders = new Map([
29668
29668
  [DOMAIN_FORMAT, new Map([[DOMAIN_VERSION, parseDomainSchemaStructure]])]
29669
29669
  ]);
@@ -29693,7 +29693,7 @@ function unsupported(code, pointer2, message) {
29693
29693
  throw new DomainSchemaError([diagnostic(code, pointer2, message)]);
29694
29694
  }
29695
29695
 
29696
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.accept.js
29696
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.accept.js
29697
29697
  function acceptDomainSchema(input, lookup = emptyDomainSchemaLookup()) {
29698
29698
  let admitted;
29699
29699
  try {
@@ -29713,7 +29713,7 @@ function acceptDomainSchema(input, lookup = emptyDomainSchemaLookup()) {
29713
29713
  return accepted;
29714
29714
  }
29715
29715
 
29716
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/callable.js
29716
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/callable.js
29717
29717
  class V1CallableCompiler {
29718
29718
  context;
29719
29719
  values;
@@ -29826,7 +29826,7 @@ function nonEmpty2(values, pointer2) {
29826
29826
  fail("BUILDER_POLICY_EMPTY_COMPOSITION", pointer2, "Policy check composition must be non-empty.");
29827
29827
  }
29828
29828
 
29829
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/core.js
29829
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/core.js
29830
29830
  function captureCore(input, context) {
29831
29831
  for (const [slug, node2] of Object.entries(input?.nodes ?? {})) {
29832
29832
  if (!isAuthoringValue(node2, "core-node")) {
@@ -29869,7 +29869,7 @@ function resolveEndpoint(value, context, pointer2) {
29869
29869
  return context.resolveCoreEndpoint(value, pointer2);
29870
29870
  }
29871
29871
 
29872
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/core.properties.js
29872
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/core.properties.js
29873
29873
  function canonicalizeCorePropertyKeys(candidate, lookup) {
29874
29874
  const definitions = analyzeDefinitions(buildDomainResolutionContext(candidate, lookup)).definitions;
29875
29875
  const nodes = Object.fromEntries(Object.entries(candidate.core.nodes).map(([slug, node2]) => {
@@ -29934,7 +29934,7 @@ function resolveInputKey(input, definition, byName, pointer2) {
29934
29934
  fail("BUILDER_CORE_PROPERTY", pointer2, `Property ${JSON.stringify(input)} is ambiguous; use one of: ${candidates.join(", ")}.`);
29935
29935
  }
29936
29936
 
29937
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/definition.js
29937
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/definition.js
29938
29938
  class V1DefinitionCompiler {
29939
29939
  context;
29940
29940
  values;
@@ -30116,7 +30116,7 @@ function constraints(options) {
30116
30116
  };
30117
30117
  }
30118
30118
 
30119
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/policy.js
30119
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/policy.js
30120
30120
  class V1PolicyCompiler {
30121
30121
  context;
30122
30122
  constructor(context) {
@@ -30164,7 +30164,7 @@ function assertPolicyCompositionAcyclic(declarations, origin) {
30164
30164
  visit3(name);
30165
30165
  }
30166
30166
 
30167
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/internal/authoring.lazy.js
30167
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/internal/authoring.lazy.js
30168
30168
  function resolveLazy(value, pointer2) {
30169
30169
  let current = value;
30170
30170
  const seen = new Set;
@@ -30178,7 +30178,7 @@ function resolveLazy(value, pointer2) {
30178
30178
  return current;
30179
30179
  }
30180
30180
 
30181
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/schema.ownership.js
30181
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/schema.ownership.js
30182
30182
  var definitionOwners = new WeakMap;
30183
30183
  var semanticOwners = new WeakMap;
30184
30184
 
@@ -30209,7 +30209,7 @@ class OwnershipCapture {
30209
30209
  }
30210
30210
  }
30211
30211
 
30212
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/schema.context.js
30212
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/schema.context.js
30213
30213
  class BuilderContext {
30214
30214
  origin;
30215
30215
  ownership = new OwnershipCapture;
@@ -30430,7 +30430,7 @@ function familyOfAuthoring(value) {
30430
30430
  return value.definitionKind === "node-class" ? "node" : "edge";
30431
30431
  }
30432
30432
 
30433
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/schema.capture.js
30433
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/schema.capture.js
30434
30434
  function captureSchema(input, context) {
30435
30435
  captureDefinitions(input.interfaces ?? {}, input.classes ?? {}, context);
30436
30436
  capturePolicies(input.policies ?? {}, context);
@@ -30507,7 +30507,7 @@ function assertFunction(value, pointer2) {
30507
30507
  }
30508
30508
  }
30509
30509
 
30510
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/value.path.js
30510
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/value.path.js
30511
30511
  function lowerPathSchema(context, resolveAccepts, pointer2) {
30512
30512
  const inputs = pathAccepts(context.zodSchema);
30513
30513
  if (inputs === undefined)
@@ -30528,7 +30528,7 @@ function escapeToken4(value) {
30528
30528
  return value.replaceAll("~", "~0").replaceAll("/", "~1");
30529
30529
  }
30530
30530
 
30531
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/value.zod.js
30531
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/value.zod.js
30532
30532
  function convertZodToValueSchema(zodSchema, context, registry2, pointer2 = "", options = {}) {
30533
30533
  const diagnostics = inspectZodSchema(zodSchema, pointer2, options.position ?? "value");
30534
30534
  if (diagnostics.length > 0)
@@ -30850,7 +30850,7 @@ function errorMessage2(error51) {
30850
30850
  return error51 instanceof Error ? error51.message : String(error51);
30851
30851
  }
30852
30852
 
30853
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/value.js
30853
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/value.js
30854
30854
  class BuilderValueSchemas {
30855
30855
  context;
30856
30856
  types;
@@ -30994,7 +30994,7 @@ function isRequired(value) {
30994
30994
  return !zodObjectPropertyIsOptional(value);
30995
30995
  }
30996
30996
 
30997
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/view.js
30997
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/view.js
30998
30998
  class V1ViewCompiler {
30999
30999
  context;
31000
31000
  constructor(context) {
@@ -31017,7 +31017,7 @@ function isTargetList(input) {
31017
31017
  return Array.isArray(input);
31018
31018
  }
31019
31019
 
31020
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/schema.js
31020
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/compiler/schema.js
31021
31021
  function compileSchema(origin, input) {
31022
31022
  const lookup = new MemoryDomainSchemaLookup(lookupEntriesForDependencies(input.dependencies ?? []));
31023
31023
  const candidate = assembleDomainSchema(origin, input, lookup);
@@ -31085,11 +31085,11 @@ function mapRecord2(record2, map2) {
31085
31085
  return Object.fromEntries(Object.entries(record2).map(([name, value]) => [name, map2(value, name)]));
31086
31086
  }
31087
31087
 
31088
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/schema.js
31088
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/builder/schema.js
31089
31089
  function defineSchema(origin, input) {
31090
31090
  return compileSchema(origin, input);
31091
31091
  }
31092
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/index.js
31092
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/index.js
31093
31093
  var exports_schema = {};
31094
31094
  __export(exports_schema, {
31095
31095
  Error: () => DomainSchemaError,
@@ -31110,7 +31110,7 @@ __export(exports_schema, {
31110
31110
  values: () => exports_value
31111
31111
  });
31112
31112
 
31113
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.codec.js
31113
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.codec.js
31114
31114
  function decodeDomainSchema(input, lookup = emptyDomainSchemaLookup()) {
31115
31115
  try {
31116
31116
  return acceptDomainSchema(exports_json.decode(input), lookup);
@@ -31127,7 +31127,7 @@ function serializeDomainSchema(schema) {
31127
31127
  function encodeDomainSchema(schema) {
31128
31128
  return exports_json.encode(schema);
31129
31129
  }
31130
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.resolve.js
31130
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.resolve.js
31131
31131
  var resolvedSchemas = new WeakMap;
31132
31132
  function resolveDomainSchema(schema) {
31133
31133
  const cached2 = resolvedSchemas.get(schema);
@@ -31157,7 +31157,7 @@ function resolveWithLookup(schema, lookup) {
31157
31157
  })
31158
31158
  });
31159
31159
  }
31160
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/dependency.meaning.js
31160
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/dependency.meaning.js
31161
31161
  var VALUE_SCHEMA_ANNOTATIONS = new Set([
31162
31162
  "$comment",
31163
31163
  "contentEncoding",
@@ -31711,7 +31711,7 @@ function requireMemberRef(ref) {
31711
31711
  function isJsonSchema3(value) {
31712
31712
  return typeof value === "boolean" || isValueObject(value);
31713
31713
  }
31714
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.header.js
31714
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/domain.header.js
31715
31715
  function readDomainSchemaHeader(input) {
31716
31716
  let admitted;
31717
31717
  try {
@@ -31728,7 +31728,7 @@ function readDomainSchemaHeader(input) {
31728
31728
  origin: structured.origin
31729
31729
  });
31730
31730
  }
31731
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/index.js
31731
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/schema/value/index.js
31732
31732
  var exports_value = {};
31733
31733
  __export(exports_value, {
31734
31734
  DIALECT: () => VALUE_SCHEMA_DIALECT,
@@ -31752,7 +31752,7 @@ function registryFor(owner) {
31752
31752
  }
31753
31753
  return registry2;
31754
31754
  }
31755
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/bundle/index.js
31755
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/bundle/index.js
31756
31756
  var exports_bundle = {};
31757
31757
  __export(exports_bundle, {
31758
31758
  FORMAT: () => DOMAIN_BUNDLE_FORMAT,
@@ -31764,7 +31764,7 @@ __export(exports_bundle, {
31764
31764
  serialize: () => serialize2
31765
31765
  });
31766
31766
 
31767
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/bundle/model.js
31767
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/bundle/model.js
31768
31768
  var DOMAIN_BUNDLE_FORMAT = "astrale.dsl.bundle";
31769
31769
  var DOMAIN_BUNDLE_VERSION = "v1";
31770
31770
  function createDomainSchemaBundle(root) {
@@ -31779,7 +31779,7 @@ function asDomainSchemaBundle(root, closure) {
31779
31779
  });
31780
31780
  }
31781
31781
 
31782
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/bundle/structure.js
31782
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/bundle/structure.js
31783
31783
  function parseDomainSchemaBundleStructure(input) {
31784
31784
  if (!isObject2(input)) {
31785
31785
  throw new DomainSchemaError([
@@ -31846,7 +31846,7 @@ function escapeToken5(value) {
31846
31846
  return value.replaceAll("~", "~0").replaceAll("/", "~1");
31847
31847
  }
31848
31848
 
31849
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/bundle/codec.js
31849
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/bundle/codec.js
31850
31850
  function acceptDomainSchemaBundle(input) {
31851
31851
  let admitted;
31852
31852
  try {
@@ -31981,7 +31981,7 @@ function keyOf(origin, revision) {
31981
31981
  return `${origin}\x00${revision}`;
31982
31982
  }
31983
31983
 
31984
- // node_modules/.pnpm/@astrale-os+kernel-dsl@file+vendor+kernel+astrale-os-kernel-dsl-0.2.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/bundle/index.js
31984
+ // node_modules/.pnpm/@astrale-os+kernel-dsl@0.2.0-beta.2_typescript@6.0.3/node_modules/@astrale-os/kernel-dsl/dist/v1/bundle/index.js
31985
31985
  function create(root) {
31986
31986
  return createDomainSchemaBundle(root);
31987
31987
  }
@@ -31997,7 +31997,7 @@ function encode4(bundle) {
31997
31997
  function serialize2(bundle) {
31998
31998
  return serializeDomainSchemaBundle(bundle);
31999
31999
  }
32000
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/node/identity/id.js
32000
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/node/identity/id.js
32001
32001
  var NODE_ID_MAX_LENGTH = 255;
32002
32002
  var NODE_ID_INVALID_CHARACTER = /[^A-Za-z0-9._-]/u;
32003
32003
  var NODE_ID_ERROR_MESSAGE = "NodeId must be 1-255 ASCII characters drawn from [A-Za-z0-9._-].";
@@ -32020,7 +32020,7 @@ function isNodeId(input) {
32020
32020
  return typeof input === "string" && input.length > 0 && input.length <= NODE_ID_MAX_LENGTH && !NODE_ID_INVALID_CHARACTER.test(input);
32021
32021
  }
32022
32022
  var nodeIdSchema = exports_external.string().refine(isNodeId, NODE_ID_ERROR_MESSAGE).transform((value) => value);
32023
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/node/identity/order.js
32023
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/node/identity/order.js
32024
32024
  var encoder3 = new TextEncoder;
32025
32025
  function compareNodeIds(left, right) {
32026
32026
  const a = encoder3.encode(left);
@@ -32033,14 +32033,14 @@ function compareNodeIds(left, right) {
32033
32033
  }
32034
32034
  return Math.sign(a.length - b.length);
32035
32035
  }
32036
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/node/model/index.js
32036
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/node/model/index.js
32037
32037
  function node2(value) {
32038
32038
  return Object.freeze({ id: value.id, class: value.class, props: value.props });
32039
32039
  }
32040
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/expression/normalization/canonicalize.js
32040
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/expression/normalization/canonicalize.js
32041
32041
  var EXPRESSION_DEPTH_LIMIT = 32;
32042
32042
  var EXPRESSION_OPERAND_LIMIT = 64;
32043
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/grant/unresolved/limits.js
32043
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/grant/unresolved/limits.js
32044
32044
  var CREDENTIAL_NESTING_DEPTH_LIMIT = 3;
32045
32045
  var CREDENTIAL_BYTES_LIMIT = 64 * 1024;
32046
32046
  var limits = Object.freeze({
@@ -32048,7 +32048,7 @@ var limits = Object.freeze({
32048
32048
  operandsPerExpression: EXPRESSION_OPERAND_LIMIT,
32049
32049
  credentialNestingDepth: CREDENTIAL_NESTING_DEPTH_LIMIT
32050
32050
  });
32051
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/authority/admission/admission.js
32051
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/authority/admission/admission.js
32052
32052
  var limits2 = Object.freeze({
32053
32053
  expressionDepth: 64,
32054
32054
  operandsPerExpression: 512,
@@ -32056,7 +32056,7 @@ var limits2 = Object.freeze({
32056
32056
  repeatMaximum: 16
32057
32057
  });
32058
32058
  var MAX_BOOLEAN_OPERANDS = limits2.operandsPerExpression;
32059
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/claims/index.js
32059
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/claims/index.js
32060
32060
  var exports_claims = {};
32061
32061
  __export(exports_claims, {
32062
32062
  MAX_REQUIRED_CLAIMS: () => MAX_REQUIRED_CLAIMS,
@@ -32064,9 +32064,9 @@ __export(exports_claims, {
32064
32064
  verifyRequired: () => verifyRequired
32065
32065
  });
32066
32066
 
32067
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/claims/admission/admission.js
32067
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/claims/admission/admission.js
32068
32068
  var MAX_REQUIRED_CLAIMS = 64;
32069
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/claims/evaluation/match.js
32069
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/claims/evaluation/match.js
32070
32070
  function matches(constraint, claims) {
32071
32071
  const actual = claims[constraint.claim];
32072
32072
  switch (constraint.op) {
@@ -32081,7 +32081,7 @@ function matches(constraint, claims) {
32081
32081
  function equal2(left, right) {
32082
32082
  return exports_json.serialize(left) === exports_json.serialize(right);
32083
32083
  }
32084
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/claims/evaluation/verify-required.js
32084
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/claims/evaluation/verify-required.js
32085
32085
  function verifyRequired(constraints2, claims) {
32086
32086
  for (let index = 0;index < constraints2.length; index++) {
32087
32087
  if (!matches(constraints2[index], claims)) {
@@ -32089,18 +32089,18 @@ function verifyRequired(constraints2, claims) {
32089
32089
  }
32090
32090
  }
32091
32091
  }
32092
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/credential/inspection/inspect.js
32092
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/credential/inspection/inspect.js
32093
32093
  var MAX_CREDENTIAL_BYTES = 64 * 1024;
32094
32094
  var decoder2 = new TextDecoder("utf-8", { fatal: true });
32095
32095
  var encoder4 = new TextEncoder;
32096
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/issuer/index.js
32096
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/issuer/index.js
32097
32097
  var exports_issuer = {};
32098
32098
  __export(exports_issuer, {
32099
32099
  accept: () => accept6,
32100
32100
  is: () => is
32101
32101
  });
32102
32102
 
32103
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/issuer/issuer-id.js
32103
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/issuer/issuer-id.js
32104
32104
  var AUTH_DOMAIN = /^(?=.{1,253}$)(?:(?!-)[a-z0-9-]{1,63}(?<!-)\.)+(?:(?!-)[a-z0-9-]{2,63}(?<!-))$/i;
32105
32105
  var ABSOLUTE_URI = /^([a-z][a-z0-9+.-]*):(.*)$/i;
32106
32106
  var DEFAULT_PORTS = Object.freeze({ http: "80", https: "443" });
@@ -32181,17 +32181,17 @@ function normalizeAuthority(authority, scheme) {
32181
32181
  function invalid2() {
32182
32182
  throw new AuthValueError("AUTH_ISSUER_INVALID", "Expected a supported issuer identifier");
32183
32183
  }
32184
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/delegation/admission.js
32184
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/delegation/admission.js
32185
32185
  var MAX_CREDENTIAL_BYTES2 = 64 * 1024;
32186
32186
  var encoder5 = new TextEncoder;
32187
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/jwk/index.js
32187
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/jwk/index.js
32188
32188
  var exports_jwk = {};
32189
32189
  __export(exports_jwk, {
32190
32190
  acceptPublic: () => acceptPublic,
32191
32191
  thumbprint: () => thumbprint
32192
32192
  });
32193
32193
 
32194
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/jwk/public-key.js
32194
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/jwk/public-key.js
32195
32195
  var ASYMMETRIC_TYPES = new Set(["EC", "OKP", "RSA"]);
32196
32196
  var PRIVATE_MEMBERS = ["d", "p", "q", "dp", "dq", "qi", "oth", "k"];
32197
32197
  var BASE64URL = /^[A-Za-z0-9_-]+$/u;
@@ -32246,7 +32246,7 @@ function deepFreeze2(input) {
32246
32246
  function invalid3(path2, message) {
32247
32247
  throw new AuthValueError("AUTH_JWK_INVALID", message, path2);
32248
32248
  }
32249
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/jwk/thumbprint.js
32249
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/jwk/thumbprint.js
32250
32250
  async function thumbprint(input) {
32251
32251
  const key = acceptPublic(input);
32252
32252
  const canonical = JSON.stringify(members(key));
@@ -32268,7 +32268,7 @@ function base64url3(input) {
32268
32268
  binary += String.fromCharCode(byte);
32269
32269
  return btoa(binary).replaceAll("+", "-").replaceAll("/", "_").replace(/=+$/u, "");
32270
32270
  }
32271
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/class/path.js
32271
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/class/path.js
32272
32272
  var CLASS_PATH_PATTERN = /^\/:([^:]+):class\.([A-Za-z][A-Za-z0-9_]*)$/u;
32273
32273
  var ClassPath = Object.freeze({
32274
32274
  parse(input) {
@@ -32322,7 +32322,7 @@ function describe5(input) {
32322
32322
  return String(input);
32323
32323
  }
32324
32324
  }
32325
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/edge/slug/index.js
32325
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/edge/slug/index.js
32326
32326
  var edgeSlugSchema = Object.freeze({
32327
32327
  type: "string",
32328
32328
  minLength: 1,
@@ -32349,7 +32349,7 @@ function EdgeSlug(input) {
32349
32349
  return input;
32350
32350
  }
32351
32351
 
32352
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/path/language/error.js
32352
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/path/language/error.js
32353
32353
  class PathError extends TypeError {
32354
32354
  input;
32355
32355
  code = "PATH_INVALID";
@@ -32371,7 +32371,7 @@ function pathError(input, code, message, position) {
32371
32371
  ]);
32372
32372
  }
32373
32373
 
32374
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/path/language/syntax.js
32374
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/path/language/syntax.js
32375
32375
  var PROJECTION_KINDS = new Set([
32376
32376
  "class",
32377
32377
  "interface",
@@ -32467,7 +32467,7 @@ function parseIdProgram(input) {
32467
32467
  }
32468
32468
  function parseDomainProgram(input) {
32469
32469
  if (!input.startsWith("/:")) {
32470
- throw pathError(input, "PATH_UNKNOWN_FORM", "Path must have an Id or Domain anchor.", 0);
32470
+ throw pathError(input, "PATH_UNKNOWN_FORM", "Path must start with a Domain origin (`/:<domain-origin>`) or a Node ID (`@<node-id>`).", 0);
32471
32471
  }
32472
32472
  const originEnd = findStepStart(input, 2);
32473
32473
  const origin = input.slice(2, originEnd);
@@ -32650,12 +32650,12 @@ function invalidEdgeSlug(input, position) {
32650
32650
  throw pathError(input, "PATH_INVALID_EDGE_SLUG", "Traversal Edge slug is invalid.", position);
32651
32651
  }
32652
32652
 
32653
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/path/language/index.js
32653
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/path/language/index.js
32654
32654
  function NodePath(input) {
32655
32655
  return serializePathAST(parsePathAST(input));
32656
32656
  }
32657
32657
 
32658
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/path/authoring/path.js
32658
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/path/authoring/path.js
32659
32659
  class Path {
32660
32660
  raw;
32661
32661
  ast;
@@ -32771,7 +32771,7 @@ function defineRefinement(path2) {
32771
32771
  function define(target, key, value) {
32772
32772
  Object.defineProperty(target, key, { enumerable: true, value });
32773
32773
  }
32774
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/edge/model/index.js
32774
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/edge/model/index.js
32775
32775
  function edge2(value) {
32776
32776
  return Object.freeze({
32777
32777
  source: value.source,
@@ -32781,24 +32781,24 @@ function edge2(value) {
32781
32781
  props: value.props
32782
32782
  });
32783
32783
  }
32784
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/edge/identity/order.js
32784
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/edge/identity/order.js
32785
32785
  function compareEdgeKeys(left, right) {
32786
32786
  return compareNodeIds(left.source, right.source) || compareNodeIds(left.target, right.target) || compareAscii(left.class, right.class);
32787
32787
  }
32788
32788
  function compareAscii(left, right) {
32789
32789
  return left < right ? -1 : left > right ? 1 : 0;
32790
32790
  }
32791
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/edge/identity/index.js
32791
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/edge/identity/index.js
32792
32792
  function encodeEdgeKey(key) {
32793
32793
  return JSON.stringify([key.source, key.target, key.class]);
32794
32794
  }
32795
32795
 
32796
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/edge/index.js
32796
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/edge/index.js
32797
32797
  function edgeKeyOf(edge3) {
32798
32798
  return Object.freeze({ source: edge3.source, target: edge3.target, class: edge3.class });
32799
32799
  }
32800
32800
 
32801
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/properties/value/index.js
32801
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/properties/value/index.js
32802
32802
  function normalizeProperties(input, pointer2 = "") {
32803
32803
  const admitted = accept2(input);
32804
32804
  if (admitted === null || typeof admitted !== "object" || Array.isArray(admitted)) {
@@ -32839,7 +32839,7 @@ function compare(left, right) {
32839
32839
  return left < right ? -1 : left > right ? 1 : 0;
32840
32840
  }
32841
32841
 
32842
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/properties/delta/index.js
32842
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/properties/delta/index.js
32843
32843
  function normalizeDelta(input, pointer2 = "") {
32844
32844
  const admitted = accept2(input);
32845
32845
  if (admitted === null || typeof admitted !== "object" || Array.isArray(admitted) || !hasExactKeys3(admitted, ["set", "unset"])) {
@@ -32882,7 +32882,7 @@ function hasExactKeys3(value, expected) {
32882
32882
  function child2(pointer2, suffix) {
32883
32883
  return `${pointer2}/${suffix}`;
32884
32884
  }
32885
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/properties/merge/index.js
32885
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/properties/merge/index.js
32886
32886
  function merge2(base, current, target) {
32887
32887
  const keys = [...new Set([...Object.keys(base), ...Object.keys(current), ...Object.keys(target)])].map(PropertyKey).sort(compare3);
32888
32888
  const output2 = [];
@@ -32922,7 +32922,7 @@ function equalState(left, right) {
32922
32922
  function compare3(left, right) {
32923
32923
  return left < right ? -1 : left > right ? 1 : 0;
32924
32924
  }
32925
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/admission/error.js
32925
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/admission/error.js
32926
32926
  class GraphAdmissionError extends TypeError {
32927
32927
  diagnostics;
32928
32928
  code = "GRAPH_ADMISSION_REJECTED";
@@ -32933,7 +32933,7 @@ class GraphAdmissionError extends TypeError {
32933
32933
  }
32934
32934
  }
32935
32935
 
32936
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/admission/model.js
32936
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/admission/model.js
32937
32937
  function graphDiagnostic(code, path2, message) {
32938
32938
  return Object.freeze({ code, path: path2, message });
32939
32939
  }
@@ -32944,7 +32944,7 @@ function compareText(left, right) {
32944
32944
  return left < right ? -1 : left > right ? 1 : 0;
32945
32945
  }
32946
32946
 
32947
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/admission/admit.js
32947
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/admission/admit.js
32948
32948
  function admitGraphData(data, context) {
32949
32949
  const diagnostics = [];
32950
32950
  const classes = new Map;
@@ -33100,7 +33100,7 @@ function safeJson(value) {
33100
33100
  return "<non-json>";
33101
33101
  }
33102
33102
  }
33103
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/delta/index.js
33103
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/delta/index.js
33104
33104
  function delta3(left, right) {
33105
33105
  const leftNodes = new Map(left.nodes.all.map((node3) => [node3.id, node3]));
33106
33106
  const additionsNodes = [];
@@ -33179,7 +33179,7 @@ function invalid4(message) {
33179
33179
  throw new TypeError(message);
33180
33180
  }
33181
33181
 
33182
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/indexes/collection.js
33182
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/indexes/collection.js
33183
33183
  var EMPTY_NODES = Object.freeze([]);
33184
33184
  var EMPTY_EDGES = Object.freeze([]);
33185
33185
  function createCollections(nodes, edges, indexes) {
@@ -33248,7 +33248,7 @@ function freezeBuckets(map2) {
33248
33248
  for (const [key, bucket] of map2)
33249
33249
  map2.set(key, Object.freeze(bucket));
33250
33250
  }
33251
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/merge/index.js
33251
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/merge/index.js
33252
33252
  function mergeData2(base, current, target) {
33253
33253
  const baseNodes = new Map(base.nodes.map((node3) => [node3.id, node3]));
33254
33254
  const currentNodes = new Map(current.nodes.map((node3) => [node3.id, node3]));
@@ -33371,7 +33371,7 @@ function data2(nodes, edges) {
33371
33371
  return Object.freeze({ nodes: Object.freeze(nodes), edges: Object.freeze(edges) });
33372
33372
  }
33373
33373
 
33374
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/navigation/error.js
33374
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/navigation/error.js
33375
33375
  class GraphPathWalkerRequiredError extends Error {
33376
33376
  path;
33377
33377
  code = "GRAPH_PATH_WALKER_REQUIRED";
@@ -33381,7 +33381,7 @@ class GraphPathWalkerRequiredError extends Error {
33381
33381
  this.name = "GraphPathWalkerRequiredError";
33382
33382
  }
33383
33383
  }
33384
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/graph.js
33384
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/graph.js
33385
33385
  var EMPTY_DATA = Object.freeze({
33386
33386
  nodes: Object.freeze([]),
33387
33387
  edges: Object.freeze([])
@@ -33462,7 +33462,7 @@ function equalEdge2(left, right) {
33462
33462
  const rightKey = edgeKeyOf(right);
33463
33463
  return leftKey.source === rightKey.source && leftKey.target === rightKey.target && leftKey.class === rightKey.class && left.slug === right.slug && equal3(left.props, right.props);
33464
33464
  }
33465
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/wire.js
33465
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/wire.js
33466
33466
  function decodeWire(schema, input, invalid5) {
33467
33467
  const result = schema.safeParse(input);
33468
33468
  if (result.success)
@@ -33476,7 +33476,7 @@ function escapePointer6(value) {
33476
33476
  return value.replaceAll("~", "~0").replaceAll("/", "~1");
33477
33477
  }
33478
33478
 
33479
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/model/model.js
33479
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/model/model.js
33480
33480
  var LOCAL_BINDING_PATTERN = /^[A-Za-z][A-Za-z0-9_]{0,63}$/u;
33481
33481
  function LocalBinding(input) {
33482
33482
  if (!isLocalBinding(input)) {
@@ -33488,7 +33488,7 @@ function isLocalBinding(input) {
33488
33488
  return typeof input === "string" && LOCAL_BINDING_PATTERN.test(input);
33489
33489
  }
33490
33490
 
33491
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/model/wire.js
33491
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/model/wire.js
33492
33492
  var text = exports_external.string().min(1);
33493
33493
  var props = exports_external.record(exports_external.string(), exports_external.unknown());
33494
33494
  var binding = exports_external.string().check(fullMatch("[A-Za-z][A-Za-z0-9_]{0,63}"));
@@ -33518,7 +33518,7 @@ var graphDataSchema = exports_external.strictObject({
33518
33518
  edges: exports_external.array(graphEdgeSchema)
33519
33519
  });
33520
33520
 
33521
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/model/codec.js
33521
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/model/codec.js
33522
33522
  class GraphDataDecodeError extends TypeError {
33523
33523
  path;
33524
33524
  code = "GRAPH_DATA_INVALID";
@@ -33735,10 +33735,10 @@ function errorPointer(error51, fallback = "") {
33735
33735
  return error51 instanceof BoundaryError ? error51.pointer : fallback;
33736
33736
  }
33737
33737
 
33738
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/model/index.js
33738
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/graph/model/index.js
33739
33739
  var GraphData = Object.freeze({ decode: decodeGraphData, encode: encodeGraphData });
33740
33740
  var GraphSpec = Object.freeze({ decode: decodeGraphSpec, encode: encodeGraphSpec });
33741
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/language/error.js
33741
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/language/error.js
33742
33742
  class QueryASTDecodeError extends TypeError {
33743
33743
  path;
33744
33744
  code = "QUERY_AST_INVALID";
@@ -33748,7 +33748,7 @@ class QueryASTDecodeError extends TypeError {
33748
33748
  this.name = "QueryASTDecodeError";
33749
33749
  }
33750
33750
  }
33751
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/language/model.js
33751
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/language/model.js
33752
33752
  var QUERY_AST_FORMAT = "astrale.graph.query";
33753
33753
  var QUERY_AST_VERSION = "v6";
33754
33754
  var QUERY_AST_LIMITS = Object.freeze({
@@ -33758,7 +33758,7 @@ var QUERY_AST_LIMITS = Object.freeze({
33758
33758
  bindings: 513
33759
33759
  });
33760
33760
 
33761
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/language/wire.js
33761
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/language/wire.js
33762
33762
  var text2 = exports_external.string().min(1);
33763
33763
  var binding3 = text2.max(64);
33764
33764
  var definition = exports_external.strictObject({
@@ -33835,7 +33835,7 @@ var queryAstSchema = exports_external.strictObject({
33835
33835
  select: exports_external.discriminatedUnion("kind", [graphSelect, nodeSelect, edgeSelect])
33836
33836
  });
33837
33837
 
33838
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/language/codec.js
33838
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/language/codec.js
33839
33839
  var admittedQueryASTs = new WeakSet;
33840
33840
  function decodeQueryAST(input) {
33841
33841
  try {
@@ -34097,7 +34097,7 @@ function invalid6(path2, message, cause) {
34097
34097
  function errorPointer2(error51) {
34098
34098
  return error51 instanceof BoundaryError ? error51.pointer : "";
34099
34099
  }
34100
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/language/fingerprint.js
34100
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/language/fingerprint.js
34101
34101
  var QUERY_DOMAIN = utf8ToBytes("astrale-query-ast-v6\x00");
34102
34102
  var fingerprints = new WeakMap;
34103
34103
  function fingerprintQueryAST(input) {
@@ -34234,7 +34234,7 @@ function compareBytes2(left, right) {
34234
34234
  }
34235
34235
  return Math.sign(left.length - right.length);
34236
34236
  }
34237
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/language/query-ast.js
34237
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/language/query-ast.js
34238
34238
  var QueryAST = Object.freeze({
34239
34239
  format: QUERY_AST_FORMAT,
34240
34240
  version: QUERY_AST_VERSION,
@@ -34243,7 +34243,7 @@ var QueryAST = Object.freeze({
34243
34243
  encode: encodeQueryAST,
34244
34244
  fingerprint: fingerprintQueryAST
34245
34245
  });
34246
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/language/selection.js
34246
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/language/selection.js
34247
34247
  function querySelectionKind(query) {
34248
34248
  if (query.select.kind === "nodes")
34249
34249
  return "node";
@@ -34270,7 +34270,7 @@ function querySelectionKind(query) {
34270
34270
  throw new TypeError("Admitted Query selected an unknown binding.");
34271
34271
  }
34272
34272
 
34273
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/language/error.js
34273
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/language/error.js
34274
34274
  class MutationASTDecodeError extends TypeError {
34275
34275
  path;
34276
34276
  code = "MUTATION_AST_INVALID";
@@ -34281,7 +34281,7 @@ class MutationASTDecodeError extends TypeError {
34281
34281
  }
34282
34282
  }
34283
34283
 
34284
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/language/model.js
34284
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/language/model.js
34285
34285
  var MUTATION_AST_FORMAT = "astrale.graph.mutation";
34286
34286
  var MUTATION_AST_VERSION = "v3";
34287
34287
  var MUTATION_AST_LIMITS = Object.freeze({
@@ -34290,7 +34290,7 @@ var MUTATION_AST_LIMITS = Object.freeze({
34290
34290
  queryExpectedIdentities: 4096
34291
34291
  });
34292
34292
 
34293
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/language/wire.js
34293
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/language/wire.js
34294
34294
  var text3 = exports_external.string().min(1);
34295
34295
  var binding4 = exports_external.string().min(1).max(64);
34296
34296
  var propertyKey = exports_external.string().check(fullMatch(exports_schema.patterns.propertyKeyFullMatch));
@@ -34365,7 +34365,7 @@ var mutationAstSchema = exports_external.strictObject({
34365
34365
  ])).min(1)
34366
34366
  });
34367
34367
 
34368
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/language/codec.js
34368
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/language/codec.js
34369
34369
  function decodeMutationAST(input) {
34370
34370
  try {
34371
34371
  return decodeV3(decodeWire(mutationAstSchema, accept2(input), invalid7));
@@ -34742,7 +34742,7 @@ function invalid7(path2, message) {
34742
34742
  function errorPointer3(error51) {
34743
34743
  return error51 instanceof BoundaryError ? error51.pointer : "";
34744
34744
  }
34745
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/language/index.js
34745
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/language/index.js
34746
34746
  var MutationLanguage = Object.freeze({
34747
34747
  format: MUTATION_AST_FORMAT,
34748
34748
  version: MUTATION_AST_VERSION,
@@ -34751,7 +34751,7 @@ var MutationLanguage = Object.freeze({
34751
34751
  encode: encodeMutationAST
34752
34752
  });
34753
34753
 
34754
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/authoring/create.js
34754
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/authoring/create.js
34755
34755
  function createMutationAST(input) {
34756
34756
  const preconditions = input.preconditions === undefined ? [] : input.preconditions;
34757
34757
  return MutationLanguage.decode({
@@ -34839,7 +34839,7 @@ function mutationEndpoint(endpoint3) {
34839
34839
  return "created" in endpoint3 ? Object.freeze({ created: endpoint3.created }) : endpoint3.path;
34840
34840
  }
34841
34841
 
34842
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/authoring/builder.js
34842
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/authoring/builder.js
34843
34843
  function buildMutationAST(author) {
34844
34844
  if (typeof author !== "function")
34845
34845
  throw new TypeError("Mutation author must be a function.");
@@ -34948,7 +34948,7 @@ function buildMutationAST(author) {
34948
34948
  function isPromiseLike(input) {
34949
34949
  return (typeof input === "object" || typeof input === "function") && input !== null && typeof input.then === "function";
34950
34950
  }
34951
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/result/error.js
34951
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/result/error.js
34952
34952
  class MutationResultDecodeError extends TypeError {
34953
34953
  path;
34954
34954
  code = "MUTATION_RESULT_INVALID";
@@ -34959,12 +34959,12 @@ class MutationResultDecodeError extends TypeError {
34959
34959
  }
34960
34960
  }
34961
34961
 
34962
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/result/wire.js
34962
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/result/wire.js
34963
34963
  var text4 = exports_external.string().min(1);
34964
34964
  var binding5 = exports_external.string().min(1).max(64);
34965
34965
  var mutationResultSchema = exports_external.strictObject({ createdNodes: exports_external.record(binding5, text4) });
34966
34966
 
34967
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/result/index.js
34967
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/result/index.js
34968
34968
  var MutationResult = Object.freeze({ decode: decodeMutationResult, encode: encodeMutationResult });
34969
34969
  function encodeMutationResult(input) {
34970
34970
  return decodeMutationResult(input);
@@ -35008,7 +35008,7 @@ function errorPointer4(error51) {
35008
35008
  return error51 instanceof BoundaryError ? error51.pointer : "";
35009
35009
  }
35010
35010
 
35011
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/index.js
35011
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/mutate/index.js
35012
35012
  var MutationAST = Object.freeze({
35013
35013
  format: MutationLanguage.format,
35014
35014
  version: MutationLanguage.version,
@@ -35019,10 +35019,10 @@ var MutationAST = Object.freeze({
35019
35019
  decode: MutationLanguage.decode,
35020
35020
  encode: MutationLanguage.encode
35021
35021
  });
35022
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/provision/request/admission.js
35022
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/auth/provision/request/admission.js
35023
35023
  var PROOF_BYTES_LIMIT = 64 * 1024;
35024
35024
  var textEncoder2 = new TextEncoder;
35025
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/artifact/ref.js
35025
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/artifact/ref.js
35026
35026
  var DIGEST = /^sha256:[0-9a-f]{64}$/u;
35027
35027
  var TOKEN = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+$/u;
35028
35028
  function accept11(input) {
@@ -35080,7 +35080,7 @@ function compare5(left, right) {
35080
35080
  function invalid9(subject) {
35081
35081
  throw new TypeError(`Artifact Ref has invalid ${subject}.`);
35082
35082
  }
35083
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/errors/codes.js
35083
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/errors/codes.js
35084
35084
  var CODES = Object.freeze({
35085
35085
  PARSE_ERROR: 1001,
35086
35086
  INVALID_REQUEST: 1002,
@@ -35102,7 +35102,7 @@ var CODES = Object.freeze({
35102
35102
  BACKEND_UNAVAILABLE: 5001,
35103
35103
  OUTCOME_UNKNOWN: 5002
35104
35104
  });
35105
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/errors/http-status.js
35105
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/errors/http-status.js
35106
35106
  var STATUS = {
35107
35107
  [CODES.PARSE_ERROR]: 400,
35108
35108
  [CODES.INVALID_REQUEST]: 400,
@@ -35124,7 +35124,7 @@ var STATUS = {
35124
35124
  [CODES.BACKEND_UNAVAILABLE]: 503,
35125
35125
  [CODES.OUTCOME_UNKNOWN]: 500
35126
35126
  };
35127
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/errors/payload.js
35127
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/errors/payload.js
35128
35128
  var CODES_SET = new Set(Object.values(CODES));
35129
35129
  var FIELDS = new Set(["code", "message", "data"]);
35130
35130
  function acceptPayload(input, label = "error") {
@@ -35158,7 +35158,7 @@ function acceptPayload(input, label = "error") {
35158
35158
  function isValueObject2(value) {
35159
35159
  return value !== null && typeof value === "object" && !Array.isArray(value);
35160
35160
  }
35161
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/errors/protocol-error.js
35161
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/errors/protocol-error.js
35162
35162
  class ProtocolError extends Error {
35163
35163
  payload;
35164
35164
  constructor(payload) {
@@ -35167,17 +35167,18 @@ class ProtocolError extends Error {
35167
35167
  this.payload = payload;
35168
35168
  }
35169
35169
  }
35170
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/errors/reason.js
35170
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/errors/reason.js
35171
35171
  var FIELDS2 = new Set(["code", "details"]);
35172
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/binary.js
35173
- var FIELDS3 = new Set(["kind", "id", "body", "mediaType", "headers"]);
35174
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/cancellation.js
35175
- var FIELDS4 = new Set(["version", "kind", "id"]);
35176
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/idempotency.js
35172
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/binary.js
35173
+ var FIELDS3 = new Set(["kind", "requestId", "invocation", "body", "mediaType", "headers"]);
35174
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/cancellation.js
35175
+ var FIELDS4 = new Set(["version", "kind", "requestId"]);
35176
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/idempotency.js
35177
35177
  var HTTP_IDEMPOTENCY_KEY = "x-astrale-idempotency-key";
35178
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/http/binary.js
35178
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/http/binary.js
35179
35179
  var BINARY_HEADERS_FIELD = "x-astrale-binary-headers";
35180
35180
  var REQUEST_ID_FIELD = "x-astrale-request-id";
35181
+ var INVOCATION_FIELD = "x-astrale-invocation";
35181
35182
  var EMPTY_MANIFEST = "-";
35182
35183
  var RESERVED = new Set([
35183
35184
  "authorization",
@@ -35204,21 +35205,22 @@ var RESERVED = new Set([
35204
35205
  "www-authenticate",
35205
35206
  EMPTY_MANIFEST,
35206
35207
  BINARY_HEADERS_FIELD,
35208
+ INVOCATION_FIELD,
35207
35209
  REQUEST_ID_FIELD,
35208
35210
  "x-astrale-stream-framing"
35209
35211
  ]);
35210
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/codecs/codec.js
35212
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/codecs/codec.js
35211
35213
  class DecodeError2 extends SyntaxError {
35212
35214
  name = "DecodeError";
35213
35215
  constructor(message, options) {
35214
35216
  super(message, options);
35215
35217
  }
35216
35218
  }
35217
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/codecs/media-types.js
35219
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/codecs/media-types.js
35218
35220
  var CONTENT_TYPE_JSON = "application/vnd.astrale+json";
35219
35221
  var CONTENT_TYPE_MSGPACK = "application/vnd.astrale.msgpack";
35220
35222
 
35221
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/codecs/json.js
35223
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/codecs/json.js
35222
35224
  var json2 = Object.freeze({
35223
35225
  name: "json",
35224
35226
  contentType: CONTENT_TYPE_JSON,
@@ -35235,7 +35237,7 @@ var json2 = Object.freeze({
35235
35237
  }
35236
35238
  }
35237
35239
  });
35238
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/codecs/msgpack.js
35240
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/codecs/msgpack.js
35239
35241
  var library = null;
35240
35242
  var MSGPACK = Object.freeze({
35241
35243
  name: "msgpack",
@@ -35267,15 +35269,15 @@ var MSGPACK = Object.freeze({
35267
35269
  }
35268
35270
  }
35269
35271
  });
35270
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/http/stream.js
35272
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/http/stream.js
35271
35273
  var encoder6 = new TextEncoder;
35272
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/http/trace.js
35274
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/http/trace.js
35273
35275
  var EMPTY_HEADERS = Object.freeze({});
35274
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/delegate.js
35276
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/delegate.js
35275
35277
  var FIELDS5 = new Set(["ttlSeconds", "attenuation"]);
35276
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/miss.js
35277
- var FIELDS6 = new Set(["kind", "id"]);
35278
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/index.js
35278
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/miss.js
35279
+ var FIELDS6 = new Set(["kind", "requestId", "invocation"]);
35280
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/index.js
35279
35281
  var exports_publication = {};
35280
35282
  __export(exports_publication, {
35281
35283
  BUNDLE_MEDIA_TYPE: () => BUNDLE_MEDIA_TYPE,
@@ -35301,7 +35303,7 @@ __export(exports_publication, {
35301
35303
  validateRequirements: () => validateRequirements
35302
35304
  });
35303
35305
 
35304
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/error.js
35306
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/error.js
35305
35307
  class PublicationError extends Error {
35306
35308
  code;
35307
35309
  name = "PublicationError";
@@ -35314,7 +35316,7 @@ function fail2(code, message, cause) {
35314
35316
  throw new PublicationError(code, message, cause === undefined ? undefined : { cause });
35315
35317
  }
35316
35318
 
35317
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/content.js
35319
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/content.js
35318
35320
  function record2(input, code, message) {
35319
35321
  if (input === null || typeof input !== "object" || Array.isArray(input))
35320
35322
  fail2(code, message);
@@ -35365,7 +35367,7 @@ function absoluteUrl(input, protocols, allowSearch, code, allowTemplate = false)
35365
35367
  return input;
35366
35368
  }
35367
35369
 
35368
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/bindings/invocation.js
35370
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/bindings/invocation.js
35369
35371
  function acceptInvocationEndpoints(input) {
35370
35372
  const value = record2(input, "PUBLICATION_BINDING_INVALID", "Invocation endpoints are invalid.");
35371
35373
  exact(value, ["http", "websocket"], "PUBLICATION_BINDING_INVALID");
@@ -35377,7 +35379,7 @@ function acceptInvocationEndpoints(input) {
35377
35379
  });
35378
35380
  }
35379
35381
 
35380
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/bindings/callable.js
35382
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/bindings/callable.js
35381
35383
  function admitCallableBinding(input, origin) {
35382
35384
  const value = record2(input, "PUBLICATION_BINDING_INVALID", "Callable binding is invalid.");
35383
35385
  exact(value, ["callable", "endpoint"], "PUBLICATION_BINDING_INVALID");
@@ -35402,7 +35404,7 @@ function admitCallableKey(input, origin) {
35402
35404
  }
35403
35405
  return callable;
35404
35406
  }
35405
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/bindings/view.js
35407
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/bindings/view.js
35406
35408
  function admitViewBinding(input, origin) {
35407
35409
  const value = record2(input, "PUBLICATION_VIEW_INVALID", "Published View binding is invalid.");
35408
35410
  exact(value, ["view", "href", "handshake"], "PUBLICATION_VIEW_INVALID");
@@ -35427,7 +35429,7 @@ function admitViewBinding(input, origin) {
35427
35429
  handshake: value.handshake
35428
35430
  });
35429
35431
  }
35430
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/etag.js
35432
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/etag.js
35431
35433
  var DIGEST2 = /^sha256:[0-9a-f]{64}$/u;
35432
35434
  function admitDigest(input) {
35433
35435
  if (typeof input !== "string" || !DIGEST2.test(input)) {
@@ -35569,7 +35571,7 @@ var ROUND = new Uint32Array([
35569
35571
  3329325298
35570
35572
  ]);
35571
35573
 
35572
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/bundle.js
35574
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/bundle.js
35573
35575
  var BUNDLE_MEDIA_TYPE = "application/vnd.astrale.domain-bundle+json;v=1";
35574
35576
  function admitBundleDescriptor(input) {
35575
35577
  const value = record2(input, "PUBLICATION_INVALID", "Bundle descriptor is invalid.");
@@ -35627,7 +35629,7 @@ function decodeBundleValue(publication, bytes) {
35627
35629
  }
35628
35630
  }
35629
35631
 
35630
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery-endpoint.js
35632
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery-endpoint.js
35631
35633
  function admitEndpoint(input, publicUrl) {
35632
35634
  if (input === undefined)
35633
35635
  return;
@@ -35649,7 +35651,7 @@ function admitEndpoint(input, publicUrl) {
35649
35651
  });
35650
35652
  }
35651
35653
 
35652
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/manifest.js
35654
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/manifest.js
35653
35655
  function admitManifest(input) {
35654
35656
  if (input === undefined)
35655
35657
  return;
@@ -35671,7 +35673,7 @@ function admitManifest(input) {
35671
35673
  });
35672
35674
  }
35673
35675
 
35674
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/core/node.js
35676
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/core/node.js
35675
35677
  class CoreNodeModel {
35676
35678
  origin;
35677
35679
  name;
@@ -35690,7 +35692,7 @@ class CoreNodeModel {
35690
35692
  }
35691
35693
  }
35692
35694
 
35693
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/core/collection.js
35695
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/core/collection.js
35694
35696
  function coreNodesFor(domainSchema) {
35695
35697
  const nodes = {};
35696
35698
  for (const slug of Object.keys(domainSchema.core.nodes).sort()) {
@@ -35701,7 +35703,7 @@ function coreNodesFor(domainSchema) {
35701
35703
  }
35702
35704
  return Object.freeze(nodes);
35703
35705
  }
35704
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/error.js
35706
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/error.js
35705
35707
  class DomainError extends Error {
35706
35708
  code;
35707
35709
  diagnostics;
@@ -35713,7 +35715,7 @@ class DomainError extends Error {
35713
35715
  }
35714
35716
  }
35715
35717
 
35716
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/collection.js
35718
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/collection.js
35717
35719
  class ImmutableMap {
35718
35720
  #map;
35719
35721
  constructor(entries) {
@@ -35747,12 +35749,12 @@ class ImmutableMap {
35747
35749
  }
35748
35750
  }
35749
35751
 
35750
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/addressing/address.js
35752
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/addressing/address.js
35751
35753
  function definitionIdentity(origin, kind, name) {
35752
35754
  const ref = Ref.definition(kind, name);
35753
35755
  return Object.freeze({ origin, kind, name, ref, key: Key.of(origin, ref) });
35754
35756
  }
35755
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/data.js
35757
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/data.js
35756
35758
  function dataFor(model) {
35757
35759
  const data3 = model.analysis?.data;
35758
35760
  return data3 === undefined ? undefined : Object.freeze({
@@ -35761,7 +35763,7 @@ function dataFor(model) {
35761
35763
  });
35762
35764
  }
35763
35765
 
35764
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/inheritance/satisfies.js
35766
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/inheritance/satisfies.js
35765
35767
  function definitionSatisfies(source2, target) {
35766
35768
  const queue = [source2];
35767
35769
  const visited = new Set;
@@ -35779,7 +35781,7 @@ function definitionSatisfies(source2, target) {
35779
35781
  }
35780
35782
  return false;
35781
35783
  }
35782
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/inheritance/parents.js
35784
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/inheritance/parents.js
35783
35785
  function parentRefsFor(model) {
35784
35786
  if (model.schemaRef.kind === "interface") {
35785
35787
  return model.declaration.extends;
@@ -35789,7 +35791,7 @@ function parentRefsFor(model) {
35789
35791
  }
35790
35792
  return [];
35791
35793
  }
35792
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/source/source.js
35794
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/source/source.js
35793
35795
  function definitionModelFor(schemaRef, schemas3, rootResolution) {
35794
35796
  const domainSchema = schemas3.get(schemaRef.origin);
35795
35797
  if (domainSchema === undefined)
@@ -35891,7 +35893,7 @@ function classKind(_declaration) {
35891
35893
  function isSchemaDefinitionKind(kind) {
35892
35894
  return kind === "class" || kind === "interface";
35893
35895
  }
35894
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/lookup/lookup.js
35896
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/lookup/lookup.js
35895
35897
  function schemaRefForLocator(locator, localOrigin, schemas3) {
35896
35898
  if (typeof locator !== "string") {
35897
35899
  return schemas3.has(locator.origin) ? locator : undefined;
@@ -35912,7 +35914,7 @@ function schemaRefForLocator(locator, localOrigin, schemas3) {
35912
35914
  const domainSchema = schemas3.get(origin);
35913
35915
  return domainSchema === undefined ? undefined : schemaRefFor(domainSchema, reference2);
35914
35916
  }
35915
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/lookup/local.js
35917
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/lookup/local.js
35916
35918
  function requireLocalDefinition(catalog, kinds, name, label) {
35917
35919
  const matches2 = kinds.flatMap((kind) => {
35918
35920
  const value = catalog.localByKind.get(kind)?.get(name);
@@ -35925,7 +35927,7 @@ function requireLocalDefinition(catalog, kinds, name, label) {
35925
35927
  }
35926
35928
  throw new DomainError("DOMAIN_DEFINITION_NOT_FOUND", `${label} ${JSON.stringify(name)} does not exist in ${catalog.schema.origin}.`);
35927
35929
  }
35928
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/lookup/member.js
35930
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/lookup/member.js
35929
35931
  var FIXED_DEFINITION_KEYS = new Set([
35930
35932
  "$",
35931
35933
  "origin",
@@ -35978,15 +35980,15 @@ function indexByName(values) {
35978
35980
  }
35979
35981
  return result;
35980
35982
  }
35981
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/method/addressing/instance.js
35983
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/method/addressing/instance.js
35982
35984
  function instanceMethodPath(receiver, name) {
35983
35985
  return Path.instanceMethod(receiver, name);
35984
35986
  }
35985
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/method/addressing/static.js
35987
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/method/addressing/static.js
35986
35988
  function staticMethodPath(owner, name) {
35987
35989
  return Path.staticMethod(Path.project(owner), name);
35988
35990
  }
35989
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/method/project.js
35991
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/method/project.js
35990
35992
  function methodsFor(model) {
35991
35993
  const methods = [];
35992
35994
  for (const [name, method] of model.analysis?.methods ?? []) {
@@ -36007,7 +36009,7 @@ function methodsFor(model) {
36007
36009
  }
36008
36010
  return new ImmutableMap(methods);
36009
36011
  }
36010
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/property/project.js
36012
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/property/project.js
36011
36013
  function propertiesFor(model) {
36012
36014
  const properties = [];
36013
36015
  for (const [key, field] of model.analysis?.properties ?? []) {
@@ -36031,7 +36033,7 @@ function propertiesFor(model) {
36031
36033
  }
36032
36034
  return new ImmutableMap(properties);
36033
36035
  }
36034
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/definition.js
36036
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/definition.js
36035
36037
  class DefinitionModel {
36036
36038
  $;
36037
36039
  origin;
@@ -36102,7 +36104,7 @@ function pathFor(ref) {
36102
36104
  }
36103
36105
  }
36104
36106
 
36105
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/catalog.js
36107
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/catalog/catalog.js
36106
36108
  function createDomainCatalog(domainSchema) {
36107
36109
  let resolved;
36108
36110
  try {
@@ -36167,7 +36169,7 @@ function createDomainCatalog(domainSchema) {
36167
36169
  function compareText2(left, right) {
36168
36170
  return left < right ? -1 : left > right ? 1 : 0;
36169
36171
  }
36170
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/instance/binding/bind.js
36172
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/instance/binding/bind.js
36171
36173
  function bindInstanceMethods(definition2, actual, receiver, binder) {
36172
36174
  const bound = [];
36173
36175
  for (const method of definition2.methods.values()) {
@@ -36189,7 +36191,7 @@ function bindInstanceMethods(definition2, actual, receiver, binder) {
36189
36191
  function isInstanceMethod(method) {
36190
36192
  return typeof method === "object" && method !== null && "on" in method;
36191
36193
  }
36192
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/instance/access/project.js
36194
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/instance/access/project.js
36193
36195
  var FIXED_VALUE_KEYS = new Set(["$", "$d", "class", "props"]);
36194
36196
  function projectDomainAccess(value, definition2, actual, bindMethod) {
36195
36197
  const propertyValues = new Map;
@@ -36346,7 +36348,7 @@ function indexValues(values, keyOf2) {
36346
36348
  function isNode(value) {
36347
36349
  return "id" in value;
36348
36350
  }
36349
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/instance/projection/project.js
36351
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/instance/projection/project.js
36350
36352
  function wrapDomainValue(context, value, expected, bindMethod) {
36351
36353
  const node3 = isNode2(value);
36352
36354
  const actual = context.schemaDefinition({
@@ -36368,7 +36370,7 @@ function wrapDomainValue(context, value, expected, bindMethod) {
36368
36370
  function isNode2(value) {
36369
36371
  return "id" in value;
36370
36372
  }
36371
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/callable/resolution.js
36373
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/callable/resolution.js
36372
36374
  function callableDeclaration(catalog, key) {
36373
36375
  const origin = Key.origin(key);
36374
36376
  const reference2 = Key.ref(key);
@@ -36404,7 +36406,7 @@ function isMethodRef(ref) {
36404
36406
  return ref.includes(".method.");
36405
36407
  }
36406
36408
 
36407
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/result/diagnostic.js
36409
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/result/diagnostic.js
36408
36410
  function domainDiagnostic(code, message, path2, details) {
36409
36411
  return Object.freeze({
36410
36412
  code,
@@ -36413,14 +36415,14 @@ function domainDiagnostic(code, message, path2, details) {
36413
36415
  ...details === undefined ? {} : { details }
36414
36416
  });
36415
36417
  }
36416
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/result/result.js
36418
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/result/result.js
36417
36419
  function validationResult(status, diagnostics = []) {
36418
36420
  return Object.freeze({ status, diagnostics: Object.freeze([...diagnostics]) });
36419
36421
  }
36420
36422
  function resultFromDiagnostics(diagnostics) {
36421
36423
  return validationResult(diagnostics.length === 0 ? "pass" : "reject", diagnostics);
36422
36424
  }
36423
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/callable/input/validate.js
36425
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/callable/input/validate.js
36424
36426
  function validateCallableInput(catalog, key, value) {
36425
36427
  try {
36426
36428
  const { declaration, owner } = callableDeclaration(catalog, key);
@@ -36432,7 +36434,7 @@ function validateCallableInput(catalog, key, value) {
36432
36434
  function diagnosticFromError(error51) {
36433
36435
  return error51 instanceof DomainError ? domainDiagnostic(error51.code, error51.message) : domainDiagnostic("DOMAIN_VALIDATION_FAILED", error51 instanceof Error ? error51.message : String(error51));
36434
36436
  }
36435
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/callable/output/validate.js
36437
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/callable/output/validate.js
36436
36438
  function validateCallableOutput(catalog, key, value) {
36437
36439
  try {
36438
36440
  const { declaration, owner } = callableDeclaration(catalog, key);
@@ -36450,7 +36452,7 @@ function validateCallableOutput(catalog, key, value) {
36450
36452
  function diagnosticFromError2(error51) {
36451
36453
  return error51 instanceof DomainError ? domainDiagnostic(error51.code, error51.message) : domainDiagnostic("DOMAIN_VALIDATION_FAILED", error51 instanceof Error ? error51.message : String(error51));
36452
36454
  }
36453
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/property/qualification/qualify.js
36455
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/property/qualification/qualify.js
36454
36456
  function qualifyPropertyInput(catalog, definitionRef, input) {
36455
36457
  const admitted = accept2(input);
36456
36458
  if (admitted === null || typeof admitted !== "object" || Array.isArray(admitted)) {
@@ -36488,7 +36490,7 @@ function propertyAliases(properties) {
36488
36490
  }
36489
36491
  return result;
36490
36492
  }
36491
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/property/validate.js
36493
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/property/validate.js
36492
36494
  function validateProperties(catalog, definitionRef, input) {
36493
36495
  let qualified;
36494
36496
  let definition2;
@@ -36533,7 +36535,7 @@ function requireSchema2(catalog, origin) {
36533
36535
  function diagnosticFromError3(error51) {
36534
36536
  return error51 instanceof DomainError ? domainDiagnostic(error51.code, error51.message) : domainDiagnostic("DOMAIN_VALIDATION_FAILED", error51 instanceof Error ? error51.message : String(error51));
36535
36537
  }
36536
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/validator.js
36538
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/validator.js
36537
36539
  function createDomainValidator(context) {
36538
36540
  return Object.freeze({
36539
36541
  properties: (definition2, input) => validateProperties(context, definition2, input),
@@ -36545,7 +36547,7 @@ function createDomainValidator(context) {
36545
36547
  }
36546
36548
  });
36547
36549
  }
36548
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/property/admission/admit.js
36550
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/validation/property/admission/admit.js
36549
36551
  function admitProperties(catalog, definitionRef, input) {
36550
36552
  const qualified = qualifyPropertyInput(catalog, definitionRef, input);
36551
36553
  const definition2 = catalog.definition(definitionRef);
@@ -36558,7 +36560,7 @@ function admitProperties(catalog, definitionRef, input) {
36558
36560
  }
36559
36561
  return qualified;
36560
36562
  }
36561
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/view/applicability/applicable.js
36563
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/view/applicability/applicable.js
36562
36564
  function isViewApplicable(target, subject) {
36563
36565
  if (target.kind === "domain")
36564
36566
  return subject === "domain";
@@ -36566,7 +36568,7 @@ function isViewApplicable(target, subject) {
36566
36568
  return false;
36567
36569
  return target.definitions.some((definition2) => subject.satisfies(definition2));
36568
36570
  }
36569
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/view/target/resolve.js
36571
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/view/target/resolve.js
36570
36572
  function resolveViewTarget(catalog, view2) {
36571
36573
  const target = view2.definition.target;
36572
36574
  if (target.kind === "domain")
@@ -36576,17 +36578,17 @@ function resolveViewTarget(catalog, view2) {
36576
36578
  definitions: Object.freeze(target.definitions.map((definition2) => catalog.schemaDefinition(definition2)))
36577
36579
  });
36578
36580
  }
36579
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/view/selection/order.js
36581
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/view/selection/order.js
36580
36582
  function compareViews(left, right) {
36581
36583
  return left.key < right.key ? -1 : left.key > right.key ? 1 : 0;
36582
36584
  }
36583
36585
 
36584
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/view/selection/select.js
36586
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/view/selection/select.js
36585
36587
  function selectViews(catalog, subject) {
36586
36588
  const candidates = catalog.localByKind.get("view")?.values() ?? [];
36587
36589
  return Object.freeze([...candidates].filter((candidate2) => candidate2.kind === "view").filter((view2) => isViewApplicable(resolveViewTarget(catalog, view2), subject)).sort(compareViews));
36588
36590
  }
36589
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/domain.js
36591
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/domain/domain.js
36590
36592
  var admittedDomains = new WeakSet;
36591
36593
 
36592
36594
  class DomainModel {
@@ -36642,7 +36644,7 @@ var Domain = DomainModel;
36642
36644
  function isDefinition(value) {
36643
36645
  return typeof value === "object" && value !== null && "$" in value && "key" in value;
36644
36646
  }
36645
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/descriptable.js
36647
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/descriptable.js
36646
36648
  var Descriptable = defineInterface({
36647
36649
  family: "both",
36648
36650
  description: "Optional human-facing description metadata with no identity or authority semantics.",
@@ -36650,12 +36652,12 @@ var Descriptable = defineInterface({
36650
36652
  description: property(exports_schema.metadata.description, { required: false })
36651
36653
  }
36652
36654
  });
36653
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/edge.js
36655
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/edge.js
36654
36656
  var Edge = defineInterface({
36655
36657
  family: "both",
36656
36658
  description: "Explicit kernel marker for Edge definitions; it carries no structural fields."
36657
36659
  });
36658
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/iconable.js
36660
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/iconable.js
36659
36661
  var Iconable = defineInterface({
36660
36662
  family: "both",
36661
36663
  description: "Optional bounded presentation icon metadata.",
@@ -36663,7 +36665,7 @@ var Iconable = defineInterface({
36663
36665
  icon: property(exports_schema.metadata.icon, { required: false })
36664
36666
  }
36665
36667
  });
36666
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/named.js
36668
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/named.js
36667
36669
  var Named = defineInterface({
36668
36670
  family: "both",
36669
36671
  description: "Stable human-facing name metadata that never acts as a locator.",
@@ -36671,11 +36673,11 @@ var Named = defineInterface({
36671
36673
  name: { type: "string", minLength: 1, maxLength: 100 }
36672
36674
  }
36673
36675
  });
36674
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/node.js
36676
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/node.js
36675
36677
  var Node = nodeInterface({
36676
36678
  description: "The universal kernel node contract implicitly satisfied by every Node Interface and Node Class."
36677
36679
  });
36678
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/remotable.js
36680
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/remotable.js
36679
36681
  var Remotable = defineInterface({
36680
36682
  family: "both",
36681
36683
  description: "Optional synchronization metadata for a value originating outside the local kernel.",
@@ -36685,7 +36687,7 @@ var Remotable = defineInterface({
36685
36687
  updatedAt: property(exports_schema.values.instant, { required: false })
36686
36688
  }
36687
36689
  });
36688
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/statused.js
36690
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/statused.js
36689
36691
  var Statused = defineInterface({
36690
36692
  family: "both",
36691
36693
  description: "Explicit lifecycle-state metadata for values whose contract declares such a state.",
@@ -36693,7 +36695,7 @@ var Statused = defineInterface({
36693
36695
  status: { enum: ["active", "creating", "deleting", "error", "updating"] }
36694
36696
  }
36695
36697
  });
36696
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/timestamped.js
36698
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/meta/timestamped.js
36697
36699
  var Timestamped = defineInterface({
36698
36700
  family: "both",
36699
36701
  description: "Explicit creation and update timestamp metadata.",
@@ -36705,7 +36707,7 @@ var Timestamped = defineInterface({
36705
36707
  })
36706
36708
  }
36707
36709
  });
36708
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/definitions/class.js
36710
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/definitions/class.js
36709
36711
  var Class2 = nodeClass({
36710
36712
  description: "The installed graph projection of a concrete Node Class or Edge Class declaration.",
36711
36713
  implements: [Descriptable, Iconable],
@@ -36713,7 +36715,7 @@ var Class2 = nodeClass({
36713
36715
  family: { enum: ["node", "edge"] }
36714
36716
  }
36715
36717
  });
36716
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/definitions/interface.js
36718
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/definitions/interface.js
36717
36719
  var Interface = nodeClass({
36718
36720
  description: "The installed graph projection of a both-, Node-, or Edge-family Interface.",
36719
36721
  implements: [Descriptable],
@@ -36722,7 +36724,7 @@ var Interface = nodeClass({
36722
36724
  }
36723
36725
  });
36724
36726
 
36725
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/definitions/extends.js
36727
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/definitions/extends.js
36726
36728
  var Extends = edgeClass.directed({
36727
36729
  source: { as: "sub", accepts: [Interface], outgoing: "0..*" },
36728
36730
  target: { as: "super", accepts: [Interface], incoming: "0..*" },
@@ -36730,7 +36732,7 @@ var Extends = edgeClass.directed({
36730
36732
  implements: [Edge],
36731
36733
  constraints: { noSelf: true, acyclic: true }
36732
36734
  });
36733
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/definitions/implements.js
36735
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/definitions/implements.js
36734
36736
  var Implements = edgeClass.directed({
36735
36737
  source: { as: "class", accepts: [Class2], outgoing: "0..*" },
36736
36738
  target: { as: "interface", accepts: [Interface], incoming: "0..*" },
@@ -36738,14 +36740,14 @@ var Implements = edgeClass.directed({
36738
36740
  implements: [Edge],
36739
36741
  constraints: { noSelf: true }
36740
36742
  });
36741
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/definitions/instance-of.js
36743
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/definitions/instance-of.js
36742
36744
  var InstanceOf = edgeClass.directed({
36743
36745
  source: { as: "instance", accepts: [Node], outgoing: "1" },
36744
36746
  target: { as: "class", accepts: [Class2], incoming: "0..*" },
36745
36747
  description: "The concrete Node Class fact fixed when a node is created.",
36746
36748
  implements: [Edge]
36747
36749
  });
36748
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/authority-relation.js
36750
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/authority-relation.js
36749
36751
  var IdentityRef = {
36750
36752
  origin: "kernel.astrale.ai",
36751
36753
  kind: "interface",
@@ -36760,27 +36762,27 @@ function authorityRelation(target, role, description2) {
36760
36762
  });
36761
36763
  }
36762
36764
 
36763
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-create.js
36765
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-create.js
36764
36766
  var CanCreate = authorityRelation(Class2, "class", "An Identity may create instances of the target Class.");
36765
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-delete.js
36767
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-delete.js
36766
36768
  var CanDelete = authorityRelation(Class2, "class", "An Identity may delete instances of the target Class.");
36767
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/operation.js
36769
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/operation.js
36768
36770
  var Operation = nodeClass({
36769
36771
  description: "One closed authority relation operation administered by can_grant and can_revoke.",
36770
36772
  implements: [Named]
36771
36773
  });
36772
36774
 
36773
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-grant.js
36775
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-grant.js
36774
36776
  var CanGrant = authorityRelation(Operation, "operation", "An Identity may create authority edges for the target Operation.");
36775
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-read.js
36777
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-read.js
36776
36778
  var CanRead = authorityRelation(Class2, "class", "An Identity may read complete instances of the target Class; read also permits traversal.");
36777
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-revoke.js
36779
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-revoke.js
36778
36780
  var CanRevoke = authorityRelation(Operation, "operation", "An Identity may remove authority edges for the target Operation.");
36779
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-traverse.js
36781
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-traverse.js
36780
36782
  var CanTraverse = authorityRelation(Class2, "class", "An Identity may use instances of the target Class as structural Query witnesses without reading their values.");
36781
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-update.js
36783
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-update.js
36782
36784
  var CanUpdate = authorityRelation(Class2, "class", "An Identity may update instances of the target Class.");
36783
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/admit.js
36785
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/admit.js
36784
36786
  var admitInput = exports_external.strictObject({
36785
36787
  call: exports_external.strictObject({
36786
36788
  target: exports_external.string().min(1),
@@ -36792,11 +36794,11 @@ var admitOutput = exports_external.strictObject({
36792
36794
  callable: exports_external.string().min(1),
36793
36795
  receiver: exports_external.string().min(1).optional()
36794
36796
  });
36795
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/can.js
36797
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/can.js
36796
36798
  var text5 = exports_external.string().min(1);
36797
36799
  var canInput = exports_external.strictObject({ policy: text5, object: text5 });
36798
36800
  var canOutput = exports_external.strictObject({ allowed: exports_external.boolean() });
36799
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/delegate.js
36801
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/delegate.js
36800
36802
  var text6 = exports_external.string().min(1);
36801
36803
  var delegateInput = exports_external.strictObject({
36802
36804
  audience: text6,
@@ -36804,7 +36806,10 @@ var delegateInput = exports_external.strictObject({
36804
36806
  attenuation: exports_external.unknown()
36805
36807
  });
36806
36808
  var delegateOutput = text6;
36807
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/installation.js
36809
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/installation/operation-id.js
36810
+ var operationIdSchema = exports_external.string().check(fullMatch("[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}"));
36811
+
36812
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/installation.js
36808
36813
  var installationText = exports_external.string().min(1);
36809
36814
  var installationDigest = installationText.check(fullMatch("sha256:[0-9a-f]{64}"));
36810
36815
  var artifactRef = exports_external.strictObject({
@@ -36865,7 +36870,7 @@ var installationTarget = exports_external.strictObject({
36865
36870
  });
36866
36871
  var transitionIntent = exports_external.strictObject({
36867
36872
  transition: installationText,
36868
- operation: installationText,
36873
+ operation: operationIdSchema,
36869
36874
  installation: installationText,
36870
36875
  origin: installationText,
36871
36876
  source: installationTarget.nullable(),
@@ -36883,24 +36888,10 @@ var transitionReceipt = exports_external.strictObject({
36883
36888
  state: exports_external.literal("committed"),
36884
36889
  readiness: readinessReceipt.optional()
36885
36890
  });
36886
- var installationOperation = exports_external.discriminatedUnion("kind", [
36887
- exports_external.strictObject({
36888
- operation: installationText,
36889
- kind: exports_external.literal("install"),
36890
- fingerprint: installationDigest,
36891
- transitions: exports_external.array(transitionReceipt).min(1)
36892
- }),
36893
- exports_external.strictObject({
36894
- operation: installationText,
36895
- kind: exports_external.literal("uninstall"),
36896
- fingerprint: installationDigest,
36897
- transition: transitionReceipt
36898
- })
36899
- ]);
36900
36891
 
36901
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/install.js
36892
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/install.js
36902
36893
  var installInput = exports_external.strictObject({
36903
- operation: installationText,
36894
+ operation: operationIdSchema,
36904
36895
  domains: exports_external.array(exports_external.union([
36905
36896
  exports_external.strictObject({
36906
36897
  source: exports_external.strictObject({
@@ -36922,10 +36913,10 @@ var installInput = exports_external.strictObject({
36922
36913
  ])).min(1)
36923
36914
  });
36924
36915
  var installOutput = exports_external.strictObject({
36925
- operation: installationText,
36916
+ operation: operationIdSchema,
36926
36917
  transitions: exports_external.array(transitionReceipt).min(1)
36927
36918
  });
36928
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/introspect.js
36919
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/introspect.js
36929
36920
  var selection = exports_external.strictObject({
36930
36921
  state: exports_external.literal(true).optional(),
36931
36922
  target: exports_external.literal(true).optional(),
@@ -36941,13 +36932,14 @@ var introspectInput = exports_external.strictObject({
36941
36932
  }),
36942
36933
  select: selection
36943
36934
  });
36944
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/journal.js
36935
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/journal.js
36945
36936
  var text7 = exports_external.string().min(1);
36946
36937
  var eventTopicPattern = exports_external.strictObject({
36947
36938
  exact: exports_external.array(text7).optional(),
36948
36939
  prefixes: exports_external.array(text7).optional()
36949
36940
  });
36950
36941
  var journalInput = exports_external.strictObject({
36942
+ invocation: exports_external.strictObject({ source: text7, id: text7 }).optional(),
36951
36943
  topics: eventTopicPattern.optional(),
36952
36944
  principal: text7.optional(),
36953
36945
  since: text7.optional(),
@@ -36966,7 +36958,7 @@ var journalOutput = exports_external.strictObject({
36966
36958
  cursor: text7.optional(),
36967
36959
  gap: exports_external.unknown().optional()
36968
36960
  });
36969
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/mint.js
36961
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/mint.js
36970
36962
  var text8 = exports_external.string().min(1);
36971
36963
  var mintInput = exports_external.strictObject({
36972
36964
  audience: text8.optional(),
@@ -36974,10 +36966,10 @@ var mintInput = exports_external.strictObject({
36974
36966
  grant: exports_external.unknown().optional()
36975
36967
  });
36976
36968
  var mintOutput = text8;
36977
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/mutate.js
36969
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/mutate.js
36978
36970
  var mutateInput = mutationAstSchema;
36979
36971
  var mutateOutput = mutationResultSchema;
36980
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/claims.js
36972
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/claims.js
36981
36973
  var claim = exports_external.string().min(1);
36982
36974
  var portableValue = exports_external.unknown().nonoptional();
36983
36975
  var claimConstraintSchema = exports_external.discriminatedUnion("op", [
@@ -36987,7 +36979,7 @@ var claimConstraintSchema = exports_external.discriminatedUnion("op", [
36987
36979
  ]);
36988
36980
  var requiredClaimsSchema = exports_external.array(claimConstraintSchema).max(exports_claims.MAX_REQUIRED_CLAIMS);
36989
36981
 
36990
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/provision.js
36982
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/provision.js
36991
36983
  var text9 = exports_external.string().min(1);
36992
36984
  var requiredClaims = requiredClaimsSchema.optional();
36993
36985
  var asserted = exports_external.strictObject({ issuer: text9, subject: text9, requiredClaims });
@@ -37004,7 +36996,7 @@ var provisionOutput = exports_external.strictObject({
37004
36996
  createdNodes: exports_external.record(exports_external.string(), text9),
37005
36997
  identities: exports_external.record(exports_external.string(), exports_external.strictObject({ issuer: text9, subject: text9 }))
37006
36998
  });
37007
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/result/error.js
36999
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/result/error.js
37008
37000
  class QueryResultDecodeError extends TypeError {
37009
37001
  path;
37010
37002
  code = "QUERY_RESULT_INVALID";
@@ -37015,7 +37007,7 @@ class QueryResultDecodeError extends TypeError {
37015
37007
  }
37016
37008
  }
37017
37009
 
37018
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/result/wire.js
37010
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/result/wire.js
37019
37011
  var text10 = exports_external.string().min(1);
37020
37012
  var nodeReference = exports_external.strictObject({ id: text10, class: text10 });
37021
37013
  var nodeProjection = exports_external.discriminatedUnion("kind", [
@@ -37047,7 +37039,7 @@ var queryResultSchema = exports_external.discriminatedUnion("kind", [
37047
37039
  exports_external.strictObject({ kind: exports_external.literal("edges"), edges: exports_external.array(edgeItem) })
37048
37040
  ]);
37049
37041
 
37050
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/result/index.js
37042
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/graph/query/result/index.js
37051
37043
  var QueryResult = Object.freeze({
37052
37044
  decode: decodeQueryResult,
37053
37045
  encode: encodeQueryResult,
@@ -37201,7 +37193,7 @@ function joinPointer(base, nested) {
37201
37193
  function errorPointer5(error51) {
37202
37194
  return error51 instanceof BoundaryError ? error51.pointer : "";
37203
37195
  }
37204
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/query.js
37196
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/query.js
37205
37197
  var queryInput = exports_external.strictObject({
37206
37198
  ast: queryAstSchema,
37207
37199
  page: exports_external.strictObject({
@@ -37213,16 +37205,16 @@ var queryOutput = exports_external.strictObject({
37213
37205
  result: queryResultSchema,
37214
37206
  page: exports_external.strictObject({ next: exports_external.string().min(1).optional() })
37215
37207
  });
37216
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/uninstall.js
37208
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/uninstall.js
37217
37209
  var uninstallInput = exports_external.strictObject({
37218
- operation: installationText,
37210
+ operation: operationIdSchema,
37219
37211
  origin: installationText
37220
37212
  });
37221
37213
  var uninstallOutput = exports_external.strictObject({
37222
- operation: installationText,
37214
+ operation: operationIdSchema,
37223
37215
  transition: transitionReceipt
37224
37216
  });
37225
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/view-resolve.js
37217
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/view-resolve.js
37226
37218
  var definition2 = exports_external.discriminatedUnion("kind", [
37227
37219
  exports_external.strictObject({ origin: exports_external.string().min(1), kind: exports_external.literal("class"), name: exports_external.string().min(1) }),
37228
37220
  exports_external.strictObject({
@@ -37252,7 +37244,7 @@ var viewResolveOutput = exports_external.strictObject({
37252
37244
  revision: exports_external.string().min(1)
37253
37245
  }))
37254
37246
  });
37255
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/identity.js
37247
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/identity.js
37256
37248
  var text11 = exports_external.string().min(1);
37257
37249
  var identityOutput = exports_external.strictObject({
37258
37250
  id: text11,
@@ -37262,19 +37254,19 @@ var identityOutput = exports_external.strictObject({
37262
37254
  requiredClaims: requiredClaimsSchema
37263
37255
  });
37264
37256
 
37265
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/whoami.js
37257
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/whoami.js
37266
37258
  var whoamiInput = exports_external.strictObject({});
37267
37259
  var whoamiOutput = identityOutput;
37268
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/whois.js
37260
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/contracts/whois.js
37269
37261
  var text12 = exports_external.string().min(1);
37270
37262
  var whoisInput = exports_external.strictObject({ issuer: text12, subject: text12 });
37271
37263
  var whoisOutput = identityOutput.nullable();
37272
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/define.js
37264
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/define.js
37273
37265
  function defineSyscall(config2) {
37274
37266
  return fn(config2);
37275
37267
  }
37276
37268
 
37277
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/admit.js
37269
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/admit.js
37278
37270
  var Admit = defineSyscall({
37279
37271
  description: "Admit one remote path-only attempt and return its request-scoped execution target.",
37280
37272
  auth: "authenticated",
@@ -37284,7 +37276,7 @@ var Admit = defineSyscall({
37284
37276
  inheritance: "sealed"
37285
37277
  });
37286
37278
 
37287
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/can.js
37279
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/can.js
37288
37280
  var Can = defineSyscall({
37289
37281
  description: "Determine whether the current authenticated Identity satisfies one installed Policy for one object.",
37290
37282
  auth: "authenticated",
@@ -37294,7 +37286,7 @@ var Can = defineSyscall({
37294
37286
  inheritance: "default"
37295
37287
  });
37296
37288
 
37297
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/delegate.js
37289
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/delegate.js
37298
37290
  var Delegate = defineSyscall({
37299
37291
  description: "Issue one strictly attenuated credential from this authenticated Identity.",
37300
37292
  auth: "authenticated",
@@ -37303,7 +37295,7 @@ var Delegate = defineSyscall({
37303
37295
  inheritance: "default"
37304
37296
  });
37305
37297
 
37306
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/install.js
37298
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/install.js
37307
37299
  var Install = defineSyscall({
37308
37300
  description: "Durably install one or more exact Schema targets and return a terminal receipt.",
37309
37301
  auth: "authorized",
@@ -37311,7 +37303,7 @@ var Install = defineSyscall({
37311
37303
  output: installOutput
37312
37304
  });
37313
37305
 
37314
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/introspect.js
37306
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/introspect.js
37315
37307
  var Introspect = defineSyscall({
37316
37308
  description: "Return bounded installed-Publication evidence to an authenticated Kernel session.",
37317
37309
  auth: "authenticated",
@@ -37319,7 +37311,7 @@ var Introspect = defineSyscall({
37319
37311
  output: output.binary()
37320
37312
  });
37321
37313
 
37322
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/journal.js
37314
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/journal.js
37323
37315
  var Journal = defineSyscall({
37324
37316
  description: "Read one authorized page of semantic operations from the kernel journal.",
37325
37317
  auth: "authorized",
@@ -37327,7 +37319,7 @@ var Journal = defineSyscall({
37327
37319
  output: journalOutput
37328
37320
  });
37329
37321
 
37330
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/mint.js
37322
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/mint.js
37331
37323
  var Mint = defineSyscall({
37332
37324
  description: "Resolve and sign one authorized Grant credential.",
37333
37325
  auth: "authorized",
@@ -37337,7 +37329,7 @@ var Mint = defineSyscall({
37337
37329
  inheritance: "default"
37338
37330
  });
37339
37331
 
37340
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/mutate.js
37332
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/mutate.js
37341
37333
  var Mutate = defineSyscall({
37342
37334
  description: "Validate, authorize, and commit one atomic graph mutation.",
37343
37335
  auth: "authorized",
@@ -37345,7 +37337,7 @@ var Mutate = defineSyscall({
37345
37337
  output: mutateOutput
37346
37338
  });
37347
37339
 
37348
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/provision.js
37340
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/provision.js
37349
37341
  var Provision = defineSyscall({
37350
37342
  description: "Atomically execute a graph transition whose designated Identities are born complete.",
37351
37343
  auth: "authorized",
@@ -37353,7 +37345,7 @@ var Provision = defineSyscall({
37353
37345
  output: provisionOutput
37354
37346
  });
37355
37347
 
37356
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/query.js
37348
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/query.js
37357
37349
  var Query = defineSyscall({
37358
37350
  description: "Execute one finite authorized graph query.",
37359
37351
  auth: "authorized",
@@ -37361,7 +37353,7 @@ var Query = defineSyscall({
37361
37353
  output: queryOutput
37362
37354
  });
37363
37355
 
37364
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/uninstall.js
37356
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/uninstall.js
37365
37357
  var Uninstall = defineSyscall({
37366
37358
  description: "Durably uninstall one Domain installation epoch and return its terminal receipt.",
37367
37359
  auth: "authorized",
@@ -37369,7 +37361,7 @@ var Uninstall = defineSyscall({
37369
37361
  output: uninstallOutput
37370
37362
  });
37371
37363
 
37372
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/view-resolve.js
37364
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/view-resolve.js
37373
37365
  var ViewResolve = defineSyscall({
37374
37366
  description: "Resolve the installed View declarations applicable to one authorized graph target.",
37375
37367
  auth: "authorized",
@@ -37379,7 +37371,7 @@ var ViewResolve = defineSyscall({
37379
37371
  inheritance: "sealed"
37380
37372
  });
37381
37373
 
37382
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/whoami.js
37374
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/whoami.js
37383
37375
  var Whoami = defineSyscall({
37384
37376
  description: "Return the Identity authenticated for this invocation.",
37385
37377
  auth: "authenticated",
@@ -37389,7 +37381,7 @@ var Whoami = defineSyscall({
37389
37381
  inheritance: "default"
37390
37382
  });
37391
37383
 
37392
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/whois.js
37384
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/whois.js
37393
37385
  var Whois = defineSyscall({
37394
37386
  description: "Resolve one issuer-and-subject Identity.",
37395
37387
  auth: "authorized",
@@ -37399,7 +37391,7 @@ var Whois = defineSyscall({
37399
37391
  inheritance: "default"
37400
37392
  });
37401
37393
 
37402
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/index.js
37394
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/declarations/index.js
37403
37395
  var Functions = Object.freeze({
37404
37396
  query: Query,
37405
37397
  mutate: Mutate,
@@ -37423,7 +37415,7 @@ var ViewMethods = Object.freeze({
37423
37415
  resolve: ViewResolve
37424
37416
  });
37425
37417
 
37426
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/callables/function-interface.js
37418
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/callables/function-interface.js
37427
37419
  var FunctionInterface = nodeInterface({
37428
37420
  description: "Ordinary projection-node contract for a standalone Function or Node Method declaration.",
37429
37421
  extends: [Descriptable],
@@ -37438,13 +37430,13 @@ var FunctionInterface = nodeInterface({
37438
37430
  }
37439
37431
  });
37440
37432
 
37441
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/callables/function.js
37433
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/callables/function.js
37442
37434
  var Function2 = nodeClass({
37443
37435
  description: "The installed projection of a standalone Function or Node Method declaration; it is not a principal.",
37444
37436
  implements: [FunctionInterface],
37445
37437
  methods: FunctionMethods
37446
37438
  });
37447
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/callables/method-of.js
37439
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/callables/method-of.js
37448
37440
  var MethodOf = edgeClass.directed({
37449
37441
  source: { as: "method", accepts: [Function2], outgoing: "0..1" },
37450
37442
  target: { as: "owner", accepts: [Class2, Interface], incoming: "0..*" },
@@ -37455,7 +37447,7 @@ var MethodOf = edgeClass.directed({
37455
37447
  static: property({ type: "boolean" }, { visibility: "private" })
37456
37448
  }
37457
37449
  });
37458
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/callables/ui.js
37450
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/callables/ui.js
37459
37451
  var UI = nodeInterface({
37460
37452
  description: "Ordinary projection-node contract for a declarative browser surface.",
37461
37453
  extends: [Descriptable],
@@ -37463,13 +37455,13 @@ var UI = nodeInterface({
37463
37455
  auth: { enum: ["required", "optional", "public"] }
37464
37456
  }
37465
37457
  });
37466
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/callables/view.js
37458
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/callables/view.js
37467
37459
  var View = nodeClass({
37468
37460
  description: "The installed projection of a declarative browser surface; it is not a principal.",
37469
37461
  implements: [UI],
37470
37462
  methods: ViewMethods
37471
37463
  });
37472
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/identity/identity.js
37464
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/identity/identity.js
37473
37465
  var Identity = nodeInterface({
37474
37466
  description: "A principal that can be authenticated and can originate persistent authority facts.",
37475
37467
  properties: {
@@ -37484,7 +37476,7 @@ var Identity = nodeInterface({
37484
37476
  methods: IdentityMethods
37485
37477
  });
37486
37478
 
37487
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/identity/composition.js
37479
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/identity/composition.js
37488
37480
  function identityComposition(role, description2) {
37489
37481
  return edgeClass.directed({
37490
37482
  source: { as: "subject", accepts: [Identity], outgoing: "0..*" },
@@ -37495,13 +37487,13 @@ function identityComposition(role, description2) {
37495
37487
  });
37496
37488
  }
37497
37489
 
37498
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/identity/constrained-by.js
37490
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/identity/constrained-by.js
37499
37491
  var ConstrainedBy = identityComposition("constraint", "An Identity intersects its effective authority with another Identity.");
37500
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/identity/excluded-from.js
37492
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/identity/excluded-from.js
37501
37493
  var ExcludedFrom = identityComposition("excluded", "An Identity excludes another Identity from its effective authority.");
37502
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/identity/extends-with.js
37494
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/identity/extends-with.js
37503
37495
  var ExtendsWith = identityComposition("extension", "An Identity unions its effective authority with another Identity.");
37504
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/domain/domain.js
37496
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/domain/domain.js
37505
37497
  var Domain2 = nodeClass({
37506
37498
  description: "A stable Domain principal and the active projection of one canonical DomainSchema revision.",
37507
37499
  implements: [Identity],
@@ -37515,7 +37507,7 @@ var Domain2 = nodeClass({
37515
37507
  schemaRevision: property({ type: "string", pattern: "sha256:[0-9a-f]{64}" }, { visibility: "private" })
37516
37508
  }
37517
37509
  });
37518
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/domain/of-domain.js
37510
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/domain/of-domain.js
37519
37511
  var OfDomain = edgeClass.directed({
37520
37512
  source: { as: "member", accepts: [Node], outgoing: "0..1" },
37521
37513
  target: { as: "domain", accepts: [Domain2], incoming: "0..*" },
@@ -37526,22 +37518,22 @@ var OfDomain = edgeClass.directed({
37526
37518
  member: property({ type: "string", minLength: 3 }, { visibility: "private" })
37527
37519
  }
37528
37520
  });
37529
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/callables/view-for.js
37521
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/callables/view-for.js
37530
37522
  var ViewFor = edgeClass.directed({
37531
37523
  source: { as: "view", accepts: [View], outgoing: "1..*" },
37532
37524
  target: { as: "target", accepts: [Class2, Domain2, Interface], incoming: "0..*" },
37533
37525
  description: "A View declaration targets one Domain or a non-empty set of Classes and Interfaces.",
37534
37526
  implements: [Edge]
37535
37527
  });
37536
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-use.js
37528
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/can-use.js
37537
37529
  var CanUse = authorityRelation(Function2, "function", "An Identity may invoke the exact target Function declaration.");
37538
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/policy.js
37530
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/policy.js
37539
37531
  var Policy = nodeClass({
37540
37532
  description: "The installed graph projection of one named closed Policy declaration owned by a Domain.",
37541
37533
  implements: [Descriptable]
37542
37534
  });
37543
37535
 
37544
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/governed-by.js
37536
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/governed-by.js
37545
37537
  var GovernedBy = edgeClass.directed({
37546
37538
  source: { as: "class", accepts: [Class2], outgoing: "0..*" },
37547
37539
  target: { as: "policy", accepts: [Policy], incoming: "0..*" },
@@ -37552,7 +37544,7 @@ var GovernedBy = edgeClass.directed({
37552
37544
  },
37553
37545
  constraints: { noSelf: true }
37554
37546
  });
37555
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/operations.js
37547
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/authority/operations.js
37556
37548
  var AuthorityOperationOrder = Object.freeze([
37557
37549
  "use",
37558
37550
  "create",
@@ -37573,12 +37565,12 @@ var AuthorityOperations = Object.freeze({
37573
37565
  grant: node(Operation, { name: "grant" }),
37574
37566
  revoke: node(Operation, { name: "revoke" })
37575
37567
  });
37576
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/core/operations/index.js
37568
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/core/operations/index.js
37577
37569
  var OperationCore = Object.freeze({
37578
37570
  nodes: AuthorityOperations,
37579
37571
  edges: Object.freeze([])
37580
37572
  });
37581
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/schema.js
37573
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/schema.js
37582
37574
  var KernelDefinitions = {
37583
37575
  interfaces: {
37584
37576
  Descriptable,
@@ -37655,7 +37647,7 @@ var KernelRootFunctions = Object.freeze([
37655
37647
  K.Identity.mint,
37656
37648
  K.View.resolve
37657
37649
  ].sort((left, right) => left.key < right.key ? -1 : left.key > right.key ? 1 : 0));
37658
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/descriptors/model.js
37650
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/descriptors/model.js
37659
37651
  function functionSyscall(callable) {
37660
37652
  const ref = Object.freeze({
37661
37653
  origin: callable.origin,
@@ -37693,7 +37685,7 @@ function methodSyscall(callable) {
37693
37685
  });
37694
37686
  }
37695
37687
 
37696
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/descriptors/functions.js
37688
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/descriptors/functions.js
37697
37689
  var query = functionSyscall(K.query);
37698
37690
  var mutate = functionSyscall(K.mutate);
37699
37691
  var provision = functionSyscall(K.provision);
@@ -37701,27 +37693,27 @@ var install = functionSyscall(K.install);
37701
37693
  var introspect = functionSyscall(K.introspect);
37702
37694
  var uninstall = functionSyscall(K.uninstall);
37703
37695
  var journal = functionSyscall(K.journal);
37704
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/descriptors/identity.js
37696
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/descriptors/identity.js
37705
37697
  var delegate = methodSyscall(K.Identity.delegate);
37706
37698
  var can = methodSyscall(K.Identity.can);
37707
37699
  var whoami = methodSyscall(K.Identity.whoami);
37708
37700
  var whois = methodSyscall(K.Identity.whois);
37709
37701
  var mint = methodSyscall(K.Identity.mint);
37710
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/descriptors/function.js
37702
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/descriptors/function.js
37711
37703
  var Admit2 = K.$.class("Function").$.method("admit");
37712
37704
  var admit2 = methodSyscall(Admit2);
37713
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/descriptors/view.js
37705
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/syscalls/descriptors/view.js
37714
37706
  var resolve = methodSyscall(K.View.resolve);
37715
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/projection/keys.js
37707
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/projection/keys.js
37716
37708
  var encoder7 = new TextEncoder;
37717
37709
 
37718
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/projection/project.js
37710
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/projection/project.js
37719
37711
  var EMPTY_PROPERTIES = normalizeProperties({});
37720
- // node_modules/.pnpm/@astrale-os+kernel-core@file+vendor+kernel+astrale-os-kernel-core-0.9.0-beta.2.tgz_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/projection/compile.js
37712
+ // node_modules/.pnpm/@astrale-os+kernel-core@0.9.0-beta.3_typescript@6.0.3/node_modules/@astrale-os/kernel-core/dist/schema/kernel/projection/compile.js
37721
37713
  var EMPTY_LOOKUP = Object.freeze({ get: () => {
37722
37714
  return;
37723
37715
  } });
37724
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/requirements.js
37716
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/requirements.js
37725
37717
  var ClassOperationOrder = Object.freeze([
37726
37718
  "create",
37727
37719
  "read",
@@ -37884,7 +37876,7 @@ function hasCallable(dependency, reference2) {
37884
37876
  return declaration2?.family === "node" && declaration2.methods[method] !== undefined;
37885
37877
  }
37886
37878
 
37887
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/route.js
37879
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/route.js
37888
37880
  var ROUTE_NAME = /^[A-Za-z][A-Za-z0-9_-]{0,63}$/u;
37889
37881
  function admitRoute(input, origin) {
37890
37882
  const value = record2(input, "PUBLICATION_ROUTE_INVALID", "Published HTTP route is invalid.");
@@ -38003,7 +37995,7 @@ function stringRecord(input) {
38003
37995
  return Object.freeze(output2);
38004
37996
  }
38005
37997
 
38006
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/schema.js
37998
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/schema.js
38007
37999
  function admitSchema(input) {
38008
38000
  const value = record2(input, "PUBLICATION_INVALID", "Published schema is invalid.");
38009
38001
  exact(value, ["revision", "bundle"], "PUBLICATION_INVALID");
@@ -38016,7 +38008,7 @@ function admitSchema(input) {
38016
38008
  });
38017
38009
  }
38018
38010
 
38019
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/publication.js
38011
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/publication.js
38020
38012
  var PATH = "/.well-known/astrale/domain.json";
38021
38013
  var MEDIA_TYPE = "application/vnd.astrale.domain-publication+json;v=2";
38022
38014
  function url2(input) {
@@ -38183,7 +38175,7 @@ function withoutEtag(input) {
38183
38175
  const { etag: _etag, ...content } = input;
38184
38176
  return content;
38185
38177
  }
38186
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery/index.js
38178
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery/index.js
38187
38179
  var exports_delivery = {};
38188
38180
  __export(exports_delivery, {
38189
38181
  ATTESTATION_MAX_BYTES: () => ATTESTATION_MAX_BYTES,
@@ -38196,7 +38188,7 @@ __export(exports_delivery, {
38196
38188
  acceptRequest: () => acceptRequest
38197
38189
  });
38198
38190
 
38199
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery/error.js
38191
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery/error.js
38200
38192
  class DeliveryError extends Error {
38201
38193
  code;
38202
38194
  name = "DeliveryError";
@@ -38209,20 +38201,20 @@ function fail3(code, message, cause) {
38209
38201
  throw new DeliveryError(code, message, cause === undefined ? undefined : { cause });
38210
38202
  }
38211
38203
 
38212
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery/limits.js
38204
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery/limits.js
38213
38205
  var PURPOSE = "astrale.domain.delivery.v1";
38214
38206
  var NONCE_MIN_LENGTH = 16;
38215
38207
  var NONCE_MAX_LENGTH = 256;
38216
38208
  var ATTESTATION_MAX_BYTES = 16384;
38217
38209
 
38218
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery/attestation.js
38210
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery/attestation.js
38219
38211
  function acceptAttestation(input) {
38220
38212
  if (typeof input !== "string" || input.length === 0 || new TextEncoder().encode(input).byteLength > ATTESTATION_MAX_BYTES) {
38221
38213
  fail3("DELIVERY_INVALID", "Delivery attestation is invalid.");
38222
38214
  }
38223
38215
  return input;
38224
38216
  }
38225
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery/claims.js
38217
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery/claims.js
38226
38218
  function acceptClaims(input) {
38227
38219
  if (input === null || typeof input !== "object" || Array.isArray(input)) {
38228
38220
  fail3("DELIVERY_CLAIMS_INVALID", "Expected delivery claims.");
@@ -38271,7 +38263,7 @@ function deepFreeze5(value) {
38271
38263
  deepFreeze5(nested);
38272
38264
  return Object.freeze(value);
38273
38265
  }
38274
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery/delivery.js
38266
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery/delivery.js
38275
38267
  function accept13(input) {
38276
38268
  if (input === null || typeof input !== "object" || Array.isArray(input)) {
38277
38269
  fail3("DELIVERY_INVALID", "Expected a Delivery object.");
@@ -38298,7 +38290,7 @@ function deepFreeze6(value) {
38298
38290
  deepFreeze6(nested);
38299
38291
  return Object.freeze(value);
38300
38292
  }
38301
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery/request.js
38293
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/delivery/request.js
38302
38294
  function acceptRequest(input) {
38303
38295
  if (input === null || typeof input !== "object" || Array.isArray(input)) {
38304
38296
  fail3("DELIVERY_REQUEST_INVALID", "Expected a Delivery request.");
@@ -38338,7 +38330,7 @@ function acceptRequest(input) {
38338
38330
  etag: value.etag
38339
38331
  });
38340
38332
  }
38341
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/publication/reference.js
38333
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/publication/reference.js
38342
38334
  function reference2(input) {
38343
38335
  return deepFreeze4({
38344
38336
  origin: input.origin,
@@ -38399,24 +38391,25 @@ function acceptIssuer2(input) {
38399
38391
  throw cause;
38400
38392
  }
38401
38393
  }
38402
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/redirect.js
38394
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/redirect.js
38403
38395
  var ROUTE_FIELDS = new Set(["endpoint", "via"]);
38404
38396
  var VIA_FIELDS = new Set(["kind", "publication", "issuer"]);
38405
- var REDIRECT_FIELDS = new Set(["kind", "id", "route", "credential", "trace"]);
38406
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/routing.js
38397
+ var REDIRECTION_FIELDS = new Set(["route", "credential", "trace"]);
38398
+ var REDIRECT_RESPONSE_FIELDS = new Set(["kind", "requestId", "invocation", "redirect"]);
38399
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/routing.js
38407
38400
  var VIA_FIELDS2 = new Set(["kind", "publication", "issuer"]);
38408
38401
  var REFRESH_FIELDS = new Set(["kind", "stale"]);
38409
38402
 
38410
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/schema.js
38403
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/schema.js
38411
38404
  var FIELDS7 = new Set(["target", "revision"]);
38412
38405
 
38413
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/target.js
38406
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/target.js
38414
38407
  var CALL_FIELDS = new Set(["target", "input"]);
38415
38408
 
38416
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/request.js
38409
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/request.js
38417
38410
  var REQUEST_FIELDS = new Set([
38418
38411
  "version",
38419
- "id",
38412
+ "requestId",
38420
38413
  "call",
38421
38414
  "credential",
38422
38415
  "delegate",
@@ -38425,23 +38418,23 @@ var REQUEST_FIELDS = new Set([
38425
38418
  "idempotencyKey",
38426
38419
  "trace"
38427
38420
  ]);
38428
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/stale-route.js
38429
- var FIELDS8 = new Set(["kind", "id", "current"]);
38421
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/stale-route.js
38422
+ var FIELDS8 = new Set(["kind", "requestId", "invocation", "current"]);
38430
38423
 
38431
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/response.js
38432
- var SUCCESS_FIELDS = new Set(["result", "id"]);
38433
- var ERROR_FIELDS = new Set(["error", "id"]);
38434
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/invocation/websocket/binary.js
38424
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/response.js
38425
+ var SUCCESS_FIELDS = new Set(["result", "requestId", "invocation"]);
38426
+ var ERROR_FIELDS = new Set(["error", "requestId", "invocation"]);
38427
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/invocation/websocket/binary.js
38435
38428
  var MAGIC = new Uint8Array([65, 83, 84, 66, 1]);
38436
38429
  var encoder8 = new TextEncoder;
38437
38430
  var decoder3 = new TextDecoder("utf-8", { fatal: true });
38438
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/routes/routing.js
38431
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/routes/routing.js
38439
38432
  var HTTP_ROUTE_PUBLICATION = "if-match";
38440
38433
  var HTTP_ROUTE_ISSUER = "x-astrale-issuer";
38441
38434
  var HTTP_ROUTE_STALE = "x-astrale-route-stale";
38442
38435
  var HTTP_ROUTE_MISS = "x-astrale-route-miss";
38443
38436
 
38444
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/routes/mapping.js
38437
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/routes/mapping.js
38445
38438
  var RESERVED_HEADERS = new Set([
38446
38439
  HTTP_IDEMPOTENCY_KEY,
38447
38440
  HTTP_ROUTE_ISSUER,
@@ -38450,7 +38443,7 @@ var RESERVED_HEADERS = new Set([
38450
38443
  HTTP_ROUTE_STALE
38451
38444
  ]);
38452
38445
 
38453
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/issuer/index.js
38446
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/issuer/index.js
38454
38447
  var exports_issuer2 = {};
38455
38448
  __export(exports_issuer2, {
38456
38449
  DiscoveryError: () => DiscoveryError,
@@ -38463,7 +38456,7 @@ __export(exports_issuer2, {
38463
38456
  paths: () => paths
38464
38457
  });
38465
38458
 
38466
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/issuer/error.js
38459
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/issuer/error.js
38467
38460
  class DiscoveryError extends Error {
38468
38461
  code;
38469
38462
  name = "DiscoveryError";
@@ -38476,7 +38469,7 @@ function fail5(code, message, cause) {
38476
38469
  throw new DiscoveryError(code, message, cause === undefined ? undefined : { cause });
38477
38470
  }
38478
38471
 
38479
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/issuer/url.js
38472
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/issuer/url.js
38480
38473
  function acceptIssuer3(input) {
38481
38474
  if (typeof input !== "string") {
38482
38475
  fail5("ISSUER_DISCOVERY_INVALID", "Issuer must be an absolute HTTP(S) URL.");
@@ -38503,7 +38496,7 @@ function acceptIssuer3(input) {
38503
38496
  }
38504
38497
  }
38505
38498
 
38506
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/issuer/configuration.js
38499
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/issuer/configuration.js
38507
38500
  var ALGORITHM = /^[A-Za-z0-9_-]{1,64}$/u;
38508
38501
  function configuration(issuer, algorithms, options = {}) {
38509
38502
  const admitted = acceptIssuer3(issuer);
@@ -38585,14 +38578,14 @@ function deepFreeze7(input) {
38585
38578
  deepFreeze7(value);
38586
38579
  return Object.freeze(input);
38587
38580
  }
38588
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/issuer/hosted.js
38581
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/issuer/hosted.js
38589
38582
  var THUMBPRINT = /^[A-Za-z0-9_-]{43}$/u;
38590
38583
  function hosted(base, thumbprint2) {
38591
38584
  if (typeof thumbprint2 !== "string" || !THUMBPRINT.test(thumbprint2))
38592
38585
  return;
38593
38586
  return acceptIssuer3(`${acceptIssuer3(base)}/iss/${thumbprint2}`);
38594
38587
  }
38595
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/issuer/key-set.js
38588
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/issuer/key-set.js
38596
38589
  function keySet(keys, algorithms) {
38597
38590
  if (!Array.isArray(keys))
38598
38591
  fail5("ISSUER_KEY_SET_INVALID", "Issuer keys must be an array.");
@@ -38636,7 +38629,7 @@ function deepFreeze8(input) {
38636
38629
  deepFreeze8(value);
38637
38630
  return Object.freeze(input);
38638
38631
  }
38639
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/issuer/paths.js
38632
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/issuer/paths.js
38640
38633
  function paths(issuer) {
38641
38634
  const admitted = acceptIssuer3(issuer);
38642
38635
  const pathname = new URL(admitted).pathname.replace(/\/+$/u, "");
@@ -38646,7 +38639,7 @@ function paths(issuer) {
38646
38639
  tokenExchange: `${pathname}/.well-known/astrale/token`
38647
38640
  });
38648
38641
  }
38649
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/issuer/exchange.js
38642
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/issuer/exchange.js
38650
38643
  var exports_exchange = {};
38651
38644
  __export(exports_exchange, {
38652
38645
  MEDIA_TYPE: () => MEDIA_TYPE4,
@@ -38785,9 +38778,9 @@ function nonEmptyText(input, label) {
38785
38778
  }
38786
38779
  return input;
38787
38780
  }
38788
- // node_modules/.pnpm/@astrale-os+kernel-protocol@file+vendor+kernel+astrale-os-kernel-protocol-0.5.0-beta.2._75c405dc304241179d2ae7f749ba3198/node_modules/@astrale-os/kernel-protocol/dist/routes/reservation.js
38781
+ // node_modules/.pnpm/@astrale-os+kernel-protocol@0.5.0-beta.3_msgpackr@1.12.1_typescript@6.0.3/node_modules/@astrale-os/kernel-protocol/dist/routes/reservation.js
38789
38782
  var STATIC_RESERVED_PATHS = new Set([PATH]);
38790
- // node_modules/.pnpm/@astrale-os+sdk@file+vendor+astrale-os-sdk-0.5.0-beta.3.tgz_@astrale-os+ox@0.1.2_oxfmt@_d89a6c1ae41833f2be5d80f4335e7700/node_modules/@astrale-os/sdk/dist/auth/exchange.js
38783
+ // node_modules/.pnpm/@astrale-os+sdk@0.5.0-beta.4_@astrale-os+ox@0.1.2_oxfmt@0.52.0_oxlint@1.79.0__msgpackr@1.12.1_oxlint@1.79.0/node_modules/@astrale-os/sdk/dist/auth/exchange.js
38791
38784
  var paths2 = exports_issuer2.paths;
38792
38785
  var acceptConfiguration2 = exports_issuer2.acceptConfiguration;
38793
38786
  var MEDIA_TYPE5 = exports_issuer2.exchange.MEDIA_TYPE;