@vcp-dev/contracts 0.6.10 → 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.
- package/dist/api-response.d.ts +11 -0
- package/dist/cms-page-directory.d.ts +245 -0
- package/dist/cms-site-id.d.ts +4 -0
- package/dist/connect-dynamic-collection.d.ts +13 -9
- package/dist/connect-form.d.ts +5 -3
- package/dist/crawler-task-service.d.ts +352 -0
- package/dist/custom-domain.d.ts +36 -2
- package/dist/customer-materials.d.ts +196 -0
- package/dist/deployment-progress.d.ts +51 -0
- package/dist/designer-component-library.d.ts +9 -7
- package/dist/designer-page-library.d.ts +36 -40
- package/dist/external-site-edit.d.ts +258 -0
- package/dist/firecrawl-internal.d.ts +103 -0
- package/dist/form-design.d.ts +79 -81
- package/dist/google-search-console.d.ts +316 -0
- package/dist/index.d.ts +4004 -1136
- package/dist/index.js +1 -1
- package/dist/input-context-bundle.d.ts +6 -6
- package/dist/internal-entity-id.d.ts +2 -0
- package/dist/launcher-prompt-templates.d.ts +639 -0
- package/dist/media-library.d.ts +164 -0
- package/dist/product-search.d.ts +227 -0
- package/dist/publish-quality.d.ts +92 -0
- package/dist/site-edit-event.d.ts +8 -0
- package/dist/site-edit-operation.d.ts +53 -11
- package/dist/site-edit-render-document.d.ts +13 -9
- package/dist/site-preview.d.ts +50 -0
- package/dist/site-workflow.d.ts +1006 -0
- package/dist/sitemap-navigation.d.ts +9 -0
- package/dist/step2-site-initialization.d.ts +209 -0
- package/dist/step3-digital-employee-analysis.d.ts +695 -0
- package/dist/step4-diagnosis.d.ts +204 -0
- package/dist/step5-strategy.d.ts +2697 -0
- package/dist/step6-design.d.ts +672 -0
- package/dist/user-facing-copy.d.ts +1 -0
- package/dist/workspace-resource-operation.d.ts +17 -9
- package/package.json +2 -1
- package/dist/publish-plan.d.ts +0 -54
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const InputSourceTypeSchema: z.ZodEnum<{
|
|
3
|
-
text: "text";
|
|
4
3
|
url: "url";
|
|
4
|
+
text: "text";
|
|
5
5
|
document: "document";
|
|
6
6
|
image: "image";
|
|
7
7
|
}>;
|
|
@@ -19,8 +19,8 @@ export declare const InputBundleStatusSchema: z.ZodEnum<{
|
|
|
19
19
|
}>;
|
|
20
20
|
export type InputBundleStatus = z.infer<typeof InputBundleStatusSchema>;
|
|
21
21
|
export declare const ExtractedFactKindSchema: z.ZodEnum<{
|
|
22
|
-
copy: "copy";
|
|
23
22
|
product: "product";
|
|
23
|
+
copy: "copy";
|
|
24
24
|
price: "price";
|
|
25
25
|
contact: "contact";
|
|
26
26
|
audience: "audience";
|
|
@@ -29,8 +29,8 @@ export declare const ExtractedFactKindSchema: z.ZodEnum<{
|
|
|
29
29
|
export declare const ExtractedFactSchema: z.ZodObject<{
|
|
30
30
|
fact: z.ZodString;
|
|
31
31
|
kind: z.ZodEnum<{
|
|
32
|
-
copy: "copy";
|
|
33
32
|
product: "product";
|
|
33
|
+
copy: "copy";
|
|
34
34
|
price: "price";
|
|
35
35
|
contact: "contact";
|
|
36
36
|
audience: "audience";
|
|
@@ -63,8 +63,8 @@ export type ReferenceSignals = z.infer<typeof ReferenceSignalsSchema>;
|
|
|
63
63
|
export declare const InputSourceSchema: z.ZodObject<{
|
|
64
64
|
source_id: z.ZodUUID;
|
|
65
65
|
type: z.ZodEnum<{
|
|
66
|
-
text: "text";
|
|
67
66
|
url: "url";
|
|
67
|
+
text: "text";
|
|
68
68
|
document: "document";
|
|
69
69
|
image: "image";
|
|
70
70
|
}>;
|
|
@@ -198,8 +198,8 @@ export declare const InputContextBundleSchema: z.ZodObject<{
|
|
|
198
198
|
sources: z.ZodArray<z.ZodObject<{
|
|
199
199
|
source_id: z.ZodUUID;
|
|
200
200
|
type: z.ZodEnum<{
|
|
201
|
-
text: "text";
|
|
202
201
|
url: "url";
|
|
202
|
+
text: "text";
|
|
203
203
|
document: "document";
|
|
204
204
|
image: "image";
|
|
205
205
|
}>;
|
|
@@ -217,8 +217,8 @@ export declare const InputContextBundleSchema: z.ZodObject<{
|
|
|
217
217
|
facts: z.ZodArray<z.ZodObject<{
|
|
218
218
|
fact: z.ZodString;
|
|
219
219
|
kind: z.ZodEnum<{
|
|
220
|
-
copy: "copy";
|
|
221
220
|
product: "product";
|
|
221
|
+
copy: "copy";
|
|
222
222
|
price: "price";
|
|
223
223
|
contact: "contact";
|
|
224
224
|
audience: "audience";
|
|
@@ -26,6 +26,8 @@ export declare const SandboxSessionIdSchema: z.ZodUUID;
|
|
|
26
26
|
export declare const DeploymentIdSchema: z.ZodUUID;
|
|
27
27
|
export declare const DeploymentJobIdSchema: z.ZodUUID;
|
|
28
28
|
export declare const SiteOperationLockIdSchema: z.ZodUUID;
|
|
29
|
+
export declare const SiteWorkflowIdSchema: z.ZodUUID;
|
|
30
|
+
export declare const SiteWorkflowTaskRefIdSchema: z.ZodUUID;
|
|
29
31
|
export declare const FormDesignOperationRecordIdSchema: z.ZodUUID;
|
|
30
32
|
export declare const SiteTemplateUpgradeStateIdSchema: z.ZodUUID;
|
|
31
33
|
export declare const UsageRecordIdSchema: z.ZodUUID;
|