@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.
@@ -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;
@@ -72,7 +72,6 @@ const WorkshopConfigSchema = z
72
72
  .object({
73
73
  ...BaseWorkshopConfigFields,
74
74
  title: z.string(),
75
- subdomain: z.string().optional(),
76
75
  product: z
77
76
  .object({
78
77
  host: z.string().default('www.epicweb.dev'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epic-web/workshop-utils",
3
- "version": "6.84.5",
3
+ "version": "6.84.7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },