@vcp-dev/contracts 0.6.9 → 0.6.10
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/cms-collection-binding.d.ts +2 -2
- package/dist/form-design.d.ts +27 -27
- package/dist/index.d.ts +1153 -444
- package/dist/index.js +1 -1
- package/dist/input-context-bundle.d.ts +9 -9
- package/dist/internal-entity-id.d.ts +35 -0
- package/dist/site-edit-capability.d.ts +6 -6
- package/dist/site-edit-event.d.ts +7 -7
- package/dist/site-edit-operation.d.ts +4 -4
- package/dist/site-edit-patch-plan.d.ts +2 -2
- package/dist/site-edit-render-document.d.ts +14 -14
- package/dist/site-edit-version.d.ts +1 -1
- package/dist/template-upgrade-observability.d.ts +4 -4
- package/dist/workspace-design-apply.d.ts +1 -1
- package/dist/workspace-resource-operation.d.ts +714 -0
- package/package.json +1 -1
|
@@ -36,7 +36,7 @@ export declare const ExtractedFactSchema: z.ZodObject<{
|
|
|
36
36
|
audience: "audience";
|
|
37
37
|
other: "other";
|
|
38
38
|
}>;
|
|
39
|
-
source_id: z.
|
|
39
|
+
source_id: z.ZodUUID;
|
|
40
40
|
quote: z.ZodString;
|
|
41
41
|
trust: z.ZodDefault<z.ZodEnum<{
|
|
42
42
|
verbatim: "verbatim";
|
|
@@ -50,7 +50,7 @@ export declare const ReferencePagePatternSchema: z.ZodObject<{
|
|
|
50
50
|
}, z.core.$strip>;
|
|
51
51
|
export type ReferencePagePattern = z.infer<typeof ReferencePagePatternSchema>;
|
|
52
52
|
export declare const ReferenceSignalsSchema: z.ZodObject<{
|
|
53
|
-
source_id: z.
|
|
53
|
+
source_id: z.ZodUUID;
|
|
54
54
|
nav_structure: z.ZodArray<z.ZodString>;
|
|
55
55
|
page_patterns: z.ZodArray<z.ZodObject<{
|
|
56
56
|
page_type: z.ZodString;
|
|
@@ -61,7 +61,7 @@ export declare const ReferenceSignalsSchema: z.ZodObject<{
|
|
|
61
61
|
}, z.core.$strip>;
|
|
62
62
|
export type ReferenceSignals = z.infer<typeof ReferenceSignalsSchema>;
|
|
63
63
|
export declare const InputSourceSchema: z.ZodObject<{
|
|
64
|
-
source_id: z.
|
|
64
|
+
source_id: z.ZodUUID;
|
|
65
65
|
type: z.ZodEnum<{
|
|
66
66
|
text: "text";
|
|
67
67
|
url: "url";
|
|
@@ -84,7 +84,7 @@ export declare const InputConflictSchema: z.ZodObject<{
|
|
|
84
84
|
topic: z.ZodString;
|
|
85
85
|
variants: z.ZodArray<z.ZodObject<{
|
|
86
86
|
value: z.ZodString;
|
|
87
|
-
source_id: z.
|
|
87
|
+
source_id: z.ZodUUID;
|
|
88
88
|
}, z.core.$strip>>;
|
|
89
89
|
}, z.core.$strip>;
|
|
90
90
|
export type InputConflict = z.infer<typeof InputConflictSchema>;
|
|
@@ -187,7 +187,7 @@ export type CreateTextInputSourceRequest = z.infer<typeof CreateTextInputSourceR
|
|
|
187
187
|
export type CreateUrlInputSourceRequest = z.infer<typeof CreateUrlInputSourceRequestSchema>;
|
|
188
188
|
export declare const InputContextBundleSchema: z.ZodObject<{
|
|
189
189
|
version: z.ZodLiteral<1>;
|
|
190
|
-
site_id: z.
|
|
190
|
+
site_id: z.ZodUUID;
|
|
191
191
|
tenant_id: z.ZodString;
|
|
192
192
|
user_prompt: z.ZodString;
|
|
193
193
|
status: z.ZodEnum<{
|
|
@@ -196,7 +196,7 @@ export declare const InputContextBundleSchema: z.ZodObject<{
|
|
|
196
196
|
pending: "pending";
|
|
197
197
|
}>;
|
|
198
198
|
sources: z.ZodArray<z.ZodObject<{
|
|
199
|
-
source_id: z.
|
|
199
|
+
source_id: z.ZodUUID;
|
|
200
200
|
type: z.ZodEnum<{
|
|
201
201
|
text: "text";
|
|
202
202
|
url: "url";
|
|
@@ -224,7 +224,7 @@ export declare const InputContextBundleSchema: z.ZodObject<{
|
|
|
224
224
|
audience: "audience";
|
|
225
225
|
other: "other";
|
|
226
226
|
}>;
|
|
227
|
-
source_id: z.
|
|
227
|
+
source_id: z.ZodUUID;
|
|
228
228
|
quote: z.ZodString;
|
|
229
229
|
trust: z.ZodDefault<z.ZodEnum<{
|
|
230
230
|
verbatim: "verbatim";
|
|
@@ -232,7 +232,7 @@ export declare const InputContextBundleSchema: z.ZodObject<{
|
|
|
232
232
|
}>>;
|
|
233
233
|
}, z.core.$strip>>;
|
|
234
234
|
reference: z.ZodOptional<z.ZodObject<{
|
|
235
|
-
source_id: z.
|
|
235
|
+
source_id: z.ZodUUID;
|
|
236
236
|
nav_structure: z.ZodArray<z.ZodString>;
|
|
237
237
|
page_patterns: z.ZodArray<z.ZodObject<{
|
|
238
238
|
page_type: z.ZodString;
|
|
@@ -245,7 +245,7 @@ export declare const InputContextBundleSchema: z.ZodObject<{
|
|
|
245
245
|
topic: z.ZodString;
|
|
246
246
|
variants: z.ZodArray<z.ZodObject<{
|
|
247
247
|
value: z.ZodString;
|
|
248
|
-
source_id: z.
|
|
248
|
+
source_id: z.ZodUUID;
|
|
249
249
|
}, z.core.$strip>>;
|
|
250
250
|
}, z.core.$strip>>;
|
|
251
251
|
}, z.core.$strip>;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
/**
|
|
3
|
+
* IDs for persisted entities whose lifecycle is owned by VCP.
|
|
4
|
+
* Tenant IDs, provider IDs, business keys, content IDs and polymorphic IDs do
|
|
5
|
+
* not use this schema.
|
|
6
|
+
*/
|
|
7
|
+
export declare const InternalEntityIdSchema: z.ZodUUID;
|
|
8
|
+
export type InternalEntityId = z.infer<typeof InternalEntityIdSchema>;
|
|
9
|
+
export declare const UserIdSchema: z.ZodUUID;
|
|
10
|
+
export declare const AuthIdentityIdSchema: z.ZodUUID;
|
|
11
|
+
export declare const AuthSessionIdSchema: z.ZodUUID;
|
|
12
|
+
export declare const AuthTokenIdSchema: z.ZodUUID;
|
|
13
|
+
export declare const AuthOidcStateIdSchema: z.ZodUUID;
|
|
14
|
+
export declare const AuthLoginCodeIdSchema: z.ZodUUID;
|
|
15
|
+
export declare const AuthWsTicketIdSchema: z.ZodUUID;
|
|
16
|
+
export declare const SiteIdSchema: z.ZodUUID;
|
|
17
|
+
export declare const BriefIdSchema: z.ZodUUID;
|
|
18
|
+
export declare const ClarifySessionIdSchema: z.ZodUUID;
|
|
19
|
+
export declare const SitemapIdSchema: z.ZodUUID;
|
|
20
|
+
export declare const DesignPlanIdSchema: z.ZodUUID;
|
|
21
|
+
export declare const SnapshotIdSchema: z.ZodUUID;
|
|
22
|
+
export declare const SiteVersionIdSchema: z.ZodUUID;
|
|
23
|
+
export declare const AgentRunIdSchema: z.ZodUUID;
|
|
24
|
+
export declare const AgentEventIdSchema: z.ZodUUID;
|
|
25
|
+
export declare const SandboxSessionIdSchema: z.ZodUUID;
|
|
26
|
+
export declare const DeploymentIdSchema: z.ZodUUID;
|
|
27
|
+
export declare const DeploymentJobIdSchema: z.ZodUUID;
|
|
28
|
+
export declare const SiteOperationLockIdSchema: z.ZodUUID;
|
|
29
|
+
export declare const FormDesignOperationRecordIdSchema: z.ZodUUID;
|
|
30
|
+
export declare const SiteTemplateUpgradeStateIdSchema: z.ZodUUID;
|
|
31
|
+
export declare const UsageRecordIdSchema: z.ZodUUID;
|
|
32
|
+
export declare const InputContextSourceIdSchema: z.ZodUUID;
|
|
33
|
+
export declare const MediaResolutionCacheIdSchema: z.ZodUUID;
|
|
34
|
+
export declare const AuditLogIdSchema: z.ZodUUID;
|
|
35
|
+
export declare const CmsCollectionBindingIdSchema: z.ZodUUID;
|
|
@@ -9,10 +9,10 @@ export declare const SiteEditBoundaryKindSchema: z.ZodEnum<{
|
|
|
9
9
|
export type SiteEditBoundaryKind = z.infer<typeof SiteEditBoundaryKindSchema>;
|
|
10
10
|
export declare const SiteEditCapabilityModeSchema: z.ZodEnum<{
|
|
11
11
|
readonly: "readonly";
|
|
12
|
+
unsupported: "unsupported";
|
|
12
13
|
direct: "direct";
|
|
13
14
|
proxy: "proxy";
|
|
14
15
|
upstream: "upstream";
|
|
15
|
-
unsupported: "unsupported";
|
|
16
16
|
}>;
|
|
17
17
|
export type SiteEditCapabilityMode = z.infer<typeof SiteEditCapabilityModeSchema>;
|
|
18
18
|
export declare const SiteEditConstraintKindSchema: z.ZodEnum<{
|
|
@@ -29,10 +29,10 @@ export type SiteEditConstraintKind = z.infer<typeof SiteEditConstraintKindSchema
|
|
|
29
29
|
export declare const SiteEditCapabilityModeViewSchema: z.ZodObject<{
|
|
30
30
|
mode: z.ZodEnum<{
|
|
31
31
|
readonly: "readonly";
|
|
32
|
+
unsupported: "unsupported";
|
|
32
33
|
direct: "direct";
|
|
33
34
|
proxy: "proxy";
|
|
34
35
|
upstream: "upstream";
|
|
35
|
-
unsupported: "unsupported";
|
|
36
36
|
}>;
|
|
37
37
|
reasonCode: z.ZodOptional<z.ZodString>;
|
|
38
38
|
}, z.core.$strip>;
|
|
@@ -61,40 +61,40 @@ export declare const SiteEditNodeCapabilitySnapshotSchema: z.ZodObject<{
|
|
|
61
61
|
updateText: z.ZodOptional<z.ZodObject<{
|
|
62
62
|
mode: z.ZodEnum<{
|
|
63
63
|
readonly: "readonly";
|
|
64
|
+
unsupported: "unsupported";
|
|
64
65
|
direct: "direct";
|
|
65
66
|
proxy: "proxy";
|
|
66
67
|
upstream: "upstream";
|
|
67
|
-
unsupported: "unsupported";
|
|
68
68
|
}>;
|
|
69
69
|
reasonCode: z.ZodOptional<z.ZodString>;
|
|
70
70
|
}, z.core.$strip>>;
|
|
71
71
|
insertChild: z.ZodOptional<z.ZodObject<{
|
|
72
72
|
mode: z.ZodEnum<{
|
|
73
73
|
readonly: "readonly";
|
|
74
|
+
unsupported: "unsupported";
|
|
74
75
|
direct: "direct";
|
|
75
76
|
proxy: "proxy";
|
|
76
77
|
upstream: "upstream";
|
|
77
|
-
unsupported: "unsupported";
|
|
78
78
|
}>;
|
|
79
79
|
reasonCode: z.ZodOptional<z.ZodString>;
|
|
80
80
|
}, z.core.$strip>>;
|
|
81
81
|
move: z.ZodOptional<z.ZodObject<{
|
|
82
82
|
mode: z.ZodEnum<{
|
|
83
83
|
readonly: "readonly";
|
|
84
|
+
unsupported: "unsupported";
|
|
84
85
|
direct: "direct";
|
|
85
86
|
proxy: "proxy";
|
|
86
87
|
upstream: "upstream";
|
|
87
|
-
unsupported: "unsupported";
|
|
88
88
|
}>;
|
|
89
89
|
reasonCode: z.ZodOptional<z.ZodString>;
|
|
90
90
|
}, z.core.$strip>>;
|
|
91
91
|
remove: z.ZodOptional<z.ZodObject<{
|
|
92
92
|
mode: z.ZodEnum<{
|
|
93
93
|
readonly: "readonly";
|
|
94
|
+
unsupported: "unsupported";
|
|
94
95
|
direct: "direct";
|
|
95
96
|
proxy: "proxy";
|
|
96
97
|
upstream: "upstream";
|
|
97
|
-
unsupported: "unsupported";
|
|
98
98
|
}>;
|
|
99
99
|
reasonCode: z.ZodOptional<z.ZodString>;
|
|
100
100
|
}, z.core.$strip>>;
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const SiteEditEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3
3
|
type: z.ZodLiteral<"site-edit.document.changed">;
|
|
4
|
-
siteId: z.
|
|
5
|
-
snapshotId: z.
|
|
4
|
+
siteId: z.ZodUUID;
|
|
5
|
+
snapshotId: z.ZodUUID;
|
|
6
6
|
routeId: z.ZodString;
|
|
7
7
|
version: z.ZodNumber;
|
|
8
8
|
at: z.ZodString;
|
|
9
9
|
}, z.core.$strip>, z.ZodObject<{
|
|
10
10
|
type: z.ZodLiteral<"site-edit.operation.planned">;
|
|
11
|
-
siteId: z.
|
|
11
|
+
siteId: z.ZodUUID;
|
|
12
12
|
operationId: z.ZodString;
|
|
13
|
-
baseSnapshotId: z.
|
|
13
|
+
baseSnapshotId: z.ZodUUID;
|
|
14
14
|
changedFiles: z.ZodArray<z.ZodString>;
|
|
15
15
|
at: z.ZodString;
|
|
16
16
|
}, z.core.$strip>, z.ZodObject<{
|
|
17
17
|
type: z.ZodLiteral<"site-edit.operation.completed">;
|
|
18
|
-
siteId: z.
|
|
18
|
+
siteId: z.ZodUUID;
|
|
19
19
|
result: z.ZodObject<{
|
|
20
20
|
requestId: z.ZodString;
|
|
21
21
|
kind: z.ZodEnum<{
|
|
@@ -70,7 +70,7 @@ export declare const SiteEditEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
70
70
|
at: z.ZodString;
|
|
71
71
|
}, z.core.$strip>, z.ZodObject<{
|
|
72
72
|
type: z.ZodLiteral<"site-edit.operation.failed">;
|
|
73
|
-
siteId: z.
|
|
73
|
+
siteId: z.ZodUUID;
|
|
74
74
|
requestId: z.ZodString;
|
|
75
75
|
error: z.ZodObject<{
|
|
76
76
|
code: z.ZodEnum<{
|
|
@@ -110,7 +110,7 @@ export declare const SiteEditEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
110
110
|
at: z.ZodString;
|
|
111
111
|
}, z.core.$strip>, z.ZodObject<{
|
|
112
112
|
type: z.ZodLiteral<"site-edit.capability.changed">;
|
|
113
|
-
siteId: z.
|
|
113
|
+
siteId: z.ZodUUID;
|
|
114
114
|
routeId: z.ZodString;
|
|
115
115
|
keys: z.ZodArray<z.ZodString>;
|
|
116
116
|
at: z.ZodString;
|
|
@@ -557,8 +557,8 @@ export declare const SiteEditOperationSelectionRefSchema: z.ZodObject<{
|
|
|
557
557
|
export type SiteEditOperationSelectionRef = z.infer<typeof SiteEditOperationSelectionRefSchema>;
|
|
558
558
|
export declare const SiteEditOperationRequestSchema: z.ZodObject<{
|
|
559
559
|
id: z.ZodString;
|
|
560
|
-
siteId: z.
|
|
561
|
-
baseSnapshotId: z.
|
|
560
|
+
siteId: z.ZodUUID;
|
|
561
|
+
baseSnapshotId: z.ZodUUID;
|
|
562
562
|
routeId: z.ZodOptional<z.ZodString>;
|
|
563
563
|
kind: z.ZodEnum<{
|
|
564
564
|
"insert-child": "insert-child";
|
|
@@ -879,8 +879,8 @@ export type SiteEditAuthenticatedOperationRequest = SiteEditOperationRequest;
|
|
|
879
879
|
*/
|
|
880
880
|
export declare const SiteEditSignedOperationRequestSchema: z.ZodObject<{
|
|
881
881
|
id: z.ZodString;
|
|
882
|
-
siteId: z.
|
|
883
|
-
baseSnapshotId: z.
|
|
882
|
+
siteId: z.ZodUUID;
|
|
883
|
+
baseSnapshotId: z.ZodUUID;
|
|
884
884
|
routeId: z.ZodOptional<z.ZodString>;
|
|
885
885
|
kind: z.ZodEnum<{
|
|
886
886
|
"insert-child": "insert-child";
|
|
@@ -11,8 +11,8 @@ export declare const SiteEditPatchPlanPatchSchema: z.ZodObject<{
|
|
|
11
11
|
}, z.core.$strip>;
|
|
12
12
|
export type SiteEditPatchPlanPatch = z.infer<typeof SiteEditPatchPlanPatchSchema>;
|
|
13
13
|
export declare const SiteEditPatchPlanSchema: z.ZodObject<{
|
|
14
|
-
siteId: z.
|
|
15
|
-
baseSnapshotId: z.
|
|
14
|
+
siteId: z.ZodUUID;
|
|
15
|
+
baseSnapshotId: z.ZodUUID;
|
|
16
16
|
operationId: z.ZodString;
|
|
17
17
|
reason: z.ZodString;
|
|
18
18
|
patches: z.ZodArray<z.ZodObject<{
|
|
@@ -170,8 +170,8 @@ export declare const SiteEditRenderEntrySchema: z.ZodObject<{
|
|
|
170
170
|
}, z.core.$strict>;
|
|
171
171
|
export type SiteEditRenderEntry = z.infer<typeof SiteEditRenderEntrySchema>;
|
|
172
172
|
export declare const SiteEditRenderDocumentSchema: z.ZodObject<{
|
|
173
|
-
siteId: z.
|
|
174
|
-
snapshotId: z.
|
|
173
|
+
siteId: z.ZodUUID;
|
|
174
|
+
snapshotId: z.ZodUUID;
|
|
175
175
|
routeId: z.ZodString;
|
|
176
176
|
version: z.ZodNumber;
|
|
177
177
|
entries: z.ZodArray<z.ZodObject<{
|
|
@@ -435,10 +435,10 @@ export declare const SiteEditProvenanceChainSchema: z.ZodObject<{
|
|
|
435
435
|
}>;
|
|
436
436
|
editMode: z.ZodEnum<{
|
|
437
437
|
readonly: "readonly";
|
|
438
|
+
unsupported: "unsupported";
|
|
438
439
|
direct: "direct";
|
|
439
440
|
proxy: "proxy";
|
|
440
441
|
upstream: "upstream";
|
|
441
|
-
unsupported: "unsupported";
|
|
442
442
|
}>;
|
|
443
443
|
diagnostics: z.ZodArray<z.ZodObject<{
|
|
444
444
|
code: z.ZodString;
|
|
@@ -665,40 +665,40 @@ export declare const SiteEditObjectDetailSchema: z.ZodObject<{
|
|
|
665
665
|
updateText: z.ZodOptional<z.ZodObject<{
|
|
666
666
|
mode: z.ZodEnum<{
|
|
667
667
|
readonly: "readonly";
|
|
668
|
+
unsupported: "unsupported";
|
|
668
669
|
direct: "direct";
|
|
669
670
|
proxy: "proxy";
|
|
670
671
|
upstream: "upstream";
|
|
671
|
-
unsupported: "unsupported";
|
|
672
672
|
}>;
|
|
673
673
|
reasonCode: z.ZodOptional<z.ZodString>;
|
|
674
674
|
}, z.core.$strip>>;
|
|
675
675
|
insertChild: z.ZodOptional<z.ZodObject<{
|
|
676
676
|
mode: z.ZodEnum<{
|
|
677
677
|
readonly: "readonly";
|
|
678
|
+
unsupported: "unsupported";
|
|
678
679
|
direct: "direct";
|
|
679
680
|
proxy: "proxy";
|
|
680
681
|
upstream: "upstream";
|
|
681
|
-
unsupported: "unsupported";
|
|
682
682
|
}>;
|
|
683
683
|
reasonCode: z.ZodOptional<z.ZodString>;
|
|
684
684
|
}, z.core.$strip>>;
|
|
685
685
|
move: z.ZodOptional<z.ZodObject<{
|
|
686
686
|
mode: z.ZodEnum<{
|
|
687
687
|
readonly: "readonly";
|
|
688
|
+
unsupported: "unsupported";
|
|
688
689
|
direct: "direct";
|
|
689
690
|
proxy: "proxy";
|
|
690
691
|
upstream: "upstream";
|
|
691
|
-
unsupported: "unsupported";
|
|
692
692
|
}>;
|
|
693
693
|
reasonCode: z.ZodOptional<z.ZodString>;
|
|
694
694
|
}, z.core.$strip>>;
|
|
695
695
|
remove: z.ZodOptional<z.ZodObject<{
|
|
696
696
|
mode: z.ZodEnum<{
|
|
697
697
|
readonly: "readonly";
|
|
698
|
+
unsupported: "unsupported";
|
|
698
699
|
direct: "direct";
|
|
699
700
|
proxy: "proxy";
|
|
700
701
|
upstream: "upstream";
|
|
701
|
-
unsupported: "unsupported";
|
|
702
702
|
}>;
|
|
703
703
|
reasonCode: z.ZodOptional<z.ZodString>;
|
|
704
704
|
}, z.core.$strip>>;
|
|
@@ -804,10 +804,10 @@ export declare const SiteEditObjectDetailSchema: z.ZodObject<{
|
|
|
804
804
|
}>;
|
|
805
805
|
editMode: z.ZodEnum<{
|
|
806
806
|
readonly: "readonly";
|
|
807
|
+
unsupported: "unsupported";
|
|
807
808
|
direct: "direct";
|
|
808
809
|
proxy: "proxy";
|
|
809
810
|
upstream: "upstream";
|
|
810
|
-
unsupported: "unsupported";
|
|
811
811
|
}>;
|
|
812
812
|
diagnostics: z.ZodArray<z.ZodObject<{
|
|
813
813
|
code: z.ZodString;
|
|
@@ -970,10 +970,10 @@ export declare const SiteEditObjectSummarySchema: z.ZodObject<{
|
|
|
970
970
|
provenanceChain: z.ZodOptional<z.ZodObject<{
|
|
971
971
|
editMode: z.ZodEnum<{
|
|
972
972
|
readonly: "readonly";
|
|
973
|
+
unsupported: "unsupported";
|
|
973
974
|
direct: "direct";
|
|
974
975
|
proxy: "proxy";
|
|
975
976
|
upstream: "upstream";
|
|
976
|
-
unsupported: "unsupported";
|
|
977
977
|
}>;
|
|
978
978
|
diagnostics: z.ZodArray<z.ZodObject<{
|
|
979
979
|
code: z.ZodString;
|
|
@@ -1036,40 +1036,40 @@ export declare const SiteEditObjectEditContextSchema: z.ZodObject<{
|
|
|
1036
1036
|
updateText: z.ZodOptional<z.ZodObject<{
|
|
1037
1037
|
mode: z.ZodEnum<{
|
|
1038
1038
|
readonly: "readonly";
|
|
1039
|
+
unsupported: "unsupported";
|
|
1039
1040
|
direct: "direct";
|
|
1040
1041
|
proxy: "proxy";
|
|
1041
1042
|
upstream: "upstream";
|
|
1042
|
-
unsupported: "unsupported";
|
|
1043
1043
|
}>;
|
|
1044
1044
|
reasonCode: z.ZodOptional<z.ZodString>;
|
|
1045
1045
|
}, z.core.$strip>>;
|
|
1046
1046
|
insertChild: z.ZodOptional<z.ZodObject<{
|
|
1047
1047
|
mode: z.ZodEnum<{
|
|
1048
1048
|
readonly: "readonly";
|
|
1049
|
+
unsupported: "unsupported";
|
|
1049
1050
|
direct: "direct";
|
|
1050
1051
|
proxy: "proxy";
|
|
1051
1052
|
upstream: "upstream";
|
|
1052
|
-
unsupported: "unsupported";
|
|
1053
1053
|
}>;
|
|
1054
1054
|
reasonCode: z.ZodOptional<z.ZodString>;
|
|
1055
1055
|
}, z.core.$strip>>;
|
|
1056
1056
|
move: z.ZodOptional<z.ZodObject<{
|
|
1057
1057
|
mode: z.ZodEnum<{
|
|
1058
1058
|
readonly: "readonly";
|
|
1059
|
+
unsupported: "unsupported";
|
|
1059
1060
|
direct: "direct";
|
|
1060
1061
|
proxy: "proxy";
|
|
1061
1062
|
upstream: "upstream";
|
|
1062
|
-
unsupported: "unsupported";
|
|
1063
1063
|
}>;
|
|
1064
1064
|
reasonCode: z.ZodOptional<z.ZodString>;
|
|
1065
1065
|
}, z.core.$strip>>;
|
|
1066
1066
|
remove: z.ZodOptional<z.ZodObject<{
|
|
1067
1067
|
mode: z.ZodEnum<{
|
|
1068
1068
|
readonly: "readonly";
|
|
1069
|
+
unsupported: "unsupported";
|
|
1069
1070
|
direct: "direct";
|
|
1070
1071
|
proxy: "proxy";
|
|
1071
1072
|
upstream: "upstream";
|
|
1072
|
-
unsupported: "unsupported";
|
|
1073
1073
|
}>;
|
|
1074
1074
|
reasonCode: z.ZodOptional<z.ZodString>;
|
|
1075
1075
|
}, z.core.$strip>>;
|
|
@@ -1091,10 +1091,10 @@ export declare const SiteEditObjectEditContextSchema: z.ZodObject<{
|
|
|
1091
1091
|
provenanceChain: z.ZodOptional<z.ZodObject<{
|
|
1092
1092
|
editMode: z.ZodEnum<{
|
|
1093
1093
|
readonly: "readonly";
|
|
1094
|
+
unsupported: "unsupported";
|
|
1094
1095
|
direct: "direct";
|
|
1095
1096
|
proxy: "proxy";
|
|
1096
1097
|
upstream: "upstream";
|
|
1097
|
-
unsupported: "unsupported";
|
|
1098
1098
|
}>;
|
|
1099
1099
|
diagnostics: z.ZodArray<z.ZodObject<{
|
|
1100
1100
|
code: z.ZodString;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* 由 release-edit-engine-packages.ts 在 bump 版本时自动更新。
|
|
7
7
|
*/
|
|
8
|
-
export declare const CURRENT_EDIT_ENGINE_VERSION = "0.6.
|
|
8
|
+
export declare const CURRENT_EDIT_ENGINE_VERSION = "0.6.10";
|
|
9
9
|
export declare const EDIT_ENGINE_VERSION_HEADER = "x-vcp-edit-engine-version";
|
|
10
10
|
export declare const EDIT_ENGINE_VERSION_SOURCE_HEADER = "x-vcp-edit-engine-version-source";
|
|
11
11
|
export type EditEngineVersionSource = "explicit" | "fallback_current" | "system_current";
|
|
@@ -114,8 +114,8 @@ export declare const ListTemplateUpgradeSnapshotDeletionCandidatesQuerySchema: z
|
|
|
114
114
|
}, z.core.$strict>;
|
|
115
115
|
export type ListTemplateUpgradeSnapshotDeletionCandidatesQuery = z.input<typeof ListTemplateUpgradeSnapshotDeletionCandidatesQuerySchema>;
|
|
116
116
|
export declare const TemplateUpgradeSnapshotDeletionCandidateSchema: z.ZodObject<{
|
|
117
|
-
site_id: z.
|
|
118
|
-
snapshot_id: z.
|
|
117
|
+
site_id: z.ZodUUID;
|
|
118
|
+
snapshot_id: z.ZodUUID;
|
|
119
119
|
status: z.ZodEnum<{
|
|
120
120
|
candidate: "candidate";
|
|
121
121
|
deleting: "deleting";
|
|
@@ -125,8 +125,8 @@ export declare const TemplateUpgradeSnapshotDeletionCandidateSchema: z.ZodObject
|
|
|
125
125
|
export type TemplateUpgradeSnapshotDeletionCandidate = z.infer<typeof TemplateUpgradeSnapshotDeletionCandidateSchema>;
|
|
126
126
|
export declare const ListTemplateUpgradeSnapshotDeletionCandidatesResponseSchema: z.ZodObject<{
|
|
127
127
|
snapshots: z.ZodArray<z.ZodObject<{
|
|
128
|
-
site_id: z.
|
|
129
|
-
snapshot_id: z.
|
|
128
|
+
site_id: z.ZodUUID;
|
|
129
|
+
snapshot_id: z.ZodUUID;
|
|
130
130
|
status: z.ZodEnum<{
|
|
131
131
|
candidate: "candidate";
|
|
132
132
|
deleting: "deleting";
|
|
@@ -14,6 +14,6 @@ export type WorkspaceDesignApplyRequest = z.infer<typeof WorkspaceDesignApplyReq
|
|
|
14
14
|
export declare const WorkspaceDesignApplyResponseSchema: z.ZodObject<{
|
|
15
15
|
ok: z.ZodLiteral<true>;
|
|
16
16
|
design_plan_version: z.ZodNumber;
|
|
17
|
-
snapshot_id: z.
|
|
17
|
+
snapshot_id: z.ZodUUID;
|
|
18
18
|
}, z.core.$strip>;
|
|
19
19
|
export type WorkspaceDesignApplyResponse = z.infer<typeof WorkspaceDesignApplyResponseSchema>;
|