chatbot-lex-design-builder 1.0.9 → 1.0.11

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.
Files changed (43) hide show
  1. package/dist/cjs/compile-graph-to-lex.js +5 -3
  2. package/dist/cjs/compile-graph-to-lex.js.map +1 -1
  3. package/dist/cjs/types/graph/graph.d.ts +135 -135
  4. package/dist/cjs/types/nodes/closing-response-node.d.ts +13 -13
  5. package/dist/cjs/types/nodes/codehook-node.d.ts +39 -39
  6. package/dist/cjs/types/nodes/condition-node.d.ts +34 -34
  7. package/dist/cjs/types/nodes/confirmation-node.d.ts +55 -55
  8. package/dist/cjs/types/nodes/fullfillment-node.d.ts +39 -39
  9. package/dist/cjs/types/nodes/node.d.ts +117 -117
  10. package/dist/cjs/types/nodes/slot-node.d.ts +42 -42
  11. package/dist/cjs/types/others/bot-flow.d.ts +324 -324
  12. package/dist/cjs/types/responses/form.d.ts +8 -8
  13. package/dist/cjs/types/responses/form.js +2 -0
  14. package/dist/cjs/types/responses/form.js.map +1 -1
  15. package/dist/cjs/types/responses/message.d.ts +5 -5
  16. package/dist/cjs/utils/find-first-fullfillment-node.d.ts +3 -3
  17. package/dist/cjs/utils/get-bfs-order.d.ts +16 -16
  18. package/dist/cjs/utils/get-first-closing-response-node.d.ts +1 -1
  19. package/dist/cjs/utils/get-first-confirmation-node.d.ts +4 -4
  20. package/dist/cjs/utils/get-slot-nodes.d.ts +3 -3
  21. package/dist/cjs/utils/validate-graph.d.ts +16 -16
  22. package/dist/esm/compile-graph-to-lex.js +5 -3
  23. package/dist/esm/compile-graph-to-lex.js.map +1 -1
  24. package/dist/esm/types/graph/graph.d.ts +135 -135
  25. package/dist/esm/types/nodes/closing-response-node.d.ts +13 -13
  26. package/dist/esm/types/nodes/codehook-node.d.ts +39 -39
  27. package/dist/esm/types/nodes/condition-node.d.ts +34 -34
  28. package/dist/esm/types/nodes/confirmation-node.d.ts +55 -55
  29. package/dist/esm/types/nodes/fullfillment-node.d.ts +39 -39
  30. package/dist/esm/types/nodes/node.d.ts +117 -117
  31. package/dist/esm/types/nodes/slot-node.d.ts +42 -42
  32. package/dist/esm/types/others/bot-flow.d.ts +324 -324
  33. package/dist/esm/types/responses/form.d.ts +8 -8
  34. package/dist/esm/types/responses/form.js +2 -0
  35. package/dist/esm/types/responses/form.js.map +1 -1
  36. package/dist/esm/types/responses/message.d.ts +5 -5
  37. package/dist/esm/utils/find-first-fullfillment-node.d.ts +3 -3
  38. package/dist/esm/utils/get-bfs-order.d.ts +16 -16
  39. package/dist/esm/utils/get-first-closing-response-node.d.ts +1 -1
  40. package/dist/esm/utils/get-first-confirmation-node.d.ts +4 -4
  41. package/dist/esm/utils/get-slot-nodes.d.ts +3 -3
  42. package/dist/esm/utils/validate-graph.d.ts +16 -16
  43. package/package.json +1 -1
@@ -242,7 +242,7 @@ export declare const GraphSchema: z.ZodObject<{
242
242
  fields: z.ZodArray<z.ZodObject<{
243
243
  id: z.ZodString;
244
244
  name: z.ZodString;
245
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
245
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
246
246
  label: z.ZodCatch<z.ZodString>;
247
247
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
248
248
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -252,7 +252,7 @@ export declare const GraphSchema: z.ZodObject<{
252
252
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
253
253
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
254
254
  }, "strip", z.ZodTypeAny, {
255
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
255
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
256
256
  id: string;
257
257
  name: string;
258
258
  label: string;
@@ -266,7 +266,7 @@ export declare const GraphSchema: z.ZodObject<{
266
266
  }, {
267
267
  id: string;
268
268
  name: string;
269
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
269
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
270
270
  label?: unknown;
271
271
  placeholder?: unknown;
272
272
  defaultValue?: unknown;
@@ -289,7 +289,7 @@ export declare const GraphSchema: z.ZodObject<{
289
289
  title: string;
290
290
  subtitle: string;
291
291
  fields: {
292
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
292
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
293
293
  id: string;
294
294
  name: string;
295
295
  label: string;
@@ -312,7 +312,7 @@ export declare const GraphSchema: z.ZodObject<{
312
312
  fields: {
313
313
  id: string;
314
314
  name: string;
315
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
315
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
316
316
  label?: unknown;
317
317
  placeholder?: unknown;
318
318
  defaultValue?: unknown;
@@ -357,7 +357,7 @@ export declare const GraphSchema: z.ZodObject<{
357
357
  title: string;
358
358
  subtitle: string;
359
359
  fields: {
360
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
360
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
361
361
  id: string;
362
362
  name: string;
363
363
  label: string;
@@ -436,7 +436,7 @@ export declare const GraphSchema: z.ZodObject<{
436
436
  title: string;
437
437
  subtitle: string;
438
438
  fields: {
439
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
439
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
440
440
  id: string;
441
441
  name: string;
442
442
  label: string;
@@ -732,7 +732,7 @@ export declare const GraphSchema: z.ZodObject<{
732
732
  fields: z.ZodArray<z.ZodObject<{
733
733
  id: z.ZodString;
734
734
  name: z.ZodString;
735
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
735
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
736
736
  label: z.ZodCatch<z.ZodString>;
737
737
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
738
738
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -742,7 +742,7 @@ export declare const GraphSchema: z.ZodObject<{
742
742
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
743
743
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
744
744
  }, "strip", z.ZodTypeAny, {
745
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
745
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
746
746
  id: string;
747
747
  name: string;
748
748
  label: string;
@@ -756,7 +756,7 @@ export declare const GraphSchema: z.ZodObject<{
756
756
  }, {
757
757
  id: string;
758
758
  name: string;
759
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
759
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
760
760
  label?: unknown;
761
761
  placeholder?: unknown;
762
762
  defaultValue?: unknown;
@@ -779,7 +779,7 @@ export declare const GraphSchema: z.ZodObject<{
779
779
  title: string;
780
780
  subtitle: string;
781
781
  fields: {
782
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
782
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
783
783
  id: string;
784
784
  name: string;
785
785
  label: string;
@@ -802,7 +802,7 @@ export declare const GraphSchema: z.ZodObject<{
802
802
  fields: {
803
803
  id: string;
804
804
  name: string;
805
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
805
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
806
806
  label?: unknown;
807
807
  placeholder?: unknown;
808
808
  defaultValue?: unknown;
@@ -1053,7 +1053,7 @@ export declare const GraphSchema: z.ZodObject<{
1053
1053
  fields: z.ZodArray<z.ZodObject<{
1054
1054
  id: z.ZodString;
1055
1055
  name: z.ZodString;
1056
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
1056
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
1057
1057
  label: z.ZodCatch<z.ZodString>;
1058
1058
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
1059
1059
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -1063,7 +1063,7 @@ export declare const GraphSchema: z.ZodObject<{
1063
1063
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
1064
1064
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
1065
1065
  }, "strip", z.ZodTypeAny, {
1066
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1066
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1067
1067
  id: string;
1068
1068
  name: string;
1069
1069
  label: string;
@@ -1077,7 +1077,7 @@ export declare const GraphSchema: z.ZodObject<{
1077
1077
  }, {
1078
1078
  id: string;
1079
1079
  name: string;
1080
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
1080
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
1081
1081
  label?: unknown;
1082
1082
  placeholder?: unknown;
1083
1083
  defaultValue?: unknown;
@@ -1100,7 +1100,7 @@ export declare const GraphSchema: z.ZodObject<{
1100
1100
  title: string;
1101
1101
  subtitle: string;
1102
1102
  fields: {
1103
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1103
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1104
1104
  id: string;
1105
1105
  name: string;
1106
1106
  label: string;
@@ -1123,7 +1123,7 @@ export declare const GraphSchema: z.ZodObject<{
1123
1123
  fields: {
1124
1124
  id: string;
1125
1125
  name: string;
1126
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
1126
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
1127
1127
  label?: unknown;
1128
1128
  placeholder?: unknown;
1129
1129
  defaultValue?: unknown;
@@ -1374,7 +1374,7 @@ export declare const GraphSchema: z.ZodObject<{
1374
1374
  fields: z.ZodArray<z.ZodObject<{
1375
1375
  id: z.ZodString;
1376
1376
  name: z.ZodString;
1377
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
1377
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
1378
1378
  label: z.ZodCatch<z.ZodString>;
1379
1379
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
1380
1380
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -1384,7 +1384,7 @@ export declare const GraphSchema: z.ZodObject<{
1384
1384
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
1385
1385
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
1386
1386
  }, "strip", z.ZodTypeAny, {
1387
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1387
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1388
1388
  id: string;
1389
1389
  name: string;
1390
1390
  label: string;
@@ -1398,7 +1398,7 @@ export declare const GraphSchema: z.ZodObject<{
1398
1398
  }, {
1399
1399
  id: string;
1400
1400
  name: string;
1401
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
1401
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
1402
1402
  label?: unknown;
1403
1403
  placeholder?: unknown;
1404
1404
  defaultValue?: unknown;
@@ -1421,7 +1421,7 @@ export declare const GraphSchema: z.ZodObject<{
1421
1421
  title: string;
1422
1422
  subtitle: string;
1423
1423
  fields: {
1424
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1424
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1425
1425
  id: string;
1426
1426
  name: string;
1427
1427
  label: string;
@@ -1444,7 +1444,7 @@ export declare const GraphSchema: z.ZodObject<{
1444
1444
  fields: {
1445
1445
  id: string;
1446
1446
  name: string;
1447
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
1447
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
1448
1448
  label?: unknown;
1449
1449
  placeholder?: unknown;
1450
1450
  defaultValue?: unknown;
@@ -1493,7 +1493,7 @@ export declare const GraphSchema: z.ZodObject<{
1493
1493
  title: string;
1494
1494
  subtitle: string;
1495
1495
  fields: {
1496
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1496
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1497
1497
  id: string;
1498
1498
  name: string;
1499
1499
  label: string;
@@ -1562,7 +1562,7 @@ export declare const GraphSchema: z.ZodObject<{
1562
1562
  title: string;
1563
1563
  subtitle: string;
1564
1564
  fields: {
1565
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1565
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1566
1566
  id: string;
1567
1567
  name: string;
1568
1568
  label: string;
@@ -1633,7 +1633,7 @@ export declare const GraphSchema: z.ZodObject<{
1633
1633
  title: string;
1634
1634
  subtitle: string;
1635
1635
  fields: {
1636
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1636
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1637
1637
  id: string;
1638
1638
  name: string;
1639
1639
  label: string;
@@ -1720,7 +1720,7 @@ export declare const GraphSchema: z.ZodObject<{
1720
1720
  title: string;
1721
1721
  subtitle: string;
1722
1722
  fields: {
1723
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1723
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1724
1724
  id: string;
1725
1725
  name: string;
1726
1726
  label: string;
@@ -1789,7 +1789,7 @@ export declare const GraphSchema: z.ZodObject<{
1789
1789
  title: string;
1790
1790
  subtitle: string;
1791
1791
  fields: {
1792
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1792
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1793
1793
  id: string;
1794
1794
  name: string;
1795
1795
  label: string;
@@ -1860,7 +1860,7 @@ export declare const GraphSchema: z.ZodObject<{
1860
1860
  title: string;
1861
1861
  subtitle: string;
1862
1862
  fields: {
1863
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1863
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
1864
1864
  id: string;
1865
1865
  name: string;
1866
1866
  label: string;
@@ -2159,7 +2159,7 @@ export declare const GraphSchema: z.ZodObject<{
2159
2159
  fields: z.ZodArray<z.ZodObject<{
2160
2160
  id: z.ZodString;
2161
2161
  name: z.ZodString;
2162
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
2162
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
2163
2163
  label: z.ZodCatch<z.ZodString>;
2164
2164
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
2165
2165
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -2169,7 +2169,7 @@ export declare const GraphSchema: z.ZodObject<{
2169
2169
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
2170
2170
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
2171
2171
  }, "strip", z.ZodTypeAny, {
2172
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2172
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2173
2173
  id: string;
2174
2174
  name: string;
2175
2175
  label: string;
@@ -2183,7 +2183,7 @@ export declare const GraphSchema: z.ZodObject<{
2183
2183
  }, {
2184
2184
  id: string;
2185
2185
  name: string;
2186
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
2186
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
2187
2187
  label?: unknown;
2188
2188
  placeholder?: unknown;
2189
2189
  defaultValue?: unknown;
@@ -2206,7 +2206,7 @@ export declare const GraphSchema: z.ZodObject<{
2206
2206
  title: string;
2207
2207
  subtitle: string;
2208
2208
  fields: {
2209
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2209
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2210
2210
  id: string;
2211
2211
  name: string;
2212
2212
  label: string;
@@ -2229,7 +2229,7 @@ export declare const GraphSchema: z.ZodObject<{
2229
2229
  fields: {
2230
2230
  id: string;
2231
2231
  name: string;
2232
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
2232
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
2233
2233
  label?: unknown;
2234
2234
  placeholder?: unknown;
2235
2235
  defaultValue?: unknown;
@@ -2484,7 +2484,7 @@ export declare const GraphSchema: z.ZodObject<{
2484
2484
  fields: z.ZodArray<z.ZodObject<{
2485
2485
  id: z.ZodString;
2486
2486
  name: z.ZodString;
2487
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
2487
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
2488
2488
  label: z.ZodCatch<z.ZodString>;
2489
2489
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
2490
2490
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -2494,7 +2494,7 @@ export declare const GraphSchema: z.ZodObject<{
2494
2494
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
2495
2495
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
2496
2496
  }, "strip", z.ZodTypeAny, {
2497
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2497
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2498
2498
  id: string;
2499
2499
  name: string;
2500
2500
  label: string;
@@ -2508,7 +2508,7 @@ export declare const GraphSchema: z.ZodObject<{
2508
2508
  }, {
2509
2509
  id: string;
2510
2510
  name: string;
2511
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
2511
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
2512
2512
  label?: unknown;
2513
2513
  placeholder?: unknown;
2514
2514
  defaultValue?: unknown;
@@ -2531,7 +2531,7 @@ export declare const GraphSchema: z.ZodObject<{
2531
2531
  title: string;
2532
2532
  subtitle: string;
2533
2533
  fields: {
2534
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2534
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2535
2535
  id: string;
2536
2536
  name: string;
2537
2537
  label: string;
@@ -2554,7 +2554,7 @@ export declare const GraphSchema: z.ZodObject<{
2554
2554
  fields: {
2555
2555
  id: string;
2556
2556
  name: string;
2557
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
2557
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
2558
2558
  label?: unknown;
2559
2559
  placeholder?: unknown;
2560
2560
  defaultValue?: unknown;
@@ -2600,7 +2600,7 @@ export declare const GraphSchema: z.ZodObject<{
2600
2600
  title: string;
2601
2601
  subtitle: string;
2602
2602
  fields: {
2603
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2603
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2604
2604
  id: string;
2605
2605
  name: string;
2606
2606
  label: string;
@@ -2678,7 +2678,7 @@ export declare const GraphSchema: z.ZodObject<{
2678
2678
  title: string;
2679
2679
  subtitle: string;
2680
2680
  fields: {
2681
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2681
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2682
2682
  id: string;
2683
2683
  name: string;
2684
2684
  label: string;
@@ -2751,7 +2751,7 @@ export declare const GraphSchema: z.ZodObject<{
2751
2751
  title: string;
2752
2752
  subtitle: string;
2753
2753
  fields: {
2754
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2754
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2755
2755
  id: string;
2756
2756
  name: string;
2757
2757
  label: string;
@@ -2835,7 +2835,7 @@ export declare const GraphSchema: z.ZodObject<{
2835
2835
  title: string;
2836
2836
  subtitle: string;
2837
2837
  fields: {
2838
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2838
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2839
2839
  id: string;
2840
2840
  name: string;
2841
2841
  label: string;
@@ -2908,7 +2908,7 @@ export declare const GraphSchema: z.ZodObject<{
2908
2908
  title: string;
2909
2909
  subtitle: string;
2910
2910
  fields: {
2911
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2911
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
2912
2912
  id: string;
2913
2913
  name: string;
2914
2914
  label: string;
@@ -3207,7 +3207,7 @@ export declare const GraphSchema: z.ZodObject<{
3207
3207
  fields: z.ZodArray<z.ZodObject<{
3208
3208
  id: z.ZodString;
3209
3209
  name: z.ZodString;
3210
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
3210
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
3211
3211
  label: z.ZodCatch<z.ZodString>;
3212
3212
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
3213
3213
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -3217,7 +3217,7 @@ export declare const GraphSchema: z.ZodObject<{
3217
3217
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
3218
3218
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
3219
3219
  }, "strip", z.ZodTypeAny, {
3220
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
3220
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
3221
3221
  id: string;
3222
3222
  name: string;
3223
3223
  label: string;
@@ -3231,7 +3231,7 @@ export declare const GraphSchema: z.ZodObject<{
3231
3231
  }, {
3232
3232
  id: string;
3233
3233
  name: string;
3234
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
3234
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
3235
3235
  label?: unknown;
3236
3236
  placeholder?: unknown;
3237
3237
  defaultValue?: unknown;
@@ -3254,7 +3254,7 @@ export declare const GraphSchema: z.ZodObject<{
3254
3254
  title: string;
3255
3255
  subtitle: string;
3256
3256
  fields: {
3257
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
3257
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
3258
3258
  id: string;
3259
3259
  name: string;
3260
3260
  label: string;
@@ -3277,7 +3277,7 @@ export declare const GraphSchema: z.ZodObject<{
3277
3277
  fields: {
3278
3278
  id: string;
3279
3279
  name: string;
3280
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
3280
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
3281
3281
  label?: unknown;
3282
3282
  placeholder?: unknown;
3283
3283
  defaultValue?: unknown;
@@ -3528,7 +3528,7 @@ export declare const GraphSchema: z.ZodObject<{
3528
3528
  fields: z.ZodArray<z.ZodObject<{
3529
3529
  id: z.ZodString;
3530
3530
  name: z.ZodString;
3531
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
3531
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
3532
3532
  label: z.ZodCatch<z.ZodString>;
3533
3533
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
3534
3534
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -3538,7 +3538,7 @@ export declare const GraphSchema: z.ZodObject<{
3538
3538
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
3539
3539
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
3540
3540
  }, "strip", z.ZodTypeAny, {
3541
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
3541
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
3542
3542
  id: string;
3543
3543
  name: string;
3544
3544
  label: string;
@@ -3552,7 +3552,7 @@ export declare const GraphSchema: z.ZodObject<{
3552
3552
  }, {
3553
3553
  id: string;
3554
3554
  name: string;
3555
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
3555
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
3556
3556
  label?: unknown;
3557
3557
  placeholder?: unknown;
3558
3558
  defaultValue?: unknown;
@@ -3575,7 +3575,7 @@ export declare const GraphSchema: z.ZodObject<{
3575
3575
  title: string;
3576
3576
  subtitle: string;
3577
3577
  fields: {
3578
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
3578
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
3579
3579
  id: string;
3580
3580
  name: string;
3581
3581
  label: string;
@@ -3598,7 +3598,7 @@ export declare const GraphSchema: z.ZodObject<{
3598
3598
  fields: {
3599
3599
  id: string;
3600
3600
  name: string;
3601
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
3601
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
3602
3602
  label?: unknown;
3603
3603
  placeholder?: unknown;
3604
3604
  defaultValue?: unknown;
@@ -3849,7 +3849,7 @@ export declare const GraphSchema: z.ZodObject<{
3849
3849
  fields: z.ZodArray<z.ZodObject<{
3850
3850
  id: z.ZodString;
3851
3851
  name: z.ZodString;
3852
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
3852
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
3853
3853
  label: z.ZodCatch<z.ZodString>;
3854
3854
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
3855
3855
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -3859,7 +3859,7 @@ export declare const GraphSchema: z.ZodObject<{
3859
3859
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
3860
3860
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
3861
3861
  }, "strip", z.ZodTypeAny, {
3862
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
3862
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
3863
3863
  id: string;
3864
3864
  name: string;
3865
3865
  label: string;
@@ -3873,7 +3873,7 @@ export declare const GraphSchema: z.ZodObject<{
3873
3873
  }, {
3874
3874
  id: string;
3875
3875
  name: string;
3876
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
3876
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
3877
3877
  label?: unknown;
3878
3878
  placeholder?: unknown;
3879
3879
  defaultValue?: unknown;
@@ -3896,7 +3896,7 @@ export declare const GraphSchema: z.ZodObject<{
3896
3896
  title: string;
3897
3897
  subtitle: string;
3898
3898
  fields: {
3899
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
3899
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
3900
3900
  id: string;
3901
3901
  name: string;
3902
3902
  label: string;
@@ -3919,7 +3919,7 @@ export declare const GraphSchema: z.ZodObject<{
3919
3919
  fields: {
3920
3920
  id: string;
3921
3921
  name: string;
3922
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
3922
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
3923
3923
  label?: unknown;
3924
3924
  placeholder?: unknown;
3925
3925
  defaultValue?: unknown;
@@ -4170,7 +4170,7 @@ export declare const GraphSchema: z.ZodObject<{
4170
4170
  fields: z.ZodArray<z.ZodObject<{
4171
4171
  id: z.ZodString;
4172
4172
  name: z.ZodString;
4173
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
4173
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
4174
4174
  label: z.ZodCatch<z.ZodString>;
4175
4175
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
4176
4176
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -4180,7 +4180,7 @@ export declare const GraphSchema: z.ZodObject<{
4180
4180
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
4181
4181
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
4182
4182
  }, "strip", z.ZodTypeAny, {
4183
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4183
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4184
4184
  id: string;
4185
4185
  name: string;
4186
4186
  label: string;
@@ -4194,7 +4194,7 @@ export declare const GraphSchema: z.ZodObject<{
4194
4194
  }, {
4195
4195
  id: string;
4196
4196
  name: string;
4197
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
4197
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
4198
4198
  label?: unknown;
4199
4199
  placeholder?: unknown;
4200
4200
  defaultValue?: unknown;
@@ -4217,7 +4217,7 @@ export declare const GraphSchema: z.ZodObject<{
4217
4217
  title: string;
4218
4218
  subtitle: string;
4219
4219
  fields: {
4220
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4220
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4221
4221
  id: string;
4222
4222
  name: string;
4223
4223
  label: string;
@@ -4240,7 +4240,7 @@ export declare const GraphSchema: z.ZodObject<{
4240
4240
  fields: {
4241
4241
  id: string;
4242
4242
  name: string;
4243
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
4243
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
4244
4244
  label?: unknown;
4245
4245
  placeholder?: unknown;
4246
4246
  defaultValue?: unknown;
@@ -4286,7 +4286,7 @@ export declare const GraphSchema: z.ZodObject<{
4286
4286
  title: string;
4287
4287
  subtitle: string;
4288
4288
  fields: {
4289
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4289
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4290
4290
  id: string;
4291
4291
  name: string;
4292
4292
  label: string;
@@ -4355,7 +4355,7 @@ export declare const GraphSchema: z.ZodObject<{
4355
4355
  title: string;
4356
4356
  subtitle: string;
4357
4357
  fields: {
4358
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4358
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4359
4359
  id: string;
4360
4360
  name: string;
4361
4361
  label: string;
@@ -4425,7 +4425,7 @@ export declare const GraphSchema: z.ZodObject<{
4425
4425
  title: string;
4426
4426
  subtitle: string;
4427
4427
  fields: {
4428
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4428
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4429
4429
  id: string;
4430
4430
  name: string;
4431
4431
  label: string;
@@ -4494,7 +4494,7 @@ export declare const GraphSchema: z.ZodObject<{
4494
4494
  title: string;
4495
4495
  subtitle: string;
4496
4496
  fields: {
4497
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4497
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4498
4498
  id: string;
4499
4499
  name: string;
4500
4500
  label: string;
@@ -4567,7 +4567,7 @@ export declare const GraphSchema: z.ZodObject<{
4567
4567
  fields: {
4568
4568
  id: string;
4569
4569
  name: string;
4570
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
4570
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
4571
4571
  label?: unknown;
4572
4572
  placeholder?: unknown;
4573
4573
  defaultValue?: unknown;
@@ -4643,7 +4643,7 @@ export declare const GraphSchema: z.ZodObject<{
4643
4643
  title: string;
4644
4644
  subtitle: string;
4645
4645
  fields: {
4646
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4646
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4647
4647
  id: string;
4648
4648
  name: string;
4649
4649
  label: string;
@@ -4712,7 +4712,7 @@ export declare const GraphSchema: z.ZodObject<{
4712
4712
  title: string;
4713
4713
  subtitle: string;
4714
4714
  fields: {
4715
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4715
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4716
4716
  id: string;
4717
4717
  name: string;
4718
4718
  label: string;
@@ -4782,7 +4782,7 @@ export declare const GraphSchema: z.ZodObject<{
4782
4782
  title: string;
4783
4783
  subtitle: string;
4784
4784
  fields: {
4785
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4785
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4786
4786
  id: string;
4787
4787
  name: string;
4788
4788
  label: string;
@@ -4851,7 +4851,7 @@ export declare const GraphSchema: z.ZodObject<{
4851
4851
  title: string;
4852
4852
  subtitle: string;
4853
4853
  fields: {
4854
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4854
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
4855
4855
  id: string;
4856
4856
  name: string;
4857
4857
  label: string;
@@ -4928,7 +4928,7 @@ export declare const GraphSchema: z.ZodObject<{
4928
4928
  fields: {
4929
4929
  id: string;
4930
4930
  name: string;
4931
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
4931
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
4932
4932
  label?: unknown;
4933
4933
  placeholder?: unknown;
4934
4934
  defaultValue?: unknown;
@@ -5238,7 +5238,7 @@ export declare const GraphSchema: z.ZodObject<{
5238
5238
  fields: z.ZodArray<z.ZodObject<{
5239
5239
  id: z.ZodString;
5240
5240
  name: z.ZodString;
5241
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
5241
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
5242
5242
  label: z.ZodCatch<z.ZodString>;
5243
5243
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
5244
5244
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -5248,7 +5248,7 @@ export declare const GraphSchema: z.ZodObject<{
5248
5248
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
5249
5249
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
5250
5250
  }, "strip", z.ZodTypeAny, {
5251
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
5251
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
5252
5252
  id: string;
5253
5253
  name: string;
5254
5254
  label: string;
@@ -5262,7 +5262,7 @@ export declare const GraphSchema: z.ZodObject<{
5262
5262
  }, {
5263
5263
  id: string;
5264
5264
  name: string;
5265
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
5265
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
5266
5266
  label?: unknown;
5267
5267
  placeholder?: unknown;
5268
5268
  defaultValue?: unknown;
@@ -5285,7 +5285,7 @@ export declare const GraphSchema: z.ZodObject<{
5285
5285
  title: string;
5286
5286
  subtitle: string;
5287
5287
  fields: {
5288
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
5288
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
5289
5289
  id: string;
5290
5290
  name: string;
5291
5291
  label: string;
@@ -5308,7 +5308,7 @@ export declare const GraphSchema: z.ZodObject<{
5308
5308
  fields: {
5309
5309
  id: string;
5310
5310
  name: string;
5311
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
5311
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
5312
5312
  label?: unknown;
5313
5313
  placeholder?: unknown;
5314
5314
  defaultValue?: unknown;
@@ -5559,7 +5559,7 @@ export declare const GraphSchema: z.ZodObject<{
5559
5559
  fields: z.ZodArray<z.ZodObject<{
5560
5560
  id: z.ZodString;
5561
5561
  name: z.ZodString;
5562
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
5562
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
5563
5563
  label: z.ZodCatch<z.ZodString>;
5564
5564
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
5565
5565
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -5569,7 +5569,7 @@ export declare const GraphSchema: z.ZodObject<{
5569
5569
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
5570
5570
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
5571
5571
  }, "strip", z.ZodTypeAny, {
5572
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
5572
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
5573
5573
  id: string;
5574
5574
  name: string;
5575
5575
  label: string;
@@ -5583,7 +5583,7 @@ export declare const GraphSchema: z.ZodObject<{
5583
5583
  }, {
5584
5584
  id: string;
5585
5585
  name: string;
5586
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
5586
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
5587
5587
  label?: unknown;
5588
5588
  placeholder?: unknown;
5589
5589
  defaultValue?: unknown;
@@ -5606,7 +5606,7 @@ export declare const GraphSchema: z.ZodObject<{
5606
5606
  title: string;
5607
5607
  subtitle: string;
5608
5608
  fields: {
5609
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
5609
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
5610
5610
  id: string;
5611
5611
  name: string;
5612
5612
  label: string;
@@ -5629,7 +5629,7 @@ export declare const GraphSchema: z.ZodObject<{
5629
5629
  fields: {
5630
5630
  id: string;
5631
5631
  name: string;
5632
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
5632
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
5633
5633
  label?: unknown;
5634
5634
  placeholder?: unknown;
5635
5635
  defaultValue?: unknown;
@@ -5880,7 +5880,7 @@ export declare const GraphSchema: z.ZodObject<{
5880
5880
  fields: z.ZodArray<z.ZodObject<{
5881
5881
  id: z.ZodString;
5882
5882
  name: z.ZodString;
5883
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
5883
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
5884
5884
  label: z.ZodCatch<z.ZodString>;
5885
5885
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
5886
5886
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -5890,7 +5890,7 @@ export declare const GraphSchema: z.ZodObject<{
5890
5890
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
5891
5891
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
5892
5892
  }, "strip", z.ZodTypeAny, {
5893
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
5893
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
5894
5894
  id: string;
5895
5895
  name: string;
5896
5896
  label: string;
@@ -5904,7 +5904,7 @@ export declare const GraphSchema: z.ZodObject<{
5904
5904
  }, {
5905
5905
  id: string;
5906
5906
  name: string;
5907
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
5907
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
5908
5908
  label?: unknown;
5909
5909
  placeholder?: unknown;
5910
5910
  defaultValue?: unknown;
@@ -5927,7 +5927,7 @@ export declare const GraphSchema: z.ZodObject<{
5927
5927
  title: string;
5928
5928
  subtitle: string;
5929
5929
  fields: {
5930
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
5930
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
5931
5931
  id: string;
5932
5932
  name: string;
5933
5933
  label: string;
@@ -5950,7 +5950,7 @@ export declare const GraphSchema: z.ZodObject<{
5950
5950
  fields: {
5951
5951
  id: string;
5952
5952
  name: string;
5953
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
5953
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
5954
5954
  label?: unknown;
5955
5955
  placeholder?: unknown;
5956
5956
  defaultValue?: unknown;
@@ -5999,7 +5999,7 @@ export declare const GraphSchema: z.ZodObject<{
5999
5999
  title: string;
6000
6000
  subtitle: string;
6001
6001
  fields: {
6002
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6002
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6003
6003
  id: string;
6004
6004
  name: string;
6005
6005
  label: string;
@@ -6068,7 +6068,7 @@ export declare const GraphSchema: z.ZodObject<{
6068
6068
  title: string;
6069
6069
  subtitle: string;
6070
6070
  fields: {
6071
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6071
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6072
6072
  id: string;
6073
6073
  name: string;
6074
6074
  label: string;
@@ -6139,7 +6139,7 @@ export declare const GraphSchema: z.ZodObject<{
6139
6139
  title: string;
6140
6140
  subtitle: string;
6141
6141
  fields: {
6142
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6142
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6143
6143
  id: string;
6144
6144
  name: string;
6145
6145
  label: string;
@@ -6226,7 +6226,7 @@ export declare const GraphSchema: z.ZodObject<{
6226
6226
  title: string;
6227
6227
  subtitle: string;
6228
6228
  fields: {
6229
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6229
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6230
6230
  id: string;
6231
6231
  name: string;
6232
6232
  label: string;
@@ -6295,7 +6295,7 @@ export declare const GraphSchema: z.ZodObject<{
6295
6295
  title: string;
6296
6296
  subtitle: string;
6297
6297
  fields: {
6298
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6298
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6299
6299
  id: string;
6300
6300
  name: string;
6301
6301
  label: string;
@@ -6366,7 +6366,7 @@ export declare const GraphSchema: z.ZodObject<{
6366
6366
  title: string;
6367
6367
  subtitle: string;
6368
6368
  fields: {
6369
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6369
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6370
6370
  id: string;
6371
6371
  name: string;
6372
6372
  label: string;
@@ -6751,7 +6751,7 @@ export declare const GraphSchema: z.ZodObject<{
6751
6751
  fields: z.ZodArray<z.ZodObject<{
6752
6752
  id: z.ZodString;
6753
6753
  name: z.ZodString;
6754
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
6754
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
6755
6755
  label: z.ZodCatch<z.ZodString>;
6756
6756
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
6757
6757
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -6761,7 +6761,7 @@ export declare const GraphSchema: z.ZodObject<{
6761
6761
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
6762
6762
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
6763
6763
  }, "strip", z.ZodTypeAny, {
6764
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6764
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6765
6765
  id: string;
6766
6766
  name: string;
6767
6767
  label: string;
@@ -6775,7 +6775,7 @@ export declare const GraphSchema: z.ZodObject<{
6775
6775
  }, {
6776
6776
  id: string;
6777
6777
  name: string;
6778
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
6778
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
6779
6779
  label?: unknown;
6780
6780
  placeholder?: unknown;
6781
6781
  defaultValue?: unknown;
@@ -6798,7 +6798,7 @@ export declare const GraphSchema: z.ZodObject<{
6798
6798
  title: string;
6799
6799
  subtitle: string;
6800
6800
  fields: {
6801
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6801
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
6802
6802
  id: string;
6803
6803
  name: string;
6804
6804
  label: string;
@@ -6821,7 +6821,7 @@ export declare const GraphSchema: z.ZodObject<{
6821
6821
  fields: {
6822
6822
  id: string;
6823
6823
  name: string;
6824
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
6824
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
6825
6825
  label?: unknown;
6826
6826
  placeholder?: unknown;
6827
6827
  defaultValue?: unknown;
@@ -7072,7 +7072,7 @@ export declare const GraphSchema: z.ZodObject<{
7072
7072
  fields: z.ZodArray<z.ZodObject<{
7073
7073
  id: z.ZodString;
7074
7074
  name: z.ZodString;
7075
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
7075
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
7076
7076
  label: z.ZodCatch<z.ZodString>;
7077
7077
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
7078
7078
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -7082,7 +7082,7 @@ export declare const GraphSchema: z.ZodObject<{
7082
7082
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
7083
7083
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
7084
7084
  }, "strip", z.ZodTypeAny, {
7085
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7085
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7086
7086
  id: string;
7087
7087
  name: string;
7088
7088
  label: string;
@@ -7096,7 +7096,7 @@ export declare const GraphSchema: z.ZodObject<{
7096
7096
  }, {
7097
7097
  id: string;
7098
7098
  name: string;
7099
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
7099
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
7100
7100
  label?: unknown;
7101
7101
  placeholder?: unknown;
7102
7102
  defaultValue?: unknown;
@@ -7119,7 +7119,7 @@ export declare const GraphSchema: z.ZodObject<{
7119
7119
  title: string;
7120
7120
  subtitle: string;
7121
7121
  fields: {
7122
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7122
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7123
7123
  id: string;
7124
7124
  name: string;
7125
7125
  label: string;
@@ -7142,7 +7142,7 @@ export declare const GraphSchema: z.ZodObject<{
7142
7142
  fields: {
7143
7143
  id: string;
7144
7144
  name: string;
7145
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
7145
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
7146
7146
  label?: unknown;
7147
7147
  placeholder?: unknown;
7148
7148
  defaultValue?: unknown;
@@ -7393,7 +7393,7 @@ export declare const GraphSchema: z.ZodObject<{
7393
7393
  fields: z.ZodArray<z.ZodObject<{
7394
7394
  id: z.ZodString;
7395
7395
  name: z.ZodString;
7396
- type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password"]>>;
7396
+ type: z.ZodDefault<z.ZodEnum<["text", "email", "url", "date", "datetime-local", "time", "tel", "password", "file", "textarea"]>>;
7397
7397
  label: z.ZodCatch<z.ZodString>;
7398
7398
  placeholder: z.ZodCatch<z.ZodOptional<z.ZodString>>;
7399
7399
  defaultValue: z.ZodCatch<z.ZodOptional<z.ZodString>>;
@@ -7403,7 +7403,7 @@ export declare const GraphSchema: z.ZodObject<{
7403
7403
  maxLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
7404
7404
  minLength: z.ZodCatch<z.ZodOptional<z.ZodNumber>>;
7405
7405
  }, "strip", z.ZodTypeAny, {
7406
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7406
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7407
7407
  id: string;
7408
7408
  name: string;
7409
7409
  label: string;
@@ -7417,7 +7417,7 @@ export declare const GraphSchema: z.ZodObject<{
7417
7417
  }, {
7418
7418
  id: string;
7419
7419
  name: string;
7420
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
7420
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
7421
7421
  label?: unknown;
7422
7422
  placeholder?: unknown;
7423
7423
  defaultValue?: unknown;
@@ -7440,7 +7440,7 @@ export declare const GraphSchema: z.ZodObject<{
7440
7440
  title: string;
7441
7441
  subtitle: string;
7442
7442
  fields: {
7443
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7443
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7444
7444
  id: string;
7445
7445
  name: string;
7446
7446
  label: string;
@@ -7463,7 +7463,7 @@ export declare const GraphSchema: z.ZodObject<{
7463
7463
  fields: {
7464
7464
  id: string;
7465
7465
  name: string;
7466
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
7466
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
7467
7467
  label?: unknown;
7468
7468
  placeholder?: unknown;
7469
7469
  defaultValue?: unknown;
@@ -7513,7 +7513,7 @@ export declare const GraphSchema: z.ZodObject<{
7513
7513
  title: string;
7514
7514
  subtitle: string;
7515
7515
  fields: {
7516
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7516
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7517
7517
  id: string;
7518
7518
  name: string;
7519
7519
  label: string;
@@ -7582,7 +7582,7 @@ export declare const GraphSchema: z.ZodObject<{
7582
7582
  title: string;
7583
7583
  subtitle: string;
7584
7584
  fields: {
7585
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7585
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7586
7586
  id: string;
7587
7587
  name: string;
7588
7588
  label: string;
@@ -7653,7 +7653,7 @@ export declare const GraphSchema: z.ZodObject<{
7653
7653
  title: string;
7654
7654
  subtitle: string;
7655
7655
  fields: {
7656
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7656
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7657
7657
  id: string;
7658
7658
  name: string;
7659
7659
  label: string;
@@ -7730,7 +7730,7 @@ export declare const GraphSchema: z.ZodObject<{
7730
7730
  fields: {
7731
7731
  id: string;
7732
7732
  name: string;
7733
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
7733
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
7734
7734
  label?: unknown;
7735
7735
  placeholder?: unknown;
7736
7736
  defaultValue?: unknown;
@@ -7810,7 +7810,7 @@ export declare const GraphSchema: z.ZodObject<{
7810
7810
  title: string;
7811
7811
  subtitle: string;
7812
7812
  fields: {
7813
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7813
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7814
7814
  id: string;
7815
7815
  name: string;
7816
7816
  label: string;
@@ -7879,7 +7879,7 @@ export declare const GraphSchema: z.ZodObject<{
7879
7879
  title: string;
7880
7880
  subtitle: string;
7881
7881
  fields: {
7882
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7882
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7883
7883
  id: string;
7884
7884
  name: string;
7885
7885
  label: string;
@@ -7950,7 +7950,7 @@ export declare const GraphSchema: z.ZodObject<{
7950
7950
  title: string;
7951
7951
  subtitle: string;
7952
7952
  fields: {
7953
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7953
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
7954
7954
  id: string;
7955
7955
  name: string;
7956
7956
  label: string;
@@ -8031,7 +8031,7 @@ export declare const GraphSchema: z.ZodObject<{
8031
8031
  fields: {
8032
8032
  id: string;
8033
8033
  name: string;
8034
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
8034
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
8035
8035
  label?: unknown;
8036
8036
  placeholder?: unknown;
8037
8037
  defaultValue?: unknown;
@@ -8129,7 +8129,7 @@ export declare const GraphSchema: z.ZodObject<{
8129
8129
  title: string;
8130
8130
  subtitle: string;
8131
8131
  fields: {
8132
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8132
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8133
8133
  id: string;
8134
8134
  name: string;
8135
8135
  label: string;
@@ -8207,7 +8207,7 @@ export declare const GraphSchema: z.ZodObject<{
8207
8207
  title: string;
8208
8208
  subtitle: string;
8209
8209
  fields: {
8210
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8210
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8211
8211
  id: string;
8212
8212
  name: string;
8213
8213
  label: string;
@@ -8276,7 +8276,7 @@ export declare const GraphSchema: z.ZodObject<{
8276
8276
  title: string;
8277
8277
  subtitle: string;
8278
8278
  fields: {
8279
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8279
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8280
8280
  id: string;
8281
8281
  name: string;
8282
8282
  label: string;
@@ -8347,7 +8347,7 @@ export declare const GraphSchema: z.ZodObject<{
8347
8347
  title: string;
8348
8348
  subtitle: string;
8349
8349
  fields: {
8350
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8350
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8351
8351
  id: string;
8352
8352
  name: string;
8353
8353
  label: string;
@@ -8423,7 +8423,7 @@ export declare const GraphSchema: z.ZodObject<{
8423
8423
  title: string;
8424
8424
  subtitle: string;
8425
8425
  fields: {
8426
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8426
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8427
8427
  id: string;
8428
8428
  name: string;
8429
8429
  label: string;
@@ -8496,7 +8496,7 @@ export declare const GraphSchema: z.ZodObject<{
8496
8496
  title: string;
8497
8497
  subtitle: string;
8498
8498
  fields: {
8499
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8499
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8500
8500
  id: string;
8501
8501
  name: string;
8502
8502
  label: string;
@@ -8573,7 +8573,7 @@ export declare const GraphSchema: z.ZodObject<{
8573
8573
  title: string;
8574
8574
  subtitle: string;
8575
8575
  fields: {
8576
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8576
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8577
8577
  id: string;
8578
8578
  name: string;
8579
8579
  label: string;
@@ -8642,7 +8642,7 @@ export declare const GraphSchema: z.ZodObject<{
8642
8642
  title: string;
8643
8643
  subtitle: string;
8644
8644
  fields: {
8645
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8645
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8646
8646
  id: string;
8647
8647
  name: string;
8648
8648
  label: string;
@@ -8712,7 +8712,7 @@ export declare const GraphSchema: z.ZodObject<{
8712
8712
  title: string;
8713
8713
  subtitle: string;
8714
8714
  fields: {
8715
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8715
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8716
8716
  id: string;
8717
8717
  name: string;
8718
8718
  label: string;
@@ -8781,7 +8781,7 @@ export declare const GraphSchema: z.ZodObject<{
8781
8781
  title: string;
8782
8782
  subtitle: string;
8783
8783
  fields: {
8784
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8784
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8785
8785
  id: string;
8786
8786
  name: string;
8787
8787
  label: string;
@@ -8863,7 +8863,7 @@ export declare const GraphSchema: z.ZodObject<{
8863
8863
  title: string;
8864
8864
  subtitle: string;
8865
8865
  fields: {
8866
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8866
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8867
8867
  id: string;
8868
8868
  name: string;
8869
8869
  label: string;
@@ -8932,7 +8932,7 @@ export declare const GraphSchema: z.ZodObject<{
8932
8932
  title: string;
8933
8933
  subtitle: string;
8934
8934
  fields: {
8935
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8935
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
8936
8936
  id: string;
8937
8937
  name: string;
8938
8938
  label: string;
@@ -9003,7 +9003,7 @@ export declare const GraphSchema: z.ZodObject<{
9003
9003
  title: string;
9004
9004
  subtitle: string;
9005
9005
  fields: {
9006
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
9006
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
9007
9007
  id: string;
9008
9008
  name: string;
9009
9009
  label: string;
@@ -9100,7 +9100,7 @@ export declare const GraphSchema: z.ZodObject<{
9100
9100
  title: string;
9101
9101
  subtitle: string;
9102
9102
  fields: {
9103
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
9103
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
9104
9104
  id: string;
9105
9105
  name: string;
9106
9106
  label: string;
@@ -9169,7 +9169,7 @@ export declare const GraphSchema: z.ZodObject<{
9169
9169
  title: string;
9170
9170
  subtitle: string;
9171
9171
  fields: {
9172
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
9172
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
9173
9173
  id: string;
9174
9174
  name: string;
9175
9175
  label: string;
@@ -9240,7 +9240,7 @@ export declare const GraphSchema: z.ZodObject<{
9240
9240
  title: string;
9241
9241
  subtitle: string;
9242
9242
  fields: {
9243
- type: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
9243
+ type: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password";
9244
9244
  id: string;
9245
9245
  name: string;
9246
9246
  label: string;
@@ -9362,7 +9362,7 @@ export declare const GraphSchema: z.ZodObject<{
9362
9362
  fields: {
9363
9363
  id: string;
9364
9364
  name: string;
9365
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
9365
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
9366
9366
  label?: unknown;
9367
9367
  placeholder?: unknown;
9368
9368
  defaultValue?: unknown;
@@ -9481,7 +9481,7 @@ export declare const GraphSchema: z.ZodObject<{
9481
9481
  fields: {
9482
9482
  id: string;
9483
9483
  name: string;
9484
- type?: "time" | "url" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
9484
+ type?: "time" | "file" | "url" | "textarea" | "text" | "email" | "tel" | "date" | "datetime-local" | "password" | undefined;
9485
9485
  label?: unknown;
9486
9486
  placeholder?: unknown;
9487
9487
  defaultValue?: unknown;