@vcp-dev/contracts 0.6.9 → 0.6.11

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 (44) hide show
  1. package/dist/api-response.d.ts +11 -0
  2. package/dist/cms-collection-binding.d.ts +2 -2
  3. package/dist/cms-page-directory.d.ts +245 -0
  4. package/dist/cms-site-id.d.ts +4 -0
  5. package/dist/connect-dynamic-collection.d.ts +13 -9
  6. package/dist/connect-form.d.ts +5 -3
  7. package/dist/crawler-task-service.d.ts +352 -0
  8. package/dist/custom-domain.d.ts +36 -2
  9. package/dist/customer-materials.d.ts +196 -0
  10. package/dist/deployment-progress.d.ts +51 -0
  11. package/dist/designer-component-library.d.ts +9 -7
  12. package/dist/designer-page-library.d.ts +36 -40
  13. package/dist/external-site-edit.d.ts +258 -0
  14. package/dist/firecrawl-internal.d.ts +103 -0
  15. package/dist/form-design.d.ts +106 -108
  16. package/dist/google-search-console.d.ts +316 -0
  17. package/dist/index.d.ts +5493 -1916
  18. package/dist/index.js +1 -1
  19. package/dist/input-context-bundle.d.ts +15 -15
  20. package/dist/internal-entity-id.d.ts +37 -0
  21. package/dist/launcher-prompt-templates.d.ts +639 -0
  22. package/dist/media-library.d.ts +164 -0
  23. package/dist/product-search.d.ts +227 -0
  24. package/dist/publish-quality.d.ts +92 -0
  25. package/dist/site-edit-capability.d.ts +6 -6
  26. package/dist/site-edit-event.d.ts +15 -7
  27. package/dist/site-edit-operation.d.ts +57 -15
  28. package/dist/site-edit-patch-plan.d.ts +2 -2
  29. package/dist/site-edit-render-document.d.ts +27 -23
  30. package/dist/site-edit-version.d.ts +1 -1
  31. package/dist/site-preview.d.ts +50 -0
  32. package/dist/site-workflow.d.ts +1006 -0
  33. package/dist/sitemap-navigation.d.ts +9 -0
  34. package/dist/step2-site-initialization.d.ts +209 -0
  35. package/dist/step3-digital-employee-analysis.d.ts +695 -0
  36. package/dist/step4-diagnosis.d.ts +204 -0
  37. package/dist/step5-strategy.d.ts +2697 -0
  38. package/dist/step6-design.d.ts +672 -0
  39. package/dist/template-upgrade-observability.d.ts +4 -4
  40. package/dist/user-facing-copy.d.ts +1 -0
  41. package/dist/workspace-design-apply.d.ts +1 -1
  42. package/dist/workspace-resource-operation.d.ts +722 -0
  43. package/package.json +2 -1
  44. package/dist/publish-plan.d.ts +0 -54
@@ -0,0 +1,672 @@
1
+ import { z } from "zod";
2
+ export declare const STEP6_THEME_IDS: readonly ["forest", "navy", "steel", "webblue", "webgreen", "webviolet"];
3
+ export declare const STEP6_AI_THEME_IDS: readonly ["forest", "navy", "steel"];
4
+ export declare const STEP6_STANDARD_THEME_IDS: readonly ["webblue", "webgreen", "webviolet"];
5
+ export declare const Step6ThemeIdSchema: z.ZodEnum<{
6
+ navy: "navy";
7
+ forest: "forest";
8
+ steel: "steel";
9
+ webblue: "webblue";
10
+ webgreen: "webgreen";
11
+ webviolet: "webviolet";
12
+ }>;
13
+ export type Step6ThemeId = z.infer<typeof Step6ThemeIdSchema>;
14
+ export declare const Step6AiThemeIdSchema: z.ZodEnum<{
15
+ navy: "navy";
16
+ forest: "forest";
17
+ steel: "steel";
18
+ }>;
19
+ export type Step6AiThemeId = z.infer<typeof Step6AiThemeIdSchema>;
20
+ export declare const Step6StandardThemeIdSchema: z.ZodEnum<{
21
+ webblue: "webblue";
22
+ webgreen: "webgreen";
23
+ webviolet: "webviolet";
24
+ }>;
25
+ export type Step6StandardThemeId = z.infer<typeof Step6StandardThemeIdSchema>;
26
+ export declare const Step6ThemeColorsSchema: z.ZodObject<{
27
+ primary: z.ZodString;
28
+ accent: z.ZodString;
29
+ ink: z.ZodString;
30
+ }, z.core.$strict>;
31
+ export type Step6ThemeColors = z.infer<typeof Step6ThemeColorsSchema>;
32
+ export type Step6ThemeCatalogEntry = {
33
+ id: Step6ThemeId;
34
+ name: string;
35
+ description: string;
36
+ colors: Step6ThemeColors;
37
+ };
38
+ export declare const STEP6_THEME_CATALOG: readonly Step6ThemeCatalogEntry[];
39
+ export declare function getStep6Theme(themeId: Step6ThemeId): Step6ThemeCatalogEntry;
40
+ export declare const STEP6_FONT_IDS: readonly ["system", "inter", "grotesk", "serif", "plex", "glow"];
41
+ export declare const Step6FontIdSchema: z.ZodEnum<{
42
+ serif: "serif";
43
+ system: "system";
44
+ inter: "inter";
45
+ grotesk: "grotesk";
46
+ plex: "plex";
47
+ glow: "glow";
48
+ }>;
49
+ export type Step6FontId = z.infer<typeof Step6FontIdSchema>;
50
+ export declare const STEP6_ANIMATION_IDS: readonly ["pro", "fade", "para", "slide", "none"];
51
+ export declare const Step6AnimationIdSchema: z.ZodEnum<{
52
+ none: "none";
53
+ pro: "pro";
54
+ fade: "fade";
55
+ para: "para";
56
+ slide: "slide";
57
+ }>;
58
+ export type Step6AnimationId = z.infer<typeof Step6AnimationIdSchema>;
59
+ export declare const STEP6_DENSITY_IDS: readonly ["std", "compact", "airy", "magazine"];
60
+ export declare const Step6DensityIdSchema: z.ZodEnum<{
61
+ std: "std";
62
+ compact: "compact";
63
+ airy: "airy";
64
+ magazine: "magazine";
65
+ }>;
66
+ export type Step6DensityId = z.infer<typeof Step6DensityIdSchema>;
67
+ export declare const Step6ThemeCandidateSchema: z.ZodObject<{
68
+ id: z.ZodEnum<{
69
+ navy: "navy";
70
+ forest: "forest";
71
+ steel: "steel";
72
+ webblue: "webblue";
73
+ webgreen: "webgreen";
74
+ webviolet: "webviolet";
75
+ }>;
76
+ rank: z.ZodNumber;
77
+ name: z.ZodString;
78
+ description: z.ZodString;
79
+ colors: z.ZodObject<{
80
+ primary: z.ZodString;
81
+ accent: z.ZodString;
82
+ ink: z.ZodString;
83
+ }, z.core.$strict>;
84
+ reason: z.ZodOptional<z.ZodString>;
85
+ }, z.core.$strict>;
86
+ export type Step6ThemeCandidate = z.infer<typeof Step6ThemeCandidateSchema>;
87
+ export declare const Step6ThemeRecommendationSchema: z.ZodObject<{
88
+ primary_id: z.ZodEnum<{
89
+ navy: "navy";
90
+ forest: "forest";
91
+ steel: "steel";
92
+ }>;
93
+ ai_candidate_ids: z.ZodTuple<[z.ZodEnum<{
94
+ navy: "navy";
95
+ forest: "forest";
96
+ steel: "steel";
97
+ }>, z.ZodEnum<{
98
+ navy: "navy";
99
+ forest: "forest";
100
+ steel: "steel";
101
+ }>, z.ZodEnum<{
102
+ navy: "navy";
103
+ forest: "forest";
104
+ steel: "steel";
105
+ }>], null>;
106
+ standard_candidate_ids: z.ZodTuple<[z.ZodLiteral<"webblue">, z.ZodLiteral<"webgreen">, z.ZodLiteral<"webviolet">], null>;
107
+ candidates: z.ZodArray<z.ZodObject<{
108
+ id: z.ZodEnum<{
109
+ navy: "navy";
110
+ forest: "forest";
111
+ steel: "steel";
112
+ webblue: "webblue";
113
+ webgreen: "webgreen";
114
+ webviolet: "webviolet";
115
+ }>;
116
+ rank: z.ZodNumber;
117
+ name: z.ZodString;
118
+ description: z.ZodString;
119
+ colors: z.ZodObject<{
120
+ primary: z.ZodString;
121
+ accent: z.ZodString;
122
+ ink: z.ZodString;
123
+ }, z.core.$strict>;
124
+ reason: z.ZodOptional<z.ZodString>;
125
+ }, z.core.$strict>>;
126
+ font: z.ZodObject<{
127
+ recommended_id: z.ZodEnum<{
128
+ serif: "serif";
129
+ system: "system";
130
+ inter: "inter";
131
+ grotesk: "grotesk";
132
+ plex: "plex";
133
+ glow: "glow";
134
+ }>;
135
+ reason: z.ZodString;
136
+ }, z.core.$strict>;
137
+ }, z.core.$strict>;
138
+ export type Step6ThemeRecommendation = z.infer<typeof Step6ThemeRecommendationSchema>;
139
+ export declare const Step6AnimationOptionSchema: z.ZodObject<{
140
+ id: z.ZodEnum<{
141
+ none: "none";
142
+ pro: "pro";
143
+ fade: "fade";
144
+ para: "para";
145
+ slide: "slide";
146
+ }>;
147
+ name: z.ZodString;
148
+ description: z.ZodString;
149
+ }, z.core.$strict>;
150
+ export declare const Step6DensityOptionSchema: z.ZodObject<{
151
+ id: z.ZodEnum<{
152
+ std: "std";
153
+ compact: "compact";
154
+ airy: "airy";
155
+ magazine: "magazine";
156
+ }>;
157
+ name: z.ZodString;
158
+ description: z.ZodString;
159
+ }, z.core.$strict>;
160
+ export declare const Step6AnimationRecommendationSchema: z.ZodObject<{
161
+ recommended_id: z.ZodEnum<{
162
+ none: "none";
163
+ pro: "pro";
164
+ fade: "fade";
165
+ para: "para";
166
+ slide: "slide";
167
+ }>;
168
+ options: z.ZodArray<z.ZodObject<{
169
+ id: z.ZodEnum<{
170
+ none: "none";
171
+ pro: "pro";
172
+ fade: "fade";
173
+ para: "para";
174
+ slide: "slide";
175
+ }>;
176
+ name: z.ZodString;
177
+ description: z.ZodString;
178
+ }, z.core.$strict>>;
179
+ reason: z.ZodString;
180
+ }, z.core.$strict>;
181
+ export type Step6AnimationRecommendation = z.infer<typeof Step6AnimationRecommendationSchema>;
182
+ export declare const Step6DensityRecommendationSchema: z.ZodObject<{
183
+ recommended_id: z.ZodEnum<{
184
+ std: "std";
185
+ compact: "compact";
186
+ airy: "airy";
187
+ magazine: "magazine";
188
+ }>;
189
+ options: z.ZodArray<z.ZodObject<{
190
+ id: z.ZodEnum<{
191
+ std: "std";
192
+ compact: "compact";
193
+ airy: "airy";
194
+ magazine: "magazine";
195
+ }>;
196
+ name: z.ZodString;
197
+ description: z.ZodString;
198
+ }, z.core.$strict>>;
199
+ reason: z.ZodString;
200
+ }, z.core.$strict>;
201
+ export type Step6DensityRecommendation = z.infer<typeof Step6DensityRecommendationSchema>;
202
+ export declare const Step6DesignSelectionSchema: z.ZodObject<{
203
+ version: z.ZodNumber;
204
+ recommendation_id: z.ZodString;
205
+ theme_id: z.ZodEnum<{
206
+ navy: "navy";
207
+ forest: "forest";
208
+ steel: "steel";
209
+ webblue: "webblue";
210
+ webgreen: "webgreen";
211
+ webviolet: "webviolet";
212
+ }>;
213
+ colors: z.ZodObject<{
214
+ primary: z.ZodString;
215
+ accent: z.ZodString;
216
+ ink: z.ZodString;
217
+ }, z.core.$strict>;
218
+ colors_custom: z.ZodBoolean;
219
+ font_id: z.ZodEnum<{
220
+ serif: "serif";
221
+ system: "system";
222
+ inter: "inter";
223
+ grotesk: "grotesk";
224
+ plex: "plex";
225
+ glow: "glow";
226
+ }>;
227
+ font_changed: z.ZodBoolean;
228
+ animation_id: z.ZodEnum<{
229
+ none: "none";
230
+ pro: "pro";
231
+ fade: "fade";
232
+ para: "para";
233
+ slide: "slide";
234
+ }>;
235
+ density_id: z.ZodEnum<{
236
+ std: "std";
237
+ compact: "compact";
238
+ airy: "airy";
239
+ magazine: "magazine";
240
+ }>;
241
+ updated_at: z.ZodString;
242
+ }, z.core.$strict>;
243
+ export type Step6DesignSelection = z.infer<typeof Step6DesignSelectionSchema>;
244
+ export declare const Step6DesignRecommendationSchema: z.ZodObject<{
245
+ id: z.ZodString;
246
+ version: z.ZodNumber;
247
+ catalog_version: z.ZodString;
248
+ source: z.ZodObject<{
249
+ mode: z.ZodEnum<{
250
+ ai: "ai";
251
+ fallback: "fallback";
252
+ }>;
253
+ fallback_reason: z.ZodNullable<z.ZodString>;
254
+ }, z.core.$strict>;
255
+ inputs: z.ZodObject<{
256
+ industry: z.ZodOptional<z.ZodString>;
257
+ site_language: z.ZodString;
258
+ strategy_version: z.ZodNumber;
259
+ input_digest: z.ZodString;
260
+ }, z.core.$strict>;
261
+ theme: z.ZodObject<{
262
+ primary_id: z.ZodEnum<{
263
+ navy: "navy";
264
+ forest: "forest";
265
+ steel: "steel";
266
+ }>;
267
+ ai_candidate_ids: z.ZodTuple<[z.ZodEnum<{
268
+ navy: "navy";
269
+ forest: "forest";
270
+ steel: "steel";
271
+ }>, z.ZodEnum<{
272
+ navy: "navy";
273
+ forest: "forest";
274
+ steel: "steel";
275
+ }>, z.ZodEnum<{
276
+ navy: "navy";
277
+ forest: "forest";
278
+ steel: "steel";
279
+ }>], null>;
280
+ standard_candidate_ids: z.ZodTuple<[z.ZodLiteral<"webblue">, z.ZodLiteral<"webgreen">, z.ZodLiteral<"webviolet">], null>;
281
+ candidates: z.ZodArray<z.ZodObject<{
282
+ id: z.ZodEnum<{
283
+ navy: "navy";
284
+ forest: "forest";
285
+ steel: "steel";
286
+ webblue: "webblue";
287
+ webgreen: "webgreen";
288
+ webviolet: "webviolet";
289
+ }>;
290
+ rank: z.ZodNumber;
291
+ name: z.ZodString;
292
+ description: z.ZodString;
293
+ colors: z.ZodObject<{
294
+ primary: z.ZodString;
295
+ accent: z.ZodString;
296
+ ink: z.ZodString;
297
+ }, z.core.$strict>;
298
+ reason: z.ZodOptional<z.ZodString>;
299
+ }, z.core.$strict>>;
300
+ font: z.ZodObject<{
301
+ recommended_id: z.ZodEnum<{
302
+ serif: "serif";
303
+ system: "system";
304
+ inter: "inter";
305
+ grotesk: "grotesk";
306
+ plex: "plex";
307
+ glow: "glow";
308
+ }>;
309
+ reason: z.ZodString;
310
+ }, z.core.$strict>;
311
+ }, z.core.$strict>;
312
+ animation: z.ZodObject<{
313
+ recommended_id: z.ZodEnum<{
314
+ none: "none";
315
+ pro: "pro";
316
+ fade: "fade";
317
+ para: "para";
318
+ slide: "slide";
319
+ }>;
320
+ options: z.ZodArray<z.ZodObject<{
321
+ id: z.ZodEnum<{
322
+ none: "none";
323
+ pro: "pro";
324
+ fade: "fade";
325
+ para: "para";
326
+ slide: "slide";
327
+ }>;
328
+ name: z.ZodString;
329
+ description: z.ZodString;
330
+ }, z.core.$strict>>;
331
+ reason: z.ZodString;
332
+ }, z.core.$strict>;
333
+ density: z.ZodObject<{
334
+ recommended_id: z.ZodEnum<{
335
+ std: "std";
336
+ compact: "compact";
337
+ airy: "airy";
338
+ magazine: "magazine";
339
+ }>;
340
+ options: z.ZodArray<z.ZodObject<{
341
+ id: z.ZodEnum<{
342
+ std: "std";
343
+ compact: "compact";
344
+ airy: "airy";
345
+ magazine: "magazine";
346
+ }>;
347
+ name: z.ZodString;
348
+ description: z.ZodString;
349
+ }, z.core.$strict>>;
350
+ reason: z.ZodString;
351
+ }, z.core.$strict>;
352
+ generated_at: z.ZodString;
353
+ }, z.core.$strict>;
354
+ export type Step6DesignRecommendation = z.infer<typeof Step6DesignRecommendationSchema>;
355
+ export declare const Step6DesignRecommendationsRequestSchema: z.ZodObject<{
356
+ force_refresh: z.ZodOptional<z.ZodBoolean>;
357
+ }, z.core.$strict>;
358
+ export type Step6DesignRecommendationsRequest = z.infer<typeof Step6DesignRecommendationsRequestSchema>;
359
+ export declare const Step6DesignRecommendationsResponseSchema: z.ZodObject<{
360
+ request_id: z.ZodString;
361
+ site_id: z.ZodUUID;
362
+ cached: z.ZodBoolean;
363
+ recommendation: z.ZodObject<{
364
+ id: z.ZodString;
365
+ version: z.ZodNumber;
366
+ catalog_version: z.ZodString;
367
+ source: z.ZodObject<{
368
+ mode: z.ZodEnum<{
369
+ ai: "ai";
370
+ fallback: "fallback";
371
+ }>;
372
+ fallback_reason: z.ZodNullable<z.ZodString>;
373
+ }, z.core.$strict>;
374
+ inputs: z.ZodObject<{
375
+ industry: z.ZodOptional<z.ZodString>;
376
+ site_language: z.ZodString;
377
+ strategy_version: z.ZodNumber;
378
+ input_digest: z.ZodString;
379
+ }, z.core.$strict>;
380
+ theme: z.ZodObject<{
381
+ primary_id: z.ZodEnum<{
382
+ navy: "navy";
383
+ forest: "forest";
384
+ steel: "steel";
385
+ }>;
386
+ ai_candidate_ids: z.ZodTuple<[z.ZodEnum<{
387
+ navy: "navy";
388
+ forest: "forest";
389
+ steel: "steel";
390
+ }>, z.ZodEnum<{
391
+ navy: "navy";
392
+ forest: "forest";
393
+ steel: "steel";
394
+ }>, z.ZodEnum<{
395
+ navy: "navy";
396
+ forest: "forest";
397
+ steel: "steel";
398
+ }>], null>;
399
+ standard_candidate_ids: z.ZodTuple<[z.ZodLiteral<"webblue">, z.ZodLiteral<"webgreen">, z.ZodLiteral<"webviolet">], null>;
400
+ candidates: z.ZodArray<z.ZodObject<{
401
+ id: z.ZodEnum<{
402
+ navy: "navy";
403
+ forest: "forest";
404
+ steel: "steel";
405
+ webblue: "webblue";
406
+ webgreen: "webgreen";
407
+ webviolet: "webviolet";
408
+ }>;
409
+ rank: z.ZodNumber;
410
+ name: z.ZodString;
411
+ description: z.ZodString;
412
+ colors: z.ZodObject<{
413
+ primary: z.ZodString;
414
+ accent: z.ZodString;
415
+ ink: z.ZodString;
416
+ }, z.core.$strict>;
417
+ reason: z.ZodOptional<z.ZodString>;
418
+ }, z.core.$strict>>;
419
+ font: z.ZodObject<{
420
+ recommended_id: z.ZodEnum<{
421
+ serif: "serif";
422
+ system: "system";
423
+ inter: "inter";
424
+ grotesk: "grotesk";
425
+ plex: "plex";
426
+ glow: "glow";
427
+ }>;
428
+ reason: z.ZodString;
429
+ }, z.core.$strict>;
430
+ }, z.core.$strict>;
431
+ animation: z.ZodObject<{
432
+ recommended_id: z.ZodEnum<{
433
+ none: "none";
434
+ pro: "pro";
435
+ fade: "fade";
436
+ para: "para";
437
+ slide: "slide";
438
+ }>;
439
+ options: z.ZodArray<z.ZodObject<{
440
+ id: z.ZodEnum<{
441
+ none: "none";
442
+ pro: "pro";
443
+ fade: "fade";
444
+ para: "para";
445
+ slide: "slide";
446
+ }>;
447
+ name: z.ZodString;
448
+ description: z.ZodString;
449
+ }, z.core.$strict>>;
450
+ reason: z.ZodString;
451
+ }, z.core.$strict>;
452
+ density: z.ZodObject<{
453
+ recommended_id: z.ZodEnum<{
454
+ std: "std";
455
+ compact: "compact";
456
+ airy: "airy";
457
+ magazine: "magazine";
458
+ }>;
459
+ options: z.ZodArray<z.ZodObject<{
460
+ id: z.ZodEnum<{
461
+ std: "std";
462
+ compact: "compact";
463
+ airy: "airy";
464
+ magazine: "magazine";
465
+ }>;
466
+ name: z.ZodString;
467
+ description: z.ZodString;
468
+ }, z.core.$strict>>;
469
+ reason: z.ZodString;
470
+ }, z.core.$strict>;
471
+ generated_at: z.ZodString;
472
+ }, z.core.$strict>;
473
+ selection: z.ZodObject<{
474
+ version: z.ZodNumber;
475
+ recommendation_id: z.ZodString;
476
+ theme_id: z.ZodEnum<{
477
+ navy: "navy";
478
+ forest: "forest";
479
+ steel: "steel";
480
+ webblue: "webblue";
481
+ webgreen: "webgreen";
482
+ webviolet: "webviolet";
483
+ }>;
484
+ colors: z.ZodObject<{
485
+ primary: z.ZodString;
486
+ accent: z.ZodString;
487
+ ink: z.ZodString;
488
+ }, z.core.$strict>;
489
+ colors_custom: z.ZodBoolean;
490
+ font_id: z.ZodEnum<{
491
+ serif: "serif";
492
+ system: "system";
493
+ inter: "inter";
494
+ grotesk: "grotesk";
495
+ plex: "plex";
496
+ glow: "glow";
497
+ }>;
498
+ font_changed: z.ZodBoolean;
499
+ animation_id: z.ZodEnum<{
500
+ none: "none";
501
+ pro: "pro";
502
+ fade: "fade";
503
+ para: "para";
504
+ slide: "slide";
505
+ }>;
506
+ density_id: z.ZodEnum<{
507
+ std: "std";
508
+ compact: "compact";
509
+ airy: "airy";
510
+ magazine: "magazine";
511
+ }>;
512
+ updated_at: z.ZodString;
513
+ }, z.core.$strict>;
514
+ }, z.core.$strict>;
515
+ export type Step6DesignRecommendationsResponse = z.infer<typeof Step6DesignRecommendationsResponseSchema>;
516
+ export declare const UpdateStep6DesignSelectionRequestSchema: z.ZodObject<{
517
+ recommendation_id: z.ZodString;
518
+ expected_version: z.ZodNumber;
519
+ theme_id: z.ZodEnum<{
520
+ navy: "navy";
521
+ forest: "forest";
522
+ steel: "steel";
523
+ webblue: "webblue";
524
+ webgreen: "webgreen";
525
+ webviolet: "webviolet";
526
+ }>;
527
+ colors: z.ZodObject<{
528
+ primary: z.ZodString;
529
+ accent: z.ZodString;
530
+ ink: z.ZodString;
531
+ }, z.core.$strict>;
532
+ font_id: z.ZodEnum<{
533
+ serif: "serif";
534
+ system: "system";
535
+ inter: "inter";
536
+ grotesk: "grotesk";
537
+ plex: "plex";
538
+ glow: "glow";
539
+ }>;
540
+ animation_id: z.ZodEnum<{
541
+ none: "none";
542
+ pro: "pro";
543
+ fade: "fade";
544
+ para: "para";
545
+ slide: "slide";
546
+ }>;
547
+ density_id: z.ZodEnum<{
548
+ std: "std";
549
+ compact: "compact";
550
+ airy: "airy";
551
+ magazine: "magazine";
552
+ }>;
553
+ }, z.core.$strict>;
554
+ export type UpdateStep6DesignSelectionRequest = z.infer<typeof UpdateStep6DesignSelectionRequestSchema>;
555
+ export declare const UpdateStep6DesignSelectionResponseSchema: z.ZodObject<{
556
+ selection: z.ZodObject<{
557
+ version: z.ZodNumber;
558
+ recommendation_id: z.ZodString;
559
+ theme_id: z.ZodEnum<{
560
+ navy: "navy";
561
+ forest: "forest";
562
+ steel: "steel";
563
+ webblue: "webblue";
564
+ webgreen: "webgreen";
565
+ webviolet: "webviolet";
566
+ }>;
567
+ colors: z.ZodObject<{
568
+ primary: z.ZodString;
569
+ accent: z.ZodString;
570
+ ink: z.ZodString;
571
+ }, z.core.$strict>;
572
+ colors_custom: z.ZodBoolean;
573
+ font_id: z.ZodEnum<{
574
+ serif: "serif";
575
+ system: "system";
576
+ inter: "inter";
577
+ grotesk: "grotesk";
578
+ plex: "plex";
579
+ glow: "glow";
580
+ }>;
581
+ font_changed: z.ZodBoolean;
582
+ animation_id: z.ZodEnum<{
583
+ none: "none";
584
+ pro: "pro";
585
+ fade: "fade";
586
+ para: "para";
587
+ slide: "slide";
588
+ }>;
589
+ density_id: z.ZodEnum<{
590
+ std: "std";
591
+ compact: "compact";
592
+ airy: "airy";
593
+ magazine: "magazine";
594
+ }>;
595
+ updated_at: z.ZodString;
596
+ }, z.core.$strict>;
597
+ }, z.core.$strict>;
598
+ export type UpdateStep6DesignSelectionResponse = z.infer<typeof UpdateStep6DesignSelectionResponseSchema>;
599
+ /** Trusted VCP API → agent input; this is never browser-provided. */
600
+ export declare const Step6DesignRecommendationGenerationInputSchema: z.ZodObject<{
601
+ tenant_id: z.ZodString;
602
+ site_id: z.ZodUUID;
603
+ site_language: z.ZodString;
604
+ industry: z.ZodOptional<z.ZodString>;
605
+ strategy_version_id: z.ZodString;
606
+ strategy_version: z.ZodNumber;
607
+ strategy_checksum: z.ZodString;
608
+ strategy_summary: z.ZodArray<z.ZodString>;
609
+ }, z.core.$strict>;
610
+ export type Step6DesignRecommendationGenerationInput = z.infer<typeof Step6DesignRecommendationGenerationInputSchema>;
611
+ /** Model output uses IDs/reasons only; catalog names and color values stay server-owned. */
612
+ export declare const Step6DesignRecommendationModelOutputSchema: z.ZodObject<{
613
+ theme_candidate_ids: z.ZodTuple<[z.ZodEnum<{
614
+ navy: "navy";
615
+ forest: "forest";
616
+ steel: "steel";
617
+ }>, z.ZodEnum<{
618
+ navy: "navy";
619
+ forest: "forest";
620
+ steel: "steel";
621
+ }>, z.ZodEnum<{
622
+ navy: "navy";
623
+ forest: "forest";
624
+ steel: "steel";
625
+ }>], null>;
626
+ theme_reasons: z.ZodObject<{
627
+ forest: z.ZodOptional<z.ZodString>;
628
+ navy: z.ZodOptional<z.ZodString>;
629
+ steel: z.ZodOptional<z.ZodString>;
630
+ }, z.core.$strict>;
631
+ font_id: z.ZodEnum<{
632
+ serif: "serif";
633
+ system: "system";
634
+ inter: "inter";
635
+ grotesk: "grotesk";
636
+ plex: "plex";
637
+ glow: "glow";
638
+ }>;
639
+ font_reason: z.ZodString;
640
+ animation_id: z.ZodEnum<{
641
+ none: "none";
642
+ pro: "pro";
643
+ fade: "fade";
644
+ para: "para";
645
+ slide: "slide";
646
+ }>;
647
+ animation_reason: z.ZodString;
648
+ density_id: z.ZodEnum<{
649
+ std: "std";
650
+ compact: "compact";
651
+ airy: "airy";
652
+ magazine: "magazine";
653
+ }>;
654
+ density_reason: z.ZodString;
655
+ }, z.core.$strict>;
656
+ export type Step6DesignRecommendationModelOutput = z.infer<typeof Step6DesignRecommendationModelOutputSchema>;
657
+ export type Step6GenerationVisualHints = {
658
+ colorSeeds: {
659
+ primary: string;
660
+ accent: string;
661
+ neutral: string;
662
+ };
663
+ fonts: {
664
+ heading: string;
665
+ body: string;
666
+ };
667
+ density: "compact" | "comfortable" | "airy" | "editorial";
668
+ motionLevel: "none" | "subtle" | "moderate" | "expressive";
669
+ motionPreset: Step6AnimationId;
670
+ };
671
+ /** Deterministic handoff used by the API when it materializes a persisted selection for Workspace. */
672
+ export declare function toStep6GenerationVisualHints(selection: Pick<Step6DesignSelection, "colors" | "font_id" | "animation_id" | "density_id">): Step6GenerationVisualHints;
@@ -114,8 +114,8 @@ export declare const ListTemplateUpgradeSnapshotDeletionCandidatesQuerySchema: z
114
114
  }, z.core.$strict>;
115
115
  export type ListTemplateUpgradeSnapshotDeletionCandidatesQuery = z.input<typeof ListTemplateUpgradeSnapshotDeletionCandidatesQuerySchema>;
116
116
  export declare const TemplateUpgradeSnapshotDeletionCandidateSchema: z.ZodObject<{
117
- site_id: z.ZodString;
118
- snapshot_id: z.ZodString;
117
+ site_id: z.ZodUUID;
118
+ snapshot_id: z.ZodUUID;
119
119
  status: z.ZodEnum<{
120
120
  candidate: "candidate";
121
121
  deleting: "deleting";
@@ -125,8 +125,8 @@ export declare const TemplateUpgradeSnapshotDeletionCandidateSchema: z.ZodObject
125
125
  export type TemplateUpgradeSnapshotDeletionCandidate = z.infer<typeof TemplateUpgradeSnapshotDeletionCandidateSchema>;
126
126
  export declare const ListTemplateUpgradeSnapshotDeletionCandidatesResponseSchema: z.ZodObject<{
127
127
  snapshots: z.ZodArray<z.ZodObject<{
128
- site_id: z.ZodString;
129
- snapshot_id: z.ZodString;
128
+ site_id: z.ZodUUID;
129
+ snapshot_id: z.ZodUUID;
130
130
  status: z.ZodEnum<{
131
131
  candidate: "candidate";
132
132
  deleting: "deleting";
@@ -23,6 +23,7 @@ export declare const ERROR_COPY: {
23
23
  readonly WORKSPACE_MODEL_STREAM_ABORTED: "Generation was interrupted before finishing. Please try again.";
24
24
  readonly MODEL_OUTPUT_TRUNCATED: "The response was too long and was cut off before any change was applied. Try again, or split the request into smaller changes.";
25
25
  readonly WORKSPACE_EDIT_NOT_APPLIED: "No change was applied. Try describing the change differently.";
26
+ readonly PRODUCT_SEARCH_APPLY_NOT_AVAILABLE: "Product search changes aren't available yet. Please try again later.";
26
27
  readonly WORKSPACE_INITIAL_EXECUTION_FAILED: "Initial generation failed. Please retry from the brief.";
27
28
  readonly WORKSPACE_INITIAL_GENERATION_CHECK_FAILED: "Initial generation could not be verified. Please retry.";
28
29
  readonly WORKSPACE_INITIAL_GENERATION_FINALIZE_FAILED: "Initial generation could not finalize. Please retry.";