foundry-design-protocol 0.2.0-beta.21 → 0.2.0-beta.23
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 +6 -4
- package/dist/engineering-verification.d.ts +11 -0
- package/dist/engineering-verification.d.ts.map +1 -0
- package/dist/engineering-verification.js +111 -0
- package/dist/engineering-verification.js.map +1 -0
- package/dist/index.d.ts +432 -174
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +30 -1
- package/dist/index.js.map +1 -1
- package/dist/readiness.d.ts +123 -0
- package/dist/readiness.d.ts.map +1 -0
- package/dist/readiness.js +63 -0
- package/dist/readiness.js.map +1 -0
- package/dist/visual-check.d.ts +289 -0
- package/dist/visual-check.d.ts.map +1 -0
- package/dist/visual-check.js +82 -0
- package/dist/visual-check.js.map +1 -0
- package/package.json +5 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export { verificationValueMatches } from './verification-value.js';
|
|
3
|
+
export * from './readiness.js';
|
|
4
|
+
export * from './visual-check.js';
|
|
5
|
+
export { engineeringVerification, matchingDeliveryCaptures } from './engineering-verification.js';
|
|
3
6
|
export declare const PROTOCOL_VERSION: "1.3.0";
|
|
4
7
|
export declare const PREVIOUS_PROTOCOL_VERSION: "1.2.0";
|
|
5
8
|
export declare const LEGACY_PROTOCOL_VERSION: "1.0.0";
|
|
@@ -10,6 +13,9 @@ export declare const platformSchema: z.ZodEnum<{
|
|
|
10
13
|
"react-native": "react-native";
|
|
11
14
|
}>;
|
|
12
15
|
export declare const changeCategorySchema: z.ZodEnum<{
|
|
16
|
+
responsive: "responsive";
|
|
17
|
+
state: "state";
|
|
18
|
+
motion: "motion";
|
|
13
19
|
layout: "layout";
|
|
14
20
|
spacing: "spacing";
|
|
15
21
|
typography: "typography";
|
|
@@ -20,9 +26,6 @@ export declare const changeCategorySchema: z.ZodEnum<{
|
|
|
20
26
|
asset: "asset";
|
|
21
27
|
visibility: "visibility";
|
|
22
28
|
accessibility: "accessibility";
|
|
23
|
-
responsive: "responsive";
|
|
24
|
-
state: "state";
|
|
25
|
-
motion: "motion";
|
|
26
29
|
}>;
|
|
27
30
|
export declare const scopeSchema: z.ZodEnum<{
|
|
28
31
|
instance: "instance";
|
|
@@ -66,10 +69,10 @@ export declare const sessionContextSchema: z.ZodObject<{
|
|
|
66
69
|
height: z.ZodNumber;
|
|
67
70
|
}, z.core.$strip>>;
|
|
68
71
|
theme: z.ZodDefault<z.ZodEnum<{
|
|
72
|
+
custom: "custom";
|
|
69
73
|
light: "light";
|
|
70
74
|
dark: "dark";
|
|
71
75
|
system: "system";
|
|
72
|
-
custom: "custom";
|
|
73
76
|
}>>;
|
|
74
77
|
breakpoint: z.ZodDefault<z.ZodString>;
|
|
75
78
|
state: z.ZodDefault<z.ZodString>;
|
|
@@ -119,6 +122,9 @@ export declare const targetRefSchema: z.ZodObject<{
|
|
|
119
122
|
export declare const controlDescriptorSchema: z.ZodObject<{
|
|
120
123
|
id: z.ZodString;
|
|
121
124
|
category: z.ZodEnum<{
|
|
125
|
+
responsive: "responsive";
|
|
126
|
+
state: "state";
|
|
127
|
+
motion: "motion";
|
|
122
128
|
layout: "layout";
|
|
123
129
|
spacing: "spacing";
|
|
124
130
|
typography: "typography";
|
|
@@ -129,9 +135,6 @@ export declare const controlDescriptorSchema: z.ZodObject<{
|
|
|
129
135
|
asset: "asset";
|
|
130
136
|
visibility: "visibility";
|
|
131
137
|
accessibility: "accessibility";
|
|
132
|
-
responsive: "responsive";
|
|
133
|
-
state: "state";
|
|
134
|
-
motion: "motion";
|
|
135
138
|
}>;
|
|
136
139
|
property: z.ZodString;
|
|
137
140
|
label: z.ZodString;
|
|
@@ -140,9 +143,9 @@ export declare const controlDescriptorSchema: z.ZodObject<{
|
|
|
140
143
|
number: "number";
|
|
141
144
|
boolean: "boolean";
|
|
142
145
|
length: "length";
|
|
146
|
+
motion: "motion";
|
|
143
147
|
color: "color";
|
|
144
148
|
asset: "asset";
|
|
145
|
-
motion: "motion";
|
|
146
149
|
select: "select";
|
|
147
150
|
}>;
|
|
148
151
|
value: z.ZodUnknown;
|
|
@@ -167,16 +170,25 @@ export declare const designTokenSchema: z.ZodObject<{
|
|
|
167
170
|
name: z.ZodString;
|
|
168
171
|
value: z.ZodString;
|
|
169
172
|
category: z.ZodEnum<{
|
|
173
|
+
motion: "motion";
|
|
170
174
|
spacing: "spacing";
|
|
171
175
|
typography: "typography";
|
|
172
176
|
color: "color";
|
|
173
|
-
motion: "motion";
|
|
174
177
|
size: "size";
|
|
175
178
|
radius: "radius";
|
|
176
179
|
shadow: "shadow";
|
|
177
180
|
other: "other";
|
|
178
181
|
}>;
|
|
179
182
|
cssVariable: z.ZodOptional<z.ZodString>;
|
|
183
|
+
declarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
184
|
+
value: z.ZodString;
|
|
185
|
+
source: z.ZodObject<{
|
|
186
|
+
file: z.ZodString;
|
|
187
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
188
|
+
column: z.ZodOptional<z.ZodNumber>;
|
|
189
|
+
symbol: z.ZodOptional<z.ZodString>;
|
|
190
|
+
}, z.core.$strip>;
|
|
191
|
+
}, z.core.$strip>>>;
|
|
180
192
|
aliasOfTokenId: z.ZodOptional<z.ZodString>;
|
|
181
193
|
aliasOfTokenName: z.ZodOptional<z.ZodString>;
|
|
182
194
|
resolvedValue: z.ZodOptional<z.ZodString>;
|
|
@@ -205,10 +217,10 @@ export declare const tokenPromotionCandidateSchema: z.ZodObject<{
|
|
|
205
217
|
id: z.ZodString;
|
|
206
218
|
value: z.ZodString;
|
|
207
219
|
category: z.ZodEnum<{
|
|
220
|
+
motion: "motion";
|
|
208
221
|
spacing: "spacing";
|
|
209
222
|
typography: "typography";
|
|
210
223
|
color: "color";
|
|
211
|
-
motion: "motion";
|
|
212
224
|
size: "size";
|
|
213
225
|
radius: "radius";
|
|
214
226
|
shadow: "shadow";
|
|
@@ -441,10 +453,10 @@ export declare const designTokenUsageSchema: z.ZodObject<{
|
|
|
441
453
|
tokenName: z.ZodString;
|
|
442
454
|
value: z.ZodString;
|
|
443
455
|
category: z.ZodEnum<{
|
|
456
|
+
motion: "motion";
|
|
444
457
|
spacing: "spacing";
|
|
445
458
|
typography: "typography";
|
|
446
459
|
color: "color";
|
|
447
|
-
motion: "motion";
|
|
448
460
|
size: "size";
|
|
449
461
|
radius: "radius";
|
|
450
462
|
shadow: "shadow";
|
|
@@ -474,16 +486,16 @@ export declare const designSystemFindingSchema: z.ZodObject<{
|
|
|
474
486
|
"component-drift": "component-drift";
|
|
475
487
|
}>;
|
|
476
488
|
severity: z.ZodDefault<z.ZodEnum<{
|
|
477
|
-
info: "info";
|
|
478
489
|
warning: "warning";
|
|
490
|
+
info: "info";
|
|
479
491
|
}>>;
|
|
480
492
|
title: z.ZodString;
|
|
481
493
|
detail: z.ZodString;
|
|
482
494
|
category: z.ZodOptional<z.ZodEnum<{
|
|
495
|
+
motion: "motion";
|
|
483
496
|
spacing: "spacing";
|
|
484
497
|
typography: "typography";
|
|
485
498
|
color: "color";
|
|
486
|
-
motion: "motion";
|
|
487
499
|
size: "size";
|
|
488
500
|
radius: "radius";
|
|
489
501
|
shadow: "shadow";
|
|
@@ -510,16 +522,25 @@ export declare const projectDesignGraphSchema: z.ZodPipe<z.ZodObject<{
|
|
|
510
522
|
name: z.ZodString;
|
|
511
523
|
value: z.ZodString;
|
|
512
524
|
category: z.ZodEnum<{
|
|
525
|
+
motion: "motion";
|
|
513
526
|
spacing: "spacing";
|
|
514
527
|
typography: "typography";
|
|
515
528
|
color: "color";
|
|
516
|
-
motion: "motion";
|
|
517
529
|
size: "size";
|
|
518
530
|
radius: "radius";
|
|
519
531
|
shadow: "shadow";
|
|
520
532
|
other: "other";
|
|
521
533
|
}>;
|
|
522
534
|
cssVariable: z.ZodOptional<z.ZodString>;
|
|
535
|
+
declarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
536
|
+
value: z.ZodString;
|
|
537
|
+
source: z.ZodObject<{
|
|
538
|
+
file: z.ZodString;
|
|
539
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
540
|
+
column: z.ZodOptional<z.ZodNumber>;
|
|
541
|
+
symbol: z.ZodOptional<z.ZodString>;
|
|
542
|
+
}, z.core.$strip>;
|
|
543
|
+
}, z.core.$strip>>>;
|
|
523
544
|
aliasOfTokenId: z.ZodOptional<z.ZodString>;
|
|
524
545
|
aliasOfTokenName: z.ZodOptional<z.ZodString>;
|
|
525
546
|
resolvedValue: z.ZodOptional<z.ZodString>;
|
|
@@ -704,10 +725,10 @@ export declare const projectDesignGraphSchema: z.ZodPipe<z.ZodObject<{
|
|
|
704
725
|
tokenName: z.ZodString;
|
|
705
726
|
value: z.ZodString;
|
|
706
727
|
category: z.ZodEnum<{
|
|
728
|
+
motion: "motion";
|
|
707
729
|
spacing: "spacing";
|
|
708
730
|
typography: "typography";
|
|
709
731
|
color: "color";
|
|
710
|
-
motion: "motion";
|
|
711
732
|
size: "size";
|
|
712
733
|
radius: "radius";
|
|
713
734
|
shadow: "shadow";
|
|
@@ -737,16 +758,16 @@ export declare const projectDesignGraphSchema: z.ZodPipe<z.ZodObject<{
|
|
|
737
758
|
"component-drift": "component-drift";
|
|
738
759
|
}>;
|
|
739
760
|
severity: z.ZodDefault<z.ZodEnum<{
|
|
740
|
-
info: "info";
|
|
741
761
|
warning: "warning";
|
|
762
|
+
info: "info";
|
|
742
763
|
}>>;
|
|
743
764
|
title: z.ZodString;
|
|
744
765
|
detail: z.ZodString;
|
|
745
766
|
category: z.ZodOptional<z.ZodEnum<{
|
|
767
|
+
motion: "motion";
|
|
746
768
|
spacing: "spacing";
|
|
747
769
|
typography: "typography";
|
|
748
770
|
color: "color";
|
|
749
|
-
motion: "motion";
|
|
750
771
|
size: "size";
|
|
751
772
|
radius: "radius";
|
|
752
773
|
shadow: "shadow";
|
|
@@ -768,10 +789,10 @@ export declare const projectDesignGraphSchema: z.ZodPipe<z.ZodObject<{
|
|
|
768
789
|
id: z.ZodString;
|
|
769
790
|
value: z.ZodString;
|
|
770
791
|
category: z.ZodEnum<{
|
|
792
|
+
motion: "motion";
|
|
771
793
|
spacing: "spacing";
|
|
772
794
|
typography: "typography";
|
|
773
795
|
color: "color";
|
|
774
|
-
motion: "motion";
|
|
775
796
|
size: "size";
|
|
776
797
|
radius: "radius";
|
|
777
798
|
shadow: "shadow";
|
|
@@ -811,10 +832,19 @@ export declare const projectDesignGraphSchema: z.ZodPipe<z.ZodObject<{
|
|
|
811
832
|
id: string;
|
|
812
833
|
name: string;
|
|
813
834
|
value: string;
|
|
814
|
-
category: "
|
|
835
|
+
category: "motion" | "spacing" | "typography" | "color" | "size" | "radius" | "shadow" | "other";
|
|
815
836
|
confidence: "measured" | "instrumented" | "inferred" | "unresolved";
|
|
816
837
|
evidence: string[];
|
|
817
838
|
cssVariable?: string | undefined;
|
|
839
|
+
declarations?: {
|
|
840
|
+
value: string;
|
|
841
|
+
source: {
|
|
842
|
+
file: string;
|
|
843
|
+
line?: number | undefined;
|
|
844
|
+
column?: number | undefined;
|
|
845
|
+
symbol?: string | undefined;
|
|
846
|
+
};
|
|
847
|
+
}[] | undefined;
|
|
818
848
|
aliasOfTokenId?: string | undefined;
|
|
819
849
|
aliasOfTokenName?: string | undefined;
|
|
820
850
|
resolvedValue?: string | undefined;
|
|
@@ -936,7 +966,7 @@ export declare const projectDesignGraphSchema: z.ZodPipe<z.ZodObject<{
|
|
|
936
966
|
tokenId: string;
|
|
937
967
|
tokenName: string;
|
|
938
968
|
value: string;
|
|
939
|
-
category: "
|
|
969
|
+
category: "motion" | "spacing" | "typography" | "color" | "size" | "radius" | "shadow" | "other";
|
|
940
970
|
kind: "literal" | "reference" | "alias";
|
|
941
971
|
source: {
|
|
942
972
|
file: string;
|
|
@@ -951,14 +981,14 @@ export declare const projectDesignGraphSchema: z.ZodPipe<z.ZodObject<{
|
|
|
951
981
|
designSystemFindings: {
|
|
952
982
|
id: string;
|
|
953
983
|
kind: "near-duplicate" | "literal-drift" | "unused-token" | "component-drift";
|
|
954
|
-
severity: "
|
|
984
|
+
severity: "warning" | "info";
|
|
955
985
|
title: string;
|
|
956
986
|
detail: string;
|
|
957
987
|
tokenIds: string[];
|
|
958
988
|
usageIds: string[];
|
|
959
989
|
componentIds: string[];
|
|
960
990
|
evidence: string[];
|
|
961
|
-
category?: "
|
|
991
|
+
category?: "motion" | "spacing" | "typography" | "color" | "size" | "radius" | "shadow" | "other" | undefined;
|
|
962
992
|
suggestedTokenId?: string | undefined;
|
|
963
993
|
source?: {
|
|
964
994
|
file: string;
|
|
@@ -988,7 +1018,7 @@ export declare const projectDesignGraphSchema: z.ZodPipe<z.ZodObject<{
|
|
|
988
1018
|
tokenPromotions?: {
|
|
989
1019
|
id: string;
|
|
990
1020
|
value: string;
|
|
991
|
-
category: "
|
|
1021
|
+
category: "motion" | "spacing" | "typography" | "color" | "size" | "radius" | "shadow" | "other";
|
|
992
1022
|
property: string;
|
|
993
1023
|
occurrenceCount: number;
|
|
994
1024
|
sources: {
|
|
@@ -1015,10 +1045,19 @@ export declare const projectDesignGraphSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1015
1045
|
id: string;
|
|
1016
1046
|
name: string;
|
|
1017
1047
|
value: string;
|
|
1018
|
-
category: "
|
|
1048
|
+
category: "motion" | "spacing" | "typography" | "color" | "size" | "radius" | "shadow" | "other";
|
|
1019
1049
|
confidence: "measured" | "instrumented" | "inferred" | "unresolved";
|
|
1020
1050
|
evidence: string[];
|
|
1021
1051
|
cssVariable?: string | undefined;
|
|
1052
|
+
declarations?: {
|
|
1053
|
+
value: string;
|
|
1054
|
+
source: {
|
|
1055
|
+
file: string;
|
|
1056
|
+
line?: number | undefined;
|
|
1057
|
+
column?: number | undefined;
|
|
1058
|
+
symbol?: string | undefined;
|
|
1059
|
+
};
|
|
1060
|
+
}[] | undefined;
|
|
1022
1061
|
aliasOfTokenId?: string | undefined;
|
|
1023
1062
|
aliasOfTokenName?: string | undefined;
|
|
1024
1063
|
resolvedValue?: string | undefined;
|
|
@@ -1140,7 +1179,7 @@ export declare const projectDesignGraphSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1140
1179
|
tokenId: string;
|
|
1141
1180
|
tokenName: string;
|
|
1142
1181
|
value: string;
|
|
1143
|
-
category: "
|
|
1182
|
+
category: "motion" | "spacing" | "typography" | "color" | "size" | "radius" | "shadow" | "other";
|
|
1144
1183
|
kind: "literal" | "reference" | "alias";
|
|
1145
1184
|
source: {
|
|
1146
1185
|
file: string;
|
|
@@ -1155,14 +1194,14 @@ export declare const projectDesignGraphSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1155
1194
|
designSystemFindings: {
|
|
1156
1195
|
id: string;
|
|
1157
1196
|
kind: "near-duplicate" | "literal-drift" | "unused-token" | "component-drift";
|
|
1158
|
-
severity: "
|
|
1197
|
+
severity: "warning" | "info";
|
|
1159
1198
|
title: string;
|
|
1160
1199
|
detail: string;
|
|
1161
1200
|
tokenIds: string[];
|
|
1162
1201
|
usageIds: string[];
|
|
1163
1202
|
componentIds: string[];
|
|
1164
1203
|
evidence: string[];
|
|
1165
|
-
category?: "
|
|
1204
|
+
category?: "motion" | "spacing" | "typography" | "color" | "size" | "radius" | "shadow" | "other" | undefined;
|
|
1166
1205
|
suggestedTokenId?: string | undefined;
|
|
1167
1206
|
source?: {
|
|
1168
1207
|
file: string;
|
|
@@ -1192,7 +1231,7 @@ export declare const projectDesignGraphSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1192
1231
|
tokenPromotions?: {
|
|
1193
1232
|
id: string;
|
|
1194
1233
|
value: string;
|
|
1195
|
-
category: "
|
|
1234
|
+
category: "motion" | "spacing" | "typography" | "color" | "size" | "radius" | "shadow" | "other";
|
|
1196
1235
|
property: string;
|
|
1197
1236
|
occurrenceCount: number;
|
|
1198
1237
|
sources: {
|
|
@@ -1217,10 +1256,10 @@ export declare const sourceMappingCandidateSchema: z.ZodObject<{
|
|
|
1217
1256
|
id: z.ZodString;
|
|
1218
1257
|
label: z.ZodString;
|
|
1219
1258
|
intent: z.ZodEnum<{
|
|
1220
|
-
spacing: "spacing";
|
|
1221
|
-
content: "content";
|
|
1222
1259
|
state: "state";
|
|
1223
1260
|
motion: "motion";
|
|
1261
|
+
spacing: "spacing";
|
|
1262
|
+
content: "content";
|
|
1224
1263
|
resize: "resize";
|
|
1225
1264
|
align: "align";
|
|
1226
1265
|
distribute: "distribute";
|
|
@@ -1255,10 +1294,10 @@ export declare const sourceMappingCandidateSchema: z.ZodObject<{
|
|
|
1255
1294
|
export declare const designOperationSchema: z.ZodObject<{
|
|
1256
1295
|
id: z.ZodString;
|
|
1257
1296
|
kind: z.ZodEnum<{
|
|
1258
|
-
spacing: "spacing";
|
|
1259
|
-
content: "content";
|
|
1260
1297
|
state: "state";
|
|
1261
1298
|
motion: "motion";
|
|
1299
|
+
spacing: "spacing";
|
|
1300
|
+
content: "content";
|
|
1262
1301
|
resize: "resize";
|
|
1263
1302
|
align: "align";
|
|
1264
1303
|
distribute: "distribute";
|
|
@@ -1274,10 +1313,10 @@ export declare const designOperationSchema: z.ZodObject<{
|
|
|
1274
1313
|
id: z.ZodString;
|
|
1275
1314
|
label: z.ZodString;
|
|
1276
1315
|
intent: z.ZodEnum<{
|
|
1277
|
-
spacing: "spacing";
|
|
1278
|
-
content: "content";
|
|
1279
1316
|
state: "state";
|
|
1280
1317
|
motion: "motion";
|
|
1318
|
+
spacing: "spacing";
|
|
1319
|
+
content: "content";
|
|
1281
1320
|
resize: "resize";
|
|
1282
1321
|
align: "align";
|
|
1283
1322
|
distribute: "distribute";
|
|
@@ -1353,6 +1392,9 @@ export declare const designChangeSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1353
1392
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1354
1393
|
}, z.core.$strip>;
|
|
1355
1394
|
category: z.ZodEnum<{
|
|
1395
|
+
responsive: "responsive";
|
|
1396
|
+
state: "state";
|
|
1397
|
+
motion: "motion";
|
|
1356
1398
|
layout: "layout";
|
|
1357
1399
|
spacing: "spacing";
|
|
1358
1400
|
typography: "typography";
|
|
@@ -1363,9 +1405,6 @@ export declare const designChangeSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1363
1405
|
asset: "asset";
|
|
1364
1406
|
visibility: "visibility";
|
|
1365
1407
|
accessibility: "accessibility";
|
|
1366
|
-
responsive: "responsive";
|
|
1367
|
-
state: "state";
|
|
1368
|
-
motion: "motion";
|
|
1369
1408
|
}>;
|
|
1370
1409
|
property: z.ZodString;
|
|
1371
1410
|
before: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
@@ -1378,10 +1417,10 @@ export declare const designChangeSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1378
1417
|
id: z.ZodString;
|
|
1379
1418
|
label: z.ZodString;
|
|
1380
1419
|
intent: z.ZodEnum<{
|
|
1381
|
-
spacing: "spacing";
|
|
1382
|
-
content: "content";
|
|
1383
1420
|
state: "state";
|
|
1384
1421
|
motion: "motion";
|
|
1422
|
+
spacing: "spacing";
|
|
1423
|
+
content: "content";
|
|
1385
1424
|
resize: "resize";
|
|
1386
1425
|
align: "align";
|
|
1387
1426
|
distribute: "distribute";
|
|
@@ -1475,7 +1514,7 @@ export declare const designChangeSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1475
1514
|
symbol?: string | undefined;
|
|
1476
1515
|
} | undefined;
|
|
1477
1516
|
};
|
|
1478
|
-
category: "
|
|
1517
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
1479
1518
|
property: string;
|
|
1480
1519
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
1481
1520
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -1483,7 +1522,7 @@ export declare const designChangeSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1483
1522
|
mappingCandidates: {
|
|
1484
1523
|
id: string;
|
|
1485
1524
|
label: string;
|
|
1486
|
-
intent: "
|
|
1525
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
1487
1526
|
property: string;
|
|
1488
1527
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
1489
1528
|
scope: "instance" | "variant" | "component";
|
|
@@ -1538,7 +1577,7 @@ export declare const designChangeSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1538
1577
|
symbol?: string | undefined;
|
|
1539
1578
|
} | undefined;
|
|
1540
1579
|
};
|
|
1541
|
-
category: "
|
|
1580
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
1542
1581
|
property: string;
|
|
1543
1582
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
1544
1583
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -1546,7 +1585,7 @@ export declare const designChangeSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1546
1585
|
mappingCandidates: {
|
|
1547
1586
|
id: string;
|
|
1548
1587
|
label: string;
|
|
1549
|
-
intent: "
|
|
1588
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
1550
1589
|
property: string;
|
|
1551
1590
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
1552
1591
|
scope: "instance" | "variant" | "component";
|
|
@@ -1582,6 +1621,33 @@ export declare const designChangeSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1582
1621
|
states: string[];
|
|
1583
1622
|
} | undefined;
|
|
1584
1623
|
}>>;
|
|
1624
|
+
export declare const deliveryCaptureProvenanceSchema: z.ZodObject<{
|
|
1625
|
+
version: z.ZodLiteral<1>;
|
|
1626
|
+
phase: z.ZodEnum<{
|
|
1627
|
+
preview: "preview";
|
|
1628
|
+
before: "before";
|
|
1629
|
+
rebuilt: "rebuilt";
|
|
1630
|
+
}>;
|
|
1631
|
+
context: z.ZodObject<{
|
|
1632
|
+
breakpoint: z.ZodDefault<z.ZodString>;
|
|
1633
|
+
theme: z.ZodDefault<z.ZodString>;
|
|
1634
|
+
state: z.ZodDefault<z.ZodString>;
|
|
1635
|
+
}, z.core.$strip>;
|
|
1636
|
+
viewport: z.ZodObject<{
|
|
1637
|
+
width: z.ZodNumber;
|
|
1638
|
+
height: z.ZodNumber;
|
|
1639
|
+
}, z.core.$strip>;
|
|
1640
|
+
sourceRevision: z.ZodOptional<z.ZodString>;
|
|
1641
|
+
applyRunId: z.ZodOptional<z.ZodString>;
|
|
1642
|
+
targetId: z.ZodOptional<z.ZodString>;
|
|
1643
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
1644
|
+
conditions: z.ZodOptional<z.ZodObject<{
|
|
1645
|
+
motion: z.ZodString;
|
|
1646
|
+
browser: z.ZodString;
|
|
1647
|
+
platform: z.ZodString;
|
|
1648
|
+
deviceScaleFactor: z.ZodNumber;
|
|
1649
|
+
}, z.core.$strip>>;
|
|
1650
|
+
}, z.core.$strip>;
|
|
1585
1651
|
export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
1586
1652
|
protocolVersion: z.ZodEnum<{
|
|
1587
1653
|
"1.3.0": "1.3.0";
|
|
@@ -1608,10 +1674,10 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1608
1674
|
height: z.ZodNumber;
|
|
1609
1675
|
}, z.core.$strip>>;
|
|
1610
1676
|
theme: z.ZodDefault<z.ZodEnum<{
|
|
1677
|
+
custom: "custom";
|
|
1611
1678
|
light: "light";
|
|
1612
1679
|
dark: "dark";
|
|
1613
1680
|
system: "system";
|
|
1614
|
-
custom: "custom";
|
|
1615
1681
|
}>>;
|
|
1616
1682
|
breakpoint: z.ZodDefault<z.ZodString>;
|
|
1617
1683
|
state: z.ZodDefault<z.ZodString>;
|
|
@@ -1651,6 +1717,9 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1651
1717
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1652
1718
|
}, z.core.$strip>;
|
|
1653
1719
|
category: z.ZodEnum<{
|
|
1720
|
+
responsive: "responsive";
|
|
1721
|
+
state: "state";
|
|
1722
|
+
motion: "motion";
|
|
1654
1723
|
layout: "layout";
|
|
1655
1724
|
spacing: "spacing";
|
|
1656
1725
|
typography: "typography";
|
|
@@ -1661,9 +1730,6 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1661
1730
|
asset: "asset";
|
|
1662
1731
|
visibility: "visibility";
|
|
1663
1732
|
accessibility: "accessibility";
|
|
1664
|
-
responsive: "responsive";
|
|
1665
|
-
state: "state";
|
|
1666
|
-
motion: "motion";
|
|
1667
1733
|
}>;
|
|
1668
1734
|
property: z.ZodString;
|
|
1669
1735
|
before: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
@@ -1676,10 +1742,10 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1676
1742
|
id: z.ZodString;
|
|
1677
1743
|
label: z.ZodString;
|
|
1678
1744
|
intent: z.ZodEnum<{
|
|
1679
|
-
spacing: "spacing";
|
|
1680
|
-
content: "content";
|
|
1681
1745
|
state: "state";
|
|
1682
1746
|
motion: "motion";
|
|
1747
|
+
spacing: "spacing";
|
|
1748
|
+
content: "content";
|
|
1683
1749
|
resize: "resize";
|
|
1684
1750
|
align: "align";
|
|
1685
1751
|
distribute: "distribute";
|
|
@@ -1773,7 +1839,7 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1773
1839
|
symbol?: string | undefined;
|
|
1774
1840
|
} | undefined;
|
|
1775
1841
|
};
|
|
1776
|
-
category: "
|
|
1842
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
1777
1843
|
property: string;
|
|
1778
1844
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
1779
1845
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -1781,7 +1847,7 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1781
1847
|
mappingCandidates: {
|
|
1782
1848
|
id: string;
|
|
1783
1849
|
label: string;
|
|
1784
|
-
intent: "
|
|
1850
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
1785
1851
|
property: string;
|
|
1786
1852
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
1787
1853
|
scope: "instance" | "variant" | "component";
|
|
@@ -1836,7 +1902,7 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1836
1902
|
symbol?: string | undefined;
|
|
1837
1903
|
} | undefined;
|
|
1838
1904
|
};
|
|
1839
|
-
category: "
|
|
1905
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
1840
1906
|
property: string;
|
|
1841
1907
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
1842
1908
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -1844,7 +1910,7 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1844
1910
|
mappingCandidates: {
|
|
1845
1911
|
id: string;
|
|
1846
1912
|
label: string;
|
|
1847
|
-
intent: "
|
|
1913
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
1848
1914
|
property: string;
|
|
1849
1915
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
1850
1916
|
scope: "instance" | "variant" | "component";
|
|
@@ -1883,10 +1949,10 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1883
1949
|
operations: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1884
1950
|
id: z.ZodString;
|
|
1885
1951
|
kind: z.ZodEnum<{
|
|
1886
|
-
spacing: "spacing";
|
|
1887
|
-
content: "content";
|
|
1888
1952
|
state: "state";
|
|
1889
1953
|
motion: "motion";
|
|
1954
|
+
spacing: "spacing";
|
|
1955
|
+
content: "content";
|
|
1890
1956
|
resize: "resize";
|
|
1891
1957
|
align: "align";
|
|
1892
1958
|
distribute: "distribute";
|
|
@@ -1902,10 +1968,10 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1902
1968
|
id: z.ZodString;
|
|
1903
1969
|
label: z.ZodString;
|
|
1904
1970
|
intent: z.ZodEnum<{
|
|
1905
|
-
spacing: "spacing";
|
|
1906
|
-
content: "content";
|
|
1907
1971
|
state: "state";
|
|
1908
1972
|
motion: "motion";
|
|
1973
|
+
spacing: "spacing";
|
|
1974
|
+
content: "content";
|
|
1909
1975
|
resize: "resize";
|
|
1910
1976
|
align: "align";
|
|
1911
1977
|
distribute: "distribute";
|
|
@@ -1951,6 +2017,33 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1951
2017
|
label: z.ZodString;
|
|
1952
2018
|
path: z.ZodString;
|
|
1953
2019
|
createdAt: z.ZodString;
|
|
2020
|
+
capture: z.ZodOptional<z.ZodObject<{
|
|
2021
|
+
version: z.ZodLiteral<1>;
|
|
2022
|
+
phase: z.ZodEnum<{
|
|
2023
|
+
preview: "preview";
|
|
2024
|
+
before: "before";
|
|
2025
|
+
rebuilt: "rebuilt";
|
|
2026
|
+
}>;
|
|
2027
|
+
context: z.ZodObject<{
|
|
2028
|
+
breakpoint: z.ZodDefault<z.ZodString>;
|
|
2029
|
+
theme: z.ZodDefault<z.ZodString>;
|
|
2030
|
+
state: z.ZodDefault<z.ZodString>;
|
|
2031
|
+
}, z.core.$strip>;
|
|
2032
|
+
viewport: z.ZodObject<{
|
|
2033
|
+
width: z.ZodNumber;
|
|
2034
|
+
height: z.ZodNumber;
|
|
2035
|
+
}, z.core.$strip>;
|
|
2036
|
+
sourceRevision: z.ZodOptional<z.ZodString>;
|
|
2037
|
+
applyRunId: z.ZodOptional<z.ZodString>;
|
|
2038
|
+
targetId: z.ZodOptional<z.ZodString>;
|
|
2039
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
2040
|
+
conditions: z.ZodOptional<z.ZodObject<{
|
|
2041
|
+
motion: z.ZodString;
|
|
2042
|
+
browser: z.ZodString;
|
|
2043
|
+
platform: z.ZodString;
|
|
2044
|
+
deviceScaleFactor: z.ZodNumber;
|
|
2045
|
+
}, z.core.$strip>>;
|
|
2046
|
+
}, z.core.$strip>>;
|
|
1954
2047
|
}, z.core.$strip>>>;
|
|
1955
2048
|
createdAt: z.ZodString;
|
|
1956
2049
|
updatedAt: z.ZodString;
|
|
@@ -1960,7 +2053,7 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1960
2053
|
context: {
|
|
1961
2054
|
projectRoot: string;
|
|
1962
2055
|
platform: "web" | "swiftui" | "react-native";
|
|
1963
|
-
theme: "
|
|
2056
|
+
theme: "custom" | "light" | "dark" | "system";
|
|
1964
2057
|
breakpoint: string;
|
|
1965
2058
|
state: string;
|
|
1966
2059
|
revision?: string | undefined;
|
|
@@ -2004,7 +2097,7 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2004
2097
|
symbol?: string | undefined;
|
|
2005
2098
|
} | undefined;
|
|
2006
2099
|
};
|
|
2007
|
-
category: "
|
|
2100
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
2008
2101
|
property: string;
|
|
2009
2102
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
2010
2103
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -2012,7 +2105,7 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2012
2105
|
mappingCandidates: {
|
|
2013
2106
|
id: string;
|
|
2014
2107
|
label: string;
|
|
2015
|
-
intent: "
|
|
2108
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
2016
2109
|
property: string;
|
|
2017
2110
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
2018
2111
|
scope: "instance" | "variant" | "component";
|
|
@@ -2045,7 +2138,7 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2045
2138
|
}[];
|
|
2046
2139
|
operations: {
|
|
2047
2140
|
id: string;
|
|
2048
|
-
kind: "
|
|
2141
|
+
kind: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "style" | "component-variant" | "token-refactor";
|
|
2049
2142
|
label: string;
|
|
2050
2143
|
targetIds: string[];
|
|
2051
2144
|
changeIds: string[];
|
|
@@ -2053,7 +2146,7 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2053
2146
|
mappingCandidates: {
|
|
2054
2147
|
id: string;
|
|
2055
2148
|
label: string;
|
|
2056
|
-
intent: "
|
|
2149
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
2057
2150
|
property: string;
|
|
2058
2151
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
2059
2152
|
scope: "instance" | "variant" | "component";
|
|
@@ -2077,6 +2170,29 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2077
2170
|
label: string;
|
|
2078
2171
|
path: string;
|
|
2079
2172
|
createdAt: string;
|
|
2173
|
+
capture?: {
|
|
2174
|
+
version: 1;
|
|
2175
|
+
phase: "preview" | "before" | "rebuilt";
|
|
2176
|
+
context: {
|
|
2177
|
+
breakpoint: string;
|
|
2178
|
+
theme: string;
|
|
2179
|
+
state: string;
|
|
2180
|
+
};
|
|
2181
|
+
viewport: {
|
|
2182
|
+
width: number;
|
|
2183
|
+
height: number;
|
|
2184
|
+
};
|
|
2185
|
+
sourceRevision?: string | undefined;
|
|
2186
|
+
applyRunId?: string | undefined;
|
|
2187
|
+
targetId?: string | undefined;
|
|
2188
|
+
sha256?: string | undefined;
|
|
2189
|
+
conditions?: {
|
|
2190
|
+
motion: string;
|
|
2191
|
+
browser: string;
|
|
2192
|
+
platform: string;
|
|
2193
|
+
deviceScaleFactor: number;
|
|
2194
|
+
} | undefined;
|
|
2195
|
+
} | undefined;
|
|
2080
2196
|
}[];
|
|
2081
2197
|
createdAt: string;
|
|
2082
2198
|
updatedAt: string;
|
|
@@ -2087,7 +2203,7 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2087
2203
|
context: {
|
|
2088
2204
|
projectRoot: string;
|
|
2089
2205
|
platform: "web" | "swiftui" | "react-native";
|
|
2090
|
-
theme: "
|
|
2206
|
+
theme: "custom" | "light" | "dark" | "system";
|
|
2091
2207
|
breakpoint: string;
|
|
2092
2208
|
state: string;
|
|
2093
2209
|
revision?: string | undefined;
|
|
@@ -2131,7 +2247,7 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2131
2247
|
symbol?: string | undefined;
|
|
2132
2248
|
} | undefined;
|
|
2133
2249
|
};
|
|
2134
|
-
category: "
|
|
2250
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
2135
2251
|
property: string;
|
|
2136
2252
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
2137
2253
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -2139,7 +2255,7 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2139
2255
|
mappingCandidates: {
|
|
2140
2256
|
id: string;
|
|
2141
2257
|
label: string;
|
|
2142
|
-
intent: "
|
|
2258
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
2143
2259
|
property: string;
|
|
2144
2260
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
2145
2261
|
scope: "instance" | "variant" | "component";
|
|
@@ -2172,7 +2288,7 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2172
2288
|
}[];
|
|
2173
2289
|
operations: {
|
|
2174
2290
|
id: string;
|
|
2175
|
-
kind: "
|
|
2291
|
+
kind: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "style" | "component-variant" | "token-refactor";
|
|
2176
2292
|
label: string;
|
|
2177
2293
|
targetIds: string[];
|
|
2178
2294
|
changeIds: string[];
|
|
@@ -2180,7 +2296,7 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2180
2296
|
mappingCandidates: {
|
|
2181
2297
|
id: string;
|
|
2182
2298
|
label: string;
|
|
2183
|
-
intent: "
|
|
2299
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
2184
2300
|
property: string;
|
|
2185
2301
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
2186
2302
|
scope: "instance" | "variant" | "component";
|
|
@@ -2204,6 +2320,29 @@ export declare const changeSetSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2204
2320
|
label: string;
|
|
2205
2321
|
path: string;
|
|
2206
2322
|
createdAt: string;
|
|
2323
|
+
capture?: {
|
|
2324
|
+
version: 1;
|
|
2325
|
+
phase: "preview" | "before" | "rebuilt";
|
|
2326
|
+
context: {
|
|
2327
|
+
breakpoint: string;
|
|
2328
|
+
theme: string;
|
|
2329
|
+
state: string;
|
|
2330
|
+
};
|
|
2331
|
+
viewport: {
|
|
2332
|
+
width: number;
|
|
2333
|
+
height: number;
|
|
2334
|
+
};
|
|
2335
|
+
sourceRevision?: string | undefined;
|
|
2336
|
+
applyRunId?: string | undefined;
|
|
2337
|
+
targetId?: string | undefined;
|
|
2338
|
+
sha256?: string | undefined;
|
|
2339
|
+
conditions?: {
|
|
2340
|
+
motion: string;
|
|
2341
|
+
browser: string;
|
|
2342
|
+
platform: string;
|
|
2343
|
+
deviceScaleFactor: number;
|
|
2344
|
+
} | undefined;
|
|
2345
|
+
} | undefined;
|
|
2207
2346
|
}[];
|
|
2208
2347
|
createdAt: string;
|
|
2209
2348
|
updatedAt: string;
|
|
@@ -2254,6 +2393,9 @@ export declare const designBranchSchema: z.ZodObject<{
|
|
|
2254
2393
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2255
2394
|
}, z.core.$strip>;
|
|
2256
2395
|
category: z.ZodEnum<{
|
|
2396
|
+
responsive: "responsive";
|
|
2397
|
+
state: "state";
|
|
2398
|
+
motion: "motion";
|
|
2257
2399
|
layout: "layout";
|
|
2258
2400
|
spacing: "spacing";
|
|
2259
2401
|
typography: "typography";
|
|
@@ -2264,9 +2406,6 @@ export declare const designBranchSchema: z.ZodObject<{
|
|
|
2264
2406
|
asset: "asset";
|
|
2265
2407
|
visibility: "visibility";
|
|
2266
2408
|
accessibility: "accessibility";
|
|
2267
|
-
responsive: "responsive";
|
|
2268
|
-
state: "state";
|
|
2269
|
-
motion: "motion";
|
|
2270
2409
|
}>;
|
|
2271
2410
|
property: z.ZodString;
|
|
2272
2411
|
before: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
@@ -2279,10 +2418,10 @@ export declare const designBranchSchema: z.ZodObject<{
|
|
|
2279
2418
|
id: z.ZodString;
|
|
2280
2419
|
label: z.ZodString;
|
|
2281
2420
|
intent: z.ZodEnum<{
|
|
2282
|
-
spacing: "spacing";
|
|
2283
|
-
content: "content";
|
|
2284
2421
|
state: "state";
|
|
2285
2422
|
motion: "motion";
|
|
2423
|
+
spacing: "spacing";
|
|
2424
|
+
content: "content";
|
|
2286
2425
|
resize: "resize";
|
|
2287
2426
|
align: "align";
|
|
2288
2427
|
distribute: "distribute";
|
|
@@ -2376,7 +2515,7 @@ export declare const designBranchSchema: z.ZodObject<{
|
|
|
2376
2515
|
symbol?: string | undefined;
|
|
2377
2516
|
} | undefined;
|
|
2378
2517
|
};
|
|
2379
|
-
category: "
|
|
2518
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
2380
2519
|
property: string;
|
|
2381
2520
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
2382
2521
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -2384,7 +2523,7 @@ export declare const designBranchSchema: z.ZodObject<{
|
|
|
2384
2523
|
mappingCandidates: {
|
|
2385
2524
|
id: string;
|
|
2386
2525
|
label: string;
|
|
2387
|
-
intent: "
|
|
2526
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
2388
2527
|
property: string;
|
|
2389
2528
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
2390
2529
|
scope: "instance" | "variant" | "component";
|
|
@@ -2439,7 +2578,7 @@ export declare const designBranchSchema: z.ZodObject<{
|
|
|
2439
2578
|
symbol?: string | undefined;
|
|
2440
2579
|
} | undefined;
|
|
2441
2580
|
};
|
|
2442
|
-
category: "
|
|
2581
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
2443
2582
|
property: string;
|
|
2444
2583
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
2445
2584
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -2447,7 +2586,7 @@ export declare const designBranchSchema: z.ZodObject<{
|
|
|
2447
2586
|
mappingCandidates: {
|
|
2448
2587
|
id: string;
|
|
2449
2588
|
label: string;
|
|
2450
|
-
intent: "
|
|
2589
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
2451
2590
|
property: string;
|
|
2452
2591
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
2453
2592
|
scope: "instance" | "variant" | "component";
|
|
@@ -2486,10 +2625,10 @@ export declare const designBranchSchema: z.ZodObject<{
|
|
|
2486
2625
|
operations: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2487
2626
|
id: z.ZodString;
|
|
2488
2627
|
kind: z.ZodEnum<{
|
|
2489
|
-
spacing: "spacing";
|
|
2490
|
-
content: "content";
|
|
2491
2628
|
state: "state";
|
|
2492
2629
|
motion: "motion";
|
|
2630
|
+
spacing: "spacing";
|
|
2631
|
+
content: "content";
|
|
2493
2632
|
resize: "resize";
|
|
2494
2633
|
align: "align";
|
|
2495
2634
|
distribute: "distribute";
|
|
@@ -2505,10 +2644,10 @@ export declare const designBranchSchema: z.ZodObject<{
|
|
|
2505
2644
|
id: z.ZodString;
|
|
2506
2645
|
label: z.ZodString;
|
|
2507
2646
|
intent: z.ZodEnum<{
|
|
2508
|
-
spacing: "spacing";
|
|
2509
|
-
content: "content";
|
|
2510
2647
|
state: "state";
|
|
2511
2648
|
motion: "motion";
|
|
2649
|
+
spacing: "spacing";
|
|
2650
|
+
content: "content";
|
|
2512
2651
|
resize: "resize";
|
|
2513
2652
|
align: "align";
|
|
2514
2653
|
distribute: "distribute";
|
|
@@ -2593,10 +2732,10 @@ export declare const designBranchRecordSchema: z.ZodObject<{
|
|
|
2593
2732
|
height: z.ZodNumber;
|
|
2594
2733
|
}, z.core.$strip>>;
|
|
2595
2734
|
theme: z.ZodDefault<z.ZodEnum<{
|
|
2735
|
+
custom: "custom";
|
|
2596
2736
|
light: "light";
|
|
2597
2737
|
dark: "dark";
|
|
2598
2738
|
system: "system";
|
|
2599
|
-
custom: "custom";
|
|
2600
2739
|
}>>;
|
|
2601
2740
|
breakpoint: z.ZodDefault<z.ZodString>;
|
|
2602
2741
|
state: z.ZodDefault<z.ZodString>;
|
|
@@ -2636,6 +2775,9 @@ export declare const designBranchRecordSchema: z.ZodObject<{
|
|
|
2636
2775
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2637
2776
|
}, z.core.$strip>;
|
|
2638
2777
|
category: z.ZodEnum<{
|
|
2778
|
+
responsive: "responsive";
|
|
2779
|
+
state: "state";
|
|
2780
|
+
motion: "motion";
|
|
2639
2781
|
layout: "layout";
|
|
2640
2782
|
spacing: "spacing";
|
|
2641
2783
|
typography: "typography";
|
|
@@ -2646,9 +2788,6 @@ export declare const designBranchRecordSchema: z.ZodObject<{
|
|
|
2646
2788
|
asset: "asset";
|
|
2647
2789
|
visibility: "visibility";
|
|
2648
2790
|
accessibility: "accessibility";
|
|
2649
|
-
responsive: "responsive";
|
|
2650
|
-
state: "state";
|
|
2651
|
-
motion: "motion";
|
|
2652
2791
|
}>;
|
|
2653
2792
|
property: z.ZodString;
|
|
2654
2793
|
before: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
@@ -2661,10 +2800,10 @@ export declare const designBranchRecordSchema: z.ZodObject<{
|
|
|
2661
2800
|
id: z.ZodString;
|
|
2662
2801
|
label: z.ZodString;
|
|
2663
2802
|
intent: z.ZodEnum<{
|
|
2664
|
-
spacing: "spacing";
|
|
2665
|
-
content: "content";
|
|
2666
2803
|
state: "state";
|
|
2667
2804
|
motion: "motion";
|
|
2805
|
+
spacing: "spacing";
|
|
2806
|
+
content: "content";
|
|
2668
2807
|
resize: "resize";
|
|
2669
2808
|
align: "align";
|
|
2670
2809
|
distribute: "distribute";
|
|
@@ -2758,7 +2897,7 @@ export declare const designBranchRecordSchema: z.ZodObject<{
|
|
|
2758
2897
|
symbol?: string | undefined;
|
|
2759
2898
|
} | undefined;
|
|
2760
2899
|
};
|
|
2761
|
-
category: "
|
|
2900
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
2762
2901
|
property: string;
|
|
2763
2902
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
2764
2903
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -2766,7 +2905,7 @@ export declare const designBranchRecordSchema: z.ZodObject<{
|
|
|
2766
2905
|
mappingCandidates: {
|
|
2767
2906
|
id: string;
|
|
2768
2907
|
label: string;
|
|
2769
|
-
intent: "
|
|
2908
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
2770
2909
|
property: string;
|
|
2771
2910
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
2772
2911
|
scope: "instance" | "variant" | "component";
|
|
@@ -2821,7 +2960,7 @@ export declare const designBranchRecordSchema: z.ZodObject<{
|
|
|
2821
2960
|
symbol?: string | undefined;
|
|
2822
2961
|
} | undefined;
|
|
2823
2962
|
};
|
|
2824
|
-
category: "
|
|
2963
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
2825
2964
|
property: string;
|
|
2826
2965
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
2827
2966
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -2829,7 +2968,7 @@ export declare const designBranchRecordSchema: z.ZodObject<{
|
|
|
2829
2968
|
mappingCandidates: {
|
|
2830
2969
|
id: string;
|
|
2831
2970
|
label: string;
|
|
2832
|
-
intent: "
|
|
2971
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
2833
2972
|
property: string;
|
|
2834
2973
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
2835
2974
|
scope: "instance" | "variant" | "component";
|
|
@@ -2868,10 +3007,10 @@ export declare const designBranchRecordSchema: z.ZodObject<{
|
|
|
2868
3007
|
operations: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2869
3008
|
id: z.ZodString;
|
|
2870
3009
|
kind: z.ZodEnum<{
|
|
2871
|
-
spacing: "spacing";
|
|
2872
|
-
content: "content";
|
|
2873
3010
|
state: "state";
|
|
2874
3011
|
motion: "motion";
|
|
3012
|
+
spacing: "spacing";
|
|
3013
|
+
content: "content";
|
|
2875
3014
|
resize: "resize";
|
|
2876
3015
|
align: "align";
|
|
2877
3016
|
distribute: "distribute";
|
|
@@ -2887,10 +3026,10 @@ export declare const designBranchRecordSchema: z.ZodObject<{
|
|
|
2887
3026
|
id: z.ZodString;
|
|
2888
3027
|
label: z.ZodString;
|
|
2889
3028
|
intent: z.ZodEnum<{
|
|
2890
|
-
spacing: "spacing";
|
|
2891
|
-
content: "content";
|
|
2892
3029
|
state: "state";
|
|
2893
3030
|
motion: "motion";
|
|
3031
|
+
spacing: "spacing";
|
|
3032
|
+
content: "content";
|
|
2894
3033
|
resize: "resize";
|
|
2895
3034
|
align: "align";
|
|
2896
3035
|
distribute: "distribute";
|
|
@@ -2990,10 +3129,10 @@ export declare const designBranchRecordBundleSchema: z.ZodObject<{
|
|
|
2990
3129
|
height: z.ZodNumber;
|
|
2991
3130
|
}, z.core.$strip>>;
|
|
2992
3131
|
theme: z.ZodDefault<z.ZodEnum<{
|
|
3132
|
+
custom: "custom";
|
|
2993
3133
|
light: "light";
|
|
2994
3134
|
dark: "dark";
|
|
2995
3135
|
system: "system";
|
|
2996
|
-
custom: "custom";
|
|
2997
3136
|
}>>;
|
|
2998
3137
|
breakpoint: z.ZodDefault<z.ZodString>;
|
|
2999
3138
|
state: z.ZodDefault<z.ZodString>;
|
|
@@ -3033,6 +3172,9 @@ export declare const designBranchRecordBundleSchema: z.ZodObject<{
|
|
|
3033
3172
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3034
3173
|
}, z.core.$strip>;
|
|
3035
3174
|
category: z.ZodEnum<{
|
|
3175
|
+
responsive: "responsive";
|
|
3176
|
+
state: "state";
|
|
3177
|
+
motion: "motion";
|
|
3036
3178
|
layout: "layout";
|
|
3037
3179
|
spacing: "spacing";
|
|
3038
3180
|
typography: "typography";
|
|
@@ -3043,9 +3185,6 @@ export declare const designBranchRecordBundleSchema: z.ZodObject<{
|
|
|
3043
3185
|
asset: "asset";
|
|
3044
3186
|
visibility: "visibility";
|
|
3045
3187
|
accessibility: "accessibility";
|
|
3046
|
-
responsive: "responsive";
|
|
3047
|
-
state: "state";
|
|
3048
|
-
motion: "motion";
|
|
3049
3188
|
}>;
|
|
3050
3189
|
property: z.ZodString;
|
|
3051
3190
|
before: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
@@ -3058,10 +3197,10 @@ export declare const designBranchRecordBundleSchema: z.ZodObject<{
|
|
|
3058
3197
|
id: z.ZodString;
|
|
3059
3198
|
label: z.ZodString;
|
|
3060
3199
|
intent: z.ZodEnum<{
|
|
3061
|
-
spacing: "spacing";
|
|
3062
|
-
content: "content";
|
|
3063
3200
|
state: "state";
|
|
3064
3201
|
motion: "motion";
|
|
3202
|
+
spacing: "spacing";
|
|
3203
|
+
content: "content";
|
|
3065
3204
|
resize: "resize";
|
|
3066
3205
|
align: "align";
|
|
3067
3206
|
distribute: "distribute";
|
|
@@ -3155,7 +3294,7 @@ export declare const designBranchRecordBundleSchema: z.ZodObject<{
|
|
|
3155
3294
|
symbol?: string | undefined;
|
|
3156
3295
|
} | undefined;
|
|
3157
3296
|
};
|
|
3158
|
-
category: "
|
|
3297
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
3159
3298
|
property: string;
|
|
3160
3299
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
3161
3300
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -3163,7 +3302,7 @@ export declare const designBranchRecordBundleSchema: z.ZodObject<{
|
|
|
3163
3302
|
mappingCandidates: {
|
|
3164
3303
|
id: string;
|
|
3165
3304
|
label: string;
|
|
3166
|
-
intent: "
|
|
3305
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
3167
3306
|
property: string;
|
|
3168
3307
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
3169
3308
|
scope: "instance" | "variant" | "component";
|
|
@@ -3218,7 +3357,7 @@ export declare const designBranchRecordBundleSchema: z.ZodObject<{
|
|
|
3218
3357
|
symbol?: string | undefined;
|
|
3219
3358
|
} | undefined;
|
|
3220
3359
|
};
|
|
3221
|
-
category: "
|
|
3360
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
3222
3361
|
property: string;
|
|
3223
3362
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
3224
3363
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -3226,7 +3365,7 @@ export declare const designBranchRecordBundleSchema: z.ZodObject<{
|
|
|
3226
3365
|
mappingCandidates: {
|
|
3227
3366
|
id: string;
|
|
3228
3367
|
label: string;
|
|
3229
|
-
intent: "
|
|
3368
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
3230
3369
|
property: string;
|
|
3231
3370
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
3232
3371
|
scope: "instance" | "variant" | "component";
|
|
@@ -3265,10 +3404,10 @@ export declare const designBranchRecordBundleSchema: z.ZodObject<{
|
|
|
3265
3404
|
operations: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3266
3405
|
id: z.ZodString;
|
|
3267
3406
|
kind: z.ZodEnum<{
|
|
3268
|
-
spacing: "spacing";
|
|
3269
|
-
content: "content";
|
|
3270
3407
|
state: "state";
|
|
3271
3408
|
motion: "motion";
|
|
3409
|
+
spacing: "spacing";
|
|
3410
|
+
content: "content";
|
|
3272
3411
|
resize: "resize";
|
|
3273
3412
|
align: "align";
|
|
3274
3413
|
distribute: "distribute";
|
|
@@ -3284,10 +3423,10 @@ export declare const designBranchRecordBundleSchema: z.ZodObject<{
|
|
|
3284
3423
|
id: z.ZodString;
|
|
3285
3424
|
label: z.ZodString;
|
|
3286
3425
|
intent: z.ZodEnum<{
|
|
3287
|
-
spacing: "spacing";
|
|
3288
|
-
content: "content";
|
|
3289
3426
|
state: "state";
|
|
3290
3427
|
motion: "motion";
|
|
3428
|
+
spacing: "spacing";
|
|
3429
|
+
content: "content";
|
|
3291
3430
|
resize: "resize";
|
|
3292
3431
|
align: "align";
|
|
3293
3432
|
distribute: "distribute";
|
|
@@ -3383,6 +3522,7 @@ export declare const verificationResultSchema: z.ZodObject<{
|
|
|
3383
3522
|
}, z.core.$strip>;
|
|
3384
3523
|
export declare const applyRunStateSchema: z.ZodEnum<{
|
|
3385
3524
|
passed: "passed";
|
|
3525
|
+
failed: "failed";
|
|
3386
3526
|
reviewing: "reviewing";
|
|
3387
3527
|
queued: "queued";
|
|
3388
3528
|
claimed: "claimed";
|
|
@@ -3391,11 +3531,11 @@ export declare const applyRunStateSchema: z.ZodEnum<{
|
|
|
3391
3531
|
verifying: "verifying";
|
|
3392
3532
|
needs_attention: "needs_attention";
|
|
3393
3533
|
cancelled: "cancelled";
|
|
3394
|
-
failed: "failed";
|
|
3395
3534
|
}>;
|
|
3396
3535
|
export declare const applyRunMessageSchema: z.ZodObject<{
|
|
3397
3536
|
state: z.ZodEnum<{
|
|
3398
3537
|
passed: "passed";
|
|
3538
|
+
failed: "failed";
|
|
3399
3539
|
reviewing: "reviewing";
|
|
3400
3540
|
queued: "queued";
|
|
3401
3541
|
claimed: "claimed";
|
|
@@ -3404,7 +3544,6 @@ export declare const applyRunMessageSchema: z.ZodObject<{
|
|
|
3404
3544
|
verifying: "verifying";
|
|
3405
3545
|
needs_attention: "needs_attention";
|
|
3406
3546
|
cancelled: "cancelled";
|
|
3407
|
-
failed: "failed";
|
|
3408
3547
|
}>;
|
|
3409
3548
|
message: z.ZodString;
|
|
3410
3549
|
createdAt: z.ZodString;
|
|
@@ -3465,10 +3604,10 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3465
3604
|
height: z.ZodNumber;
|
|
3466
3605
|
}, z.core.$strip>>;
|
|
3467
3606
|
theme: z.ZodDefault<z.ZodEnum<{
|
|
3607
|
+
custom: "custom";
|
|
3468
3608
|
light: "light";
|
|
3469
3609
|
dark: "dark";
|
|
3470
3610
|
system: "system";
|
|
3471
|
-
custom: "custom";
|
|
3472
3611
|
}>>;
|
|
3473
3612
|
breakpoint: z.ZodDefault<z.ZodString>;
|
|
3474
3613
|
state: z.ZodDefault<z.ZodString>;
|
|
@@ -3508,6 +3647,9 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3508
3647
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3509
3648
|
}, z.core.$strip>;
|
|
3510
3649
|
category: z.ZodEnum<{
|
|
3650
|
+
responsive: "responsive";
|
|
3651
|
+
state: "state";
|
|
3652
|
+
motion: "motion";
|
|
3511
3653
|
layout: "layout";
|
|
3512
3654
|
spacing: "spacing";
|
|
3513
3655
|
typography: "typography";
|
|
@@ -3518,9 +3660,6 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3518
3660
|
asset: "asset";
|
|
3519
3661
|
visibility: "visibility";
|
|
3520
3662
|
accessibility: "accessibility";
|
|
3521
|
-
responsive: "responsive";
|
|
3522
|
-
state: "state";
|
|
3523
|
-
motion: "motion";
|
|
3524
3663
|
}>;
|
|
3525
3664
|
property: z.ZodString;
|
|
3526
3665
|
before: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
@@ -3533,10 +3672,10 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3533
3672
|
id: z.ZodString;
|
|
3534
3673
|
label: z.ZodString;
|
|
3535
3674
|
intent: z.ZodEnum<{
|
|
3536
|
-
spacing: "spacing";
|
|
3537
|
-
content: "content";
|
|
3538
3675
|
state: "state";
|
|
3539
3676
|
motion: "motion";
|
|
3677
|
+
spacing: "spacing";
|
|
3678
|
+
content: "content";
|
|
3540
3679
|
resize: "resize";
|
|
3541
3680
|
align: "align";
|
|
3542
3681
|
distribute: "distribute";
|
|
@@ -3630,7 +3769,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3630
3769
|
symbol?: string | undefined;
|
|
3631
3770
|
} | undefined;
|
|
3632
3771
|
};
|
|
3633
|
-
category: "
|
|
3772
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
3634
3773
|
property: string;
|
|
3635
3774
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
3636
3775
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -3638,7 +3777,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3638
3777
|
mappingCandidates: {
|
|
3639
3778
|
id: string;
|
|
3640
3779
|
label: string;
|
|
3641
|
-
intent: "
|
|
3780
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
3642
3781
|
property: string;
|
|
3643
3782
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
3644
3783
|
scope: "instance" | "variant" | "component";
|
|
@@ -3693,7 +3832,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3693
3832
|
symbol?: string | undefined;
|
|
3694
3833
|
} | undefined;
|
|
3695
3834
|
};
|
|
3696
|
-
category: "
|
|
3835
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
3697
3836
|
property: string;
|
|
3698
3837
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
3699
3838
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -3701,7 +3840,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3701
3840
|
mappingCandidates: {
|
|
3702
3841
|
id: string;
|
|
3703
3842
|
label: string;
|
|
3704
|
-
intent: "
|
|
3843
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
3705
3844
|
property: string;
|
|
3706
3845
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
3707
3846
|
scope: "instance" | "variant" | "component";
|
|
@@ -3740,10 +3879,10 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3740
3879
|
operations: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3741
3880
|
id: z.ZodString;
|
|
3742
3881
|
kind: z.ZodEnum<{
|
|
3743
|
-
spacing: "spacing";
|
|
3744
|
-
content: "content";
|
|
3745
3882
|
state: "state";
|
|
3746
3883
|
motion: "motion";
|
|
3884
|
+
spacing: "spacing";
|
|
3885
|
+
content: "content";
|
|
3747
3886
|
resize: "resize";
|
|
3748
3887
|
align: "align";
|
|
3749
3888
|
distribute: "distribute";
|
|
@@ -3759,10 +3898,10 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3759
3898
|
id: z.ZodString;
|
|
3760
3899
|
label: z.ZodString;
|
|
3761
3900
|
intent: z.ZodEnum<{
|
|
3762
|
-
spacing: "spacing";
|
|
3763
|
-
content: "content";
|
|
3764
3901
|
state: "state";
|
|
3765
3902
|
motion: "motion";
|
|
3903
|
+
spacing: "spacing";
|
|
3904
|
+
content: "content";
|
|
3766
3905
|
resize: "resize";
|
|
3767
3906
|
align: "align";
|
|
3768
3907
|
distribute: "distribute";
|
|
@@ -3808,6 +3947,33 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3808
3947
|
label: z.ZodString;
|
|
3809
3948
|
path: z.ZodString;
|
|
3810
3949
|
createdAt: z.ZodString;
|
|
3950
|
+
capture: z.ZodOptional<z.ZodObject<{
|
|
3951
|
+
version: z.ZodLiteral<1>;
|
|
3952
|
+
phase: z.ZodEnum<{
|
|
3953
|
+
preview: "preview";
|
|
3954
|
+
before: "before";
|
|
3955
|
+
rebuilt: "rebuilt";
|
|
3956
|
+
}>;
|
|
3957
|
+
context: z.ZodObject<{
|
|
3958
|
+
breakpoint: z.ZodDefault<z.ZodString>;
|
|
3959
|
+
theme: z.ZodDefault<z.ZodString>;
|
|
3960
|
+
state: z.ZodDefault<z.ZodString>;
|
|
3961
|
+
}, z.core.$strip>;
|
|
3962
|
+
viewport: z.ZodObject<{
|
|
3963
|
+
width: z.ZodNumber;
|
|
3964
|
+
height: z.ZodNumber;
|
|
3965
|
+
}, z.core.$strip>;
|
|
3966
|
+
sourceRevision: z.ZodOptional<z.ZodString>;
|
|
3967
|
+
applyRunId: z.ZodOptional<z.ZodString>;
|
|
3968
|
+
targetId: z.ZodOptional<z.ZodString>;
|
|
3969
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
3970
|
+
conditions: z.ZodOptional<z.ZodObject<{
|
|
3971
|
+
motion: z.ZodString;
|
|
3972
|
+
browser: z.ZodString;
|
|
3973
|
+
platform: z.ZodString;
|
|
3974
|
+
deviceScaleFactor: z.ZodNumber;
|
|
3975
|
+
}, z.core.$strip>>;
|
|
3976
|
+
}, z.core.$strip>>;
|
|
3811
3977
|
}, z.core.$strip>>>;
|
|
3812
3978
|
createdAt: z.ZodString;
|
|
3813
3979
|
updatedAt: z.ZodString;
|
|
@@ -3817,7 +3983,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3817
3983
|
context: {
|
|
3818
3984
|
projectRoot: string;
|
|
3819
3985
|
platform: "web" | "swiftui" | "react-native";
|
|
3820
|
-
theme: "
|
|
3986
|
+
theme: "custom" | "light" | "dark" | "system";
|
|
3821
3987
|
breakpoint: string;
|
|
3822
3988
|
state: string;
|
|
3823
3989
|
revision?: string | undefined;
|
|
@@ -3861,7 +4027,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3861
4027
|
symbol?: string | undefined;
|
|
3862
4028
|
} | undefined;
|
|
3863
4029
|
};
|
|
3864
|
-
category: "
|
|
4030
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
3865
4031
|
property: string;
|
|
3866
4032
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
3867
4033
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -3869,7 +4035,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3869
4035
|
mappingCandidates: {
|
|
3870
4036
|
id: string;
|
|
3871
4037
|
label: string;
|
|
3872
|
-
intent: "
|
|
4038
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
3873
4039
|
property: string;
|
|
3874
4040
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
3875
4041
|
scope: "instance" | "variant" | "component";
|
|
@@ -3902,7 +4068,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3902
4068
|
}[];
|
|
3903
4069
|
operations: {
|
|
3904
4070
|
id: string;
|
|
3905
|
-
kind: "
|
|
4071
|
+
kind: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "style" | "component-variant" | "token-refactor";
|
|
3906
4072
|
label: string;
|
|
3907
4073
|
targetIds: string[];
|
|
3908
4074
|
changeIds: string[];
|
|
@@ -3910,7 +4076,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3910
4076
|
mappingCandidates: {
|
|
3911
4077
|
id: string;
|
|
3912
4078
|
label: string;
|
|
3913
|
-
intent: "
|
|
4079
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
3914
4080
|
property: string;
|
|
3915
4081
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
3916
4082
|
scope: "instance" | "variant" | "component";
|
|
@@ -3934,6 +4100,29 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3934
4100
|
label: string;
|
|
3935
4101
|
path: string;
|
|
3936
4102
|
createdAt: string;
|
|
4103
|
+
capture?: {
|
|
4104
|
+
version: 1;
|
|
4105
|
+
phase: "preview" | "before" | "rebuilt";
|
|
4106
|
+
context: {
|
|
4107
|
+
breakpoint: string;
|
|
4108
|
+
theme: string;
|
|
4109
|
+
state: string;
|
|
4110
|
+
};
|
|
4111
|
+
viewport: {
|
|
4112
|
+
width: number;
|
|
4113
|
+
height: number;
|
|
4114
|
+
};
|
|
4115
|
+
sourceRevision?: string | undefined;
|
|
4116
|
+
applyRunId?: string | undefined;
|
|
4117
|
+
targetId?: string | undefined;
|
|
4118
|
+
sha256?: string | undefined;
|
|
4119
|
+
conditions?: {
|
|
4120
|
+
motion: string;
|
|
4121
|
+
browser: string;
|
|
4122
|
+
platform: string;
|
|
4123
|
+
deviceScaleFactor: number;
|
|
4124
|
+
} | undefined;
|
|
4125
|
+
} | undefined;
|
|
3937
4126
|
}[];
|
|
3938
4127
|
createdAt: string;
|
|
3939
4128
|
updatedAt: string;
|
|
@@ -3944,7 +4133,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3944
4133
|
context: {
|
|
3945
4134
|
projectRoot: string;
|
|
3946
4135
|
platform: "web" | "swiftui" | "react-native";
|
|
3947
|
-
theme: "
|
|
4136
|
+
theme: "custom" | "light" | "dark" | "system";
|
|
3948
4137
|
breakpoint: string;
|
|
3949
4138
|
state: string;
|
|
3950
4139
|
revision?: string | undefined;
|
|
@@ -3988,7 +4177,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3988
4177
|
symbol?: string | undefined;
|
|
3989
4178
|
} | undefined;
|
|
3990
4179
|
};
|
|
3991
|
-
category: "
|
|
4180
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
3992
4181
|
property: string;
|
|
3993
4182
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
3994
4183
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -3996,7 +4185,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
3996
4185
|
mappingCandidates: {
|
|
3997
4186
|
id: string;
|
|
3998
4187
|
label: string;
|
|
3999
|
-
intent: "
|
|
4188
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
4000
4189
|
property: string;
|
|
4001
4190
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
4002
4191
|
scope: "instance" | "variant" | "component";
|
|
@@ -4029,7 +4218,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
4029
4218
|
}[];
|
|
4030
4219
|
operations: {
|
|
4031
4220
|
id: string;
|
|
4032
|
-
kind: "
|
|
4221
|
+
kind: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "style" | "component-variant" | "token-refactor";
|
|
4033
4222
|
label: string;
|
|
4034
4223
|
targetIds: string[];
|
|
4035
4224
|
changeIds: string[];
|
|
@@ -4037,7 +4226,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
4037
4226
|
mappingCandidates: {
|
|
4038
4227
|
id: string;
|
|
4039
4228
|
label: string;
|
|
4040
|
-
intent: "
|
|
4229
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
4041
4230
|
property: string;
|
|
4042
4231
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
4043
4232
|
scope: "instance" | "variant" | "component";
|
|
@@ -4061,6 +4250,29 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
4061
4250
|
label: string;
|
|
4062
4251
|
path: string;
|
|
4063
4252
|
createdAt: string;
|
|
4253
|
+
capture?: {
|
|
4254
|
+
version: 1;
|
|
4255
|
+
phase: "preview" | "before" | "rebuilt";
|
|
4256
|
+
context: {
|
|
4257
|
+
breakpoint: string;
|
|
4258
|
+
theme: string;
|
|
4259
|
+
state: string;
|
|
4260
|
+
};
|
|
4261
|
+
viewport: {
|
|
4262
|
+
width: number;
|
|
4263
|
+
height: number;
|
|
4264
|
+
};
|
|
4265
|
+
sourceRevision?: string | undefined;
|
|
4266
|
+
applyRunId?: string | undefined;
|
|
4267
|
+
targetId?: string | undefined;
|
|
4268
|
+
sha256?: string | undefined;
|
|
4269
|
+
conditions?: {
|
|
4270
|
+
motion: string;
|
|
4271
|
+
browser: string;
|
|
4272
|
+
platform: string;
|
|
4273
|
+
deviceScaleFactor: number;
|
|
4274
|
+
} | undefined;
|
|
4275
|
+
} | undefined;
|
|
4064
4276
|
}[];
|
|
4065
4277
|
createdAt: string;
|
|
4066
4278
|
updatedAt: string;
|
|
@@ -4071,6 +4283,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
4071
4283
|
designGraphRevision: z.ZodOptional<z.ZodString>;
|
|
4072
4284
|
state: z.ZodEnum<{
|
|
4073
4285
|
passed: "passed";
|
|
4286
|
+
failed: "failed";
|
|
4074
4287
|
reviewing: "reviewing";
|
|
4075
4288
|
queued: "queued";
|
|
4076
4289
|
claimed: "claimed";
|
|
@@ -4079,7 +4292,6 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
4079
4292
|
verifying: "verifying";
|
|
4080
4293
|
needs_attention: "needs_attention";
|
|
4081
4294
|
cancelled: "cancelled";
|
|
4082
|
-
failed: "failed";
|
|
4083
4295
|
}>;
|
|
4084
4296
|
agent: z.ZodOptional<z.ZodObject<{
|
|
4085
4297
|
name: z.ZodString;
|
|
@@ -4089,6 +4301,7 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
4089
4301
|
messages: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4090
4302
|
state: z.ZodEnum<{
|
|
4091
4303
|
passed: "passed";
|
|
4304
|
+
failed: "failed";
|
|
4092
4305
|
reviewing: "reviewing";
|
|
4093
4306
|
queued: "queued";
|
|
4094
4307
|
claimed: "claimed";
|
|
@@ -4097,7 +4310,6 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
4097
4310
|
verifying: "verifying";
|
|
4098
4311
|
needs_attention: "needs_attention";
|
|
4099
4312
|
cancelled: "cancelled";
|
|
4100
|
-
failed: "failed";
|
|
4101
4313
|
}>;
|
|
4102
4314
|
message: z.ZodString;
|
|
4103
4315
|
createdAt: z.ZodString;
|
|
@@ -4188,8 +4400,8 @@ export declare const applyRunSchema: z.ZodObject<{
|
|
|
4188
4400
|
updatedAt: z.ZodString;
|
|
4189
4401
|
}, z.core.$strip>;
|
|
4190
4402
|
export declare const deliveryRecordStatusSchema: z.ZodEnum<{
|
|
4191
|
-
draft: "draft";
|
|
4192
4403
|
ready: "ready";
|
|
4404
|
+
draft: "draft";
|
|
4193
4405
|
implementing: "implementing";
|
|
4194
4406
|
verified: "verified";
|
|
4195
4407
|
superseded: "superseded";
|
|
@@ -4223,8 +4435,8 @@ export declare const deliveryRecordSchema: z.ZodObject<{
|
|
|
4223
4435
|
authored: "authored";
|
|
4224
4436
|
}>>;
|
|
4225
4437
|
status: z.ZodEnum<{
|
|
4226
|
-
draft: "draft";
|
|
4227
4438
|
ready: "ready";
|
|
4439
|
+
draft: "draft";
|
|
4228
4440
|
implementing: "implementing";
|
|
4229
4441
|
verified: "verified";
|
|
4230
4442
|
superseded: "superseded";
|
|
@@ -4290,10 +4502,38 @@ export declare const deliveryRecordSchema: z.ZodObject<{
|
|
|
4290
4502
|
label: z.ZodString;
|
|
4291
4503
|
path: z.ZodString;
|
|
4292
4504
|
createdAt: z.ZodString;
|
|
4505
|
+
capture: z.ZodOptional<z.ZodObject<{
|
|
4506
|
+
version: z.ZodLiteral<1>;
|
|
4507
|
+
phase: z.ZodEnum<{
|
|
4508
|
+
preview: "preview";
|
|
4509
|
+
before: "before";
|
|
4510
|
+
rebuilt: "rebuilt";
|
|
4511
|
+
}>;
|
|
4512
|
+
context: z.ZodObject<{
|
|
4513
|
+
breakpoint: z.ZodDefault<z.ZodString>;
|
|
4514
|
+
theme: z.ZodDefault<z.ZodString>;
|
|
4515
|
+
state: z.ZodDefault<z.ZodString>;
|
|
4516
|
+
}, z.core.$strip>;
|
|
4517
|
+
viewport: z.ZodObject<{
|
|
4518
|
+
width: z.ZodNumber;
|
|
4519
|
+
height: z.ZodNumber;
|
|
4520
|
+
}, z.core.$strip>;
|
|
4521
|
+
sourceRevision: z.ZodOptional<z.ZodString>;
|
|
4522
|
+
applyRunId: z.ZodOptional<z.ZodString>;
|
|
4523
|
+
targetId: z.ZodOptional<z.ZodString>;
|
|
4524
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
4525
|
+
conditions: z.ZodOptional<z.ZodObject<{
|
|
4526
|
+
motion: z.ZodString;
|
|
4527
|
+
browser: z.ZodString;
|
|
4528
|
+
platform: z.ZodString;
|
|
4529
|
+
deviceScaleFactor: z.ZodNumber;
|
|
4530
|
+
}, z.core.$strip>>;
|
|
4531
|
+
}, z.core.$strip>>;
|
|
4293
4532
|
}, z.core.$strip>>>;
|
|
4294
4533
|
revision: z.ZodOptional<z.ZodString>;
|
|
4295
4534
|
baselineRevision: z.ZodOptional<z.ZodString>;
|
|
4296
4535
|
appliedRevision: z.ZodOptional<z.ZodString>;
|
|
4536
|
+
captureIssues: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
4297
4537
|
designGraphRevision: z.ZodOptional<z.ZodString>;
|
|
4298
4538
|
createdAt: z.ZodString;
|
|
4299
4539
|
updatedAt: z.ZodString;
|
|
@@ -4304,10 +4544,10 @@ export declare const documentationPageSchema: z.ZodObject<{
|
|
|
4304
4544
|
version: z.ZodLiteral<1>;
|
|
4305
4545
|
id: z.ZodString;
|
|
4306
4546
|
kind: z.ZodEnum<{
|
|
4547
|
+
screen: "screen";
|
|
4307
4548
|
component: "component";
|
|
4308
4549
|
system: "system";
|
|
4309
4550
|
feature: "feature";
|
|
4310
|
-
screen: "screen";
|
|
4311
4551
|
}>;
|
|
4312
4552
|
slug: z.ZodString;
|
|
4313
4553
|
title: z.ZodString;
|
|
@@ -4480,16 +4720,25 @@ export declare const visualAgentContextSchema: z.ZodObject<{
|
|
|
4480
4720
|
name: z.ZodString;
|
|
4481
4721
|
value: z.ZodString;
|
|
4482
4722
|
category: z.ZodEnum<{
|
|
4723
|
+
motion: "motion";
|
|
4483
4724
|
spacing: "spacing";
|
|
4484
4725
|
typography: "typography";
|
|
4485
4726
|
color: "color";
|
|
4486
|
-
motion: "motion";
|
|
4487
4727
|
size: "size";
|
|
4488
4728
|
radius: "radius";
|
|
4489
4729
|
shadow: "shadow";
|
|
4490
4730
|
other: "other";
|
|
4491
4731
|
}>;
|
|
4492
4732
|
cssVariable: z.ZodOptional<z.ZodString>;
|
|
4733
|
+
declarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4734
|
+
value: z.ZodString;
|
|
4735
|
+
source: z.ZodObject<{
|
|
4736
|
+
file: z.ZodString;
|
|
4737
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
4738
|
+
column: z.ZodOptional<z.ZodNumber>;
|
|
4739
|
+
symbol: z.ZodOptional<z.ZodString>;
|
|
4740
|
+
}, z.core.$strip>;
|
|
4741
|
+
}, z.core.$strip>>>;
|
|
4493
4742
|
aliasOfTokenId: z.ZodOptional<z.ZodString>;
|
|
4494
4743
|
aliasOfTokenName: z.ZodOptional<z.ZodString>;
|
|
4495
4744
|
resolvedValue: z.ZodOptional<z.ZodString>;
|
|
@@ -4560,6 +4809,9 @@ export declare const visualAgentProposalSchema: z.ZodObject<{
|
|
|
4560
4809
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
4561
4810
|
}, z.core.$strip>;
|
|
4562
4811
|
category: z.ZodEnum<{
|
|
4812
|
+
responsive: "responsive";
|
|
4813
|
+
state: "state";
|
|
4814
|
+
motion: "motion";
|
|
4563
4815
|
layout: "layout";
|
|
4564
4816
|
spacing: "spacing";
|
|
4565
4817
|
typography: "typography";
|
|
@@ -4570,9 +4822,6 @@ export declare const visualAgentProposalSchema: z.ZodObject<{
|
|
|
4570
4822
|
asset: "asset";
|
|
4571
4823
|
visibility: "visibility";
|
|
4572
4824
|
accessibility: "accessibility";
|
|
4573
|
-
responsive: "responsive";
|
|
4574
|
-
state: "state";
|
|
4575
|
-
motion: "motion";
|
|
4576
4825
|
}>;
|
|
4577
4826
|
property: z.ZodString;
|
|
4578
4827
|
before: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
@@ -4585,10 +4834,10 @@ export declare const visualAgentProposalSchema: z.ZodObject<{
|
|
|
4585
4834
|
id: z.ZodString;
|
|
4586
4835
|
label: z.ZodString;
|
|
4587
4836
|
intent: z.ZodEnum<{
|
|
4588
|
-
spacing: "spacing";
|
|
4589
|
-
content: "content";
|
|
4590
4837
|
state: "state";
|
|
4591
4838
|
motion: "motion";
|
|
4839
|
+
spacing: "spacing";
|
|
4840
|
+
content: "content";
|
|
4592
4841
|
resize: "resize";
|
|
4593
4842
|
align: "align";
|
|
4594
4843
|
distribute: "distribute";
|
|
@@ -4682,7 +4931,7 @@ export declare const visualAgentProposalSchema: z.ZodObject<{
|
|
|
4682
4931
|
symbol?: string | undefined;
|
|
4683
4932
|
} | undefined;
|
|
4684
4933
|
};
|
|
4685
|
-
category: "
|
|
4934
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
4686
4935
|
property: string;
|
|
4687
4936
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
4688
4937
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -4690,7 +4939,7 @@ export declare const visualAgentProposalSchema: z.ZodObject<{
|
|
|
4690
4939
|
mappingCandidates: {
|
|
4691
4940
|
id: string;
|
|
4692
4941
|
label: string;
|
|
4693
|
-
intent: "
|
|
4942
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
4694
4943
|
property: string;
|
|
4695
4944
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
4696
4945
|
scope: "instance" | "variant" | "component";
|
|
@@ -4745,7 +4994,7 @@ export declare const visualAgentProposalSchema: z.ZodObject<{
|
|
|
4745
4994
|
symbol?: string | undefined;
|
|
4746
4995
|
} | undefined;
|
|
4747
4996
|
};
|
|
4748
|
-
category: "
|
|
4997
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
4749
4998
|
property: string;
|
|
4750
4999
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
4751
5000
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -4753,7 +5002,7 @@ export declare const visualAgentProposalSchema: z.ZodObject<{
|
|
|
4753
5002
|
mappingCandidates: {
|
|
4754
5003
|
id: string;
|
|
4755
5004
|
label: string;
|
|
4756
|
-
intent: "
|
|
5005
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
4757
5006
|
property: string;
|
|
4758
5007
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
4759
5008
|
scope: "instance" | "variant" | "component";
|
|
@@ -4815,9 +5064,9 @@ export declare const visualAgentRequestSchema: z.ZodObject<{
|
|
|
4815
5064
|
title: z.ZodString;
|
|
4816
5065
|
prompt: z.ZodString;
|
|
4817
5066
|
status: z.ZodEnum<{
|
|
5067
|
+
ready: "ready";
|
|
4818
5068
|
queued: "queued";
|
|
4819
5069
|
needs_attention: "needs_attention";
|
|
4820
|
-
ready: "ready";
|
|
4821
5070
|
thinking: "thinking";
|
|
4822
5071
|
closed: "closed";
|
|
4823
5072
|
}>;
|
|
@@ -4871,16 +5120,25 @@ export declare const visualAgentRequestSchema: z.ZodObject<{
|
|
|
4871
5120
|
name: z.ZodString;
|
|
4872
5121
|
value: z.ZodString;
|
|
4873
5122
|
category: z.ZodEnum<{
|
|
5123
|
+
motion: "motion";
|
|
4874
5124
|
spacing: "spacing";
|
|
4875
5125
|
typography: "typography";
|
|
4876
5126
|
color: "color";
|
|
4877
|
-
motion: "motion";
|
|
4878
5127
|
size: "size";
|
|
4879
5128
|
radius: "radius";
|
|
4880
5129
|
shadow: "shadow";
|
|
4881
5130
|
other: "other";
|
|
4882
5131
|
}>;
|
|
4883
5132
|
cssVariable: z.ZodOptional<z.ZodString>;
|
|
5133
|
+
declarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5134
|
+
value: z.ZodString;
|
|
5135
|
+
source: z.ZodObject<{
|
|
5136
|
+
file: z.ZodString;
|
|
5137
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
5138
|
+
column: z.ZodOptional<z.ZodNumber>;
|
|
5139
|
+
symbol: z.ZodOptional<z.ZodString>;
|
|
5140
|
+
}, z.core.$strip>;
|
|
5141
|
+
}, z.core.$strip>>>;
|
|
4884
5142
|
aliasOfTokenId: z.ZodOptional<z.ZodString>;
|
|
4885
5143
|
aliasOfTokenName: z.ZodOptional<z.ZodString>;
|
|
4886
5144
|
resolvedValue: z.ZodOptional<z.ZodString>;
|
|
@@ -4961,6 +5219,9 @@ export declare const visualAgentRequestSchema: z.ZodObject<{
|
|
|
4961
5219
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
4962
5220
|
}, z.core.$strip>;
|
|
4963
5221
|
category: z.ZodEnum<{
|
|
5222
|
+
responsive: "responsive";
|
|
5223
|
+
state: "state";
|
|
5224
|
+
motion: "motion";
|
|
4964
5225
|
layout: "layout";
|
|
4965
5226
|
spacing: "spacing";
|
|
4966
5227
|
typography: "typography";
|
|
@@ -4971,9 +5232,6 @@ export declare const visualAgentRequestSchema: z.ZodObject<{
|
|
|
4971
5232
|
asset: "asset";
|
|
4972
5233
|
visibility: "visibility";
|
|
4973
5234
|
accessibility: "accessibility";
|
|
4974
|
-
responsive: "responsive";
|
|
4975
|
-
state: "state";
|
|
4976
|
-
motion: "motion";
|
|
4977
5235
|
}>;
|
|
4978
5236
|
property: z.ZodString;
|
|
4979
5237
|
before: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
@@ -4986,10 +5244,10 @@ export declare const visualAgentRequestSchema: z.ZodObject<{
|
|
|
4986
5244
|
id: z.ZodString;
|
|
4987
5245
|
label: z.ZodString;
|
|
4988
5246
|
intent: z.ZodEnum<{
|
|
4989
|
-
spacing: "spacing";
|
|
4990
|
-
content: "content";
|
|
4991
5247
|
state: "state";
|
|
4992
5248
|
motion: "motion";
|
|
5249
|
+
spacing: "spacing";
|
|
5250
|
+
content: "content";
|
|
4993
5251
|
resize: "resize";
|
|
4994
5252
|
align: "align";
|
|
4995
5253
|
distribute: "distribute";
|
|
@@ -5083,7 +5341,7 @@ export declare const visualAgentRequestSchema: z.ZodObject<{
|
|
|
5083
5341
|
symbol?: string | undefined;
|
|
5084
5342
|
} | undefined;
|
|
5085
5343
|
};
|
|
5086
|
-
category: "
|
|
5344
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
5087
5345
|
property: string;
|
|
5088
5346
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
5089
5347
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -5091,7 +5349,7 @@ export declare const visualAgentRequestSchema: z.ZodObject<{
|
|
|
5091
5349
|
mappingCandidates: {
|
|
5092
5350
|
id: string;
|
|
5093
5351
|
label: string;
|
|
5094
|
-
intent: "
|
|
5352
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
5095
5353
|
property: string;
|
|
5096
5354
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
5097
5355
|
scope: "instance" | "variant" | "component";
|
|
@@ -5146,7 +5404,7 @@ export declare const visualAgentRequestSchema: z.ZodObject<{
|
|
|
5146
5404
|
symbol?: string | undefined;
|
|
5147
5405
|
} | undefined;
|
|
5148
5406
|
};
|
|
5149
|
-
category: "
|
|
5407
|
+
category: "responsive" | "state" | "motion" | "layout" | "spacing" | "typography" | "color" | "border" | "effect" | "content" | "asset" | "visibility" | "accessibility";
|
|
5150
5408
|
property: string;
|
|
5151
5409
|
before: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
5152
5410
|
after: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
@@ -5154,7 +5412,7 @@ export declare const visualAgentRequestSchema: z.ZodObject<{
|
|
|
5154
5412
|
mappingCandidates: {
|
|
5155
5413
|
id: string;
|
|
5156
5414
|
label: string;
|
|
5157
|
-
intent: "
|
|
5415
|
+
intent: "state" | "motion" | "spacing" | "content" | "resize" | "align" | "distribute" | "position" | "style" | "component-variant" | "token-refactor";
|
|
5158
5416
|
property: string;
|
|
5159
5417
|
value: string | number | boolean | unknown[] | Record<string, unknown> | null;
|
|
5160
5418
|
scope: "instance" | "variant" | "component";
|
|
@@ -5244,8 +5502,8 @@ export declare const stressTestSessionSchema: z.ZodObject<{
|
|
|
5244
5502
|
"keyboard-only": "keyboard-only";
|
|
5245
5503
|
}>>>;
|
|
5246
5504
|
scope: z.ZodDefault<z.ZodEnum<{
|
|
5247
|
-
selection: "selection";
|
|
5248
5505
|
canvas: "canvas";
|
|
5506
|
+
selection: "selection";
|
|
5249
5507
|
}>>;
|
|
5250
5508
|
targetId: z.ZodOptional<z.ZodString>;
|
|
5251
5509
|
viewport: z.ZodObject<{
|
|
@@ -5298,6 +5556,9 @@ export declare const surfaceSnapshotSchema: z.ZodObject<{
|
|
|
5298
5556
|
controlsByTarget: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5299
5557
|
id: z.ZodString;
|
|
5300
5558
|
category: z.ZodEnum<{
|
|
5559
|
+
responsive: "responsive";
|
|
5560
|
+
state: "state";
|
|
5561
|
+
motion: "motion";
|
|
5301
5562
|
layout: "layout";
|
|
5302
5563
|
spacing: "spacing";
|
|
5303
5564
|
typography: "typography";
|
|
@@ -5308,9 +5569,6 @@ export declare const surfaceSnapshotSchema: z.ZodObject<{
|
|
|
5308
5569
|
asset: "asset";
|
|
5309
5570
|
visibility: "visibility";
|
|
5310
5571
|
accessibility: "accessibility";
|
|
5311
|
-
responsive: "responsive";
|
|
5312
|
-
state: "state";
|
|
5313
|
-
motion: "motion";
|
|
5314
5572
|
}>;
|
|
5315
5573
|
property: z.ZodString;
|
|
5316
5574
|
label: z.ZodString;
|
|
@@ -5319,9 +5577,9 @@ export declare const surfaceSnapshotSchema: z.ZodObject<{
|
|
|
5319
5577
|
number: "number";
|
|
5320
5578
|
boolean: "boolean";
|
|
5321
5579
|
length: "length";
|
|
5580
|
+
motion: "motion";
|
|
5322
5581
|
color: "color";
|
|
5323
5582
|
asset: "asset";
|
|
5324
|
-
motion: "motion";
|
|
5325
5583
|
select: "select";
|
|
5326
5584
|
}>;
|
|
5327
5585
|
value: z.ZodUnknown;
|
|
@@ -5366,8 +5624,8 @@ export declare const previewContextSchema: z.ZodObject<{
|
|
|
5366
5624
|
export declare const previewAxisResultSchema: z.ZodObject<{
|
|
5367
5625
|
status: z.ZodEnum<{
|
|
5368
5626
|
current: "current";
|
|
5369
|
-
applied: "applied";
|
|
5370
5627
|
unsupported: "unsupported";
|
|
5628
|
+
applied: "applied";
|
|
5371
5629
|
}>;
|
|
5372
5630
|
method: z.ZodString;
|
|
5373
5631
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -5403,8 +5661,8 @@ export declare const previewContextResultSchema: z.ZodObject<{
|
|
|
5403
5661
|
viewport: z.ZodObject<{
|
|
5404
5662
|
status: z.ZodEnum<{
|
|
5405
5663
|
current: "current";
|
|
5406
|
-
applied: "applied";
|
|
5407
5664
|
unsupported: "unsupported";
|
|
5665
|
+
applied: "applied";
|
|
5408
5666
|
}>;
|
|
5409
5667
|
method: z.ZodString;
|
|
5410
5668
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -5413,8 +5671,8 @@ export declare const previewContextResultSchema: z.ZodObject<{
|
|
|
5413
5671
|
theme: z.ZodObject<{
|
|
5414
5672
|
status: z.ZodEnum<{
|
|
5415
5673
|
current: "current";
|
|
5416
|
-
applied: "applied";
|
|
5417
5674
|
unsupported: "unsupported";
|
|
5675
|
+
applied: "applied";
|
|
5418
5676
|
}>;
|
|
5419
5677
|
method: z.ZodString;
|
|
5420
5678
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -5423,8 +5681,8 @@ export declare const previewContextResultSchema: z.ZodObject<{
|
|
|
5423
5681
|
state: z.ZodObject<{
|
|
5424
5682
|
status: z.ZodEnum<{
|
|
5425
5683
|
current: "current";
|
|
5426
|
-
applied: "applied";
|
|
5427
5684
|
unsupported: "unsupported";
|
|
5685
|
+
applied: "applied";
|
|
5428
5686
|
}>;
|
|
5429
5687
|
method: z.ZodString;
|
|
5430
5688
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -5433,8 +5691,8 @@ export declare const previewContextResultSchema: z.ZodObject<{
|
|
|
5433
5691
|
motion: z.ZodObject<{
|
|
5434
5692
|
status: z.ZodEnum<{
|
|
5435
5693
|
current: "current";
|
|
5436
|
-
applied: "applied";
|
|
5437
5694
|
unsupported: "unsupported";
|
|
5695
|
+
applied: "applied";
|
|
5438
5696
|
}>;
|
|
5439
5697
|
method: z.ZodString;
|
|
5440
5698
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -5552,8 +5810,8 @@ export declare const workspaceSnapshotSchema: z.ZodObject<{
|
|
|
5552
5810
|
viewport: z.ZodObject<{
|
|
5553
5811
|
status: z.ZodEnum<{
|
|
5554
5812
|
current: "current";
|
|
5555
|
-
applied: "applied";
|
|
5556
5813
|
unsupported: "unsupported";
|
|
5814
|
+
applied: "applied";
|
|
5557
5815
|
}>;
|
|
5558
5816
|
method: z.ZodString;
|
|
5559
5817
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -5562,8 +5820,8 @@ export declare const workspaceSnapshotSchema: z.ZodObject<{
|
|
|
5562
5820
|
theme: z.ZodObject<{
|
|
5563
5821
|
status: z.ZodEnum<{
|
|
5564
5822
|
current: "current";
|
|
5565
|
-
applied: "applied";
|
|
5566
5823
|
unsupported: "unsupported";
|
|
5824
|
+
applied: "applied";
|
|
5567
5825
|
}>;
|
|
5568
5826
|
method: z.ZodString;
|
|
5569
5827
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -5572,8 +5830,8 @@ export declare const workspaceSnapshotSchema: z.ZodObject<{
|
|
|
5572
5830
|
state: z.ZodObject<{
|
|
5573
5831
|
status: z.ZodEnum<{
|
|
5574
5832
|
current: "current";
|
|
5575
|
-
applied: "applied";
|
|
5576
5833
|
unsupported: "unsupported";
|
|
5834
|
+
applied: "applied";
|
|
5577
5835
|
}>;
|
|
5578
5836
|
method: z.ZodString;
|
|
5579
5837
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -5582,8 +5840,8 @@ export declare const workspaceSnapshotSchema: z.ZodObject<{
|
|
|
5582
5840
|
motion: z.ZodObject<{
|
|
5583
5841
|
status: z.ZodEnum<{
|
|
5584
5842
|
current: "current";
|
|
5585
|
-
applied: "applied";
|
|
5586
5843
|
unsupported: "unsupported";
|
|
5844
|
+
applied: "applied";
|
|
5587
5845
|
}>;
|
|
5588
5846
|
method: z.ZodString;
|
|
5589
5847
|
evidence: z.ZodDefault<z.ZodArray<z.ZodString>>;
|