@epic-web/workshop-utils 6.84.5 → 6.84.7
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/config.server.d.ts +0 -3
- package/dist/config.server.js +0 -1
- package/package.json +1 -1
package/dist/config.server.d.ts
CHANGED
|
@@ -64,7 +64,6 @@ declare const PartialWorkshopConfigSchema: z.ZodPipe<z.ZodObject<{
|
|
|
64
64
|
export type PartialWorkshopConfig = z.infer<typeof PartialWorkshopConfigSchema>;
|
|
65
65
|
declare const WorkshopConfigSchema: z.ZodPipe<z.ZodObject<{
|
|
66
66
|
title: z.ZodString;
|
|
67
|
-
subdomain: z.ZodOptional<z.ZodString>;
|
|
68
67
|
product: z.ZodDefault<z.ZodObject<{
|
|
69
68
|
host: z.ZodDefault<z.ZodString>;
|
|
70
69
|
displayName: z.ZodDefault<z.ZodString>;
|
|
@@ -150,7 +149,6 @@ declare const WorkshopConfigSchema: z.ZodPipe<z.ZodObject<{
|
|
|
150
149
|
link?: string | undefined;
|
|
151
150
|
}[];
|
|
152
151
|
sidecarProcesses: Record<string, string>;
|
|
153
|
-
subdomain?: string | undefined;
|
|
154
152
|
stackBlitzConfig?: {
|
|
155
153
|
title?: string | undefined;
|
|
156
154
|
startScript?: string | undefined;
|
|
@@ -201,7 +199,6 @@ declare const WorkshopConfigSchema: z.ZodPipe<z.ZodObject<{
|
|
|
201
199
|
link?: string | undefined;
|
|
202
200
|
}[];
|
|
203
201
|
sidecarProcesses: Record<string, string>;
|
|
204
|
-
subdomain?: string | undefined;
|
|
205
202
|
stackBlitzConfig?: {
|
|
206
203
|
title?: string | undefined;
|
|
207
204
|
startScript?: string | undefined;
|
package/dist/config.server.js
CHANGED