@vcp-dev/contracts 0.8.5 → 0.9.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/dist/custom-domain.d.ts +122 -2
- package/dist/form-design.d.ts +8 -8
- package/dist/index.d.ts +21 -51
- package/dist/index.js +1 -1
- package/dist/site-edit-history-status.d.ts +1 -1
- package/dist/site-edit-version.d.ts +1 -1
- package/dist/site-publish-domain.d.ts +821 -22
- package/dist/site-publish-workflow.d.ts +16 -0
- package/dist/step5-strategy.d.ts +718 -2
- package/dist/template-upgrade-observability.d.ts +2 -2
- package/dist/template-upgrade-state.d.ts +4 -4
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const TemplateUpgradeOutcomeSchema: z.ZodEnum<{
|
|
3
|
-
paused: "paused";
|
|
4
3
|
blocked: "blocked";
|
|
4
|
+
paused: "paused";
|
|
5
5
|
validation_failed: "validation_failed";
|
|
6
6
|
eligible: "eligible";
|
|
7
7
|
fast_path: "fast_path";
|
|
@@ -29,8 +29,8 @@ export declare const RecordTemplateUpgradeEventRequestSchema: z.ZodObject<{
|
|
|
29
29
|
from_version: z.ZodNullable<z.ZodString>;
|
|
30
30
|
to_version: z.ZodString;
|
|
31
31
|
outcome: z.ZodEnum<{
|
|
32
|
-
paused: "paused";
|
|
33
32
|
blocked: "blocked";
|
|
33
|
+
paused: "paused";
|
|
34
34
|
validation_failed: "validation_failed";
|
|
35
35
|
eligible: "eligible";
|
|
36
36
|
fast_path: "fast_path";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const TemplateUpgradeStatusSchema: z.ZodEnum<{
|
|
3
3
|
active: "active";
|
|
4
|
-
paused: "paused";
|
|
5
4
|
blocked: "blocked";
|
|
5
|
+
paused: "paused";
|
|
6
6
|
}>;
|
|
7
7
|
export type TemplateUpgradeStatus = z.infer<typeof TemplateUpgradeStatusSchema>;
|
|
8
8
|
export declare const TemplateUpgradeErrorCodeSchema: z.ZodEnum<{
|
|
@@ -14,8 +14,8 @@ export type TemplateUpgradeErrorCode = z.infer<typeof TemplateUpgradeErrorCodeSc
|
|
|
14
14
|
export declare const TemplateUpgradeStateSchema: z.ZodObject<{
|
|
15
15
|
status: z.ZodEnum<{
|
|
16
16
|
active: "active";
|
|
17
|
-
paused: "paused";
|
|
18
17
|
blocked: "blocked";
|
|
18
|
+
paused: "paused";
|
|
19
19
|
}>;
|
|
20
20
|
attempts: z.ZodNumber;
|
|
21
21
|
attempted_template_version: z.ZodNullable<z.ZodString>;
|
|
@@ -156,8 +156,8 @@ export declare const RecordTemplateUpgradeFailureResponseSchema: z.ZodObject<{
|
|
|
156
156
|
state: z.ZodObject<{
|
|
157
157
|
status: z.ZodEnum<{
|
|
158
158
|
active: "active";
|
|
159
|
-
paused: "paused";
|
|
160
159
|
blocked: "blocked";
|
|
160
|
+
paused: "paused";
|
|
161
161
|
}>;
|
|
162
162
|
attempts: z.ZodNumber;
|
|
163
163
|
attempted_template_version: z.ZodNullable<z.ZodString>;
|
|
@@ -178,8 +178,8 @@ export declare const RecordTemplateUpgradeSuccessResponseSchema: z.ZodObject<{
|
|
|
178
178
|
state: z.ZodObject<{
|
|
179
179
|
status: z.ZodEnum<{
|
|
180
180
|
active: "active";
|
|
181
|
-
paused: "paused";
|
|
182
181
|
blocked: "blocked";
|
|
182
|
+
paused: "paused";
|
|
183
183
|
}>;
|
|
184
184
|
attempts: z.ZodNumber;
|
|
185
185
|
attempted_template_version: z.ZodNullable<z.ZodString>;
|