@wayward/types 2.15.5-beta.dev.20260602.1 → 2.15.5-beta.dev.20260605.1
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.
|
@@ -19,7 +19,7 @@ interface SaveMetadata {
|
|
|
19
19
|
slot?: number;
|
|
20
20
|
path?: string;
|
|
21
21
|
score: number;
|
|
22
|
-
modsUnloadable
|
|
22
|
+
modsUnloadable?: Record<string, IModManagerUnloadableInfo>;
|
|
23
23
|
saveTime: number;
|
|
24
24
|
createdTime: number;
|
|
25
25
|
originalVersion?: Version.String;
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
export type TestSetupExecutor = (context: TestSetupContext) => Promise<unknown>;
|
|
12
12
|
export type TestExecutor = (context: TestRunContext) => Promise<unknown>;
|
|
13
13
|
interface IRunContext {
|
|
14
|
-
|
|
14
|
+
filters?: string[];
|
|
15
15
|
attachmentPath?: string;
|
|
16
16
|
}
|
|
17
17
|
export interface ITestAttachmentData {
|
package/package.json
CHANGED