@vcp-dev/contracts 0.6.11 → 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.
- package/README.md +5 -4
- package/dist/business-facts.d.ts +23 -0
- package/dist/cms-page-directory.d.ts +40 -4
- package/dist/colorway-distinctness.js +1 -1
- package/dist/connect-dynamic-collection.d.ts +6 -6
- package/dist/connect-form.d.ts +6 -6
- package/dist/conversion-hints.d.ts +37 -0
- package/dist/crawler-task-service.d.ts +244 -2
- package/dist/custom-domain.d.ts +119 -239
- package/dist/customer-materials.d.ts +5 -5
- package/dist/deployment-lifecycle.d.ts +45 -0
- package/dist/design-tokens.d.ts +1 -0
- package/dist/design-tokens.js +1 -1
- package/dist/e2b-preview-proxy.d.ts +5 -0
- package/dist/external-site-edit.d.ts +9 -0
- package/dist/firecrawl-internal.d.ts +19 -0
- package/dist/font-catalog.d.ts +5 -2
- package/dist/form-design.d.ts +54 -12
- package/dist/google-search-console.d.ts +1 -0
- package/dist/index.d.ts +3095 -818
- package/dist/index.js +1 -1
- package/dist/industry-classification.d.ts +43 -0
- package/dist/input-context-bundle.d.ts +10 -0
- package/dist/internal-entity-id.d.ts +1 -0
- package/dist/knowledge-category.d.ts +20 -0
- package/dist/knowledge-source-readiness.d.ts +94 -0
- package/dist/launcher-prompt-templates.d.ts +117 -14
- package/dist/migration-products.d.ts +45 -0
- package/dist/page-slug.d.ts +2 -0
- package/dist/page-template.d.ts +95 -0
- package/dist/site-build.d.ts +563 -0
- package/dist/site-design-presets.d.ts +20 -0
- package/dist/site-edit-capability.d.ts +13 -1
- package/dist/site-edit-class-name-source.d.ts +40 -8
- package/dist/site-edit-command-result.d.ts +15 -4
- package/dist/site-edit-composition.d.ts +13 -0
- package/dist/site-edit-event.d.ts +68 -14
- package/dist/site-edit-history-status.d.ts +193 -0
- package/dist/site-edit-operation.d.ts +152 -51
- package/dist/site-edit-page-composition.d.ts +101 -22
- package/dist/site-edit-patch-plan.d.ts +49 -3
- package/dist/site-edit-render-document.d.ts +54 -8
- package/dist/site-edit-session.d.ts +5 -2
- package/dist/site-edit-source.d.ts +60 -11
- package/dist/site-edit-version.d.ts +1 -1
- package/dist/site-extra-requirement.d.ts +31 -0
- package/dist/site-locale.d.ts +20 -0
- package/dist/site-localization-fields.d.ts +196 -0
- package/dist/site-localization-scope.d.ts +95 -0
- package/dist/site-preview.d.ts +15 -0
- package/dist/site-publish-domain.d.ts +680 -0
- package/dist/site-publish-workflow.d.ts +612 -0
- package/dist/site-workflow-completions.d.ts +163 -0
- package/dist/site-workflow.d.ts +231 -211
- package/dist/sitemap-navigation.d.ts +4 -1
- package/dist/step2-page-selection.d.ts +88 -0
- package/dist/step2-site-initialization.d.ts +321 -30
- package/dist/step3-digital-employee-analysis.d.ts +177 -211
- package/dist/step4-diagnosis.d.ts +72 -4
- package/dist/step5-strategy.d.ts +5549 -170
- package/dist/step6-design.d.ts +778 -464
- package/dist/subsite-localization-input.d.ts +121 -0
- package/dist/subsite-mount-path.d.ts +23 -0
- package/dist/subsite-visible-text-export.d.ts +22 -0
- package/dist/template-upgrade-observability.d.ts +2 -2
- package/dist/theme-presets.d.ts +56 -1
- package/dist/workspace-design-apply.d.ts +5 -0
- package/dist/workspace-resource-operation.d.ts +58 -24
- package/package.json +1 -1
- package/dist/publish-quality.d.ts +0 -92
|
@@ -0,0 +1,680 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
/** The user-facing domain check action. Cloud phases remain API-internal. */
|
|
3
|
+
export declare const CheckSitePublishDomainRequestSchema: z.ZodObject<{
|
|
4
|
+
hostname: z.ZodString;
|
|
5
|
+
expected_revision: z.ZodNumber;
|
|
6
|
+
}, z.core.$strict>;
|
|
7
|
+
export type CheckSitePublishDomainRequest = z.infer<typeof CheckSitePublishDomainRequestSchema>;
|
|
8
|
+
export declare const CheckSitePublishDomainDataSchema: z.ZodObject<{
|
|
9
|
+
workflow: z.ZodObject<{
|
|
10
|
+
id: z.ZodUUID;
|
|
11
|
+
tenant_id: z.ZodString;
|
|
12
|
+
site_id: z.ZodUUID;
|
|
13
|
+
status: z.ZodEnum<{
|
|
14
|
+
active: "active";
|
|
15
|
+
completed: "completed";
|
|
16
|
+
canceled: "canceled";
|
|
17
|
+
}>;
|
|
18
|
+
current_step: z.ZodEnum<{
|
|
19
|
+
domain: "domain";
|
|
20
|
+
quality: "quality";
|
|
21
|
+
gsc: "gsc";
|
|
22
|
+
publish: "publish";
|
|
23
|
+
}>;
|
|
24
|
+
sensitive_word_task_id: z.ZodNumber;
|
|
25
|
+
sensitive_word_task_status: z.ZodEnum<{
|
|
26
|
+
failed: "failed";
|
|
27
|
+
succeeded: "succeeded";
|
|
28
|
+
pending: "pending";
|
|
29
|
+
running: "running";
|
|
30
|
+
}>;
|
|
31
|
+
quality_task_code: z.ZodString;
|
|
32
|
+
quality_task_status: z.ZodEnum<{
|
|
33
|
+
failed: "failed";
|
|
34
|
+
succeeded: "succeeded";
|
|
35
|
+
pending: "pending";
|
|
36
|
+
running: "running";
|
|
37
|
+
}>;
|
|
38
|
+
task_id: z.ZodNullable<z.ZodString>;
|
|
39
|
+
task_status: z.ZodEnum<{
|
|
40
|
+
failed: "failed";
|
|
41
|
+
succeeded: "succeeded";
|
|
42
|
+
pending: "pending";
|
|
43
|
+
running: "running";
|
|
44
|
+
}>;
|
|
45
|
+
publish_deployment_id: z.ZodNullable<z.ZodUUID>;
|
|
46
|
+
domain_hostname: z.ZodNullable<z.ZodString>;
|
|
47
|
+
domain_operation_type: z.ZodNullable<z.ZodEnum<{
|
|
48
|
+
prepare_configuration: "prepare_configuration";
|
|
49
|
+
apply_configuration: "apply_configuration";
|
|
50
|
+
verify_dns: "verify_dns";
|
|
51
|
+
}>>;
|
|
52
|
+
domain_operation_payload: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
53
|
+
domain_preparation_operation_id: z.ZodNullable<z.ZodString>;
|
|
54
|
+
domain_operation_id: z.ZodNullable<z.ZodString>;
|
|
55
|
+
revision: z.ZodNumber;
|
|
56
|
+
created_at: z.ZodString;
|
|
57
|
+
updated_at: z.ZodString;
|
|
58
|
+
completed_at: z.ZodNullable<z.ZodString>;
|
|
59
|
+
canceled_at: z.ZodNullable<z.ZodString>;
|
|
60
|
+
}, z.core.$strict>;
|
|
61
|
+
operation: z.ZodObject<{
|
|
62
|
+
id: z.ZodString;
|
|
63
|
+
type: z.ZodEnum<{
|
|
64
|
+
prepare_configuration: "prepare_configuration";
|
|
65
|
+
apply_configuration: "apply_configuration";
|
|
66
|
+
verify_dns: "verify_dns";
|
|
67
|
+
}>;
|
|
68
|
+
status: z.ZodEnum<{
|
|
69
|
+
failed: "failed";
|
|
70
|
+
succeeded: "succeeded";
|
|
71
|
+
accepted: "accepted";
|
|
72
|
+
running: "running";
|
|
73
|
+
}>;
|
|
74
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
75
|
+
code: z.ZodString;
|
|
76
|
+
message: z.ZodString;
|
|
77
|
+
}, z.core.$strict>>;
|
|
78
|
+
}, z.core.$strict>;
|
|
79
|
+
}, z.core.$strict>;
|
|
80
|
+
export type CheckSitePublishDomainData = z.infer<typeof CheckSitePublishDomainDataSchema>;
|
|
81
|
+
export declare const CheckSitePublishDomainResponseSchema: z.ZodObject<{
|
|
82
|
+
code: z.ZodNumber;
|
|
83
|
+
data: z.ZodObject<{
|
|
84
|
+
workflow: z.ZodObject<{
|
|
85
|
+
id: z.ZodUUID;
|
|
86
|
+
tenant_id: z.ZodString;
|
|
87
|
+
site_id: z.ZodUUID;
|
|
88
|
+
status: z.ZodEnum<{
|
|
89
|
+
active: "active";
|
|
90
|
+
completed: "completed";
|
|
91
|
+
canceled: "canceled";
|
|
92
|
+
}>;
|
|
93
|
+
current_step: z.ZodEnum<{
|
|
94
|
+
domain: "domain";
|
|
95
|
+
quality: "quality";
|
|
96
|
+
gsc: "gsc";
|
|
97
|
+
publish: "publish";
|
|
98
|
+
}>;
|
|
99
|
+
sensitive_word_task_id: z.ZodNumber;
|
|
100
|
+
sensitive_word_task_status: z.ZodEnum<{
|
|
101
|
+
failed: "failed";
|
|
102
|
+
succeeded: "succeeded";
|
|
103
|
+
pending: "pending";
|
|
104
|
+
running: "running";
|
|
105
|
+
}>;
|
|
106
|
+
quality_task_code: z.ZodString;
|
|
107
|
+
quality_task_status: z.ZodEnum<{
|
|
108
|
+
failed: "failed";
|
|
109
|
+
succeeded: "succeeded";
|
|
110
|
+
pending: "pending";
|
|
111
|
+
running: "running";
|
|
112
|
+
}>;
|
|
113
|
+
task_id: z.ZodNullable<z.ZodString>;
|
|
114
|
+
task_status: z.ZodEnum<{
|
|
115
|
+
failed: "failed";
|
|
116
|
+
succeeded: "succeeded";
|
|
117
|
+
pending: "pending";
|
|
118
|
+
running: "running";
|
|
119
|
+
}>;
|
|
120
|
+
publish_deployment_id: z.ZodNullable<z.ZodUUID>;
|
|
121
|
+
domain_hostname: z.ZodNullable<z.ZodString>;
|
|
122
|
+
domain_operation_type: z.ZodNullable<z.ZodEnum<{
|
|
123
|
+
prepare_configuration: "prepare_configuration";
|
|
124
|
+
apply_configuration: "apply_configuration";
|
|
125
|
+
verify_dns: "verify_dns";
|
|
126
|
+
}>>;
|
|
127
|
+
domain_operation_payload: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
128
|
+
domain_preparation_operation_id: z.ZodNullable<z.ZodString>;
|
|
129
|
+
domain_operation_id: z.ZodNullable<z.ZodString>;
|
|
130
|
+
revision: z.ZodNumber;
|
|
131
|
+
created_at: z.ZodString;
|
|
132
|
+
updated_at: z.ZodString;
|
|
133
|
+
completed_at: z.ZodNullable<z.ZodString>;
|
|
134
|
+
canceled_at: z.ZodNullable<z.ZodString>;
|
|
135
|
+
}, z.core.$strict>;
|
|
136
|
+
operation: z.ZodObject<{
|
|
137
|
+
id: z.ZodString;
|
|
138
|
+
type: z.ZodEnum<{
|
|
139
|
+
prepare_configuration: "prepare_configuration";
|
|
140
|
+
apply_configuration: "apply_configuration";
|
|
141
|
+
verify_dns: "verify_dns";
|
|
142
|
+
}>;
|
|
143
|
+
status: z.ZodEnum<{
|
|
144
|
+
failed: "failed";
|
|
145
|
+
succeeded: "succeeded";
|
|
146
|
+
accepted: "accepted";
|
|
147
|
+
running: "running";
|
|
148
|
+
}>;
|
|
149
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
150
|
+
code: z.ZodString;
|
|
151
|
+
message: z.ZodString;
|
|
152
|
+
}, z.core.$strict>>;
|
|
153
|
+
}, z.core.$strict>;
|
|
154
|
+
}, z.core.$strict>;
|
|
155
|
+
message: z.ZodString;
|
|
156
|
+
}, z.core.$strict>;
|
|
157
|
+
export type CheckSitePublishDomainResponse = z.infer<typeof CheckSitePublishDomainResponseSchema>;
|
|
158
|
+
export declare const GetSitePublishDomainOperationDataSchema: z.ZodObject<{
|
|
159
|
+
workflow: z.ZodObject<{
|
|
160
|
+
id: z.ZodUUID;
|
|
161
|
+
tenant_id: z.ZodString;
|
|
162
|
+
site_id: z.ZodUUID;
|
|
163
|
+
status: z.ZodEnum<{
|
|
164
|
+
active: "active";
|
|
165
|
+
completed: "completed";
|
|
166
|
+
canceled: "canceled";
|
|
167
|
+
}>;
|
|
168
|
+
current_step: z.ZodEnum<{
|
|
169
|
+
domain: "domain";
|
|
170
|
+
quality: "quality";
|
|
171
|
+
gsc: "gsc";
|
|
172
|
+
publish: "publish";
|
|
173
|
+
}>;
|
|
174
|
+
sensitive_word_task_id: z.ZodNumber;
|
|
175
|
+
sensitive_word_task_status: z.ZodEnum<{
|
|
176
|
+
failed: "failed";
|
|
177
|
+
succeeded: "succeeded";
|
|
178
|
+
pending: "pending";
|
|
179
|
+
running: "running";
|
|
180
|
+
}>;
|
|
181
|
+
quality_task_code: z.ZodString;
|
|
182
|
+
quality_task_status: z.ZodEnum<{
|
|
183
|
+
failed: "failed";
|
|
184
|
+
succeeded: "succeeded";
|
|
185
|
+
pending: "pending";
|
|
186
|
+
running: "running";
|
|
187
|
+
}>;
|
|
188
|
+
task_id: z.ZodNullable<z.ZodString>;
|
|
189
|
+
task_status: z.ZodEnum<{
|
|
190
|
+
failed: "failed";
|
|
191
|
+
succeeded: "succeeded";
|
|
192
|
+
pending: "pending";
|
|
193
|
+
running: "running";
|
|
194
|
+
}>;
|
|
195
|
+
publish_deployment_id: z.ZodNullable<z.ZodUUID>;
|
|
196
|
+
domain_hostname: z.ZodNullable<z.ZodString>;
|
|
197
|
+
domain_operation_type: z.ZodNullable<z.ZodEnum<{
|
|
198
|
+
prepare_configuration: "prepare_configuration";
|
|
199
|
+
apply_configuration: "apply_configuration";
|
|
200
|
+
verify_dns: "verify_dns";
|
|
201
|
+
}>>;
|
|
202
|
+
domain_operation_payload: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
203
|
+
domain_preparation_operation_id: z.ZodNullable<z.ZodString>;
|
|
204
|
+
domain_operation_id: z.ZodNullable<z.ZodString>;
|
|
205
|
+
revision: z.ZodNumber;
|
|
206
|
+
created_at: z.ZodString;
|
|
207
|
+
updated_at: z.ZodString;
|
|
208
|
+
completed_at: z.ZodNullable<z.ZodString>;
|
|
209
|
+
canceled_at: z.ZodNullable<z.ZodString>;
|
|
210
|
+
}, z.core.$strict>;
|
|
211
|
+
operation: z.ZodNullable<z.ZodObject<{
|
|
212
|
+
id: z.ZodString;
|
|
213
|
+
type: z.ZodEnum<{
|
|
214
|
+
prepare_configuration: "prepare_configuration";
|
|
215
|
+
apply_configuration: "apply_configuration";
|
|
216
|
+
verify_dns: "verify_dns";
|
|
217
|
+
}>;
|
|
218
|
+
status: z.ZodEnum<{
|
|
219
|
+
failed: "failed";
|
|
220
|
+
succeeded: "succeeded";
|
|
221
|
+
accepted: "accepted";
|
|
222
|
+
running: "running";
|
|
223
|
+
}>;
|
|
224
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
225
|
+
code: z.ZodString;
|
|
226
|
+
message: z.ZodString;
|
|
227
|
+
}, z.core.$strict>>;
|
|
228
|
+
}, z.core.$strict>>;
|
|
229
|
+
}, z.core.$strict>;
|
|
230
|
+
export type GetSitePublishDomainOperationData = z.infer<typeof GetSitePublishDomainOperationDataSchema>;
|
|
231
|
+
export declare const GetSitePublishDomainOperationResponseSchema: z.ZodObject<{
|
|
232
|
+
code: z.ZodNumber;
|
|
233
|
+
data: z.ZodObject<{
|
|
234
|
+
workflow: z.ZodObject<{
|
|
235
|
+
id: z.ZodUUID;
|
|
236
|
+
tenant_id: z.ZodString;
|
|
237
|
+
site_id: z.ZodUUID;
|
|
238
|
+
status: z.ZodEnum<{
|
|
239
|
+
active: "active";
|
|
240
|
+
completed: "completed";
|
|
241
|
+
canceled: "canceled";
|
|
242
|
+
}>;
|
|
243
|
+
current_step: z.ZodEnum<{
|
|
244
|
+
domain: "domain";
|
|
245
|
+
quality: "quality";
|
|
246
|
+
gsc: "gsc";
|
|
247
|
+
publish: "publish";
|
|
248
|
+
}>;
|
|
249
|
+
sensitive_word_task_id: z.ZodNumber;
|
|
250
|
+
sensitive_word_task_status: z.ZodEnum<{
|
|
251
|
+
failed: "failed";
|
|
252
|
+
succeeded: "succeeded";
|
|
253
|
+
pending: "pending";
|
|
254
|
+
running: "running";
|
|
255
|
+
}>;
|
|
256
|
+
quality_task_code: z.ZodString;
|
|
257
|
+
quality_task_status: z.ZodEnum<{
|
|
258
|
+
failed: "failed";
|
|
259
|
+
succeeded: "succeeded";
|
|
260
|
+
pending: "pending";
|
|
261
|
+
running: "running";
|
|
262
|
+
}>;
|
|
263
|
+
task_id: z.ZodNullable<z.ZodString>;
|
|
264
|
+
task_status: z.ZodEnum<{
|
|
265
|
+
failed: "failed";
|
|
266
|
+
succeeded: "succeeded";
|
|
267
|
+
pending: "pending";
|
|
268
|
+
running: "running";
|
|
269
|
+
}>;
|
|
270
|
+
publish_deployment_id: z.ZodNullable<z.ZodUUID>;
|
|
271
|
+
domain_hostname: z.ZodNullable<z.ZodString>;
|
|
272
|
+
domain_operation_type: z.ZodNullable<z.ZodEnum<{
|
|
273
|
+
prepare_configuration: "prepare_configuration";
|
|
274
|
+
apply_configuration: "apply_configuration";
|
|
275
|
+
verify_dns: "verify_dns";
|
|
276
|
+
}>>;
|
|
277
|
+
domain_operation_payload: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
278
|
+
domain_preparation_operation_id: z.ZodNullable<z.ZodString>;
|
|
279
|
+
domain_operation_id: z.ZodNullable<z.ZodString>;
|
|
280
|
+
revision: z.ZodNumber;
|
|
281
|
+
created_at: z.ZodString;
|
|
282
|
+
updated_at: z.ZodString;
|
|
283
|
+
completed_at: z.ZodNullable<z.ZodString>;
|
|
284
|
+
canceled_at: z.ZodNullable<z.ZodString>;
|
|
285
|
+
}, z.core.$strict>;
|
|
286
|
+
operation: z.ZodNullable<z.ZodObject<{
|
|
287
|
+
id: z.ZodString;
|
|
288
|
+
type: z.ZodEnum<{
|
|
289
|
+
prepare_configuration: "prepare_configuration";
|
|
290
|
+
apply_configuration: "apply_configuration";
|
|
291
|
+
verify_dns: "verify_dns";
|
|
292
|
+
}>;
|
|
293
|
+
status: z.ZodEnum<{
|
|
294
|
+
failed: "failed";
|
|
295
|
+
succeeded: "succeeded";
|
|
296
|
+
accepted: "accepted";
|
|
297
|
+
running: "running";
|
|
298
|
+
}>;
|
|
299
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
300
|
+
code: z.ZodString;
|
|
301
|
+
message: z.ZodString;
|
|
302
|
+
}, z.core.$strict>>;
|
|
303
|
+
}, z.core.$strict>>;
|
|
304
|
+
}, z.core.$strict>;
|
|
305
|
+
message: z.ZodString;
|
|
306
|
+
}, z.core.$strict>;
|
|
307
|
+
export type GetSitePublishDomainOperationResponse = z.infer<typeof GetSitePublishDomainOperationResponseSchema>;
|
|
308
|
+
/** Read-only Cloud-backed configuration exposed to Browser/Web. */
|
|
309
|
+
export declare const GetSiteDomainConfigurationResponseSchema: z.ZodObject<{
|
|
310
|
+
code: z.ZodNumber;
|
|
311
|
+
data: z.ZodObject<{
|
|
312
|
+
primaryDomain: z.ZodNullable<z.ZodObject<{
|
|
313
|
+
id: z.ZodString;
|
|
314
|
+
hostname: z.ZodString;
|
|
315
|
+
isPrimary: z.ZodBoolean;
|
|
316
|
+
routingMode: z.ZodEnum<{
|
|
317
|
+
serve_site: "serve_site";
|
|
318
|
+
redirect_301: "redirect_301";
|
|
319
|
+
}>;
|
|
320
|
+
observedStatus: z.ZodEnum<{
|
|
321
|
+
failed: "failed";
|
|
322
|
+
pending_dns: "pending_dns";
|
|
323
|
+
active: "active";
|
|
324
|
+
removing: "removing";
|
|
325
|
+
}>;
|
|
326
|
+
lastVerifiedAt: z.ZodNullable<z.ZodString>;
|
|
327
|
+
dnsRecords: z.ZodArray<z.ZodObject<{
|
|
328
|
+
purpose: z.ZodEnum<{
|
|
329
|
+
traffic: "traffic";
|
|
330
|
+
ownership: "ownership";
|
|
331
|
+
certificate_delegation: "certificate_delegation";
|
|
332
|
+
}>;
|
|
333
|
+
type: z.ZodString;
|
|
334
|
+
name: z.ZodString;
|
|
335
|
+
value: z.ZodString;
|
|
336
|
+
verificationStatus: z.ZodEnum<{
|
|
337
|
+
pending: "pending";
|
|
338
|
+
verified: "verified";
|
|
339
|
+
}>;
|
|
340
|
+
}, z.core.$strict>>;
|
|
341
|
+
}, z.core.$strict>>;
|
|
342
|
+
redirectDomains: z.ZodArray<z.ZodObject<{
|
|
343
|
+
id: z.ZodString;
|
|
344
|
+
hostname: z.ZodString;
|
|
345
|
+
isPrimary: z.ZodBoolean;
|
|
346
|
+
routingMode: z.ZodEnum<{
|
|
347
|
+
serve_site: "serve_site";
|
|
348
|
+
redirect_301: "redirect_301";
|
|
349
|
+
}>;
|
|
350
|
+
observedStatus: z.ZodEnum<{
|
|
351
|
+
failed: "failed";
|
|
352
|
+
pending_dns: "pending_dns";
|
|
353
|
+
active: "active";
|
|
354
|
+
removing: "removing";
|
|
355
|
+
}>;
|
|
356
|
+
lastVerifiedAt: z.ZodNullable<z.ZodString>;
|
|
357
|
+
dnsRecords: z.ZodArray<z.ZodObject<{
|
|
358
|
+
purpose: z.ZodEnum<{
|
|
359
|
+
traffic: "traffic";
|
|
360
|
+
ownership: "ownership";
|
|
361
|
+
certificate_delegation: "certificate_delegation";
|
|
362
|
+
}>;
|
|
363
|
+
type: z.ZodString;
|
|
364
|
+
name: z.ZodString;
|
|
365
|
+
value: z.ZodString;
|
|
366
|
+
verificationStatus: z.ZodEnum<{
|
|
367
|
+
pending: "pending";
|
|
368
|
+
verified: "verified";
|
|
369
|
+
}>;
|
|
370
|
+
}, z.core.$strict>>;
|
|
371
|
+
}, z.core.$strict>>;
|
|
372
|
+
}, z.core.$strict>;
|
|
373
|
+
message: z.ZodString;
|
|
374
|
+
}, z.core.$strict>;
|
|
375
|
+
export type GetSiteDomainConfigurationResponse = z.infer<typeof GetSiteDomainConfigurationResponseSchema>;
|
|
376
|
+
export declare const SitePublishDomainCheckRequestSchema: z.ZodObject<{
|
|
377
|
+
hostname: z.ZodString;
|
|
378
|
+
expected_revision: z.ZodNumber;
|
|
379
|
+
}, z.core.$strict>;
|
|
380
|
+
export type SitePublishDomainCheckRequest = CheckSitePublishDomainRequest;
|
|
381
|
+
export declare const SitePublishDomainCheckDataSchema: z.ZodObject<{
|
|
382
|
+
workflow: z.ZodObject<{
|
|
383
|
+
id: z.ZodUUID;
|
|
384
|
+
tenant_id: z.ZodString;
|
|
385
|
+
site_id: z.ZodUUID;
|
|
386
|
+
status: z.ZodEnum<{
|
|
387
|
+
active: "active";
|
|
388
|
+
completed: "completed";
|
|
389
|
+
canceled: "canceled";
|
|
390
|
+
}>;
|
|
391
|
+
current_step: z.ZodEnum<{
|
|
392
|
+
domain: "domain";
|
|
393
|
+
quality: "quality";
|
|
394
|
+
gsc: "gsc";
|
|
395
|
+
publish: "publish";
|
|
396
|
+
}>;
|
|
397
|
+
sensitive_word_task_id: z.ZodNumber;
|
|
398
|
+
sensitive_word_task_status: z.ZodEnum<{
|
|
399
|
+
failed: "failed";
|
|
400
|
+
succeeded: "succeeded";
|
|
401
|
+
pending: "pending";
|
|
402
|
+
running: "running";
|
|
403
|
+
}>;
|
|
404
|
+
quality_task_code: z.ZodString;
|
|
405
|
+
quality_task_status: z.ZodEnum<{
|
|
406
|
+
failed: "failed";
|
|
407
|
+
succeeded: "succeeded";
|
|
408
|
+
pending: "pending";
|
|
409
|
+
running: "running";
|
|
410
|
+
}>;
|
|
411
|
+
task_id: z.ZodNullable<z.ZodString>;
|
|
412
|
+
task_status: z.ZodEnum<{
|
|
413
|
+
failed: "failed";
|
|
414
|
+
succeeded: "succeeded";
|
|
415
|
+
pending: "pending";
|
|
416
|
+
running: "running";
|
|
417
|
+
}>;
|
|
418
|
+
publish_deployment_id: z.ZodNullable<z.ZodUUID>;
|
|
419
|
+
domain_hostname: z.ZodNullable<z.ZodString>;
|
|
420
|
+
domain_operation_type: z.ZodNullable<z.ZodEnum<{
|
|
421
|
+
prepare_configuration: "prepare_configuration";
|
|
422
|
+
apply_configuration: "apply_configuration";
|
|
423
|
+
verify_dns: "verify_dns";
|
|
424
|
+
}>>;
|
|
425
|
+
domain_operation_payload: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
426
|
+
domain_preparation_operation_id: z.ZodNullable<z.ZodString>;
|
|
427
|
+
domain_operation_id: z.ZodNullable<z.ZodString>;
|
|
428
|
+
revision: z.ZodNumber;
|
|
429
|
+
created_at: z.ZodString;
|
|
430
|
+
updated_at: z.ZodString;
|
|
431
|
+
completed_at: z.ZodNullable<z.ZodString>;
|
|
432
|
+
canceled_at: z.ZodNullable<z.ZodString>;
|
|
433
|
+
}, z.core.$strict>;
|
|
434
|
+
operation: z.ZodObject<{
|
|
435
|
+
id: z.ZodString;
|
|
436
|
+
type: z.ZodEnum<{
|
|
437
|
+
prepare_configuration: "prepare_configuration";
|
|
438
|
+
apply_configuration: "apply_configuration";
|
|
439
|
+
verify_dns: "verify_dns";
|
|
440
|
+
}>;
|
|
441
|
+
status: z.ZodEnum<{
|
|
442
|
+
failed: "failed";
|
|
443
|
+
succeeded: "succeeded";
|
|
444
|
+
accepted: "accepted";
|
|
445
|
+
running: "running";
|
|
446
|
+
}>;
|
|
447
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
448
|
+
code: z.ZodString;
|
|
449
|
+
message: z.ZodString;
|
|
450
|
+
}, z.core.$strict>>;
|
|
451
|
+
}, z.core.$strict>;
|
|
452
|
+
}, z.core.$strict>;
|
|
453
|
+
export type SitePublishDomainCheckData = CheckSitePublishDomainData;
|
|
454
|
+
export declare const SitePublishDomainCheckResponseSchema: z.ZodObject<{
|
|
455
|
+
code: z.ZodNumber;
|
|
456
|
+
data: z.ZodObject<{
|
|
457
|
+
workflow: z.ZodObject<{
|
|
458
|
+
id: z.ZodUUID;
|
|
459
|
+
tenant_id: z.ZodString;
|
|
460
|
+
site_id: z.ZodUUID;
|
|
461
|
+
status: z.ZodEnum<{
|
|
462
|
+
active: "active";
|
|
463
|
+
completed: "completed";
|
|
464
|
+
canceled: "canceled";
|
|
465
|
+
}>;
|
|
466
|
+
current_step: z.ZodEnum<{
|
|
467
|
+
domain: "domain";
|
|
468
|
+
quality: "quality";
|
|
469
|
+
gsc: "gsc";
|
|
470
|
+
publish: "publish";
|
|
471
|
+
}>;
|
|
472
|
+
sensitive_word_task_id: z.ZodNumber;
|
|
473
|
+
sensitive_word_task_status: z.ZodEnum<{
|
|
474
|
+
failed: "failed";
|
|
475
|
+
succeeded: "succeeded";
|
|
476
|
+
pending: "pending";
|
|
477
|
+
running: "running";
|
|
478
|
+
}>;
|
|
479
|
+
quality_task_code: z.ZodString;
|
|
480
|
+
quality_task_status: z.ZodEnum<{
|
|
481
|
+
failed: "failed";
|
|
482
|
+
succeeded: "succeeded";
|
|
483
|
+
pending: "pending";
|
|
484
|
+
running: "running";
|
|
485
|
+
}>;
|
|
486
|
+
task_id: z.ZodNullable<z.ZodString>;
|
|
487
|
+
task_status: z.ZodEnum<{
|
|
488
|
+
failed: "failed";
|
|
489
|
+
succeeded: "succeeded";
|
|
490
|
+
pending: "pending";
|
|
491
|
+
running: "running";
|
|
492
|
+
}>;
|
|
493
|
+
publish_deployment_id: z.ZodNullable<z.ZodUUID>;
|
|
494
|
+
domain_hostname: z.ZodNullable<z.ZodString>;
|
|
495
|
+
domain_operation_type: z.ZodNullable<z.ZodEnum<{
|
|
496
|
+
prepare_configuration: "prepare_configuration";
|
|
497
|
+
apply_configuration: "apply_configuration";
|
|
498
|
+
verify_dns: "verify_dns";
|
|
499
|
+
}>>;
|
|
500
|
+
domain_operation_payload: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
501
|
+
domain_preparation_operation_id: z.ZodNullable<z.ZodString>;
|
|
502
|
+
domain_operation_id: z.ZodNullable<z.ZodString>;
|
|
503
|
+
revision: z.ZodNumber;
|
|
504
|
+
created_at: z.ZodString;
|
|
505
|
+
updated_at: z.ZodString;
|
|
506
|
+
completed_at: z.ZodNullable<z.ZodString>;
|
|
507
|
+
canceled_at: z.ZodNullable<z.ZodString>;
|
|
508
|
+
}, z.core.$strict>;
|
|
509
|
+
operation: z.ZodObject<{
|
|
510
|
+
id: z.ZodString;
|
|
511
|
+
type: z.ZodEnum<{
|
|
512
|
+
prepare_configuration: "prepare_configuration";
|
|
513
|
+
apply_configuration: "apply_configuration";
|
|
514
|
+
verify_dns: "verify_dns";
|
|
515
|
+
}>;
|
|
516
|
+
status: z.ZodEnum<{
|
|
517
|
+
failed: "failed";
|
|
518
|
+
succeeded: "succeeded";
|
|
519
|
+
accepted: "accepted";
|
|
520
|
+
running: "running";
|
|
521
|
+
}>;
|
|
522
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
523
|
+
code: z.ZodString;
|
|
524
|
+
message: z.ZodString;
|
|
525
|
+
}, z.core.$strict>>;
|
|
526
|
+
}, z.core.$strict>;
|
|
527
|
+
}, z.core.$strict>;
|
|
528
|
+
message: z.ZodString;
|
|
529
|
+
}, z.core.$strict>;
|
|
530
|
+
export type SitePublishDomainCheckResponse = CheckSitePublishDomainResponse;
|
|
531
|
+
export declare const SitePublishDomainOperationDataSchema: z.ZodObject<{
|
|
532
|
+
workflow: z.ZodObject<{
|
|
533
|
+
id: z.ZodUUID;
|
|
534
|
+
tenant_id: z.ZodString;
|
|
535
|
+
site_id: z.ZodUUID;
|
|
536
|
+
status: z.ZodEnum<{
|
|
537
|
+
active: "active";
|
|
538
|
+
completed: "completed";
|
|
539
|
+
canceled: "canceled";
|
|
540
|
+
}>;
|
|
541
|
+
current_step: z.ZodEnum<{
|
|
542
|
+
domain: "domain";
|
|
543
|
+
quality: "quality";
|
|
544
|
+
gsc: "gsc";
|
|
545
|
+
publish: "publish";
|
|
546
|
+
}>;
|
|
547
|
+
sensitive_word_task_id: z.ZodNumber;
|
|
548
|
+
sensitive_word_task_status: z.ZodEnum<{
|
|
549
|
+
failed: "failed";
|
|
550
|
+
succeeded: "succeeded";
|
|
551
|
+
pending: "pending";
|
|
552
|
+
running: "running";
|
|
553
|
+
}>;
|
|
554
|
+
quality_task_code: z.ZodString;
|
|
555
|
+
quality_task_status: z.ZodEnum<{
|
|
556
|
+
failed: "failed";
|
|
557
|
+
succeeded: "succeeded";
|
|
558
|
+
pending: "pending";
|
|
559
|
+
running: "running";
|
|
560
|
+
}>;
|
|
561
|
+
task_id: z.ZodNullable<z.ZodString>;
|
|
562
|
+
task_status: z.ZodEnum<{
|
|
563
|
+
failed: "failed";
|
|
564
|
+
succeeded: "succeeded";
|
|
565
|
+
pending: "pending";
|
|
566
|
+
running: "running";
|
|
567
|
+
}>;
|
|
568
|
+
publish_deployment_id: z.ZodNullable<z.ZodUUID>;
|
|
569
|
+
domain_hostname: z.ZodNullable<z.ZodString>;
|
|
570
|
+
domain_operation_type: z.ZodNullable<z.ZodEnum<{
|
|
571
|
+
prepare_configuration: "prepare_configuration";
|
|
572
|
+
apply_configuration: "apply_configuration";
|
|
573
|
+
verify_dns: "verify_dns";
|
|
574
|
+
}>>;
|
|
575
|
+
domain_operation_payload: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
576
|
+
domain_preparation_operation_id: z.ZodNullable<z.ZodString>;
|
|
577
|
+
domain_operation_id: z.ZodNullable<z.ZodString>;
|
|
578
|
+
revision: z.ZodNumber;
|
|
579
|
+
created_at: z.ZodString;
|
|
580
|
+
updated_at: z.ZodString;
|
|
581
|
+
completed_at: z.ZodNullable<z.ZodString>;
|
|
582
|
+
canceled_at: z.ZodNullable<z.ZodString>;
|
|
583
|
+
}, z.core.$strict>;
|
|
584
|
+
operation: z.ZodNullable<z.ZodObject<{
|
|
585
|
+
id: z.ZodString;
|
|
586
|
+
type: z.ZodEnum<{
|
|
587
|
+
prepare_configuration: "prepare_configuration";
|
|
588
|
+
apply_configuration: "apply_configuration";
|
|
589
|
+
verify_dns: "verify_dns";
|
|
590
|
+
}>;
|
|
591
|
+
status: z.ZodEnum<{
|
|
592
|
+
failed: "failed";
|
|
593
|
+
succeeded: "succeeded";
|
|
594
|
+
accepted: "accepted";
|
|
595
|
+
running: "running";
|
|
596
|
+
}>;
|
|
597
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
598
|
+
code: z.ZodString;
|
|
599
|
+
message: z.ZodString;
|
|
600
|
+
}, z.core.$strict>>;
|
|
601
|
+
}, z.core.$strict>>;
|
|
602
|
+
}, z.core.$strict>;
|
|
603
|
+
export type SitePublishDomainOperationData = GetSitePublishDomainOperationData;
|
|
604
|
+
export declare const SitePublishDomainOperationResponseSchema: z.ZodObject<{
|
|
605
|
+
code: z.ZodNumber;
|
|
606
|
+
data: z.ZodObject<{
|
|
607
|
+
workflow: z.ZodObject<{
|
|
608
|
+
id: z.ZodUUID;
|
|
609
|
+
tenant_id: z.ZodString;
|
|
610
|
+
site_id: z.ZodUUID;
|
|
611
|
+
status: z.ZodEnum<{
|
|
612
|
+
active: "active";
|
|
613
|
+
completed: "completed";
|
|
614
|
+
canceled: "canceled";
|
|
615
|
+
}>;
|
|
616
|
+
current_step: z.ZodEnum<{
|
|
617
|
+
domain: "domain";
|
|
618
|
+
quality: "quality";
|
|
619
|
+
gsc: "gsc";
|
|
620
|
+
publish: "publish";
|
|
621
|
+
}>;
|
|
622
|
+
sensitive_word_task_id: z.ZodNumber;
|
|
623
|
+
sensitive_word_task_status: z.ZodEnum<{
|
|
624
|
+
failed: "failed";
|
|
625
|
+
succeeded: "succeeded";
|
|
626
|
+
pending: "pending";
|
|
627
|
+
running: "running";
|
|
628
|
+
}>;
|
|
629
|
+
quality_task_code: z.ZodString;
|
|
630
|
+
quality_task_status: z.ZodEnum<{
|
|
631
|
+
failed: "failed";
|
|
632
|
+
succeeded: "succeeded";
|
|
633
|
+
pending: "pending";
|
|
634
|
+
running: "running";
|
|
635
|
+
}>;
|
|
636
|
+
task_id: z.ZodNullable<z.ZodString>;
|
|
637
|
+
task_status: z.ZodEnum<{
|
|
638
|
+
failed: "failed";
|
|
639
|
+
succeeded: "succeeded";
|
|
640
|
+
pending: "pending";
|
|
641
|
+
running: "running";
|
|
642
|
+
}>;
|
|
643
|
+
publish_deployment_id: z.ZodNullable<z.ZodUUID>;
|
|
644
|
+
domain_hostname: z.ZodNullable<z.ZodString>;
|
|
645
|
+
domain_operation_type: z.ZodNullable<z.ZodEnum<{
|
|
646
|
+
prepare_configuration: "prepare_configuration";
|
|
647
|
+
apply_configuration: "apply_configuration";
|
|
648
|
+
verify_dns: "verify_dns";
|
|
649
|
+
}>>;
|
|
650
|
+
domain_operation_payload: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
651
|
+
domain_preparation_operation_id: z.ZodNullable<z.ZodString>;
|
|
652
|
+
domain_operation_id: z.ZodNullable<z.ZodString>;
|
|
653
|
+
revision: z.ZodNumber;
|
|
654
|
+
created_at: z.ZodString;
|
|
655
|
+
updated_at: z.ZodString;
|
|
656
|
+
completed_at: z.ZodNullable<z.ZodString>;
|
|
657
|
+
canceled_at: z.ZodNullable<z.ZodString>;
|
|
658
|
+
}, z.core.$strict>;
|
|
659
|
+
operation: z.ZodNullable<z.ZodObject<{
|
|
660
|
+
id: z.ZodString;
|
|
661
|
+
type: z.ZodEnum<{
|
|
662
|
+
prepare_configuration: "prepare_configuration";
|
|
663
|
+
apply_configuration: "apply_configuration";
|
|
664
|
+
verify_dns: "verify_dns";
|
|
665
|
+
}>;
|
|
666
|
+
status: z.ZodEnum<{
|
|
667
|
+
failed: "failed";
|
|
668
|
+
succeeded: "succeeded";
|
|
669
|
+
accepted: "accepted";
|
|
670
|
+
running: "running";
|
|
671
|
+
}>;
|
|
672
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
673
|
+
code: z.ZodString;
|
|
674
|
+
message: z.ZodString;
|
|
675
|
+
}, z.core.$strict>>;
|
|
676
|
+
}, z.core.$strict>>;
|
|
677
|
+
}, z.core.$strict>;
|
|
678
|
+
message: z.ZodString;
|
|
679
|
+
}, z.core.$strict>;
|
|
680
|
+
export type SitePublishDomainOperationResponse = GetSitePublishDomainOperationResponse;
|