kofi-stack-types 2.1.0 → 2.1.36

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > kofi-stack-types@2.1.0 build /Users/theodenanyoh/Documents/Krumalabs/create-kofi-stack-v2/packages/types
2
+ > kofi-stack-types@2.1.36 build /Users/theodenanyoh/Documents/Krumalabs/create-kofi-stack-v2/packages/types
3
3
  > tsup src/index.ts --format esm --dts
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -7,8 +7,8 @@ CLI Using tsconfig: tsconfig.json
7
7
  CLI tsup v8.5.1
8
8
  CLI Target: es2022
9
9
  ESM Build start
10
- ESM dist/index.js 4.66 KB
11
- ESM ⚡️ Build success in 29ms
10
+ ESM dist/index.js 5.09 KB
11
+ ESM ⚡️ Build success in 30ms
12
12
  DTS Build start
13
- DTS ⚡️ Build success in 517ms
14
- DTS dist/index.d.ts 19.39 KB
13
+ DTS ⚡️ Build success in 596ms
14
+ DTS dist/index.d.ts 20.90 KB
@@ -1,4 +1,4 @@
1
1
 
2
- > kofi-stack-types@2.0.23 typecheck /Users/theodenanyoh/Documents/Krumalabs/create-kofi-stack-v2/packages/types
2
+ > kofi-stack-types@2.2.0 typecheck /Users/theodenanyoh/Documents/Krumalabs/create-kofi-stack-v2/packages/types
3
3
  > tsc --noEmit
4
4
 
package/dist/index.d.ts CHANGED
@@ -5,6 +5,7 @@ declare const MarketingSiteSchema: z.ZodEnum<["none", "nextjs", "payload"]>;
5
5
  declare const AuthProviderSchema: z.ZodEnum<["github", "google", "discord", "twitter", "apple", "microsoft", "linkedin"]>;
6
6
  declare const AnalyticsProviderSchema: z.ZodEnum<["none", "posthog", "vercel"]>;
7
7
  declare const UploadsProviderSchema: z.ZodEnum<["none", "convex-fs", "r2", "uploadthing", "s3", "vercel-blob"]>;
8
+ declare const PayloadStorageProviderSchema: z.ZodEnum<["local", "s3", "vercel-blob", "gcs", "r2"]>;
8
9
  declare const PaymentProviderSchema: z.ZodEnum<["none", "stripe", "polar"]>;
9
10
  declare const ComponentLibrarySchema: z.ZodEnum<["base", "radix"]>;
10
11
  declare const ShadcnStyleSchema: z.ZodEnum<["vega", "nova", "maia", "lyra", "mira"]>;
@@ -17,6 +18,7 @@ declare const MenuColorSchema: z.ZodEnum<["default", "inverted"]>;
17
18
  declare const RadiusSchema: z.ZodEnum<["default", "none", "small", "medium", "large"]>;
18
19
  declare const PackageManagerSchema: z.ZodEnum<["pnpm", "npm", "bun"]>;
19
20
  declare const AddonSchema: z.ZodEnum<["biome", "husky", "turborepo", "playwright", "vitest", "rate-limiting", "monitoring"]>;
21
+ declare const OptionalAppSchema: z.ZodEnum<["design-system", "mobile", "admin"]>;
20
22
  declare const DesignSystemConfigSchema: z.ZodObject<{
21
23
  componentLibrary: z.ZodEnum<["base", "radix"]>;
22
24
  style: z.ZodEnum<["vega", "nova", "maia", "lyra", "mira"]>;
@@ -62,14 +64,17 @@ declare const IntegrationsConfigSchema: z.ZodObject<{
62
64
  analytics: z.ZodEnum<["none", "posthog", "vercel"]>;
63
65
  uploads: z.ZodEnum<["none", "convex-fs", "r2", "uploadthing", "s3", "vercel-blob"]>;
64
66
  payments: z.ZodEnum<["none", "stripe", "polar"]>;
67
+ payloadStorage: z.ZodOptional<z.ZodEnum<["local", "s3", "vercel-blob", "gcs", "r2"]>>;
65
68
  }, "strip", z.ZodTypeAny, {
66
69
  analytics: "none" | "posthog" | "vercel";
67
70
  uploads: "none" | "convex-fs" | "r2" | "uploadthing" | "s3" | "vercel-blob";
68
71
  payments: "none" | "stripe" | "polar";
72
+ payloadStorage?: "r2" | "s3" | "vercel-blob" | "local" | "gcs" | undefined;
69
73
  }, {
70
74
  analytics: "none" | "posthog" | "vercel";
71
75
  uploads: "none" | "convex-fs" | "r2" | "uploadthing" | "s3" | "vercel-blob";
72
76
  payments: "none" | "stripe" | "polar";
77
+ payloadStorage?: "r2" | "s3" | "vercel-blob" | "local" | "gcs" | undefined;
73
78
  }>;
74
79
  declare const ProjectConfigSchema: z.ZodObject<{
75
80
  projectName: z.ZodString;
@@ -121,16 +126,20 @@ declare const ProjectConfigSchema: z.ZodObject<{
121
126
  analytics: z.ZodEnum<["none", "posthog", "vercel"]>;
122
127
  uploads: z.ZodEnum<["none", "convex-fs", "r2", "uploadthing", "s3", "vercel-blob"]>;
123
128
  payments: z.ZodEnum<["none", "stripe", "polar"]>;
129
+ payloadStorage: z.ZodOptional<z.ZodEnum<["local", "s3", "vercel-blob", "gcs", "r2"]>>;
124
130
  }, "strip", z.ZodTypeAny, {
125
131
  analytics: "none" | "posthog" | "vercel";
126
132
  uploads: "none" | "convex-fs" | "r2" | "uploadthing" | "s3" | "vercel-blob";
127
133
  payments: "none" | "stripe" | "polar";
134
+ payloadStorage?: "r2" | "s3" | "vercel-blob" | "local" | "gcs" | undefined;
128
135
  }, {
129
136
  analytics: "none" | "posthog" | "vercel";
130
137
  uploads: "none" | "convex-fs" | "r2" | "uploadthing" | "s3" | "vercel-blob";
131
138
  payments: "none" | "stripe" | "polar";
139
+ payloadStorage?: "r2" | "s3" | "vercel-blob" | "local" | "gcs" | undefined;
132
140
  }>;
133
141
  addons: z.ZodArray<z.ZodEnum<["biome", "husky", "turborepo", "playwright", "vitest", "rate-limiting", "monitoring"]>, "many">;
142
+ optionalApps: z.ZodArray<z.ZodEnum<["design-system", "mobile", "admin"]>, "many">;
134
143
  packageManager: z.ZodEnum<["pnpm", "npm", "bun"]>;
135
144
  }, "strip", z.ZodTypeAny, {
136
145
  projectName: string;
@@ -156,8 +165,10 @@ declare const ProjectConfigSchema: z.ZodObject<{
156
165
  analytics: "none" | "posthog" | "vercel";
157
166
  uploads: "none" | "convex-fs" | "r2" | "uploadthing" | "s3" | "vercel-blob";
158
167
  payments: "none" | "stripe" | "polar";
168
+ payloadStorage?: "r2" | "s3" | "vercel-blob" | "local" | "gcs" | undefined;
159
169
  };
160
170
  addons: ("biome" | "husky" | "turborepo" | "playwright" | "vitest" | "rate-limiting" | "monitoring")[];
171
+ optionalApps: ("design-system" | "mobile" | "admin")[];
161
172
  packageManager: "pnpm" | "npm" | "bun";
162
173
  }, {
163
174
  projectName: string;
@@ -183,8 +194,10 @@ declare const ProjectConfigSchema: z.ZodObject<{
183
194
  analytics: "none" | "posthog" | "vercel";
184
195
  uploads: "none" | "convex-fs" | "r2" | "uploadthing" | "s3" | "vercel-blob";
185
196
  payments: "none" | "stripe" | "polar";
197
+ payloadStorage?: "r2" | "s3" | "vercel-blob" | "local" | "gcs" | undefined;
186
198
  };
187
199
  addons: ("biome" | "husky" | "turborepo" | "playwright" | "vitest" | "rate-limiting" | "monitoring")[];
200
+ optionalApps: ("design-system" | "mobile" | "admin")[];
188
201
  packageManager: "pnpm" | "npm" | "bun";
189
202
  }>;
190
203
  declare const CLIInputSchema: z.ZodObject<{
@@ -205,6 +218,7 @@ declare const CLIInputSchema: z.ZodObject<{
205
218
  analytics: z.ZodOptional<z.ZodEnum<["none", "posthog", "vercel"]>>;
206
219
  uploads: z.ZodOptional<z.ZodEnum<["none", "convex-fs", "r2", "uploadthing", "s3", "vercel-blob"]>>;
207
220
  payments: z.ZodOptional<z.ZodEnum<["none", "stripe", "polar"]>>;
221
+ payloadStorage: z.ZodOptional<z.ZodEnum<["local", "s3", "vercel-blob", "gcs", "r2"]>>;
208
222
  addons: z.ZodOptional<z.ZodArray<z.ZodEnum<["biome", "husky", "turborepo", "playwright", "vitest", "rate-limiting", "monitoring"]>, "many">>;
209
223
  git: z.ZodOptional<z.ZodBoolean>;
210
224
  packageManager: z.ZodOptional<z.ZodEnum<["pnpm", "npm", "bun"]>>;
@@ -224,6 +238,7 @@ declare const CLIInputSchema: z.ZodObject<{
224
238
  analytics?: "none" | "posthog" | "vercel" | undefined;
225
239
  uploads?: "none" | "convex-fs" | "r2" | "uploadthing" | "s3" | "vercel-blob" | undefined;
226
240
  payments?: "none" | "stripe" | "polar" | undefined;
241
+ payloadStorage?: "r2" | "s3" | "vercel-blob" | "local" | "gcs" | undefined;
227
242
  projectName?: string | undefined;
228
243
  structure?: "standalone" | "monorepo" | undefined;
229
244
  marketingSite?: "none" | "nextjs" | "payload" | undefined;
@@ -247,6 +262,7 @@ declare const CLIInputSchema: z.ZodObject<{
247
262
  analytics?: "none" | "posthog" | "vercel" | undefined;
248
263
  uploads?: "none" | "convex-fs" | "r2" | "uploadthing" | "s3" | "vercel-blob" | undefined;
249
264
  payments?: "none" | "stripe" | "polar" | undefined;
265
+ payloadStorage?: "r2" | "s3" | "vercel-blob" | "local" | "gcs" | undefined;
250
266
  projectName?: string | undefined;
251
267
  structure?: "standalone" | "monorepo" | undefined;
252
268
  marketingSite?: "none" | "nextjs" | "payload" | undefined;
@@ -264,6 +280,7 @@ type MarketingSite = z.infer<typeof MarketingSiteSchema>;
264
280
  type AuthProvider = z.infer<typeof AuthProviderSchema>;
265
281
  type AnalyticsProvider = z.infer<typeof AnalyticsProviderSchema>;
266
282
  type UploadsProvider = z.infer<typeof UploadsProviderSchema>;
283
+ type PayloadStorageProvider = z.infer<typeof PayloadStorageProviderSchema>;
267
284
  type PaymentProvider = z.infer<typeof PaymentProviderSchema>;
268
285
  type ComponentLibrary = z.infer<typeof ComponentLibrarySchema>;
269
286
  type ShadcnStyle = z.infer<typeof ShadcnStyleSchema>;
@@ -276,6 +293,7 @@ type MenuColor = z.infer<typeof MenuColorSchema>;
276
293
  type Radius = z.infer<typeof RadiusSchema>;
277
294
  type PackageManager = z.infer<typeof PackageManagerSchema>;
278
295
  type Addon = z.infer<typeof AddonSchema>;
296
+ type OptionalApp = z.infer<typeof OptionalAppSchema>;
279
297
  type DesignSystemConfig = z.infer<typeof DesignSystemConfigSchema>;
280
298
  type AuthConfig = z.infer<typeof AuthConfigSchema>;
281
299
  type IntegrationsConfig = z.infer<typeof IntegrationsConfigSchema>;
@@ -311,4 +329,4 @@ interface GeneratorResult {
311
329
  errors?: string[];
312
330
  }
313
331
 
314
- export { type Addon, AddonSchema, type AnalyticsProvider, AnalyticsProviderSchema, type AuthConfig, AuthConfigSchema, type AuthProvider, AuthProviderSchema, type BaseColor, BaseColorSchema, type CLIInput, CLIInputSchema, type ComponentLibrary, ComponentLibrarySchema, DEFAULT_CONFIG, type DesignSystemConfig, DesignSystemConfigSchema, type Font, FontSchema, type GeneratorOptions, type GeneratorResult, type IconLibrary, IconLibrarySchema, type IntegrationsConfig, IntegrationsConfigSchema, type MarketingSite, MarketingSiteSchema, type MenuAccent, MenuAccentSchema, type MenuColor, MenuColorSchema, type PackageManager, PackageManagerSchema, type PaymentProvider, PaymentProviderSchema, type ProjectConfig, ProjectConfigSchema, type ProjectStructure, ProjectStructureSchema, type Radius, RadiusSchema, type ShadcnStyle, ShadcnStyleSchema, type ThemeColor, ThemeColorSchema, type UploadsProvider, UploadsProviderSchema, type VirtualDirectory, type VirtualFile, type VirtualFileTree, type VirtualNode };
332
+ export { type Addon, AddonSchema, type AnalyticsProvider, AnalyticsProviderSchema, type AuthConfig, AuthConfigSchema, type AuthProvider, AuthProviderSchema, type BaseColor, BaseColorSchema, type CLIInput, CLIInputSchema, type ComponentLibrary, ComponentLibrarySchema, DEFAULT_CONFIG, type DesignSystemConfig, DesignSystemConfigSchema, type Font, FontSchema, type GeneratorOptions, type GeneratorResult, type IconLibrary, IconLibrarySchema, type IntegrationsConfig, IntegrationsConfigSchema, type MarketingSite, MarketingSiteSchema, type MenuAccent, MenuAccentSchema, type MenuColor, MenuColorSchema, type OptionalApp, OptionalAppSchema, type PackageManager, PackageManagerSchema, type PayloadStorageProvider, PayloadStorageProviderSchema, type PaymentProvider, PaymentProviderSchema, type ProjectConfig, ProjectConfigSchema, type ProjectStructure, ProjectStructureSchema, type Radius, RadiusSchema, type ShadcnStyle, ShadcnStyleSchema, type ThemeColor, ThemeColorSchema, type UploadsProvider, UploadsProviderSchema, type VirtualDirectory, type VirtualFile, type VirtualFileTree, type VirtualNode };
package/dist/index.js CHANGED
@@ -20,6 +20,13 @@ var UploadsProviderSchema = z.enum([
20
20
  "s3",
21
21
  "vercel-blob"
22
22
  ]);
23
+ var PayloadStorageProviderSchema = z.enum([
24
+ "local",
25
+ "s3",
26
+ "vercel-blob",
27
+ "gcs",
28
+ "r2"
29
+ ]);
23
30
  var PaymentProviderSchema = z.enum(["none", "stripe", "polar"]);
24
31
  var ComponentLibrarySchema = z.enum(["base", "radix"]);
25
32
  var ShadcnStyleSchema = z.enum(["vega", "nova", "maia", "lyra", "mira"]);
@@ -70,6 +77,7 @@ var AddonSchema = z.enum([
70
77
  "rate-limiting",
71
78
  "monitoring"
72
79
  ]);
80
+ var OptionalAppSchema = z.enum(["design-system", "mobile", "admin"]);
73
81
  var DesignSystemConfigSchema = z.object({
74
82
  componentLibrary: ComponentLibrarySchema,
75
83
  style: ShadcnStyleSchema,
@@ -88,7 +96,8 @@ var AuthConfigSchema = z.object({
88
96
  var IntegrationsConfigSchema = z.object({
89
97
  analytics: AnalyticsProviderSchema,
90
98
  uploads: UploadsProviderSchema,
91
- payments: PaymentProviderSchema
99
+ payments: PaymentProviderSchema,
100
+ payloadStorage: PayloadStorageProviderSchema.optional()
92
101
  });
93
102
  var ProjectConfigSchema = z.object({
94
103
  // Basic info
@@ -105,6 +114,8 @@ var ProjectConfigSchema = z.object({
105
114
  integrations: IntegrationsConfigSchema,
106
115
  // Addons
107
116
  addons: z.array(AddonSchema),
117
+ // Optional apps (monorepo only)
118
+ optionalApps: z.array(OptionalAppSchema),
108
119
  // Setup options
109
120
  packageManager: PackageManagerSchema
110
121
  });
@@ -129,6 +140,7 @@ var CLIInputSchema = z.object({
129
140
  analytics: AnalyticsProviderSchema.optional(),
130
141
  uploads: UploadsProviderSchema.optional(),
131
142
  payments: PaymentProviderSchema.optional(),
143
+ payloadStorage: PayloadStorageProviderSchema.optional(),
132
144
  addons: z.array(AddonSchema).optional(),
133
145
  git: z.boolean().optional(),
134
146
  packageManager: PackageManagerSchema.optional(),
@@ -162,6 +174,7 @@ var DEFAULT_CONFIG = {
162
174
  payments: "none"
163
175
  },
164
176
  addons: [],
177
+ optionalApps: [],
165
178
  packageManager: "pnpm"
166
179
  };
167
180
  export {
@@ -180,7 +193,9 @@ export {
180
193
  MarketingSiteSchema,
181
194
  MenuAccentSchema,
182
195
  MenuColorSchema,
196
+ OptionalAppSchema,
183
197
  PackageManagerSchema,
198
+ PayloadStorageProviderSchema,
184
199
  PaymentProviderSchema,
185
200
  ProjectConfigSchema,
186
201
  ProjectStructureSchema,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kofi-stack-types",
3
- "version": "2.1.0",
3
+ "version": "2.1.36",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -10,6 +10,11 @@
10
10
  "types": "./dist/index.d.ts"
11
11
  }
12
12
  },
13
+ "scripts": {
14
+ "build": "tsup src/index.ts --format esm --dts",
15
+ "dev": "tsup src/index.ts --format esm --dts --watch",
16
+ "typecheck": "tsc --noEmit"
17
+ },
13
18
  "dependencies": {
14
19
  "zod": "^3.23.0"
15
20
  },
@@ -17,10 +22,5 @@
17
22
  "@types/node": "^20.0.0",
18
23
  "tsup": "^8.0.0",
19
24
  "typescript": "^5.0.0"
20
- },
21
- "scripts": {
22
- "build": "tsup src/index.ts --format esm --dts",
23
- "dev": "tsup src/index.ts --format esm --dts --watch",
24
- "typecheck": "tsc --noEmit"
25
25
  }
26
- }
26
+ }
package/src/index.ts CHANGED
@@ -5,6 +5,7 @@ export {
5
5
  AuthProviderSchema,
6
6
  AnalyticsProviderSchema,
7
7
  UploadsProviderSchema,
8
+ PayloadStorageProviderSchema,
8
9
  PaymentProviderSchema,
9
10
  // shadcn v4 schemas
10
11
  ComponentLibrarySchema,
@@ -19,6 +20,7 @@ export {
19
20
  // Config schemas
20
21
  PackageManagerSchema,
21
22
  AddonSchema,
23
+ OptionalAppSchema,
22
24
  DesignSystemConfigSchema,
23
25
  AuthConfigSchema,
24
26
  IntegrationsConfigSchema,
@@ -34,6 +36,7 @@ export type {
34
36
  AuthProvider,
35
37
  AnalyticsProvider,
36
38
  UploadsProvider,
39
+ PayloadStorageProvider,
37
40
  PaymentProvider,
38
41
  // shadcn v4 types
39
42
  ComponentLibrary,
@@ -48,6 +51,7 @@ export type {
48
51
  // Config types
49
52
  PackageManager,
50
53
  Addon,
54
+ OptionalApp,
51
55
  DesignSystemConfig,
52
56
  AuthConfig,
53
57
  IntegrationsConfig,
package/src/schemas.ts CHANGED
@@ -20,7 +20,7 @@ export const AuthProviderSchema = z.enum([
20
20
  // Analytics providers
21
21
  export const AnalyticsProviderSchema = z.enum(['none', 'posthog', 'vercel'])
22
22
 
23
- // Upload/Storage providers
23
+ // Upload/Storage providers (for web app - Convex-based)
24
24
  export const UploadsProviderSchema = z.enum([
25
25
  'none',
26
26
  'convex-fs',
@@ -30,6 +30,15 @@ export const UploadsProviderSchema = z.enum([
30
30
  'vercel-blob',
31
31
  ])
32
32
 
33
+ // Payload CMS Storage providers
34
+ export const PayloadStorageProviderSchema = z.enum([
35
+ 'local',
36
+ 's3',
37
+ 'vercel-blob',
38
+ 'gcs',
39
+ 'r2',
40
+ ])
41
+
33
42
  // Payment providers
34
43
  export const PaymentProviderSchema = z.enum(['none', 'stripe', 'polar'])
35
44
 
@@ -108,6 +117,9 @@ export const AddonSchema = z.enum([
108
117
  'monitoring',
109
118
  ])
110
119
 
120
+ // Optional apps (monorepo only)
121
+ export const OptionalAppSchema = z.enum(['design-system', 'mobile', 'admin'])
122
+
111
123
  // Design system configuration (shadcn v4)
112
124
  export const DesignSystemConfigSchema = z.object({
113
125
  componentLibrary: ComponentLibrarySchema,
@@ -132,6 +144,7 @@ export const IntegrationsConfigSchema = z.object({
132
144
  analytics: AnalyticsProviderSchema,
133
145
  uploads: UploadsProviderSchema,
134
146
  payments: PaymentProviderSchema,
147
+ payloadStorage: PayloadStorageProviderSchema.optional(),
135
148
  })
136
149
 
137
150
  // Complete project configuration
@@ -156,6 +169,9 @@ export const ProjectConfigSchema = z.object({
156
169
  // Addons
157
170
  addons: z.array(AddonSchema),
158
171
 
172
+ // Optional apps (monorepo only)
173
+ optionalApps: z.array(OptionalAppSchema),
174
+
159
175
  // Setup options
160
176
  packageManager: PackageManagerSchema,
161
177
  })
@@ -182,6 +198,7 @@ export const CLIInputSchema = z.object({
182
198
  analytics: AnalyticsProviderSchema.optional(),
183
199
  uploads: UploadsProviderSchema.optional(),
184
200
  payments: PaymentProviderSchema.optional(),
201
+ payloadStorage: PayloadStorageProviderSchema.optional(),
185
202
  addons: z.array(AddonSchema).optional(),
186
203
  git: z.boolean().optional(),
187
204
  packageManager: PackageManagerSchema.optional(),
@@ -216,5 +233,6 @@ export const DEFAULT_CONFIG: z.infer<typeof ProjectConfigSchema> = {
216
233
  payments: 'none',
217
234
  },
218
235
  addons: [],
236
+ optionalApps: [],
219
237
  packageManager: 'pnpm',
220
238
  }
package/src/types.ts CHANGED
@@ -5,6 +5,7 @@ import type {
5
5
  AuthProviderSchema,
6
6
  AnalyticsProviderSchema,
7
7
  UploadsProviderSchema,
8
+ PayloadStorageProviderSchema,
8
9
  PaymentProviderSchema,
9
10
  // shadcn v4 schemas
10
11
  ComponentLibrarySchema,
@@ -18,6 +19,7 @@ import type {
18
19
  RadiusSchema,
19
20
  PackageManagerSchema,
20
21
  AddonSchema,
22
+ OptionalAppSchema,
21
23
  DesignSystemConfigSchema,
22
24
  AuthConfigSchema,
23
25
  IntegrationsConfigSchema,
@@ -31,6 +33,7 @@ export type MarketingSite = z.infer<typeof MarketingSiteSchema>
31
33
  export type AuthProvider = z.infer<typeof AuthProviderSchema>
32
34
  export type AnalyticsProvider = z.infer<typeof AnalyticsProviderSchema>
33
35
  export type UploadsProvider = z.infer<typeof UploadsProviderSchema>
36
+ export type PayloadStorageProvider = z.infer<typeof PayloadStorageProviderSchema>
34
37
  export type PaymentProvider = z.infer<typeof PaymentProviderSchema>
35
38
 
36
39
  // shadcn v4 types
@@ -46,6 +49,7 @@ export type Radius = z.infer<typeof RadiusSchema>
46
49
 
47
50
  export type PackageManager = z.infer<typeof PackageManagerSchema>
48
51
  export type Addon = z.infer<typeof AddonSchema>
52
+ export type OptionalApp = z.infer<typeof OptionalAppSchema>
49
53
  export type DesignSystemConfig = z.infer<typeof DesignSystemConfigSchema>
50
54
  export type AuthConfig = z.infer<typeof AuthConfigSchema>
51
55
  export type IntegrationsConfig = z.infer<typeof IntegrationsConfigSchema>