@socotra/ec-react-schemas 2.6.3-next.2 → 2.6.3-next.3
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/index.d.ts +384 -192
- package/dist/index.es.js +2 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -33,23 +33,28 @@ export declare const accountConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
33
33
|
column: z.ZodString;
|
|
34
34
|
table: z.ZodString;
|
|
35
35
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
36
|
-
key: z.ZodString
|
|
36
|
+
key: z.ZodOptional<z.ZodString>;
|
|
37
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
37
38
|
}, "strip", z.ZodTypeAny, {
|
|
38
|
-
|
|
39
|
+
values?: string[] | undefined;
|
|
40
|
+
key?: string | undefined;
|
|
39
41
|
}, {
|
|
40
|
-
|
|
42
|
+
values?: string[] | undefined;
|
|
43
|
+
key?: string | undefined;
|
|
41
44
|
}>>>;
|
|
42
45
|
}, "strip", z.ZodTypeAny, {
|
|
43
46
|
column: string;
|
|
44
47
|
table: string;
|
|
45
48
|
where?: Record<string, {
|
|
46
|
-
|
|
49
|
+
values?: string[] | undefined;
|
|
50
|
+
key?: string | undefined;
|
|
47
51
|
}> | undefined;
|
|
48
52
|
}, {
|
|
49
53
|
column: string;
|
|
50
54
|
table: string;
|
|
51
55
|
where?: Record<string, {
|
|
52
|
-
|
|
56
|
+
values?: string[] | undefined;
|
|
57
|
+
key?: string | undefined;
|
|
53
58
|
}> | undefined;
|
|
54
59
|
}>>;
|
|
55
60
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -74,7 +79,8 @@ export declare const accountConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
74
79
|
column: string;
|
|
75
80
|
table: string;
|
|
76
81
|
where?: Record<string, {
|
|
77
|
-
|
|
82
|
+
values?: string[] | undefined;
|
|
83
|
+
key?: string | undefined;
|
|
78
84
|
}> | undefined;
|
|
79
85
|
} | undefined;
|
|
80
86
|
tag?: string[] | undefined;
|
|
@@ -99,7 +105,8 @@ export declare const accountConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
99
105
|
column: string;
|
|
100
106
|
table: string;
|
|
101
107
|
where?: Record<string, {
|
|
102
|
-
|
|
108
|
+
values?: string[] | undefined;
|
|
109
|
+
key?: string | undefined;
|
|
103
110
|
}> | undefined;
|
|
104
111
|
} | undefined;
|
|
105
112
|
tag?: string[] | undefined;
|
|
@@ -130,7 +137,8 @@ export declare const accountConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
130
137
|
column: string;
|
|
131
138
|
table: string;
|
|
132
139
|
where?: Record<string, {
|
|
133
|
-
|
|
140
|
+
values?: string[] | undefined;
|
|
141
|
+
key?: string | undefined;
|
|
134
142
|
}> | undefined;
|
|
135
143
|
} | undefined;
|
|
136
144
|
tag?: string[] | undefined;
|
|
@@ -161,7 +169,8 @@ export declare const accountConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
161
169
|
column: string;
|
|
162
170
|
table: string;
|
|
163
171
|
where?: Record<string, {
|
|
164
|
-
|
|
172
|
+
values?: string[] | undefined;
|
|
173
|
+
key?: string | undefined;
|
|
165
174
|
}> | undefined;
|
|
166
175
|
} | undefined;
|
|
167
176
|
tag?: string[] | undefined;
|
|
@@ -194,23 +203,28 @@ export declare const accountConfigSchema: z.ZodObject<{
|
|
|
194
203
|
column: z.ZodString;
|
|
195
204
|
table: z.ZodString;
|
|
196
205
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
197
|
-
key: z.ZodString
|
|
206
|
+
key: z.ZodOptional<z.ZodString>;
|
|
207
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
198
208
|
}, "strip", z.ZodTypeAny, {
|
|
199
|
-
|
|
209
|
+
values?: string[] | undefined;
|
|
210
|
+
key?: string | undefined;
|
|
200
211
|
}, {
|
|
201
|
-
|
|
212
|
+
values?: string[] | undefined;
|
|
213
|
+
key?: string | undefined;
|
|
202
214
|
}>>>;
|
|
203
215
|
}, "strip", z.ZodTypeAny, {
|
|
204
216
|
column: string;
|
|
205
217
|
table: string;
|
|
206
218
|
where?: Record<string, {
|
|
207
|
-
|
|
219
|
+
values?: string[] | undefined;
|
|
220
|
+
key?: string | undefined;
|
|
208
221
|
}> | undefined;
|
|
209
222
|
}, {
|
|
210
223
|
column: string;
|
|
211
224
|
table: string;
|
|
212
225
|
where?: Record<string, {
|
|
213
|
-
|
|
226
|
+
values?: string[] | undefined;
|
|
227
|
+
key?: string | undefined;
|
|
214
228
|
}> | undefined;
|
|
215
229
|
}>>;
|
|
216
230
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -235,7 +249,8 @@ export declare const accountConfigSchema: z.ZodObject<{
|
|
|
235
249
|
column: string;
|
|
236
250
|
table: string;
|
|
237
251
|
where?: Record<string, {
|
|
238
|
-
|
|
252
|
+
values?: string[] | undefined;
|
|
253
|
+
key?: string | undefined;
|
|
239
254
|
}> | undefined;
|
|
240
255
|
} | undefined;
|
|
241
256
|
tag?: string[] | undefined;
|
|
@@ -260,7 +275,8 @@ export declare const accountConfigSchema: z.ZodObject<{
|
|
|
260
275
|
column: string;
|
|
261
276
|
table: string;
|
|
262
277
|
where?: Record<string, {
|
|
263
|
-
|
|
278
|
+
values?: string[] | undefined;
|
|
279
|
+
key?: string | undefined;
|
|
264
280
|
}> | undefined;
|
|
265
281
|
} | undefined;
|
|
266
282
|
tag?: string[] | undefined;
|
|
@@ -291,7 +307,8 @@ export declare const accountConfigSchema: z.ZodObject<{
|
|
|
291
307
|
column: string;
|
|
292
308
|
table: string;
|
|
293
309
|
where?: Record<string, {
|
|
294
|
-
|
|
310
|
+
values?: string[] | undefined;
|
|
311
|
+
key?: string | undefined;
|
|
295
312
|
}> | undefined;
|
|
296
313
|
} | undefined;
|
|
297
314
|
tag?: string[] | undefined;
|
|
@@ -322,7 +339,8 @@ export declare const accountConfigSchema: z.ZodObject<{
|
|
|
322
339
|
column: string;
|
|
323
340
|
table: string;
|
|
324
341
|
where?: Record<string, {
|
|
325
|
-
|
|
342
|
+
values?: string[] | undefined;
|
|
343
|
+
key?: string | undefined;
|
|
326
344
|
}> | undefined;
|
|
327
345
|
} | undefined;
|
|
328
346
|
tag?: string[] | undefined;
|
|
@@ -927,23 +945,28 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
927
945
|
column: z.ZodString;
|
|
928
946
|
table: z.ZodString;
|
|
929
947
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
930
|
-
key: z.ZodString
|
|
948
|
+
key: z.ZodOptional<z.ZodString>;
|
|
949
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
931
950
|
}, "strip", z.ZodTypeAny, {
|
|
932
|
-
|
|
951
|
+
values?: string[] | undefined;
|
|
952
|
+
key?: string | undefined;
|
|
933
953
|
}, {
|
|
934
|
-
|
|
954
|
+
values?: string[] | undefined;
|
|
955
|
+
key?: string | undefined;
|
|
935
956
|
}>>>;
|
|
936
957
|
}, "strip", z.ZodTypeAny, {
|
|
937
958
|
column: string;
|
|
938
959
|
table: string;
|
|
939
960
|
where?: Record<string, {
|
|
940
|
-
|
|
961
|
+
values?: string[] | undefined;
|
|
962
|
+
key?: string | undefined;
|
|
941
963
|
}> | undefined;
|
|
942
964
|
}, {
|
|
943
965
|
column: string;
|
|
944
966
|
table: string;
|
|
945
967
|
where?: Record<string, {
|
|
946
|
-
|
|
968
|
+
values?: string[] | undefined;
|
|
969
|
+
key?: string | undefined;
|
|
947
970
|
}> | undefined;
|
|
948
971
|
}>>;
|
|
949
972
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -968,7 +991,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
968
991
|
column: string;
|
|
969
992
|
table: string;
|
|
970
993
|
where?: Record<string, {
|
|
971
|
-
|
|
994
|
+
values?: string[] | undefined;
|
|
995
|
+
key?: string | undefined;
|
|
972
996
|
}> | undefined;
|
|
973
997
|
} | undefined;
|
|
974
998
|
tag?: string[] | undefined;
|
|
@@ -993,7 +1017,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
993
1017
|
column: string;
|
|
994
1018
|
table: string;
|
|
995
1019
|
where?: Record<string, {
|
|
996
|
-
|
|
1020
|
+
values?: string[] | undefined;
|
|
1021
|
+
key?: string | undefined;
|
|
997
1022
|
}> | undefined;
|
|
998
1023
|
} | undefined;
|
|
999
1024
|
tag?: string[] | undefined;
|
|
@@ -1025,7 +1050,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1025
1050
|
column: string;
|
|
1026
1051
|
table: string;
|
|
1027
1052
|
where?: Record<string, {
|
|
1028
|
-
|
|
1053
|
+
values?: string[] | undefined;
|
|
1054
|
+
key?: string | undefined;
|
|
1029
1055
|
}> | undefined;
|
|
1030
1056
|
} | undefined;
|
|
1031
1057
|
tag?: string[] | undefined;
|
|
@@ -1059,7 +1085,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1059
1085
|
column: string;
|
|
1060
1086
|
table: string;
|
|
1061
1087
|
where?: Record<string, {
|
|
1062
|
-
|
|
1088
|
+
values?: string[] | undefined;
|
|
1089
|
+
key?: string | undefined;
|
|
1063
1090
|
}> | undefined;
|
|
1064
1091
|
} | undefined;
|
|
1065
1092
|
tag?: string[] | undefined;
|
|
@@ -1094,23 +1121,28 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1094
1121
|
column: z.ZodString;
|
|
1095
1122
|
table: z.ZodString;
|
|
1096
1123
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1097
|
-
key: z.ZodString
|
|
1124
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1125
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1098
1126
|
}, "strip", z.ZodTypeAny, {
|
|
1099
|
-
|
|
1127
|
+
values?: string[] | undefined;
|
|
1128
|
+
key?: string | undefined;
|
|
1100
1129
|
}, {
|
|
1101
|
-
|
|
1130
|
+
values?: string[] | undefined;
|
|
1131
|
+
key?: string | undefined;
|
|
1102
1132
|
}>>>;
|
|
1103
1133
|
}, "strip", z.ZodTypeAny, {
|
|
1104
1134
|
column: string;
|
|
1105
1135
|
table: string;
|
|
1106
1136
|
where?: Record<string, {
|
|
1107
|
-
|
|
1137
|
+
values?: string[] | undefined;
|
|
1138
|
+
key?: string | undefined;
|
|
1108
1139
|
}> | undefined;
|
|
1109
1140
|
}, {
|
|
1110
1141
|
column: string;
|
|
1111
1142
|
table: string;
|
|
1112
1143
|
where?: Record<string, {
|
|
1113
|
-
|
|
1144
|
+
values?: string[] | undefined;
|
|
1145
|
+
key?: string | undefined;
|
|
1114
1146
|
}> | undefined;
|
|
1115
1147
|
}>>;
|
|
1116
1148
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1135,7 +1167,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1135
1167
|
column: string;
|
|
1136
1168
|
table: string;
|
|
1137
1169
|
where?: Record<string, {
|
|
1138
|
-
|
|
1170
|
+
values?: string[] | undefined;
|
|
1171
|
+
key?: string | undefined;
|
|
1139
1172
|
}> | undefined;
|
|
1140
1173
|
} | undefined;
|
|
1141
1174
|
tag?: string[] | undefined;
|
|
@@ -1160,7 +1193,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1160
1193
|
column: string;
|
|
1161
1194
|
table: string;
|
|
1162
1195
|
where?: Record<string, {
|
|
1163
|
-
|
|
1196
|
+
values?: string[] | undefined;
|
|
1197
|
+
key?: string | undefined;
|
|
1164
1198
|
}> | undefined;
|
|
1165
1199
|
} | undefined;
|
|
1166
1200
|
tag?: string[] | undefined;
|
|
@@ -1191,7 +1225,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1191
1225
|
column: string;
|
|
1192
1226
|
table: string;
|
|
1193
1227
|
where?: Record<string, {
|
|
1194
|
-
|
|
1228
|
+
values?: string[] | undefined;
|
|
1229
|
+
key?: string | undefined;
|
|
1195
1230
|
}> | undefined;
|
|
1196
1231
|
} | undefined;
|
|
1197
1232
|
tag?: string[] | undefined;
|
|
@@ -1222,7 +1257,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1222
1257
|
column: string;
|
|
1223
1258
|
table: string;
|
|
1224
1259
|
where?: Record<string, {
|
|
1225
|
-
|
|
1260
|
+
values?: string[] | undefined;
|
|
1261
|
+
key?: string | undefined;
|
|
1226
1262
|
}> | undefined;
|
|
1227
1263
|
} | undefined;
|
|
1228
1264
|
tag?: string[] | undefined;
|
|
@@ -1261,23 +1297,28 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1261
1297
|
column: z.ZodString;
|
|
1262
1298
|
table: z.ZodString;
|
|
1263
1299
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1264
|
-
key: z.ZodString
|
|
1300
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1301
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1265
1302
|
}, "strip", z.ZodTypeAny, {
|
|
1266
|
-
|
|
1303
|
+
values?: string[] | undefined;
|
|
1304
|
+
key?: string | undefined;
|
|
1267
1305
|
}, {
|
|
1268
|
-
|
|
1306
|
+
values?: string[] | undefined;
|
|
1307
|
+
key?: string | undefined;
|
|
1269
1308
|
}>>>;
|
|
1270
1309
|
}, "strip", z.ZodTypeAny, {
|
|
1271
1310
|
column: string;
|
|
1272
1311
|
table: string;
|
|
1273
1312
|
where?: Record<string, {
|
|
1274
|
-
|
|
1313
|
+
values?: string[] | undefined;
|
|
1314
|
+
key?: string | undefined;
|
|
1275
1315
|
}> | undefined;
|
|
1276
1316
|
}, {
|
|
1277
1317
|
column: string;
|
|
1278
1318
|
table: string;
|
|
1279
1319
|
where?: Record<string, {
|
|
1280
|
-
|
|
1320
|
+
values?: string[] | undefined;
|
|
1321
|
+
key?: string | undefined;
|
|
1281
1322
|
}> | undefined;
|
|
1282
1323
|
}>>;
|
|
1283
1324
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1302,7 +1343,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1302
1343
|
column: string;
|
|
1303
1344
|
table: string;
|
|
1304
1345
|
where?: Record<string, {
|
|
1305
|
-
|
|
1346
|
+
values?: string[] | undefined;
|
|
1347
|
+
key?: string | undefined;
|
|
1306
1348
|
}> | undefined;
|
|
1307
1349
|
} | undefined;
|
|
1308
1350
|
tag?: string[] | undefined;
|
|
@@ -1327,7 +1369,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1327
1369
|
column: string;
|
|
1328
1370
|
table: string;
|
|
1329
1371
|
where?: Record<string, {
|
|
1330
|
-
|
|
1372
|
+
values?: string[] | undefined;
|
|
1373
|
+
key?: string | undefined;
|
|
1331
1374
|
}> | undefined;
|
|
1332
1375
|
} | undefined;
|
|
1333
1376
|
tag?: string[] | undefined;
|
|
@@ -1353,23 +1396,28 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1353
1396
|
column: z.ZodString;
|
|
1354
1397
|
table: z.ZodString;
|
|
1355
1398
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1356
|
-
key: z.ZodString
|
|
1399
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1400
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1357
1401
|
}, "strip", z.ZodTypeAny, {
|
|
1358
|
-
|
|
1402
|
+
values?: string[] | undefined;
|
|
1403
|
+
key?: string | undefined;
|
|
1359
1404
|
}, {
|
|
1360
|
-
|
|
1405
|
+
values?: string[] | undefined;
|
|
1406
|
+
key?: string | undefined;
|
|
1361
1407
|
}>>>;
|
|
1362
1408
|
}, "strip", z.ZodTypeAny, {
|
|
1363
1409
|
column: string;
|
|
1364
1410
|
table: string;
|
|
1365
1411
|
where?: Record<string, {
|
|
1366
|
-
|
|
1412
|
+
values?: string[] | undefined;
|
|
1413
|
+
key?: string | undefined;
|
|
1367
1414
|
}> | undefined;
|
|
1368
1415
|
}, {
|
|
1369
1416
|
column: string;
|
|
1370
1417
|
table: string;
|
|
1371
1418
|
where?: Record<string, {
|
|
1372
|
-
|
|
1419
|
+
values?: string[] | undefined;
|
|
1420
|
+
key?: string | undefined;
|
|
1373
1421
|
}> | undefined;
|
|
1374
1422
|
}>>;
|
|
1375
1423
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1394,7 +1442,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1394
1442
|
column: string;
|
|
1395
1443
|
table: string;
|
|
1396
1444
|
where?: Record<string, {
|
|
1397
|
-
|
|
1445
|
+
values?: string[] | undefined;
|
|
1446
|
+
key?: string | undefined;
|
|
1398
1447
|
}> | undefined;
|
|
1399
1448
|
} | undefined;
|
|
1400
1449
|
tag?: string[] | undefined;
|
|
@@ -1419,7 +1468,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1419
1468
|
column: string;
|
|
1420
1469
|
table: string;
|
|
1421
1470
|
where?: Record<string, {
|
|
1422
|
-
|
|
1471
|
+
values?: string[] | undefined;
|
|
1472
|
+
key?: string | undefined;
|
|
1423
1473
|
}> | undefined;
|
|
1424
1474
|
} | undefined;
|
|
1425
1475
|
tag?: string[] | undefined;
|
|
@@ -1462,7 +1512,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1462
1512
|
column: string;
|
|
1463
1513
|
table: string;
|
|
1464
1514
|
where?: Record<string, {
|
|
1465
|
-
|
|
1515
|
+
values?: string[] | undefined;
|
|
1516
|
+
key?: string | undefined;
|
|
1466
1517
|
}> | undefined;
|
|
1467
1518
|
} | undefined;
|
|
1468
1519
|
tag?: string[] | undefined;
|
|
@@ -1507,7 +1558,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1507
1558
|
column: string;
|
|
1508
1559
|
table: string;
|
|
1509
1560
|
where?: Record<string, {
|
|
1510
|
-
|
|
1561
|
+
values?: string[] | undefined;
|
|
1562
|
+
key?: string | undefined;
|
|
1511
1563
|
}> | undefined;
|
|
1512
1564
|
} | undefined;
|
|
1513
1565
|
tag?: string[] | undefined;
|
|
@@ -1537,7 +1589,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1537
1589
|
column: string;
|
|
1538
1590
|
table: string;
|
|
1539
1591
|
where?: Record<string, {
|
|
1540
|
-
|
|
1592
|
+
values?: string[] | undefined;
|
|
1593
|
+
key?: string | undefined;
|
|
1541
1594
|
}> | undefined;
|
|
1542
1595
|
} | undefined;
|
|
1543
1596
|
tag?: string[] | undefined;
|
|
@@ -1582,7 +1635,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1582
1635
|
column: string;
|
|
1583
1636
|
table: string;
|
|
1584
1637
|
where?: Record<string, {
|
|
1585
|
-
|
|
1638
|
+
values?: string[] | undefined;
|
|
1639
|
+
key?: string | undefined;
|
|
1586
1640
|
}> | undefined;
|
|
1587
1641
|
} | undefined;
|
|
1588
1642
|
tag?: string[] | undefined;
|
|
@@ -1767,23 +1821,28 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1767
1821
|
column: z.ZodString;
|
|
1768
1822
|
table: z.ZodString;
|
|
1769
1823
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1770
|
-
key: z.ZodString
|
|
1824
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1825
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1771
1826
|
}, "strip", z.ZodTypeAny, {
|
|
1772
|
-
|
|
1827
|
+
values?: string[] | undefined;
|
|
1828
|
+
key?: string | undefined;
|
|
1773
1829
|
}, {
|
|
1774
|
-
|
|
1830
|
+
values?: string[] | undefined;
|
|
1831
|
+
key?: string | undefined;
|
|
1775
1832
|
}>>>;
|
|
1776
1833
|
}, "strip", z.ZodTypeAny, {
|
|
1777
1834
|
column: string;
|
|
1778
1835
|
table: string;
|
|
1779
1836
|
where?: Record<string, {
|
|
1780
|
-
|
|
1837
|
+
values?: string[] | undefined;
|
|
1838
|
+
key?: string | undefined;
|
|
1781
1839
|
}> | undefined;
|
|
1782
1840
|
}, {
|
|
1783
1841
|
column: string;
|
|
1784
1842
|
table: string;
|
|
1785
1843
|
where?: Record<string, {
|
|
1786
|
-
|
|
1844
|
+
values?: string[] | undefined;
|
|
1845
|
+
key?: string | undefined;
|
|
1787
1846
|
}> | undefined;
|
|
1788
1847
|
}>>;
|
|
1789
1848
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1808,7 +1867,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1808
1867
|
column: string;
|
|
1809
1868
|
table: string;
|
|
1810
1869
|
where?: Record<string, {
|
|
1811
|
-
|
|
1870
|
+
values?: string[] | undefined;
|
|
1871
|
+
key?: string | undefined;
|
|
1812
1872
|
}> | undefined;
|
|
1813
1873
|
} | undefined;
|
|
1814
1874
|
tag?: string[] | undefined;
|
|
@@ -1833,7 +1893,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1833
1893
|
column: string;
|
|
1834
1894
|
table: string;
|
|
1835
1895
|
where?: Record<string, {
|
|
1836
|
-
|
|
1896
|
+
values?: string[] | undefined;
|
|
1897
|
+
key?: string | undefined;
|
|
1837
1898
|
}> | undefined;
|
|
1838
1899
|
} | undefined;
|
|
1839
1900
|
tag?: string[] | undefined;
|
|
@@ -1865,7 +1926,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1865
1926
|
column: string;
|
|
1866
1927
|
table: string;
|
|
1867
1928
|
where?: Record<string, {
|
|
1868
|
-
|
|
1929
|
+
values?: string[] | undefined;
|
|
1930
|
+
key?: string | undefined;
|
|
1869
1931
|
}> | undefined;
|
|
1870
1932
|
} | undefined;
|
|
1871
1933
|
tag?: string[] | undefined;
|
|
@@ -1899,7 +1961,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1899
1961
|
column: string;
|
|
1900
1962
|
table: string;
|
|
1901
1963
|
where?: Record<string, {
|
|
1902
|
-
|
|
1964
|
+
values?: string[] | undefined;
|
|
1965
|
+
key?: string | undefined;
|
|
1903
1966
|
}> | undefined;
|
|
1904
1967
|
} | undefined;
|
|
1905
1968
|
tag?: string[] | undefined;
|
|
@@ -1936,23 +1999,28 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1936
1999
|
column: z.ZodString;
|
|
1937
2000
|
table: z.ZodString;
|
|
1938
2001
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1939
|
-
key: z.ZodString
|
|
2002
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2003
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1940
2004
|
}, "strip", z.ZodTypeAny, {
|
|
1941
|
-
|
|
2005
|
+
values?: string[] | undefined;
|
|
2006
|
+
key?: string | undefined;
|
|
1942
2007
|
}, {
|
|
1943
|
-
|
|
2008
|
+
values?: string[] | undefined;
|
|
2009
|
+
key?: string | undefined;
|
|
1944
2010
|
}>>>;
|
|
1945
2011
|
}, "strip", z.ZodTypeAny, {
|
|
1946
2012
|
column: string;
|
|
1947
2013
|
table: string;
|
|
1948
2014
|
where?: Record<string, {
|
|
1949
|
-
|
|
2015
|
+
values?: string[] | undefined;
|
|
2016
|
+
key?: string | undefined;
|
|
1950
2017
|
}> | undefined;
|
|
1951
2018
|
}, {
|
|
1952
2019
|
column: string;
|
|
1953
2020
|
table: string;
|
|
1954
2021
|
where?: Record<string, {
|
|
1955
|
-
|
|
2022
|
+
values?: string[] | undefined;
|
|
2023
|
+
key?: string | undefined;
|
|
1956
2024
|
}> | undefined;
|
|
1957
2025
|
}>>;
|
|
1958
2026
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1977,7 +2045,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1977
2045
|
column: string;
|
|
1978
2046
|
table: string;
|
|
1979
2047
|
where?: Record<string, {
|
|
1980
|
-
|
|
2048
|
+
values?: string[] | undefined;
|
|
2049
|
+
key?: string | undefined;
|
|
1981
2050
|
}> | undefined;
|
|
1982
2051
|
} | undefined;
|
|
1983
2052
|
tag?: string[] | undefined;
|
|
@@ -2002,7 +2071,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2002
2071
|
column: string;
|
|
2003
2072
|
table: string;
|
|
2004
2073
|
where?: Record<string, {
|
|
2005
|
-
|
|
2074
|
+
values?: string[] | undefined;
|
|
2075
|
+
key?: string | undefined;
|
|
2006
2076
|
}> | undefined;
|
|
2007
2077
|
} | undefined;
|
|
2008
2078
|
tag?: string[] | undefined;
|
|
@@ -2034,7 +2104,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2034
2104
|
column: string;
|
|
2035
2105
|
table: string;
|
|
2036
2106
|
where?: Record<string, {
|
|
2037
|
-
|
|
2107
|
+
values?: string[] | undefined;
|
|
2108
|
+
key?: string | undefined;
|
|
2038
2109
|
}> | undefined;
|
|
2039
2110
|
} | undefined;
|
|
2040
2111
|
tag?: string[] | undefined;
|
|
@@ -2068,7 +2139,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2068
2139
|
column: string;
|
|
2069
2140
|
table: string;
|
|
2070
2141
|
where?: Record<string, {
|
|
2071
|
-
|
|
2142
|
+
values?: string[] | undefined;
|
|
2143
|
+
key?: string | undefined;
|
|
2072
2144
|
}> | undefined;
|
|
2073
2145
|
} | undefined;
|
|
2074
2146
|
tag?: string[] | undefined;
|
|
@@ -2105,23 +2177,28 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2105
2177
|
column: z.ZodString;
|
|
2106
2178
|
table: z.ZodString;
|
|
2107
2179
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2108
|
-
key: z.ZodString
|
|
2180
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2181
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2109
2182
|
}, "strip", z.ZodTypeAny, {
|
|
2110
|
-
|
|
2183
|
+
values?: string[] | undefined;
|
|
2184
|
+
key?: string | undefined;
|
|
2111
2185
|
}, {
|
|
2112
|
-
|
|
2186
|
+
values?: string[] | undefined;
|
|
2187
|
+
key?: string | undefined;
|
|
2113
2188
|
}>>>;
|
|
2114
2189
|
}, "strip", z.ZodTypeAny, {
|
|
2115
2190
|
column: string;
|
|
2116
2191
|
table: string;
|
|
2117
2192
|
where?: Record<string, {
|
|
2118
|
-
|
|
2193
|
+
values?: string[] | undefined;
|
|
2194
|
+
key?: string | undefined;
|
|
2119
2195
|
}> | undefined;
|
|
2120
2196
|
}, {
|
|
2121
2197
|
column: string;
|
|
2122
2198
|
table: string;
|
|
2123
2199
|
where?: Record<string, {
|
|
2124
|
-
|
|
2200
|
+
values?: string[] | undefined;
|
|
2201
|
+
key?: string | undefined;
|
|
2125
2202
|
}> | undefined;
|
|
2126
2203
|
}>>;
|
|
2127
2204
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -2146,7 +2223,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2146
2223
|
column: string;
|
|
2147
2224
|
table: string;
|
|
2148
2225
|
where?: Record<string, {
|
|
2149
|
-
|
|
2226
|
+
values?: string[] | undefined;
|
|
2227
|
+
key?: string | undefined;
|
|
2150
2228
|
}> | undefined;
|
|
2151
2229
|
} | undefined;
|
|
2152
2230
|
tag?: string[] | undefined;
|
|
@@ -2171,7 +2249,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2171
2249
|
column: string;
|
|
2172
2250
|
table: string;
|
|
2173
2251
|
where?: Record<string, {
|
|
2174
|
-
|
|
2252
|
+
values?: string[] | undefined;
|
|
2253
|
+
key?: string | undefined;
|
|
2175
2254
|
}> | undefined;
|
|
2176
2255
|
} | undefined;
|
|
2177
2256
|
tag?: string[] | undefined;
|
|
@@ -2203,7 +2282,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2203
2282
|
column: string;
|
|
2204
2283
|
table: string;
|
|
2205
2284
|
where?: Record<string, {
|
|
2206
|
-
|
|
2285
|
+
values?: string[] | undefined;
|
|
2286
|
+
key?: string | undefined;
|
|
2207
2287
|
}> | undefined;
|
|
2208
2288
|
} | undefined;
|
|
2209
2289
|
tag?: string[] | undefined;
|
|
@@ -2237,7 +2317,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2237
2317
|
column: string;
|
|
2238
2318
|
table: string;
|
|
2239
2319
|
where?: Record<string, {
|
|
2240
|
-
|
|
2320
|
+
values?: string[] | undefined;
|
|
2321
|
+
key?: string | undefined;
|
|
2241
2322
|
}> | undefined;
|
|
2242
2323
|
} | undefined;
|
|
2243
2324
|
tag?: string[] | undefined;
|
|
@@ -2274,23 +2355,28 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2274
2355
|
column: z.ZodString;
|
|
2275
2356
|
table: z.ZodString;
|
|
2276
2357
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2277
|
-
key: z.ZodString
|
|
2358
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2359
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2278
2360
|
}, "strip", z.ZodTypeAny, {
|
|
2279
|
-
|
|
2361
|
+
values?: string[] | undefined;
|
|
2362
|
+
key?: string | undefined;
|
|
2280
2363
|
}, {
|
|
2281
|
-
|
|
2364
|
+
values?: string[] | undefined;
|
|
2365
|
+
key?: string | undefined;
|
|
2282
2366
|
}>>>;
|
|
2283
2367
|
}, "strip", z.ZodTypeAny, {
|
|
2284
2368
|
column: string;
|
|
2285
2369
|
table: string;
|
|
2286
2370
|
where?: Record<string, {
|
|
2287
|
-
|
|
2371
|
+
values?: string[] | undefined;
|
|
2372
|
+
key?: string | undefined;
|
|
2288
2373
|
}> | undefined;
|
|
2289
2374
|
}, {
|
|
2290
2375
|
column: string;
|
|
2291
2376
|
table: string;
|
|
2292
2377
|
where?: Record<string, {
|
|
2293
|
-
|
|
2378
|
+
values?: string[] | undefined;
|
|
2379
|
+
key?: string | undefined;
|
|
2294
2380
|
}> | undefined;
|
|
2295
2381
|
}>>;
|
|
2296
2382
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -2315,7 +2401,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2315
2401
|
column: string;
|
|
2316
2402
|
table: string;
|
|
2317
2403
|
where?: Record<string, {
|
|
2318
|
-
|
|
2404
|
+
values?: string[] | undefined;
|
|
2405
|
+
key?: string | undefined;
|
|
2319
2406
|
}> | undefined;
|
|
2320
2407
|
} | undefined;
|
|
2321
2408
|
tag?: string[] | undefined;
|
|
@@ -2340,7 +2427,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2340
2427
|
column: string;
|
|
2341
2428
|
table: string;
|
|
2342
2429
|
where?: Record<string, {
|
|
2343
|
-
|
|
2430
|
+
values?: string[] | undefined;
|
|
2431
|
+
key?: string | undefined;
|
|
2344
2432
|
}> | undefined;
|
|
2345
2433
|
} | undefined;
|
|
2346
2434
|
tag?: string[] | undefined;
|
|
@@ -2372,7 +2460,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2372
2460
|
column: string;
|
|
2373
2461
|
table: string;
|
|
2374
2462
|
where?: Record<string, {
|
|
2375
|
-
|
|
2463
|
+
values?: string[] | undefined;
|
|
2464
|
+
key?: string | undefined;
|
|
2376
2465
|
}> | undefined;
|
|
2377
2466
|
} | undefined;
|
|
2378
2467
|
tag?: string[] | undefined;
|
|
@@ -2406,7 +2495,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2406
2495
|
column: string;
|
|
2407
2496
|
table: string;
|
|
2408
2497
|
where?: Record<string, {
|
|
2409
|
-
|
|
2498
|
+
values?: string[] | undefined;
|
|
2499
|
+
key?: string | undefined;
|
|
2410
2500
|
}> | undefined;
|
|
2411
2501
|
} | undefined;
|
|
2412
2502
|
tag?: string[] | undefined;
|
|
@@ -2470,7 +2560,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2470
2560
|
column: string;
|
|
2471
2561
|
table: string;
|
|
2472
2562
|
where?: Record<string, {
|
|
2473
|
-
|
|
2563
|
+
values?: string[] | undefined;
|
|
2564
|
+
key?: string | undefined;
|
|
2474
2565
|
}> | undefined;
|
|
2475
2566
|
} | undefined;
|
|
2476
2567
|
tag?: string[] | undefined;
|
|
@@ -2502,7 +2593,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2502
2593
|
column: string;
|
|
2503
2594
|
table: string;
|
|
2504
2595
|
where?: Record<string, {
|
|
2505
|
-
|
|
2596
|
+
values?: string[] | undefined;
|
|
2597
|
+
key?: string | undefined;
|
|
2506
2598
|
}> | undefined;
|
|
2507
2599
|
} | undefined;
|
|
2508
2600
|
tag?: string[] | undefined;
|
|
@@ -2547,7 +2639,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2547
2639
|
column: string;
|
|
2548
2640
|
table: string;
|
|
2549
2641
|
where?: Record<string, {
|
|
2550
|
-
|
|
2642
|
+
values?: string[] | undefined;
|
|
2643
|
+
key?: string | undefined;
|
|
2551
2644
|
}> | undefined;
|
|
2552
2645
|
} | undefined;
|
|
2553
2646
|
tag?: string[] | undefined;
|
|
@@ -2618,7 +2711,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2618
2711
|
column: string;
|
|
2619
2712
|
table: string;
|
|
2620
2713
|
where?: Record<string, {
|
|
2621
|
-
|
|
2714
|
+
values?: string[] | undefined;
|
|
2715
|
+
key?: string | undefined;
|
|
2622
2716
|
}> | undefined;
|
|
2623
2717
|
} | undefined;
|
|
2624
2718
|
tag?: string[] | undefined;
|
|
@@ -2672,7 +2766,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2672
2766
|
column: string;
|
|
2673
2767
|
table: string;
|
|
2674
2768
|
where?: Record<string, {
|
|
2675
|
-
|
|
2769
|
+
values?: string[] | undefined;
|
|
2770
|
+
key?: string | undefined;
|
|
2676
2771
|
}> | undefined;
|
|
2677
2772
|
} | undefined;
|
|
2678
2773
|
tag?: string[] | undefined;
|
|
@@ -2707,7 +2802,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2707
2802
|
column: string;
|
|
2708
2803
|
table: string;
|
|
2709
2804
|
where?: Record<string, {
|
|
2710
|
-
|
|
2805
|
+
values?: string[] | undefined;
|
|
2806
|
+
key?: string | undefined;
|
|
2711
2807
|
}> | undefined;
|
|
2712
2808
|
} | undefined;
|
|
2713
2809
|
tag?: string[] | undefined;
|
|
@@ -2742,7 +2838,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2742
2838
|
column: string;
|
|
2743
2839
|
table: string;
|
|
2744
2840
|
where?: Record<string, {
|
|
2745
|
-
|
|
2841
|
+
values?: string[] | undefined;
|
|
2842
|
+
key?: string | undefined;
|
|
2746
2843
|
}> | undefined;
|
|
2747
2844
|
} | undefined;
|
|
2748
2845
|
tag?: string[] | undefined;
|
|
@@ -2777,7 +2874,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2777
2874
|
column: string;
|
|
2778
2875
|
table: string;
|
|
2779
2876
|
where?: Record<string, {
|
|
2780
|
-
|
|
2877
|
+
values?: string[] | undefined;
|
|
2878
|
+
key?: string | undefined;
|
|
2781
2879
|
}> | undefined;
|
|
2782
2880
|
} | undefined;
|
|
2783
2881
|
tag?: string[] | undefined;
|
|
@@ -2826,7 +2924,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2826
2924
|
column: string;
|
|
2827
2925
|
table: string;
|
|
2828
2926
|
where?: Record<string, {
|
|
2829
|
-
|
|
2927
|
+
values?: string[] | undefined;
|
|
2928
|
+
key?: string | undefined;
|
|
2830
2929
|
}> | undefined;
|
|
2831
2930
|
} | undefined;
|
|
2832
2931
|
tag?: string[] | undefined;
|
|
@@ -2858,7 +2957,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2858
2957
|
column: string;
|
|
2859
2958
|
table: string;
|
|
2860
2959
|
where?: Record<string, {
|
|
2861
|
-
|
|
2960
|
+
values?: string[] | undefined;
|
|
2961
|
+
key?: string | undefined;
|
|
2862
2962
|
}> | undefined;
|
|
2863
2963
|
} | undefined;
|
|
2864
2964
|
tag?: string[] | undefined;
|
|
@@ -2903,7 +3003,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2903
3003
|
column: string;
|
|
2904
3004
|
table: string;
|
|
2905
3005
|
where?: Record<string, {
|
|
2906
|
-
|
|
3006
|
+
values?: string[] | undefined;
|
|
3007
|
+
key?: string | undefined;
|
|
2907
3008
|
}> | undefined;
|
|
2908
3009
|
} | undefined;
|
|
2909
3010
|
tag?: string[] | undefined;
|
|
@@ -2974,7 +3075,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
2974
3075
|
column: string;
|
|
2975
3076
|
table: string;
|
|
2976
3077
|
where?: Record<string, {
|
|
2977
|
-
|
|
3078
|
+
values?: string[] | undefined;
|
|
3079
|
+
key?: string | undefined;
|
|
2978
3080
|
}> | undefined;
|
|
2979
3081
|
} | undefined;
|
|
2980
3082
|
tag?: string[] | undefined;
|
|
@@ -3028,7 +3130,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
3028
3130
|
column: string;
|
|
3029
3131
|
table: string;
|
|
3030
3132
|
where?: Record<string, {
|
|
3031
|
-
|
|
3133
|
+
values?: string[] | undefined;
|
|
3134
|
+
key?: string | undefined;
|
|
3032
3135
|
}> | undefined;
|
|
3033
3136
|
} | undefined;
|
|
3034
3137
|
tag?: string[] | undefined;
|
|
@@ -3063,7 +3166,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
3063
3166
|
column: string;
|
|
3064
3167
|
table: string;
|
|
3065
3168
|
where?: Record<string, {
|
|
3066
|
-
|
|
3169
|
+
values?: string[] | undefined;
|
|
3170
|
+
key?: string | undefined;
|
|
3067
3171
|
}> | undefined;
|
|
3068
3172
|
} | undefined;
|
|
3069
3173
|
tag?: string[] | undefined;
|
|
@@ -3098,7 +3202,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
3098
3202
|
column: string;
|
|
3099
3203
|
table: string;
|
|
3100
3204
|
where?: Record<string, {
|
|
3101
|
-
|
|
3205
|
+
values?: string[] | undefined;
|
|
3206
|
+
key?: string | undefined;
|
|
3102
3207
|
}> | undefined;
|
|
3103
3208
|
} | undefined;
|
|
3104
3209
|
tag?: string[] | undefined;
|
|
@@ -3133,7 +3238,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
3133
3238
|
column: string;
|
|
3134
3239
|
table: string;
|
|
3135
3240
|
where?: Record<string, {
|
|
3136
|
-
|
|
3241
|
+
values?: string[] | undefined;
|
|
3242
|
+
key?: string | undefined;
|
|
3137
3243
|
}> | undefined;
|
|
3138
3244
|
} | undefined;
|
|
3139
3245
|
tag?: string[] | undefined;
|
|
@@ -3187,23 +3293,28 @@ export declare const dataTypeConfigSchema: z.ZodObject<{
|
|
|
3187
3293
|
column: z.ZodString;
|
|
3188
3294
|
table: z.ZodString;
|
|
3189
3295
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3190
|
-
key: z.ZodString
|
|
3296
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3297
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3191
3298
|
}, "strip", z.ZodTypeAny, {
|
|
3192
|
-
|
|
3299
|
+
values?: string[] | undefined;
|
|
3300
|
+
key?: string | undefined;
|
|
3193
3301
|
}, {
|
|
3194
|
-
|
|
3302
|
+
values?: string[] | undefined;
|
|
3303
|
+
key?: string | undefined;
|
|
3195
3304
|
}>>>;
|
|
3196
3305
|
}, "strip", z.ZodTypeAny, {
|
|
3197
3306
|
column: string;
|
|
3198
3307
|
table: string;
|
|
3199
3308
|
where?: Record<string, {
|
|
3200
|
-
|
|
3309
|
+
values?: string[] | undefined;
|
|
3310
|
+
key?: string | undefined;
|
|
3201
3311
|
}> | undefined;
|
|
3202
3312
|
}, {
|
|
3203
3313
|
column: string;
|
|
3204
3314
|
table: string;
|
|
3205
3315
|
where?: Record<string, {
|
|
3206
|
-
|
|
3316
|
+
values?: string[] | undefined;
|
|
3317
|
+
key?: string | undefined;
|
|
3207
3318
|
}> | undefined;
|
|
3208
3319
|
}>>;
|
|
3209
3320
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -3228,7 +3339,8 @@ export declare const dataTypeConfigSchema: z.ZodObject<{
|
|
|
3228
3339
|
column: string;
|
|
3229
3340
|
table: string;
|
|
3230
3341
|
where?: Record<string, {
|
|
3231
|
-
|
|
3342
|
+
values?: string[] | undefined;
|
|
3343
|
+
key?: string | undefined;
|
|
3232
3344
|
}> | undefined;
|
|
3233
3345
|
} | undefined;
|
|
3234
3346
|
tag?: string[] | undefined;
|
|
@@ -3253,7 +3365,8 @@ export declare const dataTypeConfigSchema: z.ZodObject<{
|
|
|
3253
3365
|
column: string;
|
|
3254
3366
|
table: string;
|
|
3255
3367
|
where?: Record<string, {
|
|
3256
|
-
|
|
3368
|
+
values?: string[] | undefined;
|
|
3369
|
+
key?: string | undefined;
|
|
3257
3370
|
}> | undefined;
|
|
3258
3371
|
} | undefined;
|
|
3259
3372
|
tag?: string[] | undefined;
|
|
@@ -3283,7 +3396,8 @@ export declare const dataTypeConfigSchema: z.ZodObject<{
|
|
|
3283
3396
|
column: string;
|
|
3284
3397
|
table: string;
|
|
3285
3398
|
where?: Record<string, {
|
|
3286
|
-
|
|
3399
|
+
values?: string[] | undefined;
|
|
3400
|
+
key?: string | undefined;
|
|
3287
3401
|
}> | undefined;
|
|
3288
3402
|
} | undefined;
|
|
3289
3403
|
tag?: string[] | undefined;
|
|
@@ -3313,7 +3427,8 @@ export declare const dataTypeConfigSchema: z.ZodObject<{
|
|
|
3313
3427
|
column: string;
|
|
3314
3428
|
table: string;
|
|
3315
3429
|
where?: Record<string, {
|
|
3316
|
-
|
|
3430
|
+
values?: string[] | undefined;
|
|
3431
|
+
key?: string | undefined;
|
|
3317
3432
|
}> | undefined;
|
|
3318
3433
|
} | undefined;
|
|
3319
3434
|
tag?: string[] | undefined;
|
|
@@ -3345,23 +3460,28 @@ export declare const dataTypesRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject
|
|
|
3345
3460
|
column: z.ZodString;
|
|
3346
3461
|
table: z.ZodString;
|
|
3347
3462
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3348
|
-
key: z.ZodString
|
|
3463
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3464
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3349
3465
|
}, "strip", z.ZodTypeAny, {
|
|
3350
|
-
|
|
3466
|
+
values?: string[] | undefined;
|
|
3467
|
+
key?: string | undefined;
|
|
3351
3468
|
}, {
|
|
3352
|
-
|
|
3469
|
+
values?: string[] | undefined;
|
|
3470
|
+
key?: string | undefined;
|
|
3353
3471
|
}>>>;
|
|
3354
3472
|
}, "strip", z.ZodTypeAny, {
|
|
3355
3473
|
column: string;
|
|
3356
3474
|
table: string;
|
|
3357
3475
|
where?: Record<string, {
|
|
3358
|
-
|
|
3476
|
+
values?: string[] | undefined;
|
|
3477
|
+
key?: string | undefined;
|
|
3359
3478
|
}> | undefined;
|
|
3360
3479
|
}, {
|
|
3361
3480
|
column: string;
|
|
3362
3481
|
table: string;
|
|
3363
3482
|
where?: Record<string, {
|
|
3364
|
-
|
|
3483
|
+
values?: string[] | undefined;
|
|
3484
|
+
key?: string | undefined;
|
|
3365
3485
|
}> | undefined;
|
|
3366
3486
|
}>>;
|
|
3367
3487
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -3386,7 +3506,8 @@ export declare const dataTypesRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject
|
|
|
3386
3506
|
column: string;
|
|
3387
3507
|
table: string;
|
|
3388
3508
|
where?: Record<string, {
|
|
3389
|
-
|
|
3509
|
+
values?: string[] | undefined;
|
|
3510
|
+
key?: string | undefined;
|
|
3390
3511
|
}> | undefined;
|
|
3391
3512
|
} | undefined;
|
|
3392
3513
|
tag?: string[] | undefined;
|
|
@@ -3411,7 +3532,8 @@ export declare const dataTypesRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject
|
|
|
3411
3532
|
column: string;
|
|
3412
3533
|
table: string;
|
|
3413
3534
|
where?: Record<string, {
|
|
3414
|
-
|
|
3535
|
+
values?: string[] | undefined;
|
|
3536
|
+
key?: string | undefined;
|
|
3415
3537
|
}> | undefined;
|
|
3416
3538
|
} | undefined;
|
|
3417
3539
|
tag?: string[] | undefined;
|
|
@@ -3441,7 +3563,8 @@ export declare const dataTypesRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject
|
|
|
3441
3563
|
column: string;
|
|
3442
3564
|
table: string;
|
|
3443
3565
|
where?: Record<string, {
|
|
3444
|
-
|
|
3566
|
+
values?: string[] | undefined;
|
|
3567
|
+
key?: string | undefined;
|
|
3445
3568
|
}> | undefined;
|
|
3446
3569
|
} | undefined;
|
|
3447
3570
|
tag?: string[] | undefined;
|
|
@@ -3471,7 +3594,8 @@ export declare const dataTypesRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject
|
|
|
3471
3594
|
column: string;
|
|
3472
3595
|
table: string;
|
|
3473
3596
|
where?: Record<string, {
|
|
3474
|
-
|
|
3597
|
+
values?: string[] | undefined;
|
|
3598
|
+
key?: string | undefined;
|
|
3475
3599
|
}> | undefined;
|
|
3476
3600
|
} | undefined;
|
|
3477
3601
|
tag?: string[] | undefined;
|
|
@@ -3812,23 +3936,28 @@ export declare const elementConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
3812
3936
|
column: z.ZodString;
|
|
3813
3937
|
table: z.ZodString;
|
|
3814
3938
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3815
|
-
key: z.ZodString
|
|
3939
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3940
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3816
3941
|
}, "strip", z.ZodTypeAny, {
|
|
3817
|
-
|
|
3942
|
+
values?: string[] | undefined;
|
|
3943
|
+
key?: string | undefined;
|
|
3818
3944
|
}, {
|
|
3819
|
-
|
|
3945
|
+
values?: string[] | undefined;
|
|
3946
|
+
key?: string | undefined;
|
|
3820
3947
|
}>>>;
|
|
3821
3948
|
}, "strip", z.ZodTypeAny, {
|
|
3822
3949
|
column: string;
|
|
3823
3950
|
table: string;
|
|
3824
3951
|
where?: Record<string, {
|
|
3825
|
-
|
|
3952
|
+
values?: string[] | undefined;
|
|
3953
|
+
key?: string | undefined;
|
|
3826
3954
|
}> | undefined;
|
|
3827
3955
|
}, {
|
|
3828
3956
|
column: string;
|
|
3829
3957
|
table: string;
|
|
3830
3958
|
where?: Record<string, {
|
|
3831
|
-
|
|
3959
|
+
values?: string[] | undefined;
|
|
3960
|
+
key?: string | undefined;
|
|
3832
3961
|
}> | undefined;
|
|
3833
3962
|
}>>;
|
|
3834
3963
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -3853,7 +3982,8 @@ export declare const elementConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
3853
3982
|
column: string;
|
|
3854
3983
|
table: string;
|
|
3855
3984
|
where?: Record<string, {
|
|
3856
|
-
|
|
3985
|
+
values?: string[] | undefined;
|
|
3986
|
+
key?: string | undefined;
|
|
3857
3987
|
}> | undefined;
|
|
3858
3988
|
} | undefined;
|
|
3859
3989
|
tag?: string[] | undefined;
|
|
@@ -3878,7 +4008,8 @@ export declare const elementConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
3878
4008
|
column: string;
|
|
3879
4009
|
table: string;
|
|
3880
4010
|
where?: Record<string, {
|
|
3881
|
-
|
|
4011
|
+
values?: string[] | undefined;
|
|
4012
|
+
key?: string | undefined;
|
|
3882
4013
|
}> | undefined;
|
|
3883
4014
|
} | undefined;
|
|
3884
4015
|
tag?: string[] | undefined;
|
|
@@ -3910,7 +4041,8 @@ export declare const elementConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
3910
4041
|
column: string;
|
|
3911
4042
|
table: string;
|
|
3912
4043
|
where?: Record<string, {
|
|
3913
|
-
|
|
4044
|
+
values?: string[] | undefined;
|
|
4045
|
+
key?: string | undefined;
|
|
3914
4046
|
}> | undefined;
|
|
3915
4047
|
} | undefined;
|
|
3916
4048
|
tag?: string[] | undefined;
|
|
@@ -3944,7 +4076,8 @@ export declare const elementConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
3944
4076
|
column: string;
|
|
3945
4077
|
table: string;
|
|
3946
4078
|
where?: Record<string, {
|
|
3947
|
-
|
|
4079
|
+
values?: string[] | undefined;
|
|
4080
|
+
key?: string | undefined;
|
|
3948
4081
|
}> | undefined;
|
|
3949
4082
|
} | undefined;
|
|
3950
4083
|
tag?: string[] | undefined;
|
|
@@ -3982,23 +4115,28 @@ export declare const elementConfigSchema: z.ZodObject<{
|
|
|
3982
4115
|
column: z.ZodString;
|
|
3983
4116
|
table: z.ZodString;
|
|
3984
4117
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3985
|
-
key: z.ZodString
|
|
4118
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4119
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3986
4120
|
}, "strip", z.ZodTypeAny, {
|
|
3987
|
-
|
|
4121
|
+
values?: string[] | undefined;
|
|
4122
|
+
key?: string | undefined;
|
|
3988
4123
|
}, {
|
|
3989
|
-
|
|
4124
|
+
values?: string[] | undefined;
|
|
4125
|
+
key?: string | undefined;
|
|
3990
4126
|
}>>>;
|
|
3991
4127
|
}, "strip", z.ZodTypeAny, {
|
|
3992
4128
|
column: string;
|
|
3993
4129
|
table: string;
|
|
3994
4130
|
where?: Record<string, {
|
|
3995
|
-
|
|
4131
|
+
values?: string[] | undefined;
|
|
4132
|
+
key?: string | undefined;
|
|
3996
4133
|
}> | undefined;
|
|
3997
4134
|
}, {
|
|
3998
4135
|
column: string;
|
|
3999
4136
|
table: string;
|
|
4000
4137
|
where?: Record<string, {
|
|
4001
|
-
|
|
4138
|
+
values?: string[] | undefined;
|
|
4139
|
+
key?: string | undefined;
|
|
4002
4140
|
}> | undefined;
|
|
4003
4141
|
}>>;
|
|
4004
4142
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -4023,7 +4161,8 @@ export declare const elementConfigSchema: z.ZodObject<{
|
|
|
4023
4161
|
column: string;
|
|
4024
4162
|
table: string;
|
|
4025
4163
|
where?: Record<string, {
|
|
4026
|
-
|
|
4164
|
+
values?: string[] | undefined;
|
|
4165
|
+
key?: string | undefined;
|
|
4027
4166
|
}> | undefined;
|
|
4028
4167
|
} | undefined;
|
|
4029
4168
|
tag?: string[] | undefined;
|
|
@@ -4048,7 +4187,8 @@ export declare const elementConfigSchema: z.ZodObject<{
|
|
|
4048
4187
|
column: string;
|
|
4049
4188
|
table: string;
|
|
4050
4189
|
where?: Record<string, {
|
|
4051
|
-
|
|
4190
|
+
values?: string[] | undefined;
|
|
4191
|
+
key?: string | undefined;
|
|
4052
4192
|
}> | undefined;
|
|
4053
4193
|
} | undefined;
|
|
4054
4194
|
tag?: string[] | undefined;
|
|
@@ -4080,7 +4220,8 @@ export declare const elementConfigSchema: z.ZodObject<{
|
|
|
4080
4220
|
column: string;
|
|
4081
4221
|
table: string;
|
|
4082
4222
|
where?: Record<string, {
|
|
4083
|
-
|
|
4223
|
+
values?: string[] | undefined;
|
|
4224
|
+
key?: string | undefined;
|
|
4084
4225
|
}> | undefined;
|
|
4085
4226
|
} | undefined;
|
|
4086
4227
|
tag?: string[] | undefined;
|
|
@@ -4114,7 +4255,8 @@ export declare const elementConfigSchema: z.ZodObject<{
|
|
|
4114
4255
|
column: string;
|
|
4115
4256
|
table: string;
|
|
4116
4257
|
where?: Record<string, {
|
|
4117
|
-
|
|
4258
|
+
values?: string[] | undefined;
|
|
4259
|
+
key?: string | undefined;
|
|
4118
4260
|
}> | undefined;
|
|
4119
4261
|
} | undefined;
|
|
4120
4262
|
tag?: string[] | undefined;
|
|
@@ -4208,23 +4350,28 @@ export declare const fieldConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
4208
4350
|
column: z.ZodString;
|
|
4209
4351
|
table: z.ZodString;
|
|
4210
4352
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4211
|
-
key: z.ZodString
|
|
4353
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4354
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4212
4355
|
}, "strip", z.ZodTypeAny, {
|
|
4213
|
-
|
|
4356
|
+
values?: string[] | undefined;
|
|
4357
|
+
key?: string | undefined;
|
|
4214
4358
|
}, {
|
|
4215
|
-
|
|
4359
|
+
values?: string[] | undefined;
|
|
4360
|
+
key?: string | undefined;
|
|
4216
4361
|
}>>>;
|
|
4217
4362
|
}, "strip", z.ZodTypeAny, {
|
|
4218
4363
|
column: string;
|
|
4219
4364
|
table: string;
|
|
4220
4365
|
where?: Record<string, {
|
|
4221
|
-
|
|
4366
|
+
values?: string[] | undefined;
|
|
4367
|
+
key?: string | undefined;
|
|
4222
4368
|
}> | undefined;
|
|
4223
4369
|
}, {
|
|
4224
4370
|
column: string;
|
|
4225
4371
|
table: string;
|
|
4226
4372
|
where?: Record<string, {
|
|
4227
|
-
|
|
4373
|
+
values?: string[] | undefined;
|
|
4374
|
+
key?: string | undefined;
|
|
4228
4375
|
}> | undefined;
|
|
4229
4376
|
}>>;
|
|
4230
4377
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -4249,7 +4396,8 @@ export declare const fieldConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
4249
4396
|
column: string;
|
|
4250
4397
|
table: string;
|
|
4251
4398
|
where?: Record<string, {
|
|
4252
|
-
|
|
4399
|
+
values?: string[] | undefined;
|
|
4400
|
+
key?: string | undefined;
|
|
4253
4401
|
}> | undefined;
|
|
4254
4402
|
} | undefined;
|
|
4255
4403
|
tag?: string[] | undefined;
|
|
@@ -4274,7 +4422,8 @@ export declare const fieldConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
4274
4422
|
column: string;
|
|
4275
4423
|
table: string;
|
|
4276
4424
|
where?: Record<string, {
|
|
4277
|
-
|
|
4425
|
+
values?: string[] | undefined;
|
|
4426
|
+
key?: string | undefined;
|
|
4278
4427
|
}> | undefined;
|
|
4279
4428
|
} | undefined;
|
|
4280
4429
|
tag?: string[] | undefined;
|
|
@@ -4301,23 +4450,28 @@ export declare const fieldConfigSchema: z.ZodObject<{
|
|
|
4301
4450
|
column: z.ZodString;
|
|
4302
4451
|
table: z.ZodString;
|
|
4303
4452
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4304
|
-
key: z.ZodString
|
|
4453
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4454
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4305
4455
|
}, "strip", z.ZodTypeAny, {
|
|
4306
|
-
|
|
4456
|
+
values?: string[] | undefined;
|
|
4457
|
+
key?: string | undefined;
|
|
4307
4458
|
}, {
|
|
4308
|
-
|
|
4459
|
+
values?: string[] | undefined;
|
|
4460
|
+
key?: string | undefined;
|
|
4309
4461
|
}>>>;
|
|
4310
4462
|
}, "strip", z.ZodTypeAny, {
|
|
4311
4463
|
column: string;
|
|
4312
4464
|
table: string;
|
|
4313
4465
|
where?: Record<string, {
|
|
4314
|
-
|
|
4466
|
+
values?: string[] | undefined;
|
|
4467
|
+
key?: string | undefined;
|
|
4315
4468
|
}> | undefined;
|
|
4316
4469
|
}, {
|
|
4317
4470
|
column: string;
|
|
4318
4471
|
table: string;
|
|
4319
4472
|
where?: Record<string, {
|
|
4320
|
-
|
|
4473
|
+
values?: string[] | undefined;
|
|
4474
|
+
key?: string | undefined;
|
|
4321
4475
|
}> | undefined;
|
|
4322
4476
|
}>>;
|
|
4323
4477
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -4342,7 +4496,8 @@ export declare const fieldConfigSchema: z.ZodObject<{
|
|
|
4342
4496
|
column: string;
|
|
4343
4497
|
table: string;
|
|
4344
4498
|
where?: Record<string, {
|
|
4345
|
-
|
|
4499
|
+
values?: string[] | undefined;
|
|
4500
|
+
key?: string | undefined;
|
|
4346
4501
|
}> | undefined;
|
|
4347
4502
|
} | undefined;
|
|
4348
4503
|
tag?: string[] | undefined;
|
|
@@ -4367,7 +4522,8 @@ export declare const fieldConfigSchema: z.ZodObject<{
|
|
|
4367
4522
|
column: string;
|
|
4368
4523
|
table: string;
|
|
4369
4524
|
where?: Record<string, {
|
|
4370
|
-
|
|
4525
|
+
values?: string[] | undefined;
|
|
4526
|
+
key?: string | undefined;
|
|
4371
4527
|
}> | undefined;
|
|
4372
4528
|
} | undefined;
|
|
4373
4529
|
tag?: string[] | undefined;
|
|
@@ -6092,23 +6248,28 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
6092
6248
|
column: z.ZodString;
|
|
6093
6249
|
table: z.ZodString;
|
|
6094
6250
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6095
|
-
key: z.ZodString
|
|
6251
|
+
key: z.ZodOptional<z.ZodString>;
|
|
6252
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6096
6253
|
}, "strip", z.ZodTypeAny, {
|
|
6097
|
-
|
|
6254
|
+
values?: string[] | undefined;
|
|
6255
|
+
key?: string | undefined;
|
|
6098
6256
|
}, {
|
|
6099
|
-
|
|
6257
|
+
values?: string[] | undefined;
|
|
6258
|
+
key?: string | undefined;
|
|
6100
6259
|
}>>>;
|
|
6101
6260
|
}, "strip", z.ZodTypeAny, {
|
|
6102
6261
|
column: string;
|
|
6103
6262
|
table: string;
|
|
6104
6263
|
where?: Record<string, {
|
|
6105
|
-
|
|
6264
|
+
values?: string[] | undefined;
|
|
6265
|
+
key?: string | undefined;
|
|
6106
6266
|
}> | undefined;
|
|
6107
6267
|
}, {
|
|
6108
6268
|
column: string;
|
|
6109
6269
|
table: string;
|
|
6110
6270
|
where?: Record<string, {
|
|
6111
|
-
|
|
6271
|
+
values?: string[] | undefined;
|
|
6272
|
+
key?: string | undefined;
|
|
6112
6273
|
}> | undefined;
|
|
6113
6274
|
}>>;
|
|
6114
6275
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -6133,7 +6294,8 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
6133
6294
|
column: string;
|
|
6134
6295
|
table: string;
|
|
6135
6296
|
where?: Record<string, {
|
|
6136
|
-
|
|
6297
|
+
values?: string[] | undefined;
|
|
6298
|
+
key?: string | undefined;
|
|
6137
6299
|
}> | undefined;
|
|
6138
6300
|
} | undefined;
|
|
6139
6301
|
tag?: string[] | undefined;
|
|
@@ -6158,7 +6320,8 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
6158
6320
|
column: string;
|
|
6159
6321
|
table: string;
|
|
6160
6322
|
where?: Record<string, {
|
|
6161
|
-
|
|
6323
|
+
values?: string[] | undefined;
|
|
6324
|
+
key?: string | undefined;
|
|
6162
6325
|
}> | undefined;
|
|
6163
6326
|
} | undefined;
|
|
6164
6327
|
tag?: string[] | undefined;
|
|
@@ -6184,23 +6347,28 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
6184
6347
|
column: z.ZodString;
|
|
6185
6348
|
table: z.ZodString;
|
|
6186
6349
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6187
|
-
key: z.ZodString
|
|
6350
|
+
key: z.ZodOptional<z.ZodString>;
|
|
6351
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6188
6352
|
}, "strip", z.ZodTypeAny, {
|
|
6189
|
-
|
|
6353
|
+
values?: string[] | undefined;
|
|
6354
|
+
key?: string | undefined;
|
|
6190
6355
|
}, {
|
|
6191
|
-
|
|
6356
|
+
values?: string[] | undefined;
|
|
6357
|
+
key?: string | undefined;
|
|
6192
6358
|
}>>>;
|
|
6193
6359
|
}, "strip", z.ZodTypeAny, {
|
|
6194
6360
|
column: string;
|
|
6195
6361
|
table: string;
|
|
6196
6362
|
where?: Record<string, {
|
|
6197
|
-
|
|
6363
|
+
values?: string[] | undefined;
|
|
6364
|
+
key?: string | undefined;
|
|
6198
6365
|
}> | undefined;
|
|
6199
6366
|
}, {
|
|
6200
6367
|
column: string;
|
|
6201
6368
|
table: string;
|
|
6202
6369
|
where?: Record<string, {
|
|
6203
|
-
|
|
6370
|
+
values?: string[] | undefined;
|
|
6371
|
+
key?: string | undefined;
|
|
6204
6372
|
}> | undefined;
|
|
6205
6373
|
}>>;
|
|
6206
6374
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -6225,7 +6393,8 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
6225
6393
|
column: string;
|
|
6226
6394
|
table: string;
|
|
6227
6395
|
where?: Record<string, {
|
|
6228
|
-
|
|
6396
|
+
values?: string[] | undefined;
|
|
6397
|
+
key?: string | undefined;
|
|
6229
6398
|
}> | undefined;
|
|
6230
6399
|
} | undefined;
|
|
6231
6400
|
tag?: string[] | undefined;
|
|
@@ -6250,7 +6419,8 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
6250
6419
|
column: string;
|
|
6251
6420
|
table: string;
|
|
6252
6421
|
where?: Record<string, {
|
|
6253
|
-
|
|
6422
|
+
values?: string[] | undefined;
|
|
6423
|
+
key?: string | undefined;
|
|
6254
6424
|
}> | undefined;
|
|
6255
6425
|
} | undefined;
|
|
6256
6426
|
tag?: string[] | undefined;
|
|
@@ -6293,7 +6463,8 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
6293
6463
|
column: string;
|
|
6294
6464
|
table: string;
|
|
6295
6465
|
where?: Record<string, {
|
|
6296
|
-
|
|
6466
|
+
values?: string[] | undefined;
|
|
6467
|
+
key?: string | undefined;
|
|
6297
6468
|
}> | undefined;
|
|
6298
6469
|
} | undefined;
|
|
6299
6470
|
tag?: string[] | undefined;
|
|
@@ -6338,7 +6509,8 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
6338
6509
|
column: string;
|
|
6339
6510
|
table: string;
|
|
6340
6511
|
where?: Record<string, {
|
|
6341
|
-
|
|
6512
|
+
values?: string[] | undefined;
|
|
6513
|
+
key?: string | undefined;
|
|
6342
6514
|
}> | undefined;
|
|
6343
6515
|
} | undefined;
|
|
6344
6516
|
tag?: string[] | undefined;
|
|
@@ -6368,7 +6540,8 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
6368
6540
|
column: string;
|
|
6369
6541
|
table: string;
|
|
6370
6542
|
where?: Record<string, {
|
|
6371
|
-
|
|
6543
|
+
values?: string[] | undefined;
|
|
6544
|
+
key?: string | undefined;
|
|
6372
6545
|
}> | undefined;
|
|
6373
6546
|
} | undefined;
|
|
6374
6547
|
tag?: string[] | undefined;
|
|
@@ -6413,7 +6586,8 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
6413
6586
|
column: string;
|
|
6414
6587
|
table: string;
|
|
6415
6588
|
where?: Record<string, {
|
|
6416
|
-
|
|
6589
|
+
values?: string[] | undefined;
|
|
6590
|
+
key?: string | undefined;
|
|
6417
6591
|
}> | undefined;
|
|
6418
6592
|
} | undefined;
|
|
6419
6593
|
tag?: string[] | undefined;
|
|
@@ -6452,23 +6626,28 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6452
6626
|
column: z.ZodString;
|
|
6453
6627
|
table: z.ZodString;
|
|
6454
6628
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6455
|
-
key: z.ZodString
|
|
6629
|
+
key: z.ZodOptional<z.ZodString>;
|
|
6630
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6456
6631
|
}, "strip", z.ZodTypeAny, {
|
|
6457
|
-
|
|
6632
|
+
values?: string[] | undefined;
|
|
6633
|
+
key?: string | undefined;
|
|
6458
6634
|
}, {
|
|
6459
|
-
|
|
6635
|
+
values?: string[] | undefined;
|
|
6636
|
+
key?: string | undefined;
|
|
6460
6637
|
}>>>;
|
|
6461
6638
|
}, "strip", z.ZodTypeAny, {
|
|
6462
6639
|
column: string;
|
|
6463
6640
|
table: string;
|
|
6464
6641
|
where?: Record<string, {
|
|
6465
|
-
|
|
6642
|
+
values?: string[] | undefined;
|
|
6643
|
+
key?: string | undefined;
|
|
6466
6644
|
}> | undefined;
|
|
6467
6645
|
}, {
|
|
6468
6646
|
column: string;
|
|
6469
6647
|
table: string;
|
|
6470
6648
|
where?: Record<string, {
|
|
6471
|
-
|
|
6649
|
+
values?: string[] | undefined;
|
|
6650
|
+
key?: string | undefined;
|
|
6472
6651
|
}> | undefined;
|
|
6473
6652
|
}>>;
|
|
6474
6653
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -6493,7 +6672,8 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6493
6672
|
column: string;
|
|
6494
6673
|
table: string;
|
|
6495
6674
|
where?: Record<string, {
|
|
6496
|
-
|
|
6675
|
+
values?: string[] | undefined;
|
|
6676
|
+
key?: string | undefined;
|
|
6497
6677
|
}> | undefined;
|
|
6498
6678
|
} | undefined;
|
|
6499
6679
|
tag?: string[] | undefined;
|
|
@@ -6518,7 +6698,8 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6518
6698
|
column: string;
|
|
6519
6699
|
table: string;
|
|
6520
6700
|
where?: Record<string, {
|
|
6521
|
-
|
|
6701
|
+
values?: string[] | undefined;
|
|
6702
|
+
key?: string | undefined;
|
|
6522
6703
|
}> | undefined;
|
|
6523
6704
|
} | undefined;
|
|
6524
6705
|
tag?: string[] | undefined;
|
|
@@ -6544,23 +6725,28 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6544
6725
|
column: z.ZodString;
|
|
6545
6726
|
table: z.ZodString;
|
|
6546
6727
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6547
|
-
key: z.ZodString
|
|
6728
|
+
key: z.ZodOptional<z.ZodString>;
|
|
6729
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6548
6730
|
}, "strip", z.ZodTypeAny, {
|
|
6549
|
-
|
|
6731
|
+
values?: string[] | undefined;
|
|
6732
|
+
key?: string | undefined;
|
|
6550
6733
|
}, {
|
|
6551
|
-
|
|
6734
|
+
values?: string[] | undefined;
|
|
6735
|
+
key?: string | undefined;
|
|
6552
6736
|
}>>>;
|
|
6553
6737
|
}, "strip", z.ZodTypeAny, {
|
|
6554
6738
|
column: string;
|
|
6555
6739
|
table: string;
|
|
6556
6740
|
where?: Record<string, {
|
|
6557
|
-
|
|
6741
|
+
values?: string[] | undefined;
|
|
6742
|
+
key?: string | undefined;
|
|
6558
6743
|
}> | undefined;
|
|
6559
6744
|
}, {
|
|
6560
6745
|
column: string;
|
|
6561
6746
|
table: string;
|
|
6562
6747
|
where?: Record<string, {
|
|
6563
|
-
|
|
6748
|
+
values?: string[] | undefined;
|
|
6749
|
+
key?: string | undefined;
|
|
6564
6750
|
}> | undefined;
|
|
6565
6751
|
}>>;
|
|
6566
6752
|
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -6585,7 +6771,8 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6585
6771
|
column: string;
|
|
6586
6772
|
table: string;
|
|
6587
6773
|
where?: Record<string, {
|
|
6588
|
-
|
|
6774
|
+
values?: string[] | undefined;
|
|
6775
|
+
key?: string | undefined;
|
|
6589
6776
|
}> | undefined;
|
|
6590
6777
|
} | undefined;
|
|
6591
6778
|
tag?: string[] | undefined;
|
|
@@ -6610,7 +6797,8 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6610
6797
|
column: string;
|
|
6611
6798
|
table: string;
|
|
6612
6799
|
where?: Record<string, {
|
|
6613
|
-
|
|
6800
|
+
values?: string[] | undefined;
|
|
6801
|
+
key?: string | undefined;
|
|
6614
6802
|
}> | undefined;
|
|
6615
6803
|
} | undefined;
|
|
6616
6804
|
tag?: string[] | undefined;
|
|
@@ -6653,7 +6841,8 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6653
6841
|
column: string;
|
|
6654
6842
|
table: string;
|
|
6655
6843
|
where?: Record<string, {
|
|
6656
|
-
|
|
6844
|
+
values?: string[] | undefined;
|
|
6845
|
+
key?: string | undefined;
|
|
6657
6846
|
}> | undefined;
|
|
6658
6847
|
} | undefined;
|
|
6659
6848
|
tag?: string[] | undefined;
|
|
@@ -6698,7 +6887,8 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6698
6887
|
column: string;
|
|
6699
6888
|
table: string;
|
|
6700
6889
|
where?: Record<string, {
|
|
6701
|
-
|
|
6890
|
+
values?: string[] | undefined;
|
|
6891
|
+
key?: string | undefined;
|
|
6702
6892
|
}> | undefined;
|
|
6703
6893
|
} | undefined;
|
|
6704
6894
|
tag?: string[] | undefined;
|
|
@@ -6728,7 +6918,8 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6728
6918
|
column: string;
|
|
6729
6919
|
table: string;
|
|
6730
6920
|
where?: Record<string, {
|
|
6731
|
-
|
|
6921
|
+
values?: string[] | undefined;
|
|
6922
|
+
key?: string | undefined;
|
|
6732
6923
|
}> | undefined;
|
|
6733
6924
|
} | undefined;
|
|
6734
6925
|
tag?: string[] | undefined;
|
|
@@ -6773,7 +6964,8 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6773
6964
|
column: string;
|
|
6774
6965
|
table: string;
|
|
6775
6966
|
where?: Record<string, {
|
|
6776
|
-
|
|
6967
|
+
values?: string[] | undefined;
|
|
6968
|
+
key?: string | undefined;
|
|
6777
6969
|
}> | undefined;
|
|
6778
6970
|
} | undefined;
|
|
6779
6971
|
tag?: string[] | undefined;
|