eddev 0.2.0-beta.17 → 0.2.0-beta.18
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.
|
@@ -15,7 +15,7 @@ export declare const EDConfigSchema: z.ZodObject<{
|
|
|
15
15
|
enabled: boolean;
|
|
16
16
|
uploads: "proxy" | "remote";
|
|
17
17
|
plugins: "proxy" | "remote";
|
|
18
|
-
theme: "
|
|
18
|
+
theme: "copy" | "proxy" | "remote";
|
|
19
19
|
endpoints: Record<string, string>;
|
|
20
20
|
}, {
|
|
21
21
|
themeAssets?: string[] | undefined;
|
|
@@ -23,7 +23,7 @@ export declare const EDConfigSchema: z.ZodObject<{
|
|
|
23
23
|
enabled: boolean;
|
|
24
24
|
uploads: "proxy" | "remote";
|
|
25
25
|
plugins: "proxy" | "remote";
|
|
26
|
-
theme: "
|
|
26
|
+
theme: "copy" | "proxy" | "remote";
|
|
27
27
|
endpoints: Record<string, string>;
|
|
28
28
|
}>>;
|
|
29
29
|
devUI: z.ZodEnum<["disabled", "enabled"]>;
|
|
@@ -35,7 +35,7 @@ export declare const EDConfigSchema: z.ZodObject<{
|
|
|
35
35
|
enabled: boolean;
|
|
36
36
|
uploads: "proxy" | "remote";
|
|
37
37
|
plugins: "proxy" | "remote";
|
|
38
|
-
theme: "
|
|
38
|
+
theme: "copy" | "proxy" | "remote";
|
|
39
39
|
endpoints: Record<string, string>;
|
|
40
40
|
} | undefined;
|
|
41
41
|
devUI: "disabled" | "enabled";
|
|
@@ -47,7 +47,7 @@ export declare const EDConfigSchema: z.ZodObject<{
|
|
|
47
47
|
enabled: boolean;
|
|
48
48
|
uploads: "proxy" | "remote";
|
|
49
49
|
plugins: "proxy" | "remote";
|
|
50
|
-
theme: "
|
|
50
|
+
theme: "copy" | "proxy" | "remote";
|
|
51
51
|
endpoints: Record<string, string>;
|
|
52
52
|
} | undefined;
|
|
53
53
|
devUI: "disabled" | "enabled";
|
package/config/get-config.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export declare function getEDConfig(dir?: string): import("zod").SafeParseReturn
|
|
|
6
6
|
enabled: boolean;
|
|
7
7
|
uploads: "proxy" | "remote";
|
|
8
8
|
plugins: "proxy" | "remote";
|
|
9
|
-
theme: "
|
|
9
|
+
theme: "copy" | "proxy" | "remote";
|
|
10
10
|
endpoints: Record<string, string>;
|
|
11
11
|
} | undefined;
|
|
12
12
|
devUI: "disabled" | "enabled";
|
|
@@ -18,7 +18,7 @@ export declare function getEDConfig(dir?: string): import("zod").SafeParseReturn
|
|
|
18
18
|
enabled: boolean;
|
|
19
19
|
uploads: "proxy" | "remote";
|
|
20
20
|
plugins: "proxy" | "remote";
|
|
21
|
-
theme: "
|
|
21
|
+
theme: "copy" | "proxy" | "remote";
|
|
22
22
|
endpoints: Record<string, string>;
|
|
23
23
|
} | undefined;
|
|
24
24
|
devUI: "disabled" | "enabled";
|
|
@@ -31,7 +31,7 @@ export declare function getEDConfigUnwrapped(dir?: string): {
|
|
|
31
31
|
enabled: boolean;
|
|
32
32
|
uploads: "proxy" | "remote";
|
|
33
33
|
plugins: "proxy" | "remote";
|
|
34
|
-
theme: "
|
|
34
|
+
theme: "copy" | "proxy" | "remote";
|
|
35
35
|
endpoints: Record<string, string>;
|
|
36
36
|
} | undefined;
|
|
37
37
|
devUI: "disabled" | "enabled";
|
package/config/parse-config.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export declare function parseConfig(config: any): import("zod").SafeParseReturnT
|
|
|
6
6
|
enabled: boolean;
|
|
7
7
|
uploads: "proxy" | "remote";
|
|
8
8
|
plugins: "proxy" | "remote";
|
|
9
|
-
theme: "
|
|
9
|
+
theme: "copy" | "proxy" | "remote";
|
|
10
10
|
endpoints: Record<string, string>;
|
|
11
11
|
} | undefined;
|
|
12
12
|
devUI: "disabled" | "enabled";
|
|
@@ -18,7 +18,7 @@ export declare function parseConfig(config: any): import("zod").SafeParseReturnT
|
|
|
18
18
|
enabled: boolean;
|
|
19
19
|
uploads: "proxy" | "remote";
|
|
20
20
|
plugins: "proxy" | "remote";
|
|
21
|
-
theme: "
|
|
21
|
+
theme: "copy" | "proxy" | "remote";
|
|
22
22
|
endpoints: Record<string, string>;
|
|
23
23
|
} | undefined;
|
|
24
24
|
devUI: "disabled" | "enabled";
|
package/package.json
CHANGED