@pydantic/monty 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +73 -8
- package/index.js +54 -53
- package/package.json +7 -7
- package/wrapper.d.ts +23 -4
- package/wrapper.js +7 -4
package/index.d.ts
CHANGED
|
@@ -187,8 +187,13 @@ export declare class MontyRepl {
|
|
|
187
187
|
constructor(options?: MontyReplOptions | undefined | null)
|
|
188
188
|
/** Returns the script name for this REPL session. */
|
|
189
189
|
get scriptName(): string
|
|
190
|
-
/**
|
|
191
|
-
|
|
190
|
+
/**
|
|
191
|
+
* Executes one incremental snippet against persistent REPL state.
|
|
192
|
+
*
|
|
193
|
+
* @param code - Python code to execute
|
|
194
|
+
* @param options - Optional feed options (mount)
|
|
195
|
+
*/
|
|
196
|
+
feed(code: string, options?: FeedOptions | undefined | null): JsMontyObject | MontyException
|
|
192
197
|
/** Serializes this REPL session to bytes. */
|
|
193
198
|
dump(): Buffer
|
|
194
199
|
/** Restores a REPL session from bytes produced by `dump()`. */
|
|
@@ -197,12 +202,6 @@ export declare class MontyRepl {
|
|
|
197
202
|
repr(): string
|
|
198
203
|
}
|
|
199
204
|
|
|
200
|
-
/**
|
|
201
|
-
* Represents paused execution waiting for an external function call return value.
|
|
202
|
-
*
|
|
203
|
-
* Contains information about the pending external function call and allows
|
|
204
|
-
* resuming execution with the return value or an exception.
|
|
205
|
-
*/
|
|
206
205
|
export declare class MontySnapshot {
|
|
207
206
|
/** Returns the name of the script being executed. */
|
|
208
207
|
get scriptName(): string
|
|
@@ -274,6 +273,45 @@ export declare class MontyTypingError {
|
|
|
274
273
|
toString(): string
|
|
275
274
|
}
|
|
276
275
|
|
|
276
|
+
/**
|
|
277
|
+
* A single mount point mapping a virtual path to a host directory.
|
|
278
|
+
*
|
|
279
|
+
* Owns the underlying [`Mount`] (including overlay state for `'overlay'` mode)
|
|
280
|
+
* via shared storage, so reusing it across `Monty.run()` calls preserves the
|
|
281
|
+
* same overlay data.
|
|
282
|
+
*
|
|
283
|
+
* The `mode` controls sandbox access:
|
|
284
|
+
* - `'read-only'` — sandbox can read but not write
|
|
285
|
+
* - `'read-write'` — sandbox can read and write real host files
|
|
286
|
+
* - `'overlay'` — reads fall through to host; writes are captured in memory
|
|
287
|
+
*/
|
|
288
|
+
export declare class MountDirectory {
|
|
289
|
+
/**
|
|
290
|
+
* Creates a new mount directory.
|
|
291
|
+
*
|
|
292
|
+
* @param virtualPath - Absolute virtual path prefix (e.g. `"/data"`)
|
|
293
|
+
* @param hostPath - Path to the real host directory
|
|
294
|
+
* @param options - Optional mode and write_bytes_limit
|
|
295
|
+
*/
|
|
296
|
+
constructor(virtualPath: string, hostPath: string, options?: MountDirectoryOptions | undefined | null)
|
|
297
|
+
/** The normalized virtual path prefix inside the sandbox. */
|
|
298
|
+
get virtualPath(): string
|
|
299
|
+
/** The canonical host directory path. */
|
|
300
|
+
get hostPath(): string
|
|
301
|
+
/** The access mode: `"read-only"`, `"read-write"`, or `"overlay"`. */
|
|
302
|
+
get mode(): string
|
|
303
|
+
/** The optional write bytes limit, or `null` if unlimited. */
|
|
304
|
+
get writeBytesLimit(): number | null
|
|
305
|
+
/**
|
|
306
|
+
* Returns a string representation of this mount directory.
|
|
307
|
+
*
|
|
308
|
+
* # Panics
|
|
309
|
+
*
|
|
310
|
+
* Panics if the internal mutex is poisoned.
|
|
311
|
+
*/
|
|
312
|
+
repr(): string
|
|
313
|
+
}
|
|
314
|
+
|
|
277
315
|
/**
|
|
278
316
|
* Information about the inner Python exception.
|
|
279
317
|
*
|
|
@@ -295,6 +333,15 @@ export interface ExceptionInput {
|
|
|
295
333
|
message: string
|
|
296
334
|
}
|
|
297
335
|
|
|
336
|
+
/** Options for `MontyRepl.feed()`. */
|
|
337
|
+
export interface FeedOptions {
|
|
338
|
+
/**
|
|
339
|
+
* Filesystem mount(s) for the sandbox.
|
|
340
|
+
* A single `MountDirectory` or an array of `MountDirectory`.
|
|
341
|
+
*/
|
|
342
|
+
mount?: object
|
|
343
|
+
}
|
|
344
|
+
|
|
298
345
|
/**
|
|
299
346
|
* A single frame in a Monty traceback.
|
|
300
347
|
*
|
|
@@ -343,6 +390,14 @@ export interface MontyReplOptions {
|
|
|
343
390
|
limits?: ResourceLimits
|
|
344
391
|
}
|
|
345
392
|
|
|
393
|
+
/** Options for creating a new MountDirectory. */
|
|
394
|
+
export interface MountDirectoryOptions {
|
|
395
|
+
/** Access mode: `'read-only'`, `'read-write'`, or `'overlay'` (default). */
|
|
396
|
+
mode?: string
|
|
397
|
+
/** Optional limit on cumulative bytes written through this mount. */
|
|
398
|
+
writeBytesLimit?: number
|
|
399
|
+
}
|
|
400
|
+
|
|
346
401
|
/** Options for loading a serialized name lookup snapshot. */
|
|
347
402
|
export interface NameLookupLoadOptions {
|
|
348
403
|
/** Optional print callback function. */
|
|
@@ -401,6 +456,11 @@ export interface RunOptions {
|
|
|
401
456
|
* Keys are function names, values are callable functions.
|
|
402
457
|
*/
|
|
403
458
|
externalFunctions?: object
|
|
459
|
+
/**
|
|
460
|
+
* Filesystem mount(s) for the sandbox.
|
|
461
|
+
* A single `MountDirectory` or an array of `MountDirectory`.
|
|
462
|
+
*/
|
|
463
|
+
mount?: object
|
|
404
464
|
}
|
|
405
465
|
|
|
406
466
|
/** Options for loading a serialized snapshot. */
|
|
@@ -417,4 +477,9 @@ export interface StartOptions {
|
|
|
417
477
|
limits?: ResourceLimits
|
|
418
478
|
/** Optional print callback function. */
|
|
419
479
|
printCallback?: JsPrintCallback
|
|
480
|
+
/**
|
|
481
|
+
* Filesystem mount(s) for the sandbox.
|
|
482
|
+
* A single `MountDirectory` or an array of `MountDirectory`.
|
|
483
|
+
*/
|
|
484
|
+
mount?: object
|
|
420
485
|
}
|
package/index.js
CHANGED
|
@@ -81,8 +81,8 @@ function requireNative() {
|
|
|
81
81
|
try {
|
|
82
82
|
const binding = require('@pydantic/monty-android-arm64')
|
|
83
83
|
const bindingPackageVersion = require('@pydantic/monty-android-arm64/package.json').version
|
|
84
|
-
if (bindingPackageVersion !== '0.0.
|
|
85
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
84
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
85
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
86
86
|
}
|
|
87
87
|
return binding
|
|
88
88
|
} catch (e) {
|
|
@@ -97,8 +97,8 @@ function requireNative() {
|
|
|
97
97
|
try {
|
|
98
98
|
const binding = require('@pydantic/monty-android-arm-eabi')
|
|
99
99
|
const bindingPackageVersion = require('@pydantic/monty-android-arm-eabi/package.json').version
|
|
100
|
-
if (bindingPackageVersion !== '0.0.
|
|
101
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
100
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
101
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
102
102
|
}
|
|
103
103
|
return binding
|
|
104
104
|
} catch (e) {
|
|
@@ -118,8 +118,8 @@ function requireNative() {
|
|
|
118
118
|
try {
|
|
119
119
|
const binding = require('@pydantic/monty-win32-x64-gnu')
|
|
120
120
|
const bindingPackageVersion = require('@pydantic/monty-win32-x64-gnu/package.json').version
|
|
121
|
-
if (bindingPackageVersion !== '0.0.
|
|
122
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
121
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
122
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
123
123
|
}
|
|
124
124
|
return binding
|
|
125
125
|
} catch (e) {
|
|
@@ -134,8 +134,8 @@ function requireNative() {
|
|
|
134
134
|
try {
|
|
135
135
|
const binding = require('@pydantic/monty-win32-x64-msvc')
|
|
136
136
|
const bindingPackageVersion = require('@pydantic/monty-win32-x64-msvc/package.json').version
|
|
137
|
-
if (bindingPackageVersion !== '0.0.
|
|
138
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
137
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
138
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
139
139
|
}
|
|
140
140
|
return binding
|
|
141
141
|
} catch (e) {
|
|
@@ -151,8 +151,8 @@ function requireNative() {
|
|
|
151
151
|
try {
|
|
152
152
|
const binding = require('@pydantic/monty-win32-ia32-msvc')
|
|
153
153
|
const bindingPackageVersion = require('@pydantic/monty-win32-ia32-msvc/package.json').version
|
|
154
|
-
if (bindingPackageVersion !== '0.0.
|
|
155
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
154
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
155
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
156
156
|
}
|
|
157
157
|
return binding
|
|
158
158
|
} catch (e) {
|
|
@@ -167,8 +167,8 @@ function requireNative() {
|
|
|
167
167
|
try {
|
|
168
168
|
const binding = require('@pydantic/monty-win32-arm64-msvc')
|
|
169
169
|
const bindingPackageVersion = require('@pydantic/monty-win32-arm64-msvc/package.json').version
|
|
170
|
-
if (bindingPackageVersion !== '0.0.
|
|
171
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
170
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
171
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
172
172
|
}
|
|
173
173
|
return binding
|
|
174
174
|
} catch (e) {
|
|
@@ -186,8 +186,8 @@ function requireNative() {
|
|
|
186
186
|
try {
|
|
187
187
|
const binding = require('@pydantic/monty-darwin-universal')
|
|
188
188
|
const bindingPackageVersion = require('@pydantic/monty-darwin-universal/package.json').version
|
|
189
|
-
if (bindingPackageVersion !== '0.0.
|
|
190
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
189
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
190
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
191
191
|
}
|
|
192
192
|
return binding
|
|
193
193
|
} catch (e) {
|
|
@@ -202,8 +202,8 @@ function requireNative() {
|
|
|
202
202
|
try {
|
|
203
203
|
const binding = require('@pydantic/monty-darwin-x64')
|
|
204
204
|
const bindingPackageVersion = require('@pydantic/monty-darwin-x64/package.json').version
|
|
205
|
-
if (bindingPackageVersion !== '0.0.
|
|
206
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
205
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
206
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
207
207
|
}
|
|
208
208
|
return binding
|
|
209
209
|
} catch (e) {
|
|
@@ -218,8 +218,8 @@ function requireNative() {
|
|
|
218
218
|
try {
|
|
219
219
|
const binding = require('@pydantic/monty-darwin-arm64')
|
|
220
220
|
const bindingPackageVersion = require('@pydantic/monty-darwin-arm64/package.json').version
|
|
221
|
-
if (bindingPackageVersion !== '0.0.
|
|
222
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
221
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
222
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
223
223
|
}
|
|
224
224
|
return binding
|
|
225
225
|
} catch (e) {
|
|
@@ -238,8 +238,8 @@ function requireNative() {
|
|
|
238
238
|
try {
|
|
239
239
|
const binding = require('@pydantic/monty-freebsd-x64')
|
|
240
240
|
const bindingPackageVersion = require('@pydantic/monty-freebsd-x64/package.json').version
|
|
241
|
-
if (bindingPackageVersion !== '0.0.
|
|
242
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
241
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
242
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
243
243
|
}
|
|
244
244
|
return binding
|
|
245
245
|
} catch (e) {
|
|
@@ -254,8 +254,8 @@ function requireNative() {
|
|
|
254
254
|
try {
|
|
255
255
|
const binding = require('@pydantic/monty-freebsd-arm64')
|
|
256
256
|
const bindingPackageVersion = require('@pydantic/monty-freebsd-arm64/package.json').version
|
|
257
|
-
if (bindingPackageVersion !== '0.0.
|
|
258
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
257
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
258
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
259
259
|
}
|
|
260
260
|
return binding
|
|
261
261
|
} catch (e) {
|
|
@@ -275,8 +275,8 @@ function requireNative() {
|
|
|
275
275
|
try {
|
|
276
276
|
const binding = require('@pydantic/monty-linux-x64-musl')
|
|
277
277
|
const bindingPackageVersion = require('@pydantic/monty-linux-x64-musl/package.json').version
|
|
278
|
-
if (bindingPackageVersion !== '0.0.
|
|
279
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
278
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
279
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
280
280
|
}
|
|
281
281
|
return binding
|
|
282
282
|
} catch (e) {
|
|
@@ -291,8 +291,8 @@ function requireNative() {
|
|
|
291
291
|
try {
|
|
292
292
|
const binding = require('@pydantic/monty-linux-x64-gnu')
|
|
293
293
|
const bindingPackageVersion = require('@pydantic/monty-linux-x64-gnu/package.json').version
|
|
294
|
-
if (bindingPackageVersion !== '0.0.
|
|
295
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
294
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
295
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
296
296
|
}
|
|
297
297
|
return binding
|
|
298
298
|
} catch (e) {
|
|
@@ -309,8 +309,8 @@ function requireNative() {
|
|
|
309
309
|
try {
|
|
310
310
|
const binding = require('@pydantic/monty-linux-arm64-musl')
|
|
311
311
|
const bindingPackageVersion = require('@pydantic/monty-linux-arm64-musl/package.json').version
|
|
312
|
-
if (bindingPackageVersion !== '0.0.
|
|
313
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
312
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
313
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
314
314
|
}
|
|
315
315
|
return binding
|
|
316
316
|
} catch (e) {
|
|
@@ -325,8 +325,8 @@ function requireNative() {
|
|
|
325
325
|
try {
|
|
326
326
|
const binding = require('@pydantic/monty-linux-arm64-gnu')
|
|
327
327
|
const bindingPackageVersion = require('@pydantic/monty-linux-arm64-gnu/package.json').version
|
|
328
|
-
if (bindingPackageVersion !== '0.0.
|
|
329
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
328
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
329
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
330
330
|
}
|
|
331
331
|
return binding
|
|
332
332
|
} catch (e) {
|
|
@@ -343,8 +343,8 @@ function requireNative() {
|
|
|
343
343
|
try {
|
|
344
344
|
const binding = require('@pydantic/monty-linux-arm-musleabihf')
|
|
345
345
|
const bindingPackageVersion = require('@pydantic/monty-linux-arm-musleabihf/package.json').version
|
|
346
|
-
if (bindingPackageVersion !== '0.0.
|
|
347
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
346
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
347
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
348
348
|
}
|
|
349
349
|
return binding
|
|
350
350
|
} catch (e) {
|
|
@@ -359,8 +359,8 @@ function requireNative() {
|
|
|
359
359
|
try {
|
|
360
360
|
const binding = require('@pydantic/monty-linux-arm-gnueabihf')
|
|
361
361
|
const bindingPackageVersion = require('@pydantic/monty-linux-arm-gnueabihf/package.json').version
|
|
362
|
-
if (bindingPackageVersion !== '0.0.
|
|
363
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
362
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
363
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
364
364
|
}
|
|
365
365
|
return binding
|
|
366
366
|
} catch (e) {
|
|
@@ -377,8 +377,8 @@ function requireNative() {
|
|
|
377
377
|
try {
|
|
378
378
|
const binding = require('@pydantic/monty-linux-loong64-musl')
|
|
379
379
|
const bindingPackageVersion = require('@pydantic/monty-linux-loong64-musl/package.json').version
|
|
380
|
-
if (bindingPackageVersion !== '0.0.
|
|
381
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
380
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
381
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
382
382
|
}
|
|
383
383
|
return binding
|
|
384
384
|
} catch (e) {
|
|
@@ -393,8 +393,8 @@ function requireNative() {
|
|
|
393
393
|
try {
|
|
394
394
|
const binding = require('@pydantic/monty-linux-loong64-gnu')
|
|
395
395
|
const bindingPackageVersion = require('@pydantic/monty-linux-loong64-gnu/package.json').version
|
|
396
|
-
if (bindingPackageVersion !== '0.0.
|
|
397
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
396
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
397
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
398
398
|
}
|
|
399
399
|
return binding
|
|
400
400
|
} catch (e) {
|
|
@@ -411,8 +411,8 @@ function requireNative() {
|
|
|
411
411
|
try {
|
|
412
412
|
const binding = require('@pydantic/monty-linux-riscv64-musl')
|
|
413
413
|
const bindingPackageVersion = require('@pydantic/monty-linux-riscv64-musl/package.json').version
|
|
414
|
-
if (bindingPackageVersion !== '0.0.
|
|
415
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
414
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
415
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
416
416
|
}
|
|
417
417
|
return binding
|
|
418
418
|
} catch (e) {
|
|
@@ -427,8 +427,8 @@ function requireNative() {
|
|
|
427
427
|
try {
|
|
428
428
|
const binding = require('@pydantic/monty-linux-riscv64-gnu')
|
|
429
429
|
const bindingPackageVersion = require('@pydantic/monty-linux-riscv64-gnu/package.json').version
|
|
430
|
-
if (bindingPackageVersion !== '0.0.
|
|
431
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
430
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
431
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
432
432
|
}
|
|
433
433
|
return binding
|
|
434
434
|
} catch (e) {
|
|
@@ -444,8 +444,8 @@ function requireNative() {
|
|
|
444
444
|
try {
|
|
445
445
|
const binding = require('@pydantic/monty-linux-ppc64-gnu')
|
|
446
446
|
const bindingPackageVersion = require('@pydantic/monty-linux-ppc64-gnu/package.json').version
|
|
447
|
-
if (bindingPackageVersion !== '0.0.
|
|
448
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
447
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
448
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
449
449
|
}
|
|
450
450
|
return binding
|
|
451
451
|
} catch (e) {
|
|
@@ -460,8 +460,8 @@ function requireNative() {
|
|
|
460
460
|
try {
|
|
461
461
|
const binding = require('@pydantic/monty-linux-s390x-gnu')
|
|
462
462
|
const bindingPackageVersion = require('@pydantic/monty-linux-s390x-gnu/package.json').version
|
|
463
|
-
if (bindingPackageVersion !== '0.0.
|
|
464
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
463
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
464
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
465
465
|
}
|
|
466
466
|
return binding
|
|
467
467
|
} catch (e) {
|
|
@@ -480,8 +480,8 @@ function requireNative() {
|
|
|
480
480
|
try {
|
|
481
481
|
const binding = require('@pydantic/monty-openharmony-arm64')
|
|
482
482
|
const bindingPackageVersion = require('@pydantic/monty-openharmony-arm64/package.json').version
|
|
483
|
-
if (bindingPackageVersion !== '0.0.
|
|
484
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
483
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
484
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
485
485
|
}
|
|
486
486
|
return binding
|
|
487
487
|
} catch (e) {
|
|
@@ -496,8 +496,8 @@ function requireNative() {
|
|
|
496
496
|
try {
|
|
497
497
|
const binding = require('@pydantic/monty-openharmony-x64')
|
|
498
498
|
const bindingPackageVersion = require('@pydantic/monty-openharmony-x64/package.json').version
|
|
499
|
-
if (bindingPackageVersion !== '0.0.
|
|
500
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
499
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
500
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
501
501
|
}
|
|
502
502
|
return binding
|
|
503
503
|
} catch (e) {
|
|
@@ -512,8 +512,8 @@ function requireNative() {
|
|
|
512
512
|
try {
|
|
513
513
|
const binding = require('@pydantic/monty-openharmony-arm')
|
|
514
514
|
const bindingPackageVersion = require('@pydantic/monty-openharmony-arm/package.json').version
|
|
515
|
-
if (bindingPackageVersion !== '0.0.
|
|
516
|
-
throw new Error(`Native binding package version mismatch, expected 0.0.
|
|
515
|
+
if (bindingPackageVersion !== '0.0.10' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
516
|
+
throw new Error(`Native binding package version mismatch, expected 0.0.10 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
517
517
|
}
|
|
518
518
|
return binding
|
|
519
519
|
} catch (e) {
|
|
@@ -579,7 +579,7 @@ if (!nativeBinding) {
|
|
|
579
579
|
throw new Error(`Failed to load native binding`)
|
|
580
580
|
}
|
|
581
581
|
|
|
582
|
-
const { Monty, MontyComplete, MontyException, JsMontyException, MontyNameLookup, MontyRepl, MontySnapshot, MontyTypingError } = nativeBinding
|
|
582
|
+
const { Monty, MontyComplete, MontyException, JsMontyException, MontyNameLookup, MontyRepl, MontySnapshot, MontyTypingError, MountDirectory } = nativeBinding
|
|
583
583
|
export { Monty }
|
|
584
584
|
export { MontyComplete }
|
|
585
585
|
export { MontyException }
|
|
@@ -588,3 +588,4 @@ export { MontyNameLookup }
|
|
|
588
588
|
export { MontyRepl }
|
|
589
589
|
export { MontySnapshot }
|
|
590
590
|
export { MontyTypingError }
|
|
591
|
+
export { MountDirectory }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pydantic/monty",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Sandboxed Python interpreter for JavaScript/TypeScript",
|
|
6
6
|
"main": "wrapper.js",
|
|
@@ -98,11 +98,11 @@
|
|
|
98
98
|
"arrowParens": "always"
|
|
99
99
|
},
|
|
100
100
|
"optionalDependencies": {
|
|
101
|
-
"@pydantic/monty-win32-x64-msvc": "0.0.
|
|
102
|
-
"@pydantic/monty-darwin-x64": "0.0.
|
|
103
|
-
"@pydantic/monty-linux-x64-gnu": "0.0.
|
|
104
|
-
"@pydantic/monty-darwin-arm64": "0.0.
|
|
105
|
-
"@pydantic/monty-linux-arm64-gnu": "0.0.
|
|
106
|
-
"@pydantic/monty-wasm32-wasi": "0.0.
|
|
101
|
+
"@pydantic/monty-win32-x64-msvc": "0.0.10",
|
|
102
|
+
"@pydantic/monty-darwin-x64": "0.0.10",
|
|
103
|
+
"@pydantic/monty-linux-x64-gnu": "0.0.10",
|
|
104
|
+
"@pydantic/monty-darwin-arm64": "0.0.10",
|
|
105
|
+
"@pydantic/monty-linux-arm64-gnu": "0.0.10",
|
|
106
|
+
"@pydantic/monty-wasm32-wasi": "0.0.10"
|
|
107
107
|
}
|
|
108
108
|
}
|
package/wrapper.d.ts
CHANGED
|
@@ -1,6 +1,22 @@
|
|
|
1
|
-
import type { ExceptionInfo, ExceptionInput, Frame, JsMontyObject, MontyOptions, NameLookupLoadOptions, NameLookupResumeOptions, ResourceLimits, ResumeOptions, RunOptions, SnapshotLoadOptions, StartOptions } from './index.js';
|
|
2
|
-
import { MontySnapshot as NativeMontySnapshot, MontyNameLookup as NativeMontyNameLookup, MontyComplete as NativeMontyComplete, MontyException as NativeMontyException, MontyTypingError as NativeMontyTypingError } from './index.js';
|
|
3
|
-
export type { MontyOptions,
|
|
1
|
+
import type { ExceptionInfo, ExceptionInput, FeedOptions as NativeFeedOptions, Frame, JsMontyObject, MountDirectoryOptions, MontyOptions, NameLookupLoadOptions, NameLookupResumeOptions, ResourceLimits, ResumeOptions, RunOptions as NativeRunOptions, SnapshotLoadOptions, StartOptions as NativeStartOptions } from './index.js';
|
|
2
|
+
import { MountDirectory, MontySnapshot as NativeMontySnapshot, MontyNameLookup as NativeMontyNameLookup, MontyComplete as NativeMontyComplete, MontyException as NativeMontyException, MontyTypingError as NativeMontyTypingError } from './index.js';
|
|
3
|
+
export type { MontyOptions, MountDirectoryOptions, ResourceLimits, Frame, ExceptionInfo, ResumeOptions, ExceptionInput, SnapshotLoadOptions, NameLookupResumeOptions, NameLookupLoadOptions, JsMontyObject, };
|
|
4
|
+
/** Options for running code. */
|
|
5
|
+
export interface RunOptions extends Omit<NativeRunOptions, 'mount'> {
|
|
6
|
+
/** Filesystem mount(s) for the sandbox. */
|
|
7
|
+
mount?: MountDirectory | MountDirectory[];
|
|
8
|
+
}
|
|
9
|
+
/** Options for starting execution. */
|
|
10
|
+
export interface StartOptions extends Omit<NativeStartOptions, 'mount'> {
|
|
11
|
+
/** Filesystem mount(s) for the sandbox. */
|
|
12
|
+
mount?: MountDirectory | MountDirectory[];
|
|
13
|
+
}
|
|
14
|
+
/** Options for REPL feed(). */
|
|
15
|
+
export interface FeedOptions extends Omit<NativeFeedOptions, 'mount'> {
|
|
16
|
+
/** Filesystem mount(s) for the sandbox. */
|
|
17
|
+
mount?: MountDirectory | MountDirectory[];
|
|
18
|
+
}
|
|
19
|
+
export { MountDirectory };
|
|
4
20
|
/**
|
|
5
21
|
* Alias for ResourceLimits (deprecated name).
|
|
6
22
|
*/
|
|
@@ -160,10 +176,11 @@ export declare class MontyRepl {
|
|
|
160
176
|
* Executes one incremental snippet.
|
|
161
177
|
*
|
|
162
178
|
* @param code - Snippet code to execute
|
|
179
|
+
* @param options - Optional feed options (mount)
|
|
163
180
|
* @returns Snippet output
|
|
164
181
|
* @throws {MontyRuntimeError} If execution raises an exception
|
|
165
182
|
*/
|
|
166
|
-
feed(code: string): JsMontyObject;
|
|
183
|
+
feed(code: string, options?: FeedOptions): JsMontyObject;
|
|
167
184
|
/** Serializes the REPL session to bytes. */
|
|
168
185
|
dump(): Buffer;
|
|
169
186
|
/** Restores a REPL session from bytes. */
|
|
@@ -268,6 +285,8 @@ export interface RunMontyAsyncOptions {
|
|
|
268
285
|
limits?: ResourceLimits;
|
|
269
286
|
/** Callback invoked on each print() call. The first argument is the stream name (always "stdout"), the second is the printed text. */
|
|
270
287
|
printCallback?: (stream: string, text: string) => void;
|
|
288
|
+
/** Filesystem mount(s) for the sandbox. */
|
|
289
|
+
mount?: MountDirectory | MountDirectory[];
|
|
271
290
|
}
|
|
272
291
|
/**
|
|
273
292
|
* Runs a Monty script with async external function support.
|
package/wrapper.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// Custom error classes that extend Error for proper JavaScript error handling.
|
|
2
2
|
// These wrap the native Rust classes to provide instanceof support.
|
|
3
|
-
import { Monty as NativeMonty, MontyRepl as NativeMontyRepl, MontySnapshot as NativeMontySnapshot, MontyNameLookup as NativeMontyNameLookup, MontyComplete as NativeMontyComplete, MontyException as NativeMontyException, MontyTypingError as NativeMontyTypingError, } from './index.js';
|
|
3
|
+
import { Monty as NativeMonty, MountDirectory, MontyRepl as NativeMontyRepl, MontySnapshot as NativeMontySnapshot, MontyNameLookup as NativeMontyNameLookup, MontyComplete as NativeMontyComplete, MontyException as NativeMontyException, MontyTypingError as NativeMontyTypingError, } from './index.js';
|
|
4
|
+
export { MountDirectory };
|
|
4
5
|
/**
|
|
5
6
|
* Base class for all Monty interpreter errors.
|
|
6
7
|
*
|
|
@@ -283,11 +284,12 @@ export class MontyRepl {
|
|
|
283
284
|
* Executes one incremental snippet.
|
|
284
285
|
*
|
|
285
286
|
* @param code - Snippet code to execute
|
|
287
|
+
* @param options - Optional feed options (mount)
|
|
286
288
|
* @returns Snippet output
|
|
287
289
|
* @throws {MontyRuntimeError} If execution raises an exception
|
|
288
290
|
*/
|
|
289
|
-
feed(code) {
|
|
290
|
-
const result = this._native.feed(code);
|
|
291
|
+
feed(code, options) {
|
|
292
|
+
const result = this._native.feed(code, options);
|
|
291
293
|
if (result instanceof NativeMontyException) {
|
|
292
294
|
throw new MontyRuntimeError(result);
|
|
293
295
|
}
|
|
@@ -482,11 +484,12 @@ export class MontyComplete {
|
|
|
482
484
|
* });
|
|
483
485
|
*/
|
|
484
486
|
export async function runMontyAsync(montyRunner, options = {}) {
|
|
485
|
-
const { inputs, externalFunctions = {}, limits, printCallback } = options;
|
|
487
|
+
const { inputs, externalFunctions = {}, limits, printCallback, mount } = options;
|
|
486
488
|
let progress = montyRunner.start({
|
|
487
489
|
inputs,
|
|
488
490
|
limits,
|
|
489
491
|
printCallback,
|
|
492
|
+
mount,
|
|
490
493
|
});
|
|
491
494
|
while (!(progress instanceof MontyComplete)) {
|
|
492
495
|
if (progress instanceof MontyNameLookup) {
|