@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,352 @@
1
+ import { z } from "zod";
2
+ export declare const HomeUrlCrawlerTaskCreateRequestSchema: z.ZodObject<{
3
+ task_type: z.ZodLiteral<"home_url">;
4
+ task_url: z.ZodPipe<z.ZodString, z.ZodString>;
5
+ planned_num: z.ZodOptional<z.ZodNumber>;
6
+ }, z.core.$strict>;
7
+ export declare const UrlListCrawlerTaskCreateRequestSchema: z.ZodObject<{
8
+ task_type: z.ZodLiteral<"url_list">;
9
+ urls: z.ZodArray<z.ZodString>;
10
+ }, z.core.$strict>;
11
+ export declare const CrawlerTaskCreateRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
12
+ task_type: z.ZodLiteral<"home_url">;
13
+ task_url: z.ZodPipe<z.ZodString, z.ZodString>;
14
+ planned_num: z.ZodOptional<z.ZodNumber>;
15
+ }, z.core.$strict>, z.ZodObject<{
16
+ task_type: z.ZodLiteral<"url_list">;
17
+ urls: z.ZodArray<z.ZodString>;
18
+ }, z.core.$strict>], "task_type">;
19
+ export declare const CrawlerTaskPagesQuerySchema: z.ZodObject<{
20
+ page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
21
+ page_size: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
22
+ }, z.core.$strict>;
23
+ export declare const SitemapTaskCreateRequestSchema: z.ZodObject<{
24
+ home_url: z.ZodPipe<z.ZodString, z.ZodString>;
25
+ }, z.core.$strict>;
26
+ export declare const CrawlerTaskUuidSchema: z.ZodString;
27
+ export declare const CrawlerTaskCodeSchema: z.ZodString;
28
+ export declare const CrawlerTaskCreateResponseSchema: z.ZodObject<{
29
+ task_uuid: z.ZodString;
30
+ }, z.core.$strict>;
31
+ export declare const CrawlerTaskFailureStageSchema: z.ZodEnum<{
32
+ URL_DISCOVERY: "URL_DISCOVERY";
33
+ PAGE_CRAWL: "PAGE_CRAWL";
34
+ TASK_SCHEDULING: "TASK_SCHEDULING";
35
+ RESULT_PERSISTENCE: "RESULT_PERSISTENCE";
36
+ }>;
37
+ export declare const CrawlerTaskFailureErrorCodeSchema: z.ZodEnum<{
38
+ TASK_FAILED: "TASK_FAILED";
39
+ PROVIDER_CAPABILITY_LIMIT: "PROVIDER_CAPABILITY_LIMIT";
40
+ }>;
41
+ export declare const CrawlerTaskStatusResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
42
+ task_uuid: z.ZodString;
43
+ status: z.ZodLiteral<"NOT_STARTED">;
44
+ total: z.ZodLiteral<0>;
45
+ }, z.core.$strict>, z.ZodObject<{
46
+ task_uuid: z.ZodString;
47
+ status: z.ZodLiteral<"PROCESSING">;
48
+ total: z.ZodLiteral<0>;
49
+ }, z.core.$strict>, z.ZodObject<{
50
+ task_uuid: z.ZodString;
51
+ status: z.ZodLiteral<"SUCCEEDED">;
52
+ total: z.ZodNumber;
53
+ }, z.core.$strict>, z.ZodObject<{
54
+ task_uuid: z.ZodString;
55
+ status: z.ZodLiteral<"FAILED">;
56
+ total: z.ZodLiteral<0>;
57
+ error_code: z.ZodEnum<{
58
+ TASK_FAILED: "TASK_FAILED";
59
+ PROVIDER_CAPABILITY_LIMIT: "PROVIDER_CAPABILITY_LIMIT";
60
+ }>;
61
+ error_message: z.ZodString;
62
+ failure_stage: z.ZodEnum<{
63
+ URL_DISCOVERY: "URL_DISCOVERY";
64
+ PAGE_CRAWL: "PAGE_CRAWL";
65
+ TASK_SCHEDULING: "TASK_SCHEDULING";
66
+ RESULT_PERSISTENCE: "RESULT_PERSISTENCE";
67
+ }>;
68
+ }, z.core.$strict>], "status">;
69
+ export declare const CrawlerTaskPageSchema: z.ZodObject<{
70
+ url: z.ZodString;
71
+ raw_html: z.ZodString;
72
+ }, z.core.$strict>;
73
+ export declare const CrawlerTaskPagesResponseSchema: z.ZodObject<{
74
+ task_uuid: z.ZodString;
75
+ status: z.ZodLiteral<"SUCCEEDED">;
76
+ page: z.ZodNumber;
77
+ page_size: z.ZodNumber;
78
+ total: z.ZodNumber;
79
+ total_pages: z.ZodNumber;
80
+ pages: z.ZodArray<z.ZodObject<{
81
+ url: z.ZodString;
82
+ raw_html: z.ZodString;
83
+ }, z.core.$strict>>;
84
+ }, z.core.$strict>;
85
+ export declare const SitemapTaskCreateResponseSchema: z.ZodObject<{
86
+ task_code: z.ZodString;
87
+ }, z.core.$strict>;
88
+ export declare const SitemapTaskFailureErrorCodeSchema: z.ZodLiteral<"SITEMAP_DISCOVERY_FAILED">;
89
+ export declare const SitemapTaskResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
90
+ task_code: z.ZodString;
91
+ status: z.ZodLiteral<"NOT_STARTED">;
92
+ }, z.core.$strict>, z.ZodObject<{
93
+ task_code: z.ZodString;
94
+ status: z.ZodLiteral<"PROCESSING">;
95
+ }, z.core.$strict>, z.ZodObject<{
96
+ task_code: z.ZodString;
97
+ status: z.ZodLiteral<"SUCCEEDED">;
98
+ urls: z.ZodArray<z.ZodString>;
99
+ }, z.core.$strict>, z.ZodObject<{
100
+ task_code: z.ZodString;
101
+ status: z.ZodLiteral<"FAILED">;
102
+ error_code: z.ZodLiteral<"SITEMAP_DISCOVERY_FAILED">;
103
+ error_message: z.ZodString;
104
+ }, z.core.$strict>], "status">;
105
+ export declare const CompanyInfoTaskCreateRequestSchema: z.ZodObject<{
106
+ company_name: z.ZodString;
107
+ }, z.core.$strict>;
108
+ export declare const CompanyInfoSchema: z.ZodObject<{
109
+ company_name: z.ZodString;
110
+ brand_name: z.ZodString;
111
+ main_products: z.ZodArray<z.ZodString>;
112
+ industry: z.ZodArray<z.ZodString>;
113
+ subfields: z.ZodArray<z.ZodString>;
114
+ business_intro: z.ZodString;
115
+ registered_capital: z.ZodString;
116
+ legal_representative: z.ZodString;
117
+ target_markets: z.ZodArray<z.ZodString>;
118
+ target_customer_industries: z.ZodArray<z.ZodString>;
119
+ target_customer_roles: z.ZodArray<z.ZodString>;
120
+ purchase_scenarios: z.ZodString;
121
+ differentiators: z.ZodArray<z.ZodString>;
122
+ competitors: z.ZodArray<z.ZodObject<{
123
+ name: z.ZodString;
124
+ official_url: z.ZodString;
125
+ }, z.core.$strict>>;
126
+ qualifications: z.ZodArray<z.ZodString>;
127
+ representative_cases: z.ZodArray<z.ZodString>;
128
+ acquisition_channels: z.ZodArray<z.ZodString>;
129
+ desired_domain: z.ZodString;
130
+ brand_tone: z.ZodString;
131
+ timezone: z.ZodString;
132
+ }, z.core.$strict>;
133
+ export declare const CompanyInfoTaskCreateResponseSchema: z.ZodObject<{
134
+ company_uuid: z.ZodString;
135
+ }, z.core.$strict>;
136
+ export declare const CompanyInfoTaskResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
137
+ company_uuid: z.ZodString;
138
+ company_info: z.ZodObject<{
139
+ company_name: z.ZodString;
140
+ brand_name: z.ZodString;
141
+ main_products: z.ZodArray<z.ZodString>;
142
+ industry: z.ZodArray<z.ZodString>;
143
+ subfields: z.ZodArray<z.ZodString>;
144
+ business_intro: z.ZodString;
145
+ registered_capital: z.ZodString;
146
+ legal_representative: z.ZodString;
147
+ target_markets: z.ZodArray<z.ZodString>;
148
+ target_customer_industries: z.ZodArray<z.ZodString>;
149
+ target_customer_roles: z.ZodArray<z.ZodString>;
150
+ purchase_scenarios: z.ZodString;
151
+ differentiators: z.ZodArray<z.ZodString>;
152
+ competitors: z.ZodArray<z.ZodObject<{
153
+ name: z.ZodString;
154
+ official_url: z.ZodString;
155
+ }, z.core.$strict>>;
156
+ qualifications: z.ZodArray<z.ZodString>;
157
+ representative_cases: z.ZodArray<z.ZodString>;
158
+ acquisition_channels: z.ZodArray<z.ZodString>;
159
+ desired_domain: z.ZodString;
160
+ brand_tone: z.ZodString;
161
+ timezone: z.ZodString;
162
+ }, z.core.$strict>;
163
+ created_at: z.ZodString;
164
+ updated_at: z.ZodString;
165
+ status: z.ZodLiteral<"NOT_STARTED">;
166
+ last_error_code: z.ZodNull;
167
+ last_error_message: z.ZodNull;
168
+ started_at: z.ZodNull;
169
+ completed_at: z.ZodNull;
170
+ }, z.core.$strict>, z.ZodObject<{
171
+ company_uuid: z.ZodString;
172
+ company_info: z.ZodObject<{
173
+ company_name: z.ZodString;
174
+ brand_name: z.ZodString;
175
+ main_products: z.ZodArray<z.ZodString>;
176
+ industry: z.ZodArray<z.ZodString>;
177
+ subfields: z.ZodArray<z.ZodString>;
178
+ business_intro: z.ZodString;
179
+ registered_capital: z.ZodString;
180
+ legal_representative: z.ZodString;
181
+ target_markets: z.ZodArray<z.ZodString>;
182
+ target_customer_industries: z.ZodArray<z.ZodString>;
183
+ target_customer_roles: z.ZodArray<z.ZodString>;
184
+ purchase_scenarios: z.ZodString;
185
+ differentiators: z.ZodArray<z.ZodString>;
186
+ competitors: z.ZodArray<z.ZodObject<{
187
+ name: z.ZodString;
188
+ official_url: z.ZodString;
189
+ }, z.core.$strict>>;
190
+ qualifications: z.ZodArray<z.ZodString>;
191
+ representative_cases: z.ZodArray<z.ZodString>;
192
+ acquisition_channels: z.ZodArray<z.ZodString>;
193
+ desired_domain: z.ZodString;
194
+ brand_tone: z.ZodString;
195
+ timezone: z.ZodString;
196
+ }, z.core.$strict>;
197
+ created_at: z.ZodString;
198
+ updated_at: z.ZodString;
199
+ status: z.ZodLiteral<"PROCESSING">;
200
+ last_error_code: z.ZodNull;
201
+ last_error_message: z.ZodNull;
202
+ started_at: z.ZodString;
203
+ completed_at: z.ZodNull;
204
+ }, z.core.$strict>, z.ZodObject<{
205
+ company_uuid: z.ZodString;
206
+ company_info: z.ZodObject<{
207
+ company_name: z.ZodString;
208
+ brand_name: z.ZodString;
209
+ main_products: z.ZodArray<z.ZodString>;
210
+ industry: z.ZodArray<z.ZodString>;
211
+ subfields: z.ZodArray<z.ZodString>;
212
+ business_intro: z.ZodString;
213
+ registered_capital: z.ZodString;
214
+ legal_representative: z.ZodString;
215
+ target_markets: z.ZodArray<z.ZodString>;
216
+ target_customer_industries: z.ZodArray<z.ZodString>;
217
+ target_customer_roles: z.ZodArray<z.ZodString>;
218
+ purchase_scenarios: z.ZodString;
219
+ differentiators: z.ZodArray<z.ZodString>;
220
+ competitors: z.ZodArray<z.ZodObject<{
221
+ name: z.ZodString;
222
+ official_url: z.ZodString;
223
+ }, z.core.$strict>>;
224
+ qualifications: z.ZodArray<z.ZodString>;
225
+ representative_cases: z.ZodArray<z.ZodString>;
226
+ acquisition_channels: z.ZodArray<z.ZodString>;
227
+ desired_domain: z.ZodString;
228
+ brand_tone: z.ZodString;
229
+ timezone: z.ZodString;
230
+ }, z.core.$strict>;
231
+ created_at: z.ZodString;
232
+ updated_at: z.ZodString;
233
+ status: z.ZodLiteral<"SUCCEEDED">;
234
+ last_error_code: z.ZodNull;
235
+ last_error_message: z.ZodNull;
236
+ started_at: z.ZodString;
237
+ completed_at: z.ZodString;
238
+ }, z.core.$strict>, z.ZodObject<{
239
+ company_uuid: z.ZodString;
240
+ company_info: z.ZodObject<{
241
+ company_name: z.ZodString;
242
+ brand_name: z.ZodString;
243
+ main_products: z.ZodArray<z.ZodString>;
244
+ industry: z.ZodArray<z.ZodString>;
245
+ subfields: z.ZodArray<z.ZodString>;
246
+ business_intro: z.ZodString;
247
+ registered_capital: z.ZodString;
248
+ legal_representative: z.ZodString;
249
+ target_markets: z.ZodArray<z.ZodString>;
250
+ target_customer_industries: z.ZodArray<z.ZodString>;
251
+ target_customer_roles: z.ZodArray<z.ZodString>;
252
+ purchase_scenarios: z.ZodString;
253
+ differentiators: z.ZodArray<z.ZodString>;
254
+ competitors: z.ZodArray<z.ZodObject<{
255
+ name: z.ZodString;
256
+ official_url: z.ZodString;
257
+ }, z.core.$strict>>;
258
+ qualifications: z.ZodArray<z.ZodString>;
259
+ representative_cases: z.ZodArray<z.ZodString>;
260
+ acquisition_channels: z.ZodArray<z.ZodString>;
261
+ desired_domain: z.ZodString;
262
+ brand_tone: z.ZodString;
263
+ timezone: z.ZodString;
264
+ }, z.core.$strict>;
265
+ created_at: z.ZodString;
266
+ updated_at: z.ZodString;
267
+ status: z.ZodLiteral<"FAILED">;
268
+ last_error_code: z.ZodString;
269
+ last_error_message: z.ZodString;
270
+ started_at: z.ZodString;
271
+ completed_at: z.ZodString;
272
+ }, z.core.$strict>], "status">;
273
+ export declare const CRAWLER_INTERNAL_ERROR_CODES: readonly ["BAD_REQUEST", "NOT_FOUND", "PAYLOAD_TOO_LARGE", "INTERNAL_SERVER_ERROR", "UNAUTHORIZED", "FORBIDDEN", "INVALID_TASK_TYPE", "TASK_URL_REQUIRED", "INVALID_PLANNED_NUM", "URL_LIST_REQUIRED", "URL_LIST_LIMIT_EXCEEDED", "INVALID_URL_LIST", "INVALID_PAGINATION", "INVALID_TASK_CODE", "INVALID_HOME_URL", "TASK_CODE_HOME_URL_CONFLICT", "SITEMAP_TASK_NOT_FOUND", "SITEMAP_DISCOVERY_FAILED", "TASK_NOT_FOUND", "PROVIDER_CAPABILITY_LIMIT", "TASK_FAILED", "WEBSITE_UNREACHABLE"];
274
+ export declare const CrawlerInternalErrorCodeSchema: z.ZodEnum<{
275
+ TASK_FAILED: "TASK_FAILED";
276
+ PROVIDER_CAPABILITY_LIMIT: "PROVIDER_CAPABILITY_LIMIT";
277
+ SITEMAP_DISCOVERY_FAILED: "SITEMAP_DISCOVERY_FAILED";
278
+ BAD_REQUEST: "BAD_REQUEST";
279
+ NOT_FOUND: "NOT_FOUND";
280
+ PAYLOAD_TOO_LARGE: "PAYLOAD_TOO_LARGE";
281
+ INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
282
+ UNAUTHORIZED: "UNAUTHORIZED";
283
+ FORBIDDEN: "FORBIDDEN";
284
+ INVALID_TASK_TYPE: "INVALID_TASK_TYPE";
285
+ TASK_URL_REQUIRED: "TASK_URL_REQUIRED";
286
+ INVALID_PLANNED_NUM: "INVALID_PLANNED_NUM";
287
+ URL_LIST_REQUIRED: "URL_LIST_REQUIRED";
288
+ URL_LIST_LIMIT_EXCEEDED: "URL_LIST_LIMIT_EXCEEDED";
289
+ INVALID_URL_LIST: "INVALID_URL_LIST";
290
+ INVALID_PAGINATION: "INVALID_PAGINATION";
291
+ INVALID_TASK_CODE: "INVALID_TASK_CODE";
292
+ INVALID_HOME_URL: "INVALID_HOME_URL";
293
+ TASK_CODE_HOME_URL_CONFLICT: "TASK_CODE_HOME_URL_CONFLICT";
294
+ SITEMAP_TASK_NOT_FOUND: "SITEMAP_TASK_NOT_FOUND";
295
+ TASK_NOT_FOUND: "TASK_NOT_FOUND";
296
+ WEBSITE_UNREACHABLE: "WEBSITE_UNREACHABLE";
297
+ }>;
298
+ export declare const CrawlerInternalErrorSchema: z.ZodObject<{
299
+ error_code: z.ZodEnum<{
300
+ TASK_FAILED: "TASK_FAILED";
301
+ PROVIDER_CAPABILITY_LIMIT: "PROVIDER_CAPABILITY_LIMIT";
302
+ SITEMAP_DISCOVERY_FAILED: "SITEMAP_DISCOVERY_FAILED";
303
+ BAD_REQUEST: "BAD_REQUEST";
304
+ NOT_FOUND: "NOT_FOUND";
305
+ PAYLOAD_TOO_LARGE: "PAYLOAD_TOO_LARGE";
306
+ INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
307
+ UNAUTHORIZED: "UNAUTHORIZED";
308
+ FORBIDDEN: "FORBIDDEN";
309
+ INVALID_TASK_TYPE: "INVALID_TASK_TYPE";
310
+ TASK_URL_REQUIRED: "TASK_URL_REQUIRED";
311
+ INVALID_PLANNED_NUM: "INVALID_PLANNED_NUM";
312
+ URL_LIST_REQUIRED: "URL_LIST_REQUIRED";
313
+ URL_LIST_LIMIT_EXCEEDED: "URL_LIST_LIMIT_EXCEEDED";
314
+ INVALID_URL_LIST: "INVALID_URL_LIST";
315
+ INVALID_PAGINATION: "INVALID_PAGINATION";
316
+ INVALID_TASK_CODE: "INVALID_TASK_CODE";
317
+ INVALID_HOME_URL: "INVALID_HOME_URL";
318
+ TASK_CODE_HOME_URL_CONFLICT: "TASK_CODE_HOME_URL_CONFLICT";
319
+ SITEMAP_TASK_NOT_FOUND: "SITEMAP_TASK_NOT_FOUND";
320
+ TASK_NOT_FOUND: "TASK_NOT_FOUND";
321
+ WEBSITE_UNREACHABLE: "WEBSITE_UNREACHABLE";
322
+ }>;
323
+ error_message: z.ZodString;
324
+ failure_stage: z.ZodOptional<z.ZodEnum<{
325
+ URL_DISCOVERY: "URL_DISCOVERY";
326
+ PAGE_CRAWL: "PAGE_CRAWL";
327
+ TASK_SCHEDULING: "TASK_SCHEDULING";
328
+ RESULT_PERSISTENCE: "RESULT_PERSISTENCE";
329
+ }>>;
330
+ task_uuid: z.ZodOptional<z.ZodString>;
331
+ task_code: z.ZodOptional<z.ZodString>;
332
+ }, z.core.$strict>;
333
+ export type HomeUrlCrawlerTaskCreateRequest = z.infer<typeof HomeUrlCrawlerTaskCreateRequestSchema>;
334
+ export type UrlListCrawlerTaskCreateRequest = z.infer<typeof UrlListCrawlerTaskCreateRequestSchema>;
335
+ export type CrawlerTaskCreateRequest = z.infer<typeof CrawlerTaskCreateRequestSchema>;
336
+ export type CrawlerTaskPagesQuery = z.infer<typeof CrawlerTaskPagesQuerySchema>;
337
+ export type SitemapTaskCreateRequest = z.infer<typeof SitemapTaskCreateRequestSchema>;
338
+ export type CrawlerTaskUuid = z.infer<typeof CrawlerTaskUuidSchema>;
339
+ export type CrawlerTaskCode = z.infer<typeof CrawlerTaskCodeSchema>;
340
+ export type CreateCrawlerTaskResponse = z.infer<typeof CrawlerTaskCreateResponseSchema>;
341
+ export type CrawlerTaskFailureStage = z.infer<typeof CrawlerTaskFailureStageSchema>;
342
+ export type CrawlerTaskStatusResponse = z.infer<typeof CrawlerTaskStatusResponseSchema>;
343
+ export type CrawlerTaskPage = z.infer<typeof CrawlerTaskPageSchema>;
344
+ export type CrawlerTaskPagesResponse = z.infer<typeof CrawlerTaskPagesResponseSchema>;
345
+ export type CreateSitemapTaskResponse = z.infer<typeof SitemapTaskCreateResponseSchema>;
346
+ export type SitemapTaskResponse = z.infer<typeof SitemapTaskResponseSchema>;
347
+ export type CompanyInfoTaskCreateRequest = z.infer<typeof CompanyInfoTaskCreateRequestSchema>;
348
+ export type CompanyInfo = z.infer<typeof CompanyInfoSchema>;
349
+ export type CompanyInfoTaskCreateResponse = z.infer<typeof CompanyInfoTaskCreateResponseSchema>;
350
+ export type CompanyInfoTaskResponse = z.infer<typeof CompanyInfoTaskResponseSchema>;
351
+ export type CrawlerInternalErrorCode = z.infer<typeof CrawlerInternalErrorCodeSchema>;
352
+ export type InternalErrorResponse = z.infer<typeof CrawlerInternalErrorSchema>;
@@ -1,6 +1,5 @@
1
1
  import { z } from "zod";
2
2
  export declare const CUSTOM_DOMAIN_STATUSES: readonly ["pending_dns", "active"];
3
- export declare const CUSTOM_DOMAIN_ENTITLEMENT_REQUIRED_ERROR_CODE: "CUSTOM_DOMAIN_ENTITLEMENT_REQUIRED";
4
3
  export declare const CustomDomainStatusSchema: z.ZodEnum<{
5
4
  pending_dns: "pending_dns";
6
5
  active: "active";
@@ -149,7 +148,6 @@ export declare const ListSiteDomainsDataSchema: z.ZodObject<{
149
148
  export type ListSiteDomainsData = z.infer<typeof ListSiteDomainsDataSchema>;
150
149
  export declare const BindSiteDomainRequestSchema: z.ZodObject<{
151
150
  hostname: z.ZodString;
152
- isPrimary: z.ZodOptional<z.ZodBoolean>;
153
151
  }, z.core.$strict>;
154
152
  export type BindSiteDomainRequest = z.infer<typeof BindSiteDomainRequestSchema>;
155
153
  export declare const BindSiteDomainDataSchema: z.ZodObject<{
@@ -187,6 +185,42 @@ export declare const BindSiteDomainDataSchema: z.ZodObject<{
187
185
  }, z.core.$strict>;
188
186
  }, z.core.$strict>;
189
187
  export type BindSiteDomainData = z.infer<typeof BindSiteDomainDataSchema>;
188
+ export declare const ActivatePrimarySiteDomainDataSchema: z.ZodObject<{
189
+ domain: z.ZodObject<{
190
+ id: z.ZodString;
191
+ domainId: z.ZodOptional<z.ZodString>;
192
+ hostname: z.ZodString;
193
+ displayHostname: z.ZodString;
194
+ asciiHostname: z.ZodString;
195
+ status: z.ZodEnum<{
196
+ pending_dns: "pending_dns";
197
+ active: "active";
198
+ }>;
199
+ isPrimary: z.ZodBoolean;
200
+ deletable: z.ZodBoolean;
201
+ dnsRecords: z.ZodArray<z.ZodObject<{
202
+ id: z.ZodString;
203
+ type: z.ZodString;
204
+ name: z.ZodString;
205
+ value: z.ZodString;
206
+ purpose: z.ZodEnum<{
207
+ unknown: "unknown";
208
+ ownershipVerification: "ownershipVerification";
209
+ certificateValidation: "certificateValidation";
210
+ traffic: "traffic";
211
+ }>;
212
+ required: z.ZodBoolean;
213
+ status: z.ZodOptional<z.ZodEnum<{
214
+ pending: "pending";
215
+ matched: "matched";
216
+ }>>;
217
+ }, z.core.$strict>>;
218
+ createdAt: z.ZodNullable<z.ZodString>;
219
+ checkedAt: z.ZodNullable<z.ZodString>;
220
+ }, z.core.$strict>;
221
+ primaryActivated: z.ZodBoolean;
222
+ }, z.core.$strict>;
223
+ export type ActivatePrimarySiteDomainData = z.infer<typeof ActivatePrimarySiteDomainDataSchema>;
190
224
  export declare const VerifySiteDomainDataSchema: z.ZodObject<{
191
225
  domain: z.ZodObject<{
192
226
  id: z.ZodString;
@@ -0,0 +1,196 @@
1
+ import { z } from "zod";
2
+ /** The structured facts collected by the no-website Launcher step. */
3
+ export declare const CustomerMaterialsDraftSchema: z.ZodObject<{
4
+ company_name: z.ZodString;
5
+ brand_name: z.ZodString;
6
+ primary_products: z.ZodString;
7
+ industry: z.ZodString;
8
+ applications: z.ZodString;
9
+ business_summary: z.ZodString;
10
+ registered_capital: z.ZodDefault<z.ZodString>;
11
+ legal_representative: z.ZodDefault<z.ZodString>;
12
+ target_markets: z.ZodArray<z.ZodString>;
13
+ customer_industries: z.ZodString;
14
+ customer_roles: z.ZodString;
15
+ buying_scenarios: z.ZodString;
16
+ differentiators: z.ZodString;
17
+ competitors: z.ZodString;
18
+ trust_proof: z.ZodString;
19
+ customer_cases: z.ZodString;
20
+ channels: z.ZodArray<z.ZodString>;
21
+ expected_domain: z.ZodString;
22
+ brand_tone: z.ZodString;
23
+ contact_name: z.ZodString;
24
+ contact_info: z.ZodString;
25
+ timezone: z.ZodString;
26
+ launch_timing: z.ZodString;
27
+ input_source_ids: z.ZodArray<z.ZodUUID>;
28
+ }, z.core.$strict>;
29
+ export type CustomerMaterialsDraft = z.infer<typeof CustomerMaterialsDraftSchema>;
30
+ export declare const CustomerMaterialsStatusSchema: z.ZodEnum<{
31
+ draft: "draft";
32
+ submitted: "submitted";
33
+ }>;
34
+ export type CustomerMaterialsStatus = z.infer<typeof CustomerMaterialsStatusSchema>;
35
+ export declare const CustomerMaterialsRecordSchema: z.ZodObject<{
36
+ company_name: z.ZodString;
37
+ brand_name: z.ZodString;
38
+ primary_products: z.ZodString;
39
+ industry: z.ZodString;
40
+ applications: z.ZodString;
41
+ business_summary: z.ZodString;
42
+ registered_capital: z.ZodDefault<z.ZodString>;
43
+ legal_representative: z.ZodDefault<z.ZodString>;
44
+ target_markets: z.ZodArray<z.ZodString>;
45
+ customer_industries: z.ZodString;
46
+ customer_roles: z.ZodString;
47
+ buying_scenarios: z.ZodString;
48
+ differentiators: z.ZodString;
49
+ competitors: z.ZodString;
50
+ trust_proof: z.ZodString;
51
+ customer_cases: z.ZodString;
52
+ channels: z.ZodArray<z.ZodString>;
53
+ expected_domain: z.ZodString;
54
+ brand_tone: z.ZodString;
55
+ contact_name: z.ZodString;
56
+ contact_info: z.ZodString;
57
+ timezone: z.ZodString;
58
+ launch_timing: z.ZodString;
59
+ input_source_ids: z.ZodArray<z.ZodUUID>;
60
+ id: z.ZodUUID;
61
+ tenant_id: z.ZodString;
62
+ site_id: z.ZodUUID;
63
+ workflow_id: z.ZodUUID;
64
+ status: z.ZodEnum<{
65
+ draft: "draft";
66
+ submitted: "submitted";
67
+ }>;
68
+ submitted_at: z.ZodNullable<z.ZodString>;
69
+ created_at: z.ZodString;
70
+ updated_at: z.ZodString;
71
+ }, z.core.$strict>;
72
+ export type CustomerMaterialsRecord = z.infer<typeof CustomerMaterialsRecordSchema>;
73
+ export declare const CustomerMaterialsResponseSchema: z.ZodObject<{
74
+ code: z.ZodNumber;
75
+ data: z.ZodObject<{
76
+ company_name: z.ZodString;
77
+ brand_name: z.ZodString;
78
+ primary_products: z.ZodString;
79
+ industry: z.ZodString;
80
+ applications: z.ZodString;
81
+ business_summary: z.ZodString;
82
+ registered_capital: z.ZodDefault<z.ZodString>;
83
+ legal_representative: z.ZodDefault<z.ZodString>;
84
+ target_markets: z.ZodArray<z.ZodString>;
85
+ customer_industries: z.ZodString;
86
+ customer_roles: z.ZodString;
87
+ buying_scenarios: z.ZodString;
88
+ differentiators: z.ZodString;
89
+ competitors: z.ZodString;
90
+ trust_proof: z.ZodString;
91
+ customer_cases: z.ZodString;
92
+ channels: z.ZodArray<z.ZodString>;
93
+ expected_domain: z.ZodString;
94
+ brand_tone: z.ZodString;
95
+ contact_name: z.ZodString;
96
+ contact_info: z.ZodString;
97
+ timezone: z.ZodString;
98
+ launch_timing: z.ZodString;
99
+ input_source_ids: z.ZodArray<z.ZodUUID>;
100
+ id: z.ZodUUID;
101
+ tenant_id: z.ZodString;
102
+ site_id: z.ZodUUID;
103
+ workflow_id: z.ZodUUID;
104
+ status: z.ZodEnum<{
105
+ draft: "draft";
106
+ submitted: "submitted";
107
+ }>;
108
+ submitted_at: z.ZodNullable<z.ZodString>;
109
+ created_at: z.ZodString;
110
+ updated_at: z.ZodString;
111
+ }, z.core.$strict>;
112
+ message: z.ZodString;
113
+ }, z.core.$strip>;
114
+ export type CustomerMaterialsResponse = z.infer<typeof CustomerMaterialsResponseSchema>;
115
+ export declare const CustomerMaterialsDraftResponseSchema: z.ZodObject<{
116
+ code: z.ZodNumber;
117
+ data: z.ZodObject<{
118
+ company_name: z.ZodString;
119
+ brand_name: z.ZodString;
120
+ primary_products: z.ZodString;
121
+ industry: z.ZodString;
122
+ applications: z.ZodString;
123
+ business_summary: z.ZodString;
124
+ registered_capital: z.ZodDefault<z.ZodString>;
125
+ legal_representative: z.ZodDefault<z.ZodString>;
126
+ target_markets: z.ZodArray<z.ZodString>;
127
+ customer_industries: z.ZodString;
128
+ customer_roles: z.ZodString;
129
+ buying_scenarios: z.ZodString;
130
+ differentiators: z.ZodString;
131
+ competitors: z.ZodString;
132
+ trust_proof: z.ZodString;
133
+ customer_cases: z.ZodString;
134
+ channels: z.ZodArray<z.ZodString>;
135
+ expected_domain: z.ZodString;
136
+ brand_tone: z.ZodString;
137
+ contact_name: z.ZodString;
138
+ contact_info: z.ZodString;
139
+ timezone: z.ZodString;
140
+ launch_timing: z.ZodString;
141
+ input_source_ids: z.ZodArray<z.ZodUUID>;
142
+ id: z.ZodUUID;
143
+ tenant_id: z.ZodString;
144
+ site_id: z.ZodUUID;
145
+ workflow_id: z.ZodUUID;
146
+ status: z.ZodEnum<{
147
+ draft: "draft";
148
+ submitted: "submitted";
149
+ }>;
150
+ submitted_at: z.ZodNullable<z.ZodString>;
151
+ created_at: z.ZodString;
152
+ updated_at: z.ZodString;
153
+ }, z.core.$strict>;
154
+ message: z.ZodString;
155
+ }, z.core.$strip>;
156
+ export declare const CustomerMaterialsNullableResponseSchema: z.ZodObject<{
157
+ code: z.ZodNumber;
158
+ data: z.ZodNullable<z.ZodObject<{
159
+ company_name: z.ZodString;
160
+ brand_name: z.ZodString;
161
+ primary_products: z.ZodString;
162
+ industry: z.ZodString;
163
+ applications: z.ZodString;
164
+ business_summary: z.ZodString;
165
+ registered_capital: z.ZodDefault<z.ZodString>;
166
+ legal_representative: z.ZodDefault<z.ZodString>;
167
+ target_markets: z.ZodArray<z.ZodString>;
168
+ customer_industries: z.ZodString;
169
+ customer_roles: z.ZodString;
170
+ buying_scenarios: z.ZodString;
171
+ differentiators: z.ZodString;
172
+ competitors: z.ZodString;
173
+ trust_proof: z.ZodString;
174
+ customer_cases: z.ZodString;
175
+ channels: z.ZodArray<z.ZodString>;
176
+ expected_domain: z.ZodString;
177
+ brand_tone: z.ZodString;
178
+ contact_name: z.ZodString;
179
+ contact_info: z.ZodString;
180
+ timezone: z.ZodString;
181
+ launch_timing: z.ZodString;
182
+ input_source_ids: z.ZodArray<z.ZodUUID>;
183
+ id: z.ZodUUID;
184
+ tenant_id: z.ZodString;
185
+ site_id: z.ZodUUID;
186
+ workflow_id: z.ZodUUID;
187
+ status: z.ZodEnum<{
188
+ draft: "draft";
189
+ submitted: "submitted";
190
+ }>;
191
+ submitted_at: z.ZodNullable<z.ZodString>;
192
+ created_at: z.ZodString;
193
+ updated_at: z.ZodString;
194
+ }, z.core.$strict>>;
195
+ message: z.ZodString;
196
+ }, z.core.$strip>;
@@ -0,0 +1,51 @@
1
+ import { z } from "zod";
2
+ export declare const DEPLOYMENT_PROGRESS_STEP_CODES: readonly ["deployment_queued", "prepare_source", "build_artifact", "publish_site", "site_released", "cleanup_release"];
3
+ export declare const DeploymentProgressStepCodeSchema: z.ZodEnum<{
4
+ deployment_queued: "deployment_queued";
5
+ prepare_source: "prepare_source";
6
+ build_artifact: "build_artifact";
7
+ publish_site: "publish_site";
8
+ site_released: "site_released";
9
+ cleanup_release: "cleanup_release";
10
+ }>;
11
+ export type DeploymentProgressStepCode = z.infer<typeof DeploymentProgressStepCodeSchema>;
12
+ export declare const DeploymentProgressStepStatusSchema: z.ZodEnum<{
13
+ failed: "failed";
14
+ succeeded: "succeeded";
15
+ running: "running";
16
+ }>;
17
+ export type DeploymentProgressStepStatus = z.infer<typeof DeploymentProgressStepStatusSchema>;
18
+ export declare const DeploymentProgressStepSchema: z.ZodObject<{
19
+ code: z.ZodEnum<{
20
+ deployment_queued: "deployment_queued";
21
+ prepare_source: "prepare_source";
22
+ build_artifact: "build_artifact";
23
+ publish_site: "publish_site";
24
+ site_released: "site_released";
25
+ cleanup_release: "cleanup_release";
26
+ }>;
27
+ status: z.ZodEnum<{
28
+ failed: "failed";
29
+ succeeded: "succeeded";
30
+ running: "running";
31
+ }>;
32
+ message: z.ZodString;
33
+ }, z.core.$strict>;
34
+ export type DeploymentProgressStep = z.infer<typeof DeploymentProgressStepSchema>;
35
+ export declare const DeploymentProgressStepsSchema: z.ZodArray<z.ZodObject<{
36
+ code: z.ZodEnum<{
37
+ deployment_queued: "deployment_queued";
38
+ prepare_source: "prepare_source";
39
+ build_artifact: "build_artifact";
40
+ publish_site: "publish_site";
41
+ site_released: "site_released";
42
+ cleanup_release: "cleanup_release";
43
+ }>;
44
+ status: z.ZodEnum<{
45
+ failed: "failed";
46
+ succeeded: "succeeded";
47
+ running: "running";
48
+ }>;
49
+ message: z.ZodString;
50
+ }, z.core.$strict>>;
51
+ export type DeploymentProgressSteps = z.infer<typeof DeploymentProgressStepsSchema>;