@graspful/cli 0.1.0

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.
Files changed (73) hide show
  1. package/dist/commands/create-brand.d.ts +8 -0
  2. package/dist/commands/create-brand.d.ts.map +1 -0
  3. package/dist/commands/create-brand.js +121 -0
  4. package/dist/commands/create-brand.js.map +1 -0
  5. package/dist/commands/create-course.d.ts +7 -0
  6. package/dist/commands/create-course.d.ts.map +1 -0
  7. package/dist/commands/create-course.js +98 -0
  8. package/dist/commands/create-course.js.map +1 -0
  9. package/dist/commands/describe.d.ts +3 -0
  10. package/dist/commands/describe.d.ts.map +1 -0
  11. package/dist/commands/describe.js +159 -0
  12. package/dist/commands/describe.js.map +1 -0
  13. package/dist/commands/fill-concept.d.ts +3 -0
  14. package/dist/commands/fill-concept.d.ts.map +1 -0
  15. package/dist/commands/fill-concept.js +116 -0
  16. package/dist/commands/fill-concept.js.map +1 -0
  17. package/dist/commands/import.d.ts +3 -0
  18. package/dist/commands/import.d.ts.map +1 -0
  19. package/dist/commands/import.js +116 -0
  20. package/dist/commands/import.js.map +1 -0
  21. package/dist/commands/login.d.ts +3 -0
  22. package/dist/commands/login.d.ts.map +1 -0
  23. package/dist/commands/login.js +81 -0
  24. package/dist/commands/login.js.map +1 -0
  25. package/dist/commands/publish.d.ts +3 -0
  26. package/dist/commands/publish.d.ts.map +1 -0
  27. package/dist/commands/publish.js +26 -0
  28. package/dist/commands/publish.js.map +1 -0
  29. package/dist/commands/review.d.ts +3 -0
  30. package/dist/commands/review.d.ts.map +1 -0
  31. package/dist/commands/review.js +421 -0
  32. package/dist/commands/review.js.map +1 -0
  33. package/dist/commands/validate.d.ts +3 -0
  34. package/dist/commands/validate.d.ts.map +1 -0
  35. package/dist/commands/validate.js +154 -0
  36. package/dist/commands/validate.js.map +1 -0
  37. package/dist/index.d.ts +3 -0
  38. package/dist/index.d.ts.map +1 -0
  39. package/dist/index.js +37 -0
  40. package/dist/index.js.map +1 -0
  41. package/dist/lib/api-client.d.ts +10 -0
  42. package/dist/lib/api-client.d.ts.map +1 -0
  43. package/dist/lib/api-client.js +54 -0
  44. package/dist/lib/api-client.js.map +1 -0
  45. package/dist/lib/auth.d.ts +10 -0
  46. package/dist/lib/auth.d.ts.map +1 -0
  47. package/dist/lib/auth.js +81 -0
  48. package/dist/lib/auth.js.map +1 -0
  49. package/dist/lib/output.d.ts +6 -0
  50. package/dist/lib/output.d.ts.map +1 -0
  51. package/dist/lib/output.js +30 -0
  52. package/dist/lib/output.js.map +1 -0
  53. package/dist/quality-gate.d.ts +21 -0
  54. package/dist/quality-gate.d.ts.map +1 -0
  55. package/dist/quality-gate.js +16 -0
  56. package/dist/quality-gate.js.map +1 -0
  57. package/dist/schemas/academy-manifest.schema.d.ts +164 -0
  58. package/dist/schemas/academy-manifest.schema.d.ts.map +1 -0
  59. package/dist/schemas/academy-manifest.schema.js +70 -0
  60. package/dist/schemas/academy-manifest.schema.js.map +1 -0
  61. package/dist/schemas/brand-yaml.schema.d.ts +652 -0
  62. package/dist/schemas/brand-yaml.schema.d.ts.map +1 -0
  63. package/dist/schemas/brand-yaml.schema.js +97 -0
  64. package/dist/schemas/brand-yaml.schema.js.map +1 -0
  65. package/dist/schemas/course-yaml.schema.d.ts +1794 -0
  66. package/dist/schemas/course-yaml.schema.d.ts.map +1 -0
  67. package/dist/schemas/course-yaml.schema.js +161 -0
  68. package/dist/schemas/course-yaml.schema.js.map +1 -0
  69. package/dist/schemas/index.d.ts +4 -0
  70. package/dist/schemas/index.d.ts.map +1 -0
  71. package/dist/schemas/index.js +20 -0
  72. package/dist/schemas/index.js.map +1 -0
  73. package/package.json +31 -0
@@ -0,0 +1,652 @@
1
+ import { z } from 'zod';
2
+ export declare const THEME_PRESETS: readonly ["blue", "red", "green", "orange", "purple", "slate", "emerald", "rose", "amber", "indigo"];
3
+ export declare const BrandYamlSchema: z.ZodObject<{
4
+ brand: z.ZodObject<{
5
+ id: z.ZodString;
6
+ name: z.ZodString;
7
+ domain: z.ZodString;
8
+ tagline: z.ZodString;
9
+ logoUrl: z.ZodOptional<z.ZodString>;
10
+ faviconUrl: z.ZodOptional<z.ZodString>;
11
+ ogImageUrl: z.ZodOptional<z.ZodString>;
12
+ orgSlug: z.ZodString;
13
+ }, "strip", z.ZodTypeAny, {
14
+ id: string;
15
+ name: string;
16
+ domain: string;
17
+ tagline: string;
18
+ orgSlug: string;
19
+ logoUrl?: string | undefined;
20
+ faviconUrl?: string | undefined;
21
+ ogImageUrl?: string | undefined;
22
+ }, {
23
+ id: string;
24
+ name: string;
25
+ domain: string;
26
+ tagline: string;
27
+ orgSlug: string;
28
+ logoUrl?: string | undefined;
29
+ faviconUrl?: string | undefined;
30
+ ogImageUrl?: string | undefined;
31
+ }>;
32
+ theme: z.ZodOptional<z.ZodObject<{
33
+ preset: z.ZodOptional<z.ZodEnum<["blue", "red", "green", "orange", "purple", "slate", "emerald", "rose", "amber", "indigo"]>>;
34
+ radius: z.ZodDefault<z.ZodString>;
35
+ light: z.ZodOptional<z.ZodObject<{
36
+ background: z.ZodOptional<z.ZodString>;
37
+ foreground: z.ZodOptional<z.ZodString>;
38
+ card: z.ZodOptional<z.ZodString>;
39
+ cardForeground: z.ZodOptional<z.ZodString>;
40
+ popover: z.ZodOptional<z.ZodString>;
41
+ popoverForeground: z.ZodOptional<z.ZodString>;
42
+ primary: z.ZodOptional<z.ZodString>;
43
+ primaryForeground: z.ZodOptional<z.ZodString>;
44
+ secondary: z.ZodOptional<z.ZodString>;
45
+ secondaryForeground: z.ZodOptional<z.ZodString>;
46
+ muted: z.ZodOptional<z.ZodString>;
47
+ mutedForeground: z.ZodOptional<z.ZodString>;
48
+ accent: z.ZodOptional<z.ZodString>;
49
+ accentForeground: z.ZodOptional<z.ZodString>;
50
+ destructive: z.ZodOptional<z.ZodString>;
51
+ destructiveForeground: z.ZodOptional<z.ZodString>;
52
+ border: z.ZodOptional<z.ZodString>;
53
+ input: z.ZodOptional<z.ZodString>;
54
+ ring: z.ZodOptional<z.ZodString>;
55
+ }, "strip", z.ZodTypeAny, {
56
+ background?: string | undefined;
57
+ foreground?: string | undefined;
58
+ card?: string | undefined;
59
+ cardForeground?: string | undefined;
60
+ popover?: string | undefined;
61
+ popoverForeground?: string | undefined;
62
+ primary?: string | undefined;
63
+ primaryForeground?: string | undefined;
64
+ secondary?: string | undefined;
65
+ secondaryForeground?: string | undefined;
66
+ muted?: string | undefined;
67
+ mutedForeground?: string | undefined;
68
+ accent?: string | undefined;
69
+ accentForeground?: string | undefined;
70
+ destructive?: string | undefined;
71
+ destructiveForeground?: string | undefined;
72
+ border?: string | undefined;
73
+ input?: string | undefined;
74
+ ring?: string | undefined;
75
+ }, {
76
+ background?: string | undefined;
77
+ foreground?: string | undefined;
78
+ card?: string | undefined;
79
+ cardForeground?: string | undefined;
80
+ popover?: string | undefined;
81
+ popoverForeground?: string | undefined;
82
+ primary?: string | undefined;
83
+ primaryForeground?: string | undefined;
84
+ secondary?: string | undefined;
85
+ secondaryForeground?: string | undefined;
86
+ muted?: string | undefined;
87
+ mutedForeground?: string | undefined;
88
+ accent?: string | undefined;
89
+ accentForeground?: string | undefined;
90
+ destructive?: string | undefined;
91
+ destructiveForeground?: string | undefined;
92
+ border?: string | undefined;
93
+ input?: string | undefined;
94
+ ring?: string | undefined;
95
+ }>>;
96
+ dark: z.ZodOptional<z.ZodObject<{
97
+ background: z.ZodOptional<z.ZodString>;
98
+ foreground: z.ZodOptional<z.ZodString>;
99
+ card: z.ZodOptional<z.ZodString>;
100
+ cardForeground: z.ZodOptional<z.ZodString>;
101
+ popover: z.ZodOptional<z.ZodString>;
102
+ popoverForeground: z.ZodOptional<z.ZodString>;
103
+ primary: z.ZodOptional<z.ZodString>;
104
+ primaryForeground: z.ZodOptional<z.ZodString>;
105
+ secondary: z.ZodOptional<z.ZodString>;
106
+ secondaryForeground: z.ZodOptional<z.ZodString>;
107
+ muted: z.ZodOptional<z.ZodString>;
108
+ mutedForeground: z.ZodOptional<z.ZodString>;
109
+ accent: z.ZodOptional<z.ZodString>;
110
+ accentForeground: z.ZodOptional<z.ZodString>;
111
+ destructive: z.ZodOptional<z.ZodString>;
112
+ destructiveForeground: z.ZodOptional<z.ZodString>;
113
+ border: z.ZodOptional<z.ZodString>;
114
+ input: z.ZodOptional<z.ZodString>;
115
+ ring: z.ZodOptional<z.ZodString>;
116
+ }, "strip", z.ZodTypeAny, {
117
+ background?: string | undefined;
118
+ foreground?: string | undefined;
119
+ card?: string | undefined;
120
+ cardForeground?: string | undefined;
121
+ popover?: string | undefined;
122
+ popoverForeground?: string | undefined;
123
+ primary?: string | undefined;
124
+ primaryForeground?: string | undefined;
125
+ secondary?: string | undefined;
126
+ secondaryForeground?: string | undefined;
127
+ muted?: string | undefined;
128
+ mutedForeground?: string | undefined;
129
+ accent?: string | undefined;
130
+ accentForeground?: string | undefined;
131
+ destructive?: string | undefined;
132
+ destructiveForeground?: string | undefined;
133
+ border?: string | undefined;
134
+ input?: string | undefined;
135
+ ring?: string | undefined;
136
+ }, {
137
+ background?: string | undefined;
138
+ foreground?: string | undefined;
139
+ card?: string | undefined;
140
+ cardForeground?: string | undefined;
141
+ popover?: string | undefined;
142
+ popoverForeground?: string | undefined;
143
+ primary?: string | undefined;
144
+ primaryForeground?: string | undefined;
145
+ secondary?: string | undefined;
146
+ secondaryForeground?: string | undefined;
147
+ muted?: string | undefined;
148
+ mutedForeground?: string | undefined;
149
+ accent?: string | undefined;
150
+ accentForeground?: string | undefined;
151
+ destructive?: string | undefined;
152
+ destructiveForeground?: string | undefined;
153
+ border?: string | undefined;
154
+ input?: string | undefined;
155
+ ring?: string | undefined;
156
+ }>>;
157
+ }, "strip", z.ZodTypeAny, {
158
+ radius: string;
159
+ preset?: "blue" | "red" | "green" | "orange" | "purple" | "slate" | "emerald" | "rose" | "amber" | "indigo" | undefined;
160
+ light?: {
161
+ background?: string | undefined;
162
+ foreground?: string | undefined;
163
+ card?: string | undefined;
164
+ cardForeground?: string | undefined;
165
+ popover?: string | undefined;
166
+ popoverForeground?: string | undefined;
167
+ primary?: string | undefined;
168
+ primaryForeground?: string | undefined;
169
+ secondary?: string | undefined;
170
+ secondaryForeground?: string | undefined;
171
+ muted?: string | undefined;
172
+ mutedForeground?: string | undefined;
173
+ accent?: string | undefined;
174
+ accentForeground?: string | undefined;
175
+ destructive?: string | undefined;
176
+ destructiveForeground?: string | undefined;
177
+ border?: string | undefined;
178
+ input?: string | undefined;
179
+ ring?: string | undefined;
180
+ } | undefined;
181
+ dark?: {
182
+ background?: string | undefined;
183
+ foreground?: string | undefined;
184
+ card?: string | undefined;
185
+ cardForeground?: string | undefined;
186
+ popover?: string | undefined;
187
+ popoverForeground?: string | undefined;
188
+ primary?: string | undefined;
189
+ primaryForeground?: string | undefined;
190
+ secondary?: string | undefined;
191
+ secondaryForeground?: string | undefined;
192
+ muted?: string | undefined;
193
+ mutedForeground?: string | undefined;
194
+ accent?: string | undefined;
195
+ accentForeground?: string | undefined;
196
+ destructive?: string | undefined;
197
+ destructiveForeground?: string | undefined;
198
+ border?: string | undefined;
199
+ input?: string | undefined;
200
+ ring?: string | undefined;
201
+ } | undefined;
202
+ }, {
203
+ preset?: "blue" | "red" | "green" | "orange" | "purple" | "slate" | "emerald" | "rose" | "amber" | "indigo" | undefined;
204
+ radius?: string | undefined;
205
+ light?: {
206
+ background?: string | undefined;
207
+ foreground?: string | undefined;
208
+ card?: string | undefined;
209
+ cardForeground?: string | undefined;
210
+ popover?: string | undefined;
211
+ popoverForeground?: string | undefined;
212
+ primary?: string | undefined;
213
+ primaryForeground?: string | undefined;
214
+ secondary?: string | undefined;
215
+ secondaryForeground?: string | undefined;
216
+ muted?: string | undefined;
217
+ mutedForeground?: string | undefined;
218
+ accent?: string | undefined;
219
+ accentForeground?: string | undefined;
220
+ destructive?: string | undefined;
221
+ destructiveForeground?: string | undefined;
222
+ border?: string | undefined;
223
+ input?: string | undefined;
224
+ ring?: string | undefined;
225
+ } | undefined;
226
+ dark?: {
227
+ background?: string | undefined;
228
+ foreground?: string | undefined;
229
+ card?: string | undefined;
230
+ cardForeground?: string | undefined;
231
+ popover?: string | undefined;
232
+ popoverForeground?: string | undefined;
233
+ primary?: string | undefined;
234
+ primaryForeground?: string | undefined;
235
+ secondary?: string | undefined;
236
+ secondaryForeground?: string | undefined;
237
+ muted?: string | undefined;
238
+ mutedForeground?: string | undefined;
239
+ accent?: string | undefined;
240
+ accentForeground?: string | undefined;
241
+ destructive?: string | undefined;
242
+ destructiveForeground?: string | undefined;
243
+ border?: string | undefined;
244
+ input?: string | undefined;
245
+ ring?: string | undefined;
246
+ } | undefined;
247
+ }>>;
248
+ landing: z.ZodObject<{
249
+ hero: z.ZodObject<{
250
+ headline: z.ZodString;
251
+ subheadline: z.ZodString;
252
+ ctaText: z.ZodString;
253
+ }, "strip", z.ZodTypeAny, {
254
+ headline: string;
255
+ subheadline: string;
256
+ ctaText: string;
257
+ }, {
258
+ headline: string;
259
+ subheadline: string;
260
+ ctaText: string;
261
+ }>;
262
+ features: z.ZodObject<{
263
+ heading: z.ZodString;
264
+ subheading: z.ZodOptional<z.ZodString>;
265
+ items: z.ZodArray<z.ZodObject<{
266
+ title: z.ZodString;
267
+ description: z.ZodString;
268
+ icon: z.ZodString;
269
+ wide: z.ZodOptional<z.ZodBoolean>;
270
+ }, "strip", z.ZodTypeAny, {
271
+ title: string;
272
+ description: string;
273
+ icon: string;
274
+ wide?: boolean | undefined;
275
+ }, {
276
+ title: string;
277
+ description: string;
278
+ icon: string;
279
+ wide?: boolean | undefined;
280
+ }>, "many">;
281
+ }, "strip", z.ZodTypeAny, {
282
+ heading: string;
283
+ items: {
284
+ title: string;
285
+ description: string;
286
+ icon: string;
287
+ wide?: boolean | undefined;
288
+ }[];
289
+ subheading?: string | undefined;
290
+ }, {
291
+ heading: string;
292
+ items: {
293
+ title: string;
294
+ description: string;
295
+ icon: string;
296
+ wide?: boolean | undefined;
297
+ }[];
298
+ subheading?: string | undefined;
299
+ }>;
300
+ howItWorks: z.ZodObject<{
301
+ heading: z.ZodString;
302
+ items: z.ZodArray<z.ZodObject<{
303
+ title: z.ZodString;
304
+ description: z.ZodString;
305
+ }, "strip", z.ZodTypeAny, {
306
+ title: string;
307
+ description: string;
308
+ }, {
309
+ title: string;
310
+ description: string;
311
+ }>, "many">;
312
+ }, "strip", z.ZodTypeAny, {
313
+ heading: string;
314
+ items: {
315
+ title: string;
316
+ description: string;
317
+ }[];
318
+ }, {
319
+ heading: string;
320
+ items: {
321
+ title: string;
322
+ description: string;
323
+ }[];
324
+ }>;
325
+ faq: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
326
+ question: z.ZodString;
327
+ answer: z.ZodString;
328
+ }, "strip", z.ZodTypeAny, {
329
+ question: string;
330
+ answer: string;
331
+ }, {
332
+ question: string;
333
+ answer: string;
334
+ }>, "many">>>;
335
+ bottomCta: z.ZodOptional<z.ZodObject<{
336
+ headline: z.ZodString;
337
+ subheadline: z.ZodOptional<z.ZodString>;
338
+ }, "strip", z.ZodTypeAny, {
339
+ headline: string;
340
+ subheadline?: string | undefined;
341
+ }, {
342
+ headline: string;
343
+ subheadline?: string | undefined;
344
+ }>>;
345
+ }, "strip", z.ZodTypeAny, {
346
+ hero: {
347
+ headline: string;
348
+ subheadline: string;
349
+ ctaText: string;
350
+ };
351
+ features: {
352
+ heading: string;
353
+ items: {
354
+ title: string;
355
+ description: string;
356
+ icon: string;
357
+ wide?: boolean | undefined;
358
+ }[];
359
+ subheading?: string | undefined;
360
+ };
361
+ howItWorks: {
362
+ heading: string;
363
+ items: {
364
+ title: string;
365
+ description: string;
366
+ }[];
367
+ };
368
+ faq: {
369
+ question: string;
370
+ answer: string;
371
+ }[];
372
+ bottomCta?: {
373
+ headline: string;
374
+ subheadline?: string | undefined;
375
+ } | undefined;
376
+ }, {
377
+ hero: {
378
+ headline: string;
379
+ subheadline: string;
380
+ ctaText: string;
381
+ };
382
+ features: {
383
+ heading: string;
384
+ items: {
385
+ title: string;
386
+ description: string;
387
+ icon: string;
388
+ wide?: boolean | undefined;
389
+ }[];
390
+ subheading?: string | undefined;
391
+ };
392
+ howItWorks: {
393
+ heading: string;
394
+ items: {
395
+ title: string;
396
+ description: string;
397
+ }[];
398
+ };
399
+ faq?: {
400
+ question: string;
401
+ answer: string;
402
+ }[] | undefined;
403
+ bottomCta?: {
404
+ headline: string;
405
+ subheadline?: string | undefined;
406
+ } | undefined;
407
+ }>;
408
+ seo: z.ZodOptional<z.ZodObject<{
409
+ title: z.ZodString;
410
+ description: z.ZodString;
411
+ keywords: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
412
+ }, "strip", z.ZodTypeAny, {
413
+ title: string;
414
+ description: string;
415
+ keywords: string[];
416
+ }, {
417
+ title: string;
418
+ description: string;
419
+ keywords?: string[] | undefined;
420
+ }>>;
421
+ pricing: z.ZodOptional<z.ZodObject<{
422
+ monthly: z.ZodNumber;
423
+ yearly: z.ZodOptional<z.ZodNumber>;
424
+ currency: z.ZodDefault<z.ZodString>;
425
+ trialDays: z.ZodDefault<z.ZodNumber>;
426
+ }, "strip", z.ZodTypeAny, {
427
+ monthly: number;
428
+ currency: string;
429
+ trialDays: number;
430
+ yearly?: number | undefined;
431
+ }, {
432
+ monthly: number;
433
+ yearly?: number | undefined;
434
+ currency?: string | undefined;
435
+ trialDays?: number | undefined;
436
+ }>>;
437
+ contentScope: z.ZodOptional<z.ZodObject<{
438
+ courseIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
439
+ }, "strip", z.ZodTypeAny, {
440
+ courseIds: string[];
441
+ }, {
442
+ courseIds?: string[] | undefined;
443
+ }>>;
444
+ }, "strip", z.ZodTypeAny, {
445
+ brand: {
446
+ id: string;
447
+ name: string;
448
+ domain: string;
449
+ tagline: string;
450
+ orgSlug: string;
451
+ logoUrl?: string | undefined;
452
+ faviconUrl?: string | undefined;
453
+ ogImageUrl?: string | undefined;
454
+ };
455
+ landing: {
456
+ hero: {
457
+ headline: string;
458
+ subheadline: string;
459
+ ctaText: string;
460
+ };
461
+ features: {
462
+ heading: string;
463
+ items: {
464
+ title: string;
465
+ description: string;
466
+ icon: string;
467
+ wide?: boolean | undefined;
468
+ }[];
469
+ subheading?: string | undefined;
470
+ };
471
+ howItWorks: {
472
+ heading: string;
473
+ items: {
474
+ title: string;
475
+ description: string;
476
+ }[];
477
+ };
478
+ faq: {
479
+ question: string;
480
+ answer: string;
481
+ }[];
482
+ bottomCta?: {
483
+ headline: string;
484
+ subheadline?: string | undefined;
485
+ } | undefined;
486
+ };
487
+ theme?: {
488
+ radius: string;
489
+ preset?: "blue" | "red" | "green" | "orange" | "purple" | "slate" | "emerald" | "rose" | "amber" | "indigo" | undefined;
490
+ light?: {
491
+ background?: string | undefined;
492
+ foreground?: string | undefined;
493
+ card?: string | undefined;
494
+ cardForeground?: string | undefined;
495
+ popover?: string | undefined;
496
+ popoverForeground?: string | undefined;
497
+ primary?: string | undefined;
498
+ primaryForeground?: string | undefined;
499
+ secondary?: string | undefined;
500
+ secondaryForeground?: string | undefined;
501
+ muted?: string | undefined;
502
+ mutedForeground?: string | undefined;
503
+ accent?: string | undefined;
504
+ accentForeground?: string | undefined;
505
+ destructive?: string | undefined;
506
+ destructiveForeground?: string | undefined;
507
+ border?: string | undefined;
508
+ input?: string | undefined;
509
+ ring?: string | undefined;
510
+ } | undefined;
511
+ dark?: {
512
+ background?: string | undefined;
513
+ foreground?: string | undefined;
514
+ card?: string | undefined;
515
+ cardForeground?: string | undefined;
516
+ popover?: string | undefined;
517
+ popoverForeground?: string | undefined;
518
+ primary?: string | undefined;
519
+ primaryForeground?: string | undefined;
520
+ secondary?: string | undefined;
521
+ secondaryForeground?: string | undefined;
522
+ muted?: string | undefined;
523
+ mutedForeground?: string | undefined;
524
+ accent?: string | undefined;
525
+ accentForeground?: string | undefined;
526
+ destructive?: string | undefined;
527
+ destructiveForeground?: string | undefined;
528
+ border?: string | undefined;
529
+ input?: string | undefined;
530
+ ring?: string | undefined;
531
+ } | undefined;
532
+ } | undefined;
533
+ seo?: {
534
+ title: string;
535
+ description: string;
536
+ keywords: string[];
537
+ } | undefined;
538
+ pricing?: {
539
+ monthly: number;
540
+ currency: string;
541
+ trialDays: number;
542
+ yearly?: number | undefined;
543
+ } | undefined;
544
+ contentScope?: {
545
+ courseIds: string[];
546
+ } | undefined;
547
+ }, {
548
+ brand: {
549
+ id: string;
550
+ name: string;
551
+ domain: string;
552
+ tagline: string;
553
+ orgSlug: string;
554
+ logoUrl?: string | undefined;
555
+ faviconUrl?: string | undefined;
556
+ ogImageUrl?: string | undefined;
557
+ };
558
+ landing: {
559
+ hero: {
560
+ headline: string;
561
+ subheadline: string;
562
+ ctaText: string;
563
+ };
564
+ features: {
565
+ heading: string;
566
+ items: {
567
+ title: string;
568
+ description: string;
569
+ icon: string;
570
+ wide?: boolean | undefined;
571
+ }[];
572
+ subheading?: string | undefined;
573
+ };
574
+ howItWorks: {
575
+ heading: string;
576
+ items: {
577
+ title: string;
578
+ description: string;
579
+ }[];
580
+ };
581
+ faq?: {
582
+ question: string;
583
+ answer: string;
584
+ }[] | undefined;
585
+ bottomCta?: {
586
+ headline: string;
587
+ subheadline?: string | undefined;
588
+ } | undefined;
589
+ };
590
+ theme?: {
591
+ preset?: "blue" | "red" | "green" | "orange" | "purple" | "slate" | "emerald" | "rose" | "amber" | "indigo" | undefined;
592
+ radius?: string | undefined;
593
+ light?: {
594
+ background?: string | undefined;
595
+ foreground?: string | undefined;
596
+ card?: string | undefined;
597
+ cardForeground?: string | undefined;
598
+ popover?: string | undefined;
599
+ popoverForeground?: string | undefined;
600
+ primary?: string | undefined;
601
+ primaryForeground?: string | undefined;
602
+ secondary?: string | undefined;
603
+ secondaryForeground?: string | undefined;
604
+ muted?: string | undefined;
605
+ mutedForeground?: string | undefined;
606
+ accent?: string | undefined;
607
+ accentForeground?: string | undefined;
608
+ destructive?: string | undefined;
609
+ destructiveForeground?: string | undefined;
610
+ border?: string | undefined;
611
+ input?: string | undefined;
612
+ ring?: string | undefined;
613
+ } | undefined;
614
+ dark?: {
615
+ background?: string | undefined;
616
+ foreground?: string | undefined;
617
+ card?: string | undefined;
618
+ cardForeground?: string | undefined;
619
+ popover?: string | undefined;
620
+ popoverForeground?: string | undefined;
621
+ primary?: string | undefined;
622
+ primaryForeground?: string | undefined;
623
+ secondary?: string | undefined;
624
+ secondaryForeground?: string | undefined;
625
+ muted?: string | undefined;
626
+ mutedForeground?: string | undefined;
627
+ accent?: string | undefined;
628
+ accentForeground?: string | undefined;
629
+ destructive?: string | undefined;
630
+ destructiveForeground?: string | undefined;
631
+ border?: string | undefined;
632
+ input?: string | undefined;
633
+ ring?: string | undefined;
634
+ } | undefined;
635
+ } | undefined;
636
+ seo?: {
637
+ title: string;
638
+ description: string;
639
+ keywords?: string[] | undefined;
640
+ } | undefined;
641
+ pricing?: {
642
+ monthly: number;
643
+ yearly?: number | undefined;
644
+ currency?: string | undefined;
645
+ trialDays?: number | undefined;
646
+ } | undefined;
647
+ contentScope?: {
648
+ courseIds?: string[] | undefined;
649
+ } | undefined;
650
+ }>;
651
+ export type BrandYaml = z.infer<typeof BrandYamlSchema>;
652
+ //# sourceMappingURL=brand-yaml.schema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"brand-yaml.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/brand-yaml.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,aAAa,sGAAuG,CAAC;AAiFlI,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkB1B,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"}