lumiverse-spindle-types 0.4.27 → 0.4.28
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/package.json +1 -1
- package/src/manifest.ts +7 -0
package/package.json
CHANGED
package/src/manifest.ts
CHANGED
|
@@ -23,6 +23,13 @@ export interface SpindleManifest {
|
|
|
23
23
|
minimum_lumiverse_version?: string;
|
|
24
24
|
/** Files/directories to seed into extension storage on install/import/update */
|
|
25
25
|
storage_seed_files?: SpindleStorageSeedFile[];
|
|
26
|
+
/**
|
|
27
|
+
* Maximum wall-clock time (milliseconds) the host will wait for this
|
|
28
|
+
* extension's interceptor to return a result before aborting with an error.
|
|
29
|
+
* Overrides the user-level `spindleSettings.interceptorTimeoutMs` setting.
|
|
30
|
+
* Clamped to [1000, 300000] by the host.
|
|
31
|
+
*/
|
|
32
|
+
interceptorTimeoutMs?: number;
|
|
26
33
|
}
|
|
27
34
|
|
|
28
35
|
export interface SpindleStorageSeedFile {
|