@poe-platform/safe-js 0.1.7 → 0.1.9

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.
@@ -22,7 +22,7 @@ import {
22
22
  resolveFsConfig,
23
23
  splitFrontmatter,
24
24
  withBrokenPipeGuard
25
- } from "./chunks/chunk-4HHBSGDR.js";
25
+ } from "./chunks/chunk-ZYYMVUYU.js";
26
26
  import {
27
27
  Budget,
28
28
  SandboxError,
@@ -26,7 +26,7 @@ import {
26
26
  runWithSpawnUsageAccumulator,
27
27
  splitFrontmatter,
28
28
  supportsSpawnMode
29
- } from "./chunks/chunk-4HHBSGDR.js";
29
+ } from "./chunks/chunk-ZYYMVUYU.js";
30
30
  import {
31
31
  Budget,
32
32
  FileSnapshotBackend,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poe-platform/safe-js",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "Budgeted JavaScript interpreter with explicit host capabilities and resumable execution",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -58,7 +58,7 @@
58
58
  "access": "public"
59
59
  },
60
60
  "dependencies": {
61
- "@poe-platform/safe-fs": "0.1.7",
61
+ "@poe-platform/safe-fs": "0.1.9",
62
62
  "yaml": "^2.8.2",
63
63
  "jose": "^6.1.3",
64
64
  "@types/node": "^25.2.2"
@@ -1,11 +0,0 @@
1
- import type { JsonSchemaDocument, JsonSchemaDocumentOptions } from "../../toolcraft-schema/index.js";
2
- interface CompileConfigSchemaOptions {
3
- entrypoints: readonly string[];
4
- document?: JsonSchemaDocumentOptions;
5
- }
6
- export interface CompileConfigSchemaFromSourceTextsOptions extends CompileConfigSchemaOptions {
7
- files: Record<string, string>;
8
- }
9
- export declare function compileConfigSchemaFromEntrypoints(options: CompileConfigSchemaOptions): JsonSchemaDocument;
10
- export declare function compileConfigSchemaFromSourceTexts(options: CompileConfigSchemaFromSourceTextsOptions): JsonSchemaDocument;
11
- export {};