@vcp-dev/contracts 0.6.10 → 0.7.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 (78) hide show
  1. package/README.md +5 -4
  2. package/dist/api-response.d.ts +11 -0
  3. package/dist/business-facts.d.ts +23 -0
  4. package/dist/cms-page-directory.d.ts +281 -0
  5. package/dist/cms-site-id.d.ts +4 -0
  6. package/dist/colorway-distinctness.js +1 -1
  7. package/dist/connect-dynamic-collection.d.ts +7 -3
  8. package/dist/connect-form.d.ts +7 -5
  9. package/dist/conversion-hints.d.ts +37 -0
  10. package/dist/crawler-task-service.d.ts +594 -0
  11. package/dist/custom-domain.d.ts +120 -206
  12. package/dist/customer-materials.d.ts +196 -0
  13. package/dist/deployment-lifecycle.d.ts +45 -0
  14. package/dist/deployment-progress.d.ts +51 -0
  15. package/dist/design-tokens.d.ts +1 -0
  16. package/dist/design-tokens.js +1 -1
  17. package/dist/designer-component-library.d.ts +9 -7
  18. package/dist/designer-page-library.d.ts +36 -40
  19. package/dist/e2b-preview-proxy.d.ts +5 -0
  20. package/dist/external-site-edit.d.ts +267 -0
  21. package/dist/firecrawl-internal.d.ts +122 -0
  22. package/dist/font-catalog.d.ts +5 -2
  23. package/dist/form-design.d.ts +109 -69
  24. package/dist/google-search-console.d.ts +317 -0
  25. package/dist/index.d.ts +7110 -1965
  26. package/dist/index.js +1 -1
  27. package/dist/industry-classification.d.ts +43 -0
  28. package/dist/input-context-bundle.d.ts +16 -6
  29. package/dist/internal-entity-id.d.ts +3 -0
  30. package/dist/knowledge-category.d.ts +20 -0
  31. package/dist/knowledge-source-readiness.d.ts +94 -0
  32. package/dist/launcher-prompt-templates.d.ts +742 -0
  33. package/dist/media-library.d.ts +164 -0
  34. package/dist/migration-products.d.ts +45 -0
  35. package/dist/page-slug.d.ts +2 -0
  36. package/dist/page-template.d.ts +95 -0
  37. package/dist/product-search.d.ts +227 -0
  38. package/dist/site-build.d.ts +563 -0
  39. package/dist/site-design-presets.d.ts +20 -0
  40. package/dist/site-edit-capability.d.ts +13 -1
  41. package/dist/site-edit-class-name-source.d.ts +40 -8
  42. package/dist/site-edit-command-result.d.ts +15 -4
  43. package/dist/site-edit-composition.d.ts +13 -0
  44. package/dist/site-edit-event.d.ts +76 -14
  45. package/dist/site-edit-history-status.d.ts +193 -0
  46. package/dist/site-edit-operation.d.ts +205 -62
  47. package/dist/site-edit-page-composition.d.ts +101 -22
  48. package/dist/site-edit-patch-plan.d.ts +49 -3
  49. package/dist/site-edit-render-document.d.ts +67 -17
  50. package/dist/site-edit-session.d.ts +5 -2
  51. package/dist/site-edit-source.d.ts +60 -11
  52. package/dist/site-edit-version.d.ts +1 -1
  53. package/dist/site-extra-requirement.d.ts +31 -0
  54. package/dist/site-locale.d.ts +20 -0
  55. package/dist/site-localization-fields.d.ts +196 -0
  56. package/dist/site-localization-scope.d.ts +95 -0
  57. package/dist/site-preview.d.ts +65 -0
  58. package/dist/site-publish-domain.d.ts +680 -0
  59. package/dist/site-publish-workflow.d.ts +612 -0
  60. package/dist/site-workflow-completions.d.ts +163 -0
  61. package/dist/site-workflow.d.ts +1026 -0
  62. package/dist/sitemap-navigation.d.ts +12 -0
  63. package/dist/step2-page-selection.d.ts +88 -0
  64. package/dist/step2-site-initialization.d.ts +500 -0
  65. package/dist/step3-digital-employee-analysis.d.ts +661 -0
  66. package/dist/step4-diagnosis.d.ts +272 -0
  67. package/dist/step5-strategy.d.ts +8076 -0
  68. package/dist/step6-design.d.ts +986 -0
  69. package/dist/subsite-localization-input.d.ts +121 -0
  70. package/dist/subsite-mount-path.d.ts +23 -0
  71. package/dist/subsite-visible-text-export.d.ts +22 -0
  72. package/dist/template-upgrade-observability.d.ts +2 -2
  73. package/dist/theme-presets.d.ts +56 -1
  74. package/dist/user-facing-copy.d.ts +1 -0
  75. package/dist/workspace-design-apply.d.ts +5 -0
  76. package/dist/workspace-resource-operation.d.ts +75 -33
  77. package/package.json +2 -1
  78. package/dist/publish-plan.d.ts +0 -54
@@ -0,0 +1,742 @@
1
+ import { z } from "zod";
2
+ export declare const LauncherPromptTemplateKindSchema: z.ZodEnum<{
3
+ page: "page";
4
+ block: "block";
5
+ }>;
6
+ export declare const LauncherPromptTemplateTypeSchema: z.ZodEnum<{
7
+ pages: "pages";
8
+ page: "page";
9
+ component: "component";
10
+ }>;
11
+ export declare const LauncherPromptTemplateLocaleSchema: z.ZodEnum<{
12
+ "zh-CN": "zh-CN";
13
+ "zh-TW": "zh-TW";
14
+ "en-US": "en-US";
15
+ "ja-JP": "ja-JP";
16
+ "ko-KR": "ko-KR";
17
+ "es-ES": "es-ES";
18
+ "fr-FR": "fr-FR";
19
+ "de-DE": "de-DE";
20
+ }>;
21
+ export declare const LauncherPromptTemplateCatalogQuerySchema: z.ZodObject<{
22
+ kind: z.ZodEnum<{
23
+ page: "page";
24
+ block: "block";
25
+ }>;
26
+ category_id: z.ZodOptional<z.ZodString>;
27
+ tag_id: z.ZodOptional<z.ZodString>;
28
+ search: z.ZodOptional<z.ZodString>;
29
+ limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
30
+ cursor: z.ZodOptional<z.ZodString>;
31
+ }, z.core.$strict>;
32
+ export declare const LauncherPromptTemplateCatalogItemSchema: z.ZodObject<{
33
+ stable_key: z.ZodString;
34
+ type: z.ZodEnum<{
35
+ pages: "pages";
36
+ page: "page";
37
+ component: "component";
38
+ }>;
39
+ title: z.ZodString;
40
+ description: z.ZodString;
41
+ thumbnail_url: z.ZodNullable<z.ZodString>;
42
+ resolved_version: z.ZodNumber;
43
+ content_schema_version: z.ZodLiteral<3>;
44
+ category: z.ZodNullable<z.ZodObject<{
45
+ id: z.ZodString;
46
+ key: z.ZodString;
47
+ name: z.ZodString;
48
+ }, z.core.$strict>>;
49
+ tags: z.ZodArray<z.ZodObject<{
50
+ id: z.ZodString;
51
+ key: z.ZodString;
52
+ name: z.ZodString;
53
+ color: z.ZodNullable<z.ZodString>;
54
+ }, z.core.$strict>>;
55
+ page_count: z.ZodNumber;
56
+ component_count: z.ZodNumber;
57
+ locale: z.ZodObject<{
58
+ requested_locale: z.ZodEnum<{
59
+ "zh-CN": "zh-CN";
60
+ "zh-TW": "zh-TW";
61
+ "en-US": "en-US";
62
+ "ja-JP": "ja-JP";
63
+ "ko-KR": "ko-KR";
64
+ "es-ES": "es-ES";
65
+ "fr-FR": "fr-FR";
66
+ "de-DE": "de-DE";
67
+ }>;
68
+ resolved_locale: z.ZodEnum<{
69
+ "zh-CN": "zh-CN";
70
+ "zh-TW": "zh-TW";
71
+ "en-US": "en-US";
72
+ "ja-JP": "ja-JP";
73
+ "ko-KR": "ko-KR";
74
+ "es-ES": "es-ES";
75
+ "fr-FR": "fr-FR";
76
+ "de-DE": "de-DE";
77
+ }>;
78
+ fallback_used: z.ZodBoolean;
79
+ }, z.core.$strict>;
80
+ }, z.core.$strict>;
81
+ export declare const LauncherPromptTemplateCatalogSchema: z.ZodObject<{
82
+ items: z.ZodArray<z.ZodObject<{
83
+ stable_key: z.ZodString;
84
+ type: z.ZodEnum<{
85
+ pages: "pages";
86
+ page: "page";
87
+ component: "component";
88
+ }>;
89
+ title: z.ZodString;
90
+ description: z.ZodString;
91
+ thumbnail_url: z.ZodNullable<z.ZodString>;
92
+ resolved_version: z.ZodNumber;
93
+ content_schema_version: z.ZodLiteral<3>;
94
+ category: z.ZodNullable<z.ZodObject<{
95
+ id: z.ZodString;
96
+ key: z.ZodString;
97
+ name: z.ZodString;
98
+ }, z.core.$strict>>;
99
+ tags: z.ZodArray<z.ZodObject<{
100
+ id: z.ZodString;
101
+ key: z.ZodString;
102
+ name: z.ZodString;
103
+ color: z.ZodNullable<z.ZodString>;
104
+ }, z.core.$strict>>;
105
+ page_count: z.ZodNumber;
106
+ component_count: z.ZodNumber;
107
+ locale: z.ZodObject<{
108
+ requested_locale: z.ZodEnum<{
109
+ "zh-CN": "zh-CN";
110
+ "zh-TW": "zh-TW";
111
+ "en-US": "en-US";
112
+ "ja-JP": "ja-JP";
113
+ "ko-KR": "ko-KR";
114
+ "es-ES": "es-ES";
115
+ "fr-FR": "fr-FR";
116
+ "de-DE": "de-DE";
117
+ }>;
118
+ resolved_locale: z.ZodEnum<{
119
+ "zh-CN": "zh-CN";
120
+ "zh-TW": "zh-TW";
121
+ "en-US": "en-US";
122
+ "ja-JP": "ja-JP";
123
+ "ko-KR": "ko-KR";
124
+ "es-ES": "es-ES";
125
+ "fr-FR": "fr-FR";
126
+ "de-DE": "de-DE";
127
+ }>;
128
+ fallback_used: z.ZodBoolean;
129
+ }, z.core.$strict>;
130
+ }, z.core.$strict>>;
131
+ facets: z.ZodObject<{
132
+ categories: z.ZodArray<z.ZodObject<{
133
+ id: z.ZodString;
134
+ key: z.ZodString;
135
+ name: z.ZodString;
136
+ }, z.core.$strict>>;
137
+ tags: z.ZodArray<z.ZodObject<{
138
+ id: z.ZodString;
139
+ key: z.ZodString;
140
+ name: z.ZodString;
141
+ color: z.ZodNullable<z.ZodString>;
142
+ }, z.core.$strict>>;
143
+ }, z.core.$strict>;
144
+ next_cursor: z.ZodNullable<z.ZodString>;
145
+ }, z.core.$strict>;
146
+ export declare const LauncherPromptTemplateApplyRequestSchema: z.ZodObject<{
147
+ operation_id: z.ZodString;
148
+ resolved_version: z.ZodNumber;
149
+ base_sitemap_id: z.ZodString;
150
+ base_sitemap_version: z.ZodNumber;
151
+ sitemap: z.ZodLazy<z.ZodObject<{
152
+ site_name: z.ZodOptional<z.ZodString>;
153
+ version: z.ZodNumber;
154
+ navigation: z.ZodObject<{
155
+ primaryLinks: z.ZodArray<z.ZodObject<{
156
+ label: z.ZodString;
157
+ href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
158
+ }, z.core.$loose>>;
159
+ footerLinks: z.ZodArray<z.ZodObject<{
160
+ label: z.ZodString;
161
+ href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
162
+ }, z.core.$loose>>;
163
+ }, z.core.$strip>;
164
+ integrations: z.ZodOptional<z.ZodObject<{
165
+ cms: z.ZodOptional<z.ZodUnknown>;
166
+ analytics: z.ZodOptional<z.ZodUnknown>;
167
+ }, z.core.$strip>>;
168
+ meta: z.ZodObject<{
169
+ generatedAt: z.ZodString;
170
+ generatedBy: z.ZodLiteral<"sitemap-agent">;
171
+ source_brief_id: z.ZodOptional<z.ZodString>;
172
+ source_answer_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
173
+ source: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
174
+ kind: z.ZodLiteral<"brief_clarify">;
175
+ brief_id: z.ZodUUID;
176
+ answer_ids: z.ZodArray<z.ZodString>;
177
+ }, z.core.$strict>, z.ZodObject<{
178
+ kind: z.ZodLiteral<"step5_strategy">;
179
+ strategy_version_id: z.ZodString;
180
+ strategy_version: z.ZodNumber;
181
+ strategy_checksum: z.ZodString;
182
+ }, z.core.$strict>], "kind">>;
183
+ }, z.core.$strip>;
184
+ skillSelection: z.ZodObject<{
185
+ id: z.ZodString;
186
+ name: z.ZodString;
187
+ category: z.ZodLiteral<"page-generation">;
188
+ version: z.ZodOptional<z.ZodString>;
189
+ reason: z.ZodString;
190
+ source: z.ZodDefault<z.ZodEnum<{
191
+ system_recommended: "system_recommended";
192
+ user_picked: "user_picked";
193
+ user_picked_extended: "user_picked_extended";
194
+ deterministic_fallback: "deterministic_fallback";
195
+ }>>;
196
+ }, z.core.$strip>;
197
+ visualTheme: z.ZodOptional<z.ZodObject<{
198
+ theme_id: z.ZodString;
199
+ paletteIntent: z.ZodString;
200
+ tone: z.ZodString;
201
+ mediaMood: z.ZodString;
202
+ motionLevel: z.ZodOptional<z.ZodEnum<{
203
+ none: "none";
204
+ subtle: "subtle";
205
+ moderate: "moderate";
206
+ expressive: "expressive";
207
+ }>>;
208
+ userVisualHints: z.ZodOptional<z.ZodObject<{
209
+ heading: z.ZodOptional<z.ZodString>;
210
+ body: z.ZodOptional<z.ZodString>;
211
+ paletteIntent: z.ZodOptional<z.ZodString>;
212
+ surfaceMode: z.ZodOptional<z.ZodEnum<{
213
+ light: "light";
214
+ dark: "dark";
215
+ }>>;
216
+ radius: z.ZodOptional<z.ZodEnum<{
217
+ none: "none";
218
+ sm: "sm";
219
+ md: "md";
220
+ lg: "lg";
221
+ xl: "xl";
222
+ }>>;
223
+ density: z.ZodOptional<z.ZodEnum<{
224
+ compact: "compact";
225
+ comfortable: "comfortable";
226
+ airy: "airy";
227
+ editorial: "editorial";
228
+ }>>;
229
+ motionPreset: z.ZodOptional<z.ZodEnum<{
230
+ subtle: "subtle";
231
+ moderate: "moderate";
232
+ expressive: "expressive";
233
+ }>>;
234
+ colorSeeds: z.ZodOptional<z.ZodObject<{
235
+ primary: z.ZodString;
236
+ accent: z.ZodString;
237
+ foreground: z.ZodOptional<z.ZodString>;
238
+ neutral: z.ZodOptional<z.ZodString>;
239
+ supporting: z.ZodOptional<z.ZodArray<z.ZodString>>;
240
+ }, z.core.$strip>>;
241
+ imagePalette: z.ZodOptional<z.ZodObject<{
242
+ background: z.ZodOptional<z.ZodString>;
243
+ foreground: z.ZodOptional<z.ZodString>;
244
+ card: z.ZodOptional<z.ZodString>;
245
+ muted: z.ZodOptional<z.ZodString>;
246
+ border: z.ZodOptional<z.ZodString>;
247
+ }, z.core.$strip>>;
248
+ themeId: z.ZodOptional<z.ZodString>;
249
+ themeDescription: z.ZodOptional<z.ZodString>;
250
+ aestheticNote: z.ZodOptional<z.ZodString>;
251
+ }, z.core.$strip>>;
252
+ }, z.core.$strip>>;
253
+ userChoices: z.ZodOptional<z.ZodArray<z.ZodObject<{
254
+ question: z.ZodString;
255
+ answer: z.ZodString;
256
+ }, z.core.$strip>>>;
257
+ confirmedChoices: z.ZodOptional<z.ZodObject<{
258
+ conversion: z.ZodOptional<z.ZodObject<{
259
+ protocol: z.ZodEnum<{
260
+ external: "external";
261
+ phone: "phone";
262
+ form: "form";
263
+ download: "download";
264
+ route: "route";
265
+ }>;
266
+ ctaLabel: z.ZodString;
267
+ ctaTarget: z.ZodOptional<z.ZodString>;
268
+ requiresOwnerDetail: z.ZodOptional<z.ZodBoolean>;
269
+ }, z.core.$strip>>;
270
+ }, z.core.$strip>>;
271
+ seoKeywords: z.ZodOptional<z.ZodArray<z.ZodObject<{
272
+ id: z.ZodString;
273
+ keyword: z.ZodString;
274
+ normalized_keyword: z.ZodString;
275
+ intc: z.ZodEnum<{
276
+ C: "C";
277
+ I: "I";
278
+ N: "N";
279
+ T: "T";
280
+ }>;
281
+ keyword_type: z.ZodString;
282
+ intent_strength: z.ZodEnum<{
283
+ high: "high";
284
+ medium: "medium";
285
+ low: "low";
286
+ }>;
287
+ monthly_volume: z.ZodNullable<z.ZodNumber>;
288
+ keyword_difficulty: z.ZodNullable<z.ZodNumber>;
289
+ fit: z.ZodNullable<z.ZodNumber>;
290
+ sem_cpc: z.ZodNullable<z.ZodNumber>;
291
+ currency: z.ZodNullable<z.ZodString>;
292
+ landing_page: z.ZodString;
293
+ content_format: z.ZodString;
294
+ priority: z.ZodEnum<{
295
+ P0: "P0";
296
+ P1: "P1";
297
+ P2: "P2";
298
+ P3: "P3";
299
+ }>;
300
+ source: z.ZodEnum<{
301
+ semrush: "semrush";
302
+ step5_generation: "step5_generation";
303
+ }>;
304
+ source_market: z.ZodString;
305
+ metric_timestamp: z.ZodNullable<z.ZodString>;
306
+ }, z.core.$strict>>>;
307
+ pages: z.ZodArray<z.ZodObject<{
308
+ id: z.ZodString;
309
+ title: z.ZodString;
310
+ slug: z.ZodNullable<z.ZodString>;
311
+ navigation: z.ZodObject<{
312
+ order: z.ZodNumber;
313
+ showInHeader: z.ZodNullable<z.ZodBoolean>;
314
+ showInFooter: z.ZodNullable<z.ZodBoolean>;
315
+ }, z.core.$strict>;
316
+ blocks: z.ZodArray<z.ZodObject<{
317
+ id: z.ZodString;
318
+ label: z.ZodString;
319
+ variant: z.ZodOptional<z.ZodString>;
320
+ order: z.ZodNumber;
321
+ props: z.ZodRecord<z.ZodString, z.ZodUnknown>;
322
+ meta: z.ZodOptional<z.ZodObject<{
323
+ aiGenerated: z.ZodBoolean;
324
+ userEdited: z.ZodBoolean;
325
+ lastEditedAt: z.ZodString;
326
+ lastEditedBy: z.ZodEnum<{
327
+ ai: "ai";
328
+ user: "user";
329
+ }>;
330
+ userInstruction: z.ZodOptional<z.ZodString>;
331
+ }, z.core.$strip>>;
332
+ type: z.ZodNullable<z.ZodString>;
333
+ }, z.core.$strict>>;
334
+ }, z.core.$strict>>;
335
+ }, z.core.$strict>>;
336
+ target_page_id: z.ZodOptional<z.ZodString>;
337
+ }, z.core.$strict>;
338
+ export declare const LauncherPromptTemplateApplyResponseSchema: z.ZodObject<{
339
+ next_sitemap: z.ZodLazy<z.ZodObject<{
340
+ site_name: z.ZodOptional<z.ZodString>;
341
+ version: z.ZodNumber;
342
+ navigation: z.ZodObject<{
343
+ primaryLinks: z.ZodArray<z.ZodObject<{
344
+ label: z.ZodString;
345
+ href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
346
+ }, z.core.$loose>>;
347
+ footerLinks: z.ZodArray<z.ZodObject<{
348
+ label: z.ZodString;
349
+ href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
350
+ }, z.core.$loose>>;
351
+ }, z.core.$strip>;
352
+ integrations: z.ZodOptional<z.ZodObject<{
353
+ cms: z.ZodOptional<z.ZodUnknown>;
354
+ analytics: z.ZodOptional<z.ZodUnknown>;
355
+ }, z.core.$strip>>;
356
+ meta: z.ZodObject<{
357
+ generatedAt: z.ZodString;
358
+ generatedBy: z.ZodLiteral<"sitemap-agent">;
359
+ source_brief_id: z.ZodOptional<z.ZodString>;
360
+ source_answer_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
361
+ source: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
362
+ kind: z.ZodLiteral<"brief_clarify">;
363
+ brief_id: z.ZodUUID;
364
+ answer_ids: z.ZodArray<z.ZodString>;
365
+ }, z.core.$strict>, z.ZodObject<{
366
+ kind: z.ZodLiteral<"step5_strategy">;
367
+ strategy_version_id: z.ZodString;
368
+ strategy_version: z.ZodNumber;
369
+ strategy_checksum: z.ZodString;
370
+ }, z.core.$strict>], "kind">>;
371
+ }, z.core.$strip>;
372
+ skillSelection: z.ZodObject<{
373
+ id: z.ZodString;
374
+ name: z.ZodString;
375
+ category: z.ZodLiteral<"page-generation">;
376
+ version: z.ZodOptional<z.ZodString>;
377
+ reason: z.ZodString;
378
+ source: z.ZodDefault<z.ZodEnum<{
379
+ system_recommended: "system_recommended";
380
+ user_picked: "user_picked";
381
+ user_picked_extended: "user_picked_extended";
382
+ deterministic_fallback: "deterministic_fallback";
383
+ }>>;
384
+ }, z.core.$strip>;
385
+ visualTheme: z.ZodOptional<z.ZodObject<{
386
+ theme_id: z.ZodString;
387
+ paletteIntent: z.ZodString;
388
+ tone: z.ZodString;
389
+ mediaMood: z.ZodString;
390
+ motionLevel: z.ZodOptional<z.ZodEnum<{
391
+ none: "none";
392
+ subtle: "subtle";
393
+ moderate: "moderate";
394
+ expressive: "expressive";
395
+ }>>;
396
+ userVisualHints: z.ZodOptional<z.ZodObject<{
397
+ heading: z.ZodOptional<z.ZodString>;
398
+ body: z.ZodOptional<z.ZodString>;
399
+ paletteIntent: z.ZodOptional<z.ZodString>;
400
+ surfaceMode: z.ZodOptional<z.ZodEnum<{
401
+ light: "light";
402
+ dark: "dark";
403
+ }>>;
404
+ radius: z.ZodOptional<z.ZodEnum<{
405
+ none: "none";
406
+ sm: "sm";
407
+ md: "md";
408
+ lg: "lg";
409
+ xl: "xl";
410
+ }>>;
411
+ density: z.ZodOptional<z.ZodEnum<{
412
+ compact: "compact";
413
+ comfortable: "comfortable";
414
+ airy: "airy";
415
+ editorial: "editorial";
416
+ }>>;
417
+ motionPreset: z.ZodOptional<z.ZodEnum<{
418
+ subtle: "subtle";
419
+ moderate: "moderate";
420
+ expressive: "expressive";
421
+ }>>;
422
+ colorSeeds: z.ZodOptional<z.ZodObject<{
423
+ primary: z.ZodString;
424
+ accent: z.ZodString;
425
+ foreground: z.ZodOptional<z.ZodString>;
426
+ neutral: z.ZodOptional<z.ZodString>;
427
+ supporting: z.ZodOptional<z.ZodArray<z.ZodString>>;
428
+ }, z.core.$strip>>;
429
+ imagePalette: z.ZodOptional<z.ZodObject<{
430
+ background: z.ZodOptional<z.ZodString>;
431
+ foreground: z.ZodOptional<z.ZodString>;
432
+ card: z.ZodOptional<z.ZodString>;
433
+ muted: z.ZodOptional<z.ZodString>;
434
+ border: z.ZodOptional<z.ZodString>;
435
+ }, z.core.$strip>>;
436
+ themeId: z.ZodOptional<z.ZodString>;
437
+ themeDescription: z.ZodOptional<z.ZodString>;
438
+ aestheticNote: z.ZodOptional<z.ZodString>;
439
+ }, z.core.$strip>>;
440
+ }, z.core.$strip>>;
441
+ userChoices: z.ZodOptional<z.ZodArray<z.ZodObject<{
442
+ question: z.ZodString;
443
+ answer: z.ZodString;
444
+ }, z.core.$strip>>>;
445
+ confirmedChoices: z.ZodOptional<z.ZodObject<{
446
+ conversion: z.ZodOptional<z.ZodObject<{
447
+ protocol: z.ZodEnum<{
448
+ external: "external";
449
+ phone: "phone";
450
+ form: "form";
451
+ download: "download";
452
+ route: "route";
453
+ }>;
454
+ ctaLabel: z.ZodString;
455
+ ctaTarget: z.ZodOptional<z.ZodString>;
456
+ requiresOwnerDetail: z.ZodOptional<z.ZodBoolean>;
457
+ }, z.core.$strip>>;
458
+ }, z.core.$strip>>;
459
+ seoKeywords: z.ZodOptional<z.ZodArray<z.ZodObject<{
460
+ id: z.ZodString;
461
+ keyword: z.ZodString;
462
+ normalized_keyword: z.ZodString;
463
+ intc: z.ZodEnum<{
464
+ C: "C";
465
+ I: "I";
466
+ N: "N";
467
+ T: "T";
468
+ }>;
469
+ keyword_type: z.ZodString;
470
+ intent_strength: z.ZodEnum<{
471
+ high: "high";
472
+ medium: "medium";
473
+ low: "low";
474
+ }>;
475
+ monthly_volume: z.ZodNullable<z.ZodNumber>;
476
+ keyword_difficulty: z.ZodNullable<z.ZodNumber>;
477
+ fit: z.ZodNullable<z.ZodNumber>;
478
+ sem_cpc: z.ZodNullable<z.ZodNumber>;
479
+ currency: z.ZodNullable<z.ZodString>;
480
+ landing_page: z.ZodString;
481
+ content_format: z.ZodString;
482
+ priority: z.ZodEnum<{
483
+ P0: "P0";
484
+ P1: "P1";
485
+ P2: "P2";
486
+ P3: "P3";
487
+ }>;
488
+ source: z.ZodEnum<{
489
+ semrush: "semrush";
490
+ step5_generation: "step5_generation";
491
+ }>;
492
+ source_market: z.ZodString;
493
+ metric_timestamp: z.ZodNullable<z.ZodString>;
494
+ }, z.core.$strict>>>;
495
+ pages: z.ZodArray<z.ZodObject<{
496
+ id: z.ZodString;
497
+ title: z.ZodString;
498
+ slug: z.ZodNullable<z.ZodString>;
499
+ navigation: z.ZodObject<{
500
+ order: z.ZodNumber;
501
+ showInHeader: z.ZodNullable<z.ZodBoolean>;
502
+ showInFooter: z.ZodNullable<z.ZodBoolean>;
503
+ }, z.core.$strict>;
504
+ blocks: z.ZodArray<z.ZodObject<{
505
+ id: z.ZodString;
506
+ label: z.ZodString;
507
+ variant: z.ZodOptional<z.ZodString>;
508
+ order: z.ZodNumber;
509
+ props: z.ZodRecord<z.ZodString, z.ZodUnknown>;
510
+ meta: z.ZodOptional<z.ZodObject<{
511
+ aiGenerated: z.ZodBoolean;
512
+ userEdited: z.ZodBoolean;
513
+ lastEditedAt: z.ZodString;
514
+ lastEditedBy: z.ZodEnum<{
515
+ ai: "ai";
516
+ user: "user";
517
+ }>;
518
+ userInstruction: z.ZodOptional<z.ZodString>;
519
+ }, z.core.$strip>>;
520
+ type: z.ZodNullable<z.ZodString>;
521
+ }, z.core.$strict>>;
522
+ }, z.core.$strict>>;
523
+ }, z.core.$strict>>;
524
+ applied: z.ZodObject<{
525
+ stable_key: z.ZodString;
526
+ resolved_version: z.ZodNumber;
527
+ template_type: z.ZodEnum<{
528
+ pages: "pages";
529
+ page: "page";
530
+ component: "component";
531
+ }>;
532
+ page_ids: z.ZodArray<z.ZodString>;
533
+ block_ids: z.ZodArray<z.ZodString>;
534
+ }, z.core.$strict>;
535
+ locale: z.ZodObject<{
536
+ requested_locale: z.ZodEnum<{
537
+ "zh-CN": "zh-CN";
538
+ "zh-TW": "zh-TW";
539
+ "en-US": "en-US";
540
+ "ja-JP": "ja-JP";
541
+ "ko-KR": "ko-KR";
542
+ "es-ES": "es-ES";
543
+ "fr-FR": "fr-FR";
544
+ "de-DE": "de-DE";
545
+ }>;
546
+ resolved_locale: z.ZodEnum<{
547
+ "zh-CN": "zh-CN";
548
+ "zh-TW": "zh-TW";
549
+ "en-US": "en-US";
550
+ "ja-JP": "ja-JP";
551
+ "ko-KR": "ko-KR";
552
+ "es-ES": "es-ES";
553
+ "fr-FR": "fr-FR";
554
+ "de-DE": "de-DE";
555
+ }>;
556
+ fallback_used: z.ZodBoolean;
557
+ }, z.core.$strict>;
558
+ warnings: z.ZodArray<z.ZodString>;
559
+ }, z.core.$strict>;
560
+ export declare const UpstreamPromptTemplateConsumeDataSchema: z.ZodObject<{
561
+ templateId: z.ZodString;
562
+ stableKey: z.ZodString;
563
+ type: z.ZodEnum<{
564
+ pages: "pages";
565
+ page: "page";
566
+ component: "component";
567
+ }>;
568
+ resolvedVersion: z.ZodNumber;
569
+ contentSchemaVersion: z.ZodLiteral<3>;
570
+ structure: z.ZodUnion<readonly [z.ZodObject<{
571
+ nodeId: z.ZodString;
572
+ type: z.ZodString;
573
+ label: z.ZodString;
574
+ variant: z.ZodOptional<z.ZodString>;
575
+ order: z.ZodNumber;
576
+ props: z.ZodRecord<z.ZodString, z.ZodUnknown>;
577
+ thumbnail: z.ZodOptional<z.ZodString>;
578
+ source: z.ZodOptional<z.ZodUnknown>;
579
+ }, z.core.$strict>, z.ZodObject<{
580
+ nodeId: z.ZodOptional<z.ZodString>;
581
+ slug: z.ZodString;
582
+ navigation: z.ZodObject<{
583
+ showInHeader: z.ZodBoolean;
584
+ showInFooter: z.ZodBoolean;
585
+ order: z.ZodNumber;
586
+ }, z.core.$strict>;
587
+ components: z.ZodArray<z.ZodObject<{
588
+ nodeId: z.ZodString;
589
+ type: z.ZodString;
590
+ label: z.ZodString;
591
+ variant: z.ZodOptional<z.ZodString>;
592
+ order: z.ZodNumber;
593
+ props: z.ZodRecord<z.ZodString, z.ZodUnknown>;
594
+ thumbnail: z.ZodOptional<z.ZodString>;
595
+ source: z.ZodOptional<z.ZodUnknown>;
596
+ }, z.core.$strict>>;
597
+ thumbnail: z.ZodOptional<z.ZodString>;
598
+ source: z.ZodOptional<z.ZodUnknown>;
599
+ }, z.core.$strict>, z.ZodObject<{
600
+ pages: z.ZodArray<z.ZodObject<{
601
+ nodeId: z.ZodOptional<z.ZodString>;
602
+ slug: z.ZodString;
603
+ navigation: z.ZodObject<{
604
+ showInHeader: z.ZodBoolean;
605
+ showInFooter: z.ZodBoolean;
606
+ order: z.ZodNumber;
607
+ }, z.core.$strict>;
608
+ components: z.ZodArray<z.ZodObject<{
609
+ nodeId: z.ZodString;
610
+ type: z.ZodString;
611
+ label: z.ZodString;
612
+ variant: z.ZodOptional<z.ZodString>;
613
+ order: z.ZodNumber;
614
+ props: z.ZodRecord<z.ZodString, z.ZodUnknown>;
615
+ thumbnail: z.ZodOptional<z.ZodString>;
616
+ source: z.ZodOptional<z.ZodUnknown>;
617
+ }, z.core.$strict>>;
618
+ thumbnail: z.ZodOptional<z.ZodString>;
619
+ source: z.ZodOptional<z.ZodUnknown>;
620
+ }, z.core.$strict>>;
621
+ thumbnail: z.ZodOptional<z.ZodString>;
622
+ source: z.ZodOptional<z.ZodUnknown>;
623
+ }, z.core.$strict>]>;
624
+ requestedLocale: z.ZodEnum<{
625
+ "zh-CN": "zh-CN";
626
+ "zh-TW": "zh-TW";
627
+ "en-US": "en-US";
628
+ "ja-JP": "ja-JP";
629
+ "ko-KR": "ko-KR";
630
+ "es-ES": "es-ES";
631
+ "fr-FR": "fr-FR";
632
+ "de-DE": "de-DE";
633
+ }>;
634
+ resolvedLocale: z.ZodEnum<{
635
+ "zh-CN": "zh-CN";
636
+ "zh-TW": "zh-TW";
637
+ "en-US": "en-US";
638
+ "ja-JP": "ja-JP";
639
+ "ko-KR": "ko-KR";
640
+ "es-ES": "es-ES";
641
+ "fr-FR": "fr-FR";
642
+ "de-DE": "de-DE";
643
+ }>;
644
+ fallbackUsed: z.ZodBoolean;
645
+ contents: z.ZodArray<z.ZodObject<{
646
+ locale: z.ZodEnum<{
647
+ "zh-CN": "zh-CN";
648
+ "zh-TW": "zh-TW";
649
+ "en-US": "en-US";
650
+ "ja-JP": "ja-JP";
651
+ "ko-KR": "ko-KR";
652
+ "es-ES": "es-ES";
653
+ "fr-FR": "fr-FR";
654
+ "de-DE": "de-DE";
655
+ }>;
656
+ title: z.ZodString;
657
+ content: z.ZodObject<{
658
+ description: z.ZodString;
659
+ prompt: z.ZodString;
660
+ nodes: z.ZodRecord<z.ZodString, z.ZodObject<{
661
+ title: z.ZodString;
662
+ description: z.ZodString;
663
+ prompt: z.ZodString;
664
+ }, z.core.$strict>>;
665
+ }, z.core.$strict>;
666
+ }, z.core.$strict>>;
667
+ }, z.core.$strict>;
668
+ export declare const UpstreamPromptTemplateCatalogDataSchema: z.ZodObject<{
669
+ items: z.ZodArray<z.ZodObject<{
670
+ stableKey: z.ZodString;
671
+ type: z.ZodEnum<{
672
+ pages: "pages";
673
+ page: "page";
674
+ component: "component";
675
+ }>;
676
+ title: z.ZodString;
677
+ description: z.ZodString;
678
+ thumbnailUrl: z.ZodNullable<z.ZodString>;
679
+ resolvedVersion: z.ZodNumber;
680
+ contentSchemaVersion: z.ZodLiteral<3>;
681
+ category: z.ZodNullable<z.ZodObject<{
682
+ id: z.ZodString;
683
+ key: z.ZodString;
684
+ name: z.ZodString;
685
+ }, z.core.$strict>>;
686
+ tags: z.ZodArray<z.ZodObject<{
687
+ id: z.ZodString;
688
+ key: z.ZodString;
689
+ name: z.ZodString;
690
+ color: z.ZodNullable<z.ZodString>;
691
+ }, z.core.$strict>>;
692
+ pageCount: z.ZodNumber;
693
+ componentCount: z.ZodNumber;
694
+ requestedLocale: z.ZodEnum<{
695
+ "zh-CN": "zh-CN";
696
+ "zh-TW": "zh-TW";
697
+ "en-US": "en-US";
698
+ "ja-JP": "ja-JP";
699
+ "ko-KR": "ko-KR";
700
+ "es-ES": "es-ES";
701
+ "fr-FR": "fr-FR";
702
+ "de-DE": "de-DE";
703
+ }>;
704
+ resolvedLocale: z.ZodEnum<{
705
+ "zh-CN": "zh-CN";
706
+ "zh-TW": "zh-TW";
707
+ "en-US": "en-US";
708
+ "ja-JP": "ja-JP";
709
+ "ko-KR": "ko-KR";
710
+ "es-ES": "es-ES";
711
+ "fr-FR": "fr-FR";
712
+ "de-DE": "de-DE";
713
+ }>;
714
+ fallbackUsed: z.ZodBoolean;
715
+ }, z.core.$strict>>;
716
+ facets: z.ZodObject<{
717
+ categories: z.ZodArray<z.ZodObject<{
718
+ id: z.ZodString;
719
+ key: z.ZodString;
720
+ name: z.ZodString;
721
+ }, z.core.$strict>>;
722
+ tags: z.ZodArray<z.ZodObject<{
723
+ id: z.ZodString;
724
+ key: z.ZodString;
725
+ name: z.ZodString;
726
+ color: z.ZodNullable<z.ZodString>;
727
+ }, z.core.$strict>>;
728
+ }, z.core.$strict>;
729
+ nextCursor: z.ZodNullable<z.ZodString>;
730
+ }, z.core.$strict>;
731
+ export type LauncherPromptTemplateCatalogQuery = z.input<typeof LauncherPromptTemplateCatalogQuerySchema>;
732
+ export type LauncherPromptTemplateCatalog = z.infer<typeof LauncherPromptTemplateCatalogSchema>;
733
+ export type LauncherPromptTemplateApplyRequest = z.infer<typeof LauncherPromptTemplateApplyRequestSchema>;
734
+ export type LauncherPromptTemplateApplyResponse = z.infer<typeof LauncherPromptTemplateApplyResponseSchema>;
735
+ export declare function canonicalizeLauncherPromptTemplateOperation(input: {
736
+ tenant_id: string;
737
+ site_id: string;
738
+ stable_key: string;
739
+ request: LauncherPromptTemplateApplyRequest;
740
+ }): string;
741
+ export type UpstreamPromptTemplateConsumeData = z.infer<typeof UpstreamPromptTemplateConsumeDataSchema>;
742
+ export type UpstreamPromptTemplateCatalogData = z.infer<typeof UpstreamPromptTemplateCatalogDataSchema>;