@mokup/runtime 1.0.3 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -363,13 +363,13 @@ interface RuntimeOptions {
363
363
  *
364
364
  * @default undefined
365
365
  */
366
- moduleBase?: string | URL;
366
+ moduleBase?: string | URL | undefined;
367
367
  /**
368
368
  * Map of module exports for in-memory execution.
369
369
  *
370
370
  * @default undefined
371
371
  */
372
- moduleMap?: ModuleMap;
372
+ moduleMap?: ModuleMap | undefined;
373
373
  }
374
374
  /**
375
375
  * Map of module path to exported members.
package/dist/index.d.mts CHANGED
@@ -363,13 +363,13 @@ interface RuntimeOptions {
363
363
  *
364
364
  * @default undefined
365
365
  */
366
- moduleBase?: string | URL;
366
+ moduleBase?: string | URL | undefined;
367
367
  /**
368
368
  * Map of module exports for in-memory execution.
369
369
  *
370
370
  * @default undefined
371
371
  */
372
- moduleMap?: ModuleMap;
372
+ moduleMap?: ModuleMap | undefined;
373
373
  }
374
374
  /**
375
375
  * Map of module path to exported members.
package/dist/index.d.ts CHANGED
@@ -363,13 +363,13 @@ interface RuntimeOptions {
363
363
  *
364
364
  * @default undefined
365
365
  */
366
- moduleBase?: string | URL;
366
+ moduleBase?: string | URL | undefined;
367
367
  /**
368
368
  * Map of module exports for in-memory execution.
369
369
  *
370
370
  * @default undefined
371
371
  */
372
- moduleMap?: ModuleMap;
372
+ moduleMap?: ModuleMap | undefined;
373
373
  }
374
374
  /**
375
375
  * Map of module path to exported members.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mokup/runtime",
3
3
  "type": "module",
4
- "version": "1.0.3",
4
+ "version": "1.0.5",
5
5
  "description": "Cross-runtime mock matching and response handling for mokup.",
6
6
  "license": "MIT",
7
7
  "homepage": "https://mokup.icebreaker.top",
@@ -27,7 +27,7 @@
27
27
  "dist"
28
28
  ],
29
29
  "dependencies": {
30
- "@mokup/shared": "1.0.2"
30
+ "@mokup/shared": "1.1.0"
31
31
  },
32
32
  "devDependencies": {
33
33
  "typescript": "^5.9.3",