@vcp-dev/contracts 0.6.8 → 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/designer-page-library.d.ts +106 -0
- package/dist/form-design.d.ts +27 -27
- package/dist/index.d.ts +1182 -458
- 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
|
@@ -15,7 +15,7 @@ export type BindingStatus = (typeof BINDING_STATUSES)[number];
|
|
|
15
15
|
*/
|
|
16
16
|
export declare const CmsCollectionBindingSchema: z.ZodObject<{
|
|
17
17
|
tenant_id: z.ZodString;
|
|
18
|
-
site_id: z.
|
|
18
|
+
site_id: z.ZodUUID;
|
|
19
19
|
collection_slug: z.ZodString;
|
|
20
20
|
cms_collection_id: z.ZodNullable<z.ZodString>;
|
|
21
21
|
status: z.ZodEnum<{
|
|
@@ -26,7 +26,7 @@ export declare const CmsCollectionBindingSchema: z.ZodObject<{
|
|
|
26
26
|
failed: "failed";
|
|
27
27
|
}>;
|
|
28
28
|
owned_by_vcp: z.ZodBoolean;
|
|
29
|
-
run_id: z.ZodNullable<z.
|
|
29
|
+
run_id: z.ZodNullable<z.ZodUUID>;
|
|
30
30
|
last_error: z.ZodNullable<z.ZodString>;
|
|
31
31
|
created_at: z.ZodString;
|
|
32
32
|
updated_at: z.ZodString;
|
|
@@ -12,6 +12,16 @@ export declare const DesignerPageResourceTypeSchema: z.ZodEnum<{
|
|
|
12
12
|
pages: "pages";
|
|
13
13
|
}>;
|
|
14
14
|
export type DesignerPageResourceType = z.infer<typeof DesignerPageResourceTypeSchema>;
|
|
15
|
+
export declare const DesignerPageResourceSourceSchema: z.ZodObject<{
|
|
16
|
+
resource_id: z.ZodString;
|
|
17
|
+
resource_type: z.ZodEnum<{
|
|
18
|
+
page: "page";
|
|
19
|
+
pages: "pages";
|
|
20
|
+
}>;
|
|
21
|
+
resolved_version: z.ZodString;
|
|
22
|
+
template_page_id: z.ZodString;
|
|
23
|
+
}, z.core.$strict>;
|
|
24
|
+
export type DesignerPageResourceSource = z.infer<typeof DesignerPageResourceSourceSchema>;
|
|
15
25
|
export interface DesignerPageCategoryNode {
|
|
16
26
|
readonly id: string;
|
|
17
27
|
readonly key: string;
|
|
@@ -83,6 +93,27 @@ export type PageResourcePageSelection = z.infer<typeof PageResourcePageSelection
|
|
|
83
93
|
export declare const PageResourceDraftPageSchema: z.ZodObject<{
|
|
84
94
|
template_page_id: z.ZodString;
|
|
85
95
|
title: z.ZodString;
|
|
96
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
97
|
+
resource_id: z.ZodString;
|
|
98
|
+
resource_type: z.ZodEnum<{
|
|
99
|
+
page: "page";
|
|
100
|
+
pages: "pages";
|
|
101
|
+
}>;
|
|
102
|
+
resolved_version: z.ZodString;
|
|
103
|
+
template_page_id: z.ZodString;
|
|
104
|
+
}, z.core.$strict>>;
|
|
105
|
+
blocks: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
106
|
+
kind: z.ZodLiteral<"package-component">;
|
|
107
|
+
instance_id: z.ZodString;
|
|
108
|
+
component_id: z.ZodString;
|
|
109
|
+
label: z.ZodString;
|
|
110
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
111
|
+
kind: z.ZodLiteral<"component-resource">;
|
|
112
|
+
instance_id: z.ZodString;
|
|
113
|
+
resource_id: z.ZodString;
|
|
114
|
+
resolved_version: z.ZodString;
|
|
115
|
+
label: z.ZodString;
|
|
116
|
+
}, z.core.$strict>], "kind">>>;
|
|
86
117
|
route: z.ZodObject<{
|
|
87
118
|
input: z.ZodString;
|
|
88
119
|
append_random_suffix: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -101,6 +132,27 @@ export declare const PageResourceDraftSchema: z.ZodObject<{
|
|
|
101
132
|
pages: z.ZodArray<z.ZodObject<{
|
|
102
133
|
template_page_id: z.ZodString;
|
|
103
134
|
title: z.ZodString;
|
|
135
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
136
|
+
resource_id: z.ZodString;
|
|
137
|
+
resource_type: z.ZodEnum<{
|
|
138
|
+
page: "page";
|
|
139
|
+
pages: "pages";
|
|
140
|
+
}>;
|
|
141
|
+
resolved_version: z.ZodString;
|
|
142
|
+
template_page_id: z.ZodString;
|
|
143
|
+
}, z.core.$strict>>;
|
|
144
|
+
blocks: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
145
|
+
kind: z.ZodLiteral<"package-component">;
|
|
146
|
+
instance_id: z.ZodString;
|
|
147
|
+
component_id: z.ZodString;
|
|
148
|
+
label: z.ZodString;
|
|
149
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
150
|
+
kind: z.ZodLiteral<"component-resource">;
|
|
151
|
+
instance_id: z.ZodString;
|
|
152
|
+
resource_id: z.ZodString;
|
|
153
|
+
resolved_version: z.ZodString;
|
|
154
|
+
label: z.ZodString;
|
|
155
|
+
}, z.core.$strict>], "kind">>>;
|
|
104
156
|
route: z.ZodObject<{
|
|
105
157
|
input: z.ZodString;
|
|
106
158
|
append_random_suffix: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -308,6 +360,12 @@ export type PageResourceRouteMapping = z.infer<typeof PageResourceRouteMappingSc
|
|
|
308
360
|
export declare const DesignerPageResourceTemplateSchema: z.ZodObject<{
|
|
309
361
|
template_page_id: z.ZodString;
|
|
310
362
|
title: z.ZodString;
|
|
363
|
+
composition_supported: z.ZodBoolean;
|
|
364
|
+
blocks: z.ZodArray<z.ZodObject<{
|
|
365
|
+
instance_id: z.ZodString;
|
|
366
|
+
component_id: z.ZodString;
|
|
367
|
+
label: z.ZodString;
|
|
368
|
+
}, z.core.$strict>>;
|
|
311
369
|
}, z.core.$strict>;
|
|
312
370
|
export type DesignerPageResourceTemplate = z.infer<typeof DesignerPageResourceTemplateSchema>;
|
|
313
371
|
export declare const DesignerPageResourcePreparationDataSchema: z.ZodObject<{
|
|
@@ -320,6 +378,12 @@ export declare const DesignerPageResourcePreparationDataSchema: z.ZodObject<{
|
|
|
320
378
|
pages: z.ZodArray<z.ZodObject<{
|
|
321
379
|
template_page_id: z.ZodString;
|
|
322
380
|
title: z.ZodString;
|
|
381
|
+
composition_supported: z.ZodBoolean;
|
|
382
|
+
blocks: z.ZodArray<z.ZodObject<{
|
|
383
|
+
instance_id: z.ZodString;
|
|
384
|
+
component_id: z.ZodString;
|
|
385
|
+
label: z.ZodString;
|
|
386
|
+
}, z.core.$strict>>;
|
|
323
387
|
}, z.core.$strict>>;
|
|
324
388
|
}, z.core.$strict>;
|
|
325
389
|
export type DesignerPageResourcePreparationData = z.infer<typeof DesignerPageResourcePreparationDataSchema>;
|
|
@@ -331,6 +395,48 @@ export declare const PrepareDesignerPageBodySchema: z.ZodObject<{
|
|
|
331
395
|
version: z.ZodString;
|
|
332
396
|
}, z.core.$strict>;
|
|
333
397
|
export type PrepareDesignerPageBody = z.infer<typeof PrepareDesignerPageBodySchema>;
|
|
398
|
+
export declare const ComposeDesignerPageResourceBodySchema: z.ZodObject<{
|
|
399
|
+
draft: z.ZodObject<{
|
|
400
|
+
resource_id: z.ZodString;
|
|
401
|
+
resource_type: z.ZodEnum<{
|
|
402
|
+
page: "page";
|
|
403
|
+
pages: "pages";
|
|
404
|
+
}>;
|
|
405
|
+
resolved_version: z.ZodString;
|
|
406
|
+
pages: z.ZodArray<z.ZodObject<{
|
|
407
|
+
template_page_id: z.ZodString;
|
|
408
|
+
title: z.ZodString;
|
|
409
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
410
|
+
resource_id: z.ZodString;
|
|
411
|
+
resource_type: z.ZodEnum<{
|
|
412
|
+
page: "page";
|
|
413
|
+
pages: "pages";
|
|
414
|
+
}>;
|
|
415
|
+
resolved_version: z.ZodString;
|
|
416
|
+
template_page_id: z.ZodString;
|
|
417
|
+
}, z.core.$strict>>;
|
|
418
|
+
blocks: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
419
|
+
kind: z.ZodLiteral<"package-component">;
|
|
420
|
+
instance_id: z.ZodString;
|
|
421
|
+
component_id: z.ZodString;
|
|
422
|
+
label: z.ZodString;
|
|
423
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
424
|
+
kind: z.ZodLiteral<"component-resource">;
|
|
425
|
+
instance_id: z.ZodString;
|
|
426
|
+
resource_id: z.ZodString;
|
|
427
|
+
resolved_version: z.ZodString;
|
|
428
|
+
label: z.ZodString;
|
|
429
|
+
}, z.core.$strict>], "kind">>>;
|
|
430
|
+
route: z.ZodObject<{
|
|
431
|
+
input: z.ZodString;
|
|
432
|
+
append_random_suffix: z.ZodOptional<z.ZodBoolean>;
|
|
433
|
+
random_suffix_length: z.ZodOptional<z.ZodNumber>;
|
|
434
|
+
final: z.ZodString;
|
|
435
|
+
}, z.core.$strict>;
|
|
436
|
+
}, z.core.$strict>>;
|
|
437
|
+
}, z.core.$strict>;
|
|
438
|
+
}, z.core.$strict>;
|
|
439
|
+
export type ComposeDesignerPageResourceBody = z.infer<typeof ComposeDesignerPageResourceBodySchema>;
|
|
334
440
|
export declare const DesignerSitePageSchema: z.ZodObject<{
|
|
335
441
|
title: z.ZodString;
|
|
336
442
|
route_id: z.ZodString;
|
package/dist/form-design.d.ts
CHANGED
|
@@ -1479,9 +1479,9 @@ export declare const FormDesignStandardizationSchema: z.ZodObject<{
|
|
|
1479
1479
|
}, z.core.$strict>;
|
|
1480
1480
|
export type FormDesignStandardization = z.infer<typeof FormDesignStandardizationSchema>;
|
|
1481
1481
|
export declare const FormDesignOperationFingerprintInputSchema: z.ZodObject<{
|
|
1482
|
-
site_id: z.
|
|
1482
|
+
site_id: z.ZodUUID;
|
|
1483
1483
|
form_definition_id: z.ZodString;
|
|
1484
|
-
base_snapshot_id: z.
|
|
1484
|
+
base_snapshot_id: z.ZodUUID;
|
|
1485
1485
|
expected_form_spec_hash: z.ZodString;
|
|
1486
1486
|
expected_cms_schema_hash: z.ZodNullable<z.ZodString>;
|
|
1487
1487
|
draft_form_spec_hash: z.ZodString;
|
|
@@ -1522,9 +1522,9 @@ export declare const FormDesignSharedImpactSchema: z.ZodObject<{
|
|
|
1522
1522
|
block_count: z.ZodNumber;
|
|
1523
1523
|
}, z.core.$strict>;
|
|
1524
1524
|
export declare const FormDesignOpenResponseSchema: z.ZodObject<{
|
|
1525
|
-
site_id: z.
|
|
1525
|
+
site_id: z.ZodUUID;
|
|
1526
1526
|
form_block_id: z.ZodString;
|
|
1527
|
-
base_snapshot_id: z.
|
|
1527
|
+
base_snapshot_id: z.ZodUUID;
|
|
1528
1528
|
form_spec: z.ZodObject<{
|
|
1529
1529
|
schema_version: z.ZodLiteral<1>;
|
|
1530
1530
|
min_runtime_version: z.ZodNumber;
|
|
@@ -1747,9 +1747,9 @@ export type FormDesignOpenResponse = z.infer<typeof FormDesignOpenResponseSchema
|
|
|
1747
1747
|
export declare const FormDesignSaveRequestSchema: z.ZodObject<{
|
|
1748
1748
|
operation_id: z.ZodString;
|
|
1749
1749
|
operation_fingerprint: z.ZodString;
|
|
1750
|
-
site_id: z.
|
|
1750
|
+
site_id: z.ZodUUID;
|
|
1751
1751
|
form_definition_id: z.ZodString;
|
|
1752
|
-
base_snapshot_id: z.
|
|
1752
|
+
base_snapshot_id: z.ZodUUID;
|
|
1753
1753
|
expected_form_spec_hash: z.ZodString;
|
|
1754
1754
|
expected_cms_schema_hash: z.ZodNullable<z.ZodString>;
|
|
1755
1755
|
draft_form_spec: z.ZodObject<{
|
|
@@ -2040,7 +2040,7 @@ export declare const FormDesignPreviewRefreshStatusSchema: z.ZodEnum<{
|
|
|
2040
2040
|
export declare const FormDesignOperationSchema: z.ZodObject<{
|
|
2041
2041
|
operation_id: z.ZodString;
|
|
2042
2042
|
operation_fingerprint: z.ZodString;
|
|
2043
|
-
site_id: z.
|
|
2043
|
+
site_id: z.ZodUUID;
|
|
2044
2044
|
form_definition_id: z.ZodString;
|
|
2045
2045
|
stage: z.ZodEnum<{
|
|
2046
2046
|
failed: "failed";
|
|
@@ -2061,8 +2061,8 @@ export declare const FormDesignOperationSchema: z.ZodObject<{
|
|
|
2061
2061
|
running: "running";
|
|
2062
2062
|
succeeded: "succeeded";
|
|
2063
2063
|
}>;
|
|
2064
|
-
base_snapshot_id: z.
|
|
2065
|
-
candidate_snapshot_id: z.ZodNullable<z.
|
|
2064
|
+
base_snapshot_id: z.ZodUUID;
|
|
2065
|
+
candidate_snapshot_id: z.ZodNullable<z.ZodUUID>;
|
|
2066
2066
|
before_form_code: z.ZodNullable<z.ZodString>;
|
|
2067
2067
|
materialized_form_code: z.ZodNullable<z.ZodString>;
|
|
2068
2068
|
expected_form_spec_hash: z.ZodString;
|
|
@@ -2117,7 +2117,7 @@ export declare const FormDesignOperationResponseSchema: z.ZodObject<{
|
|
|
2117
2117
|
operation: z.ZodObject<{
|
|
2118
2118
|
operation_id: z.ZodString;
|
|
2119
2119
|
operation_fingerprint: z.ZodString;
|
|
2120
|
-
site_id: z.
|
|
2120
|
+
site_id: z.ZodUUID;
|
|
2121
2121
|
form_definition_id: z.ZodString;
|
|
2122
2122
|
stage: z.ZodEnum<{
|
|
2123
2123
|
failed: "failed";
|
|
@@ -2138,8 +2138,8 @@ export declare const FormDesignOperationResponseSchema: z.ZodObject<{
|
|
|
2138
2138
|
running: "running";
|
|
2139
2139
|
succeeded: "succeeded";
|
|
2140
2140
|
}>;
|
|
2141
|
-
base_snapshot_id: z.
|
|
2142
|
-
candidate_snapshot_id: z.ZodNullable<z.
|
|
2141
|
+
base_snapshot_id: z.ZodUUID;
|
|
2142
|
+
candidate_snapshot_id: z.ZodNullable<z.ZodUUID>;
|
|
2143
2143
|
before_form_code: z.ZodNullable<z.ZodString>;
|
|
2144
2144
|
materialized_form_code: z.ZodNullable<z.ZodString>;
|
|
2145
2145
|
expected_form_spec_hash: z.ZodString;
|
|
@@ -2195,7 +2195,7 @@ export declare const FormDesignSaveResponseSchema: z.ZodObject<{
|
|
|
2195
2195
|
operation: z.ZodObject<{
|
|
2196
2196
|
operation_id: z.ZodString;
|
|
2197
2197
|
operation_fingerprint: z.ZodString;
|
|
2198
|
-
site_id: z.
|
|
2198
|
+
site_id: z.ZodUUID;
|
|
2199
2199
|
form_definition_id: z.ZodString;
|
|
2200
2200
|
stage: z.ZodEnum<{
|
|
2201
2201
|
failed: "failed";
|
|
@@ -2216,8 +2216,8 @@ export declare const FormDesignSaveResponseSchema: z.ZodObject<{
|
|
|
2216
2216
|
running: "running";
|
|
2217
2217
|
succeeded: "succeeded";
|
|
2218
2218
|
}>;
|
|
2219
|
-
base_snapshot_id: z.
|
|
2220
|
-
candidate_snapshot_id: z.ZodNullable<z.
|
|
2219
|
+
base_snapshot_id: z.ZodUUID;
|
|
2220
|
+
candidate_snapshot_id: z.ZodNullable<z.ZodUUID>;
|
|
2221
2221
|
before_form_code: z.ZodNullable<z.ZodString>;
|
|
2222
2222
|
materialized_form_code: z.ZodNullable<z.ZodString>;
|
|
2223
2223
|
expected_form_spec_hash: z.ZodString;
|
|
@@ -2272,7 +2272,7 @@ export declare const FormDesignQueryResponseSchema: z.ZodObject<{
|
|
|
2272
2272
|
operation: z.ZodObject<{
|
|
2273
2273
|
operation_id: z.ZodString;
|
|
2274
2274
|
operation_fingerprint: z.ZodString;
|
|
2275
|
-
site_id: z.
|
|
2275
|
+
site_id: z.ZodUUID;
|
|
2276
2276
|
form_definition_id: z.ZodString;
|
|
2277
2277
|
stage: z.ZodEnum<{
|
|
2278
2278
|
failed: "failed";
|
|
@@ -2293,8 +2293,8 @@ export declare const FormDesignQueryResponseSchema: z.ZodObject<{
|
|
|
2293
2293
|
running: "running";
|
|
2294
2294
|
succeeded: "succeeded";
|
|
2295
2295
|
}>;
|
|
2296
|
-
base_snapshot_id: z.
|
|
2297
|
-
candidate_snapshot_id: z.ZodNullable<z.
|
|
2296
|
+
base_snapshot_id: z.ZodUUID;
|
|
2297
|
+
candidate_snapshot_id: z.ZodNullable<z.ZodUUID>;
|
|
2298
2298
|
before_form_code: z.ZodNullable<z.ZodString>;
|
|
2299
2299
|
materialized_form_code: z.ZodNullable<z.ZodString>;
|
|
2300
2300
|
expected_form_spec_hash: z.ZodString;
|
|
@@ -2355,7 +2355,7 @@ export declare const FormDesignResumeResponseSchema: z.ZodObject<{
|
|
|
2355
2355
|
operation: z.ZodObject<{
|
|
2356
2356
|
operation_id: z.ZodString;
|
|
2357
2357
|
operation_fingerprint: z.ZodString;
|
|
2358
|
-
site_id: z.
|
|
2358
|
+
site_id: z.ZodUUID;
|
|
2359
2359
|
form_definition_id: z.ZodString;
|
|
2360
2360
|
stage: z.ZodEnum<{
|
|
2361
2361
|
failed: "failed";
|
|
@@ -2376,8 +2376,8 @@ export declare const FormDesignResumeResponseSchema: z.ZodObject<{
|
|
|
2376
2376
|
running: "running";
|
|
2377
2377
|
succeeded: "succeeded";
|
|
2378
2378
|
}>;
|
|
2379
|
-
base_snapshot_id: z.
|
|
2380
|
-
candidate_snapshot_id: z.ZodNullable<z.
|
|
2379
|
+
base_snapshot_id: z.ZodUUID;
|
|
2380
|
+
candidate_snapshot_id: z.ZodNullable<z.ZodUUID>;
|
|
2381
2381
|
before_form_code: z.ZodNullable<z.ZodString>;
|
|
2382
2382
|
materialized_form_code: z.ZodNullable<z.ZodString>;
|
|
2383
2383
|
expected_form_spec_hash: z.ZodString;
|
|
@@ -2434,7 +2434,7 @@ export declare const FormDesignOperationRecordSchema: z.ZodObject<{
|
|
|
2434
2434
|
operation: z.ZodObject<{
|
|
2435
2435
|
operation_id: z.ZodString;
|
|
2436
2436
|
operation_fingerprint: z.ZodString;
|
|
2437
|
-
site_id: z.
|
|
2437
|
+
site_id: z.ZodUUID;
|
|
2438
2438
|
form_definition_id: z.ZodString;
|
|
2439
2439
|
stage: z.ZodEnum<{
|
|
2440
2440
|
failed: "failed";
|
|
@@ -2455,8 +2455,8 @@ export declare const FormDesignOperationRecordSchema: z.ZodObject<{
|
|
|
2455
2455
|
running: "running";
|
|
2456
2456
|
succeeded: "succeeded";
|
|
2457
2457
|
}>;
|
|
2458
|
-
base_snapshot_id: z.
|
|
2459
|
-
candidate_snapshot_id: z.ZodNullable<z.
|
|
2458
|
+
base_snapshot_id: z.ZodUUID;
|
|
2459
|
+
candidate_snapshot_id: z.ZodNullable<z.ZodUUID>;
|
|
2460
2460
|
before_form_code: z.ZodNullable<z.ZodString>;
|
|
2461
2461
|
materialized_form_code: z.ZodNullable<z.ZodString>;
|
|
2462
2462
|
expected_form_spec_hash: z.ZodString;
|
|
@@ -2509,9 +2509,9 @@ export declare const FormDesignOperationRecordSchema: z.ZodObject<{
|
|
|
2509
2509
|
request: z.ZodPreprocess<z.ZodObject<{
|
|
2510
2510
|
operation_id: z.ZodString;
|
|
2511
2511
|
operation_fingerprint: z.ZodString;
|
|
2512
|
-
site_id: z.
|
|
2512
|
+
site_id: z.ZodUUID;
|
|
2513
2513
|
form_definition_id: z.ZodString;
|
|
2514
|
-
base_snapshot_id: z.
|
|
2514
|
+
base_snapshot_id: z.ZodUUID;
|
|
2515
2515
|
expected_form_spec_hash: z.ZodString;
|
|
2516
2516
|
expected_cms_schema_hash: z.ZodNullable<z.ZodString>;
|
|
2517
2517
|
draft_form_spec: z.ZodObject<{
|
|
@@ -2759,7 +2759,7 @@ export declare const FormDesignOperationTransitionRequestSchema: z.ZodObject<{
|
|
|
2759
2759
|
running: "running";
|
|
2760
2760
|
succeeded: "succeeded";
|
|
2761
2761
|
}>>;
|
|
2762
|
-
candidate_snapshot_id: z.ZodOptional<z.ZodNullable<z.
|
|
2762
|
+
candidate_snapshot_id: z.ZodOptional<z.ZodNullable<z.ZodUUID>>;
|
|
2763
2763
|
before_form_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2764
2764
|
materialized_form_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2765
2765
|
materialized_form_spec_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|