skedyul 1.0.2 → 1.0.4

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/schemas.d.ts CHANGED
@@ -211,8 +211,6 @@ export declare const ModelDefinitionSchema: z.ZodObject<{
211
211
  export declare const RelationshipCardinalitySchema: z.ZodEnum<{
212
212
  ONE_TO_ONE: "ONE_TO_ONE";
213
213
  ONE_TO_MANY: "ONE_TO_MANY";
214
- MANY_TO_ONE: "MANY_TO_ONE";
215
- MANY_TO_MANY: "MANY_TO_MANY";
216
214
  }>;
217
215
  export declare const OnDeleteBehaviorSchema: z.ZodEnum<{
218
216
  NONE: "NONE";
@@ -223,51 +221,27 @@ export declare const RelationshipLinkSchema: z.ZodObject<{
223
221
  model: z.ZodString;
224
222
  field: z.ZodString;
225
223
  label: z.ZodString;
226
- cardinality: z.ZodEnum<{
227
- ONE_TO_ONE: "ONE_TO_ONE";
228
- ONE_TO_MANY: "ONE_TO_MANY";
229
- MANY_TO_ONE: "MANY_TO_ONE";
230
- MANY_TO_MANY: "MANY_TO_MANY";
231
- }>;
232
- onDelete: z.ZodDefault<z.ZodEnum<{
233
- NONE: "NONE";
234
- CASCADE: "CASCADE";
235
- RESTRICT: "RESTRICT";
236
- }>>;
237
224
  }, z.core.$strip>;
238
225
  export declare const RelationshipDefinitionSchema: z.ZodObject<{
239
226
  source: z.ZodObject<{
240
227
  model: z.ZodString;
241
228
  field: z.ZodString;
242
229
  label: z.ZodString;
243
- cardinality: z.ZodEnum<{
244
- ONE_TO_ONE: "ONE_TO_ONE";
245
- ONE_TO_MANY: "ONE_TO_MANY";
246
- MANY_TO_ONE: "MANY_TO_ONE";
247
- MANY_TO_MANY: "MANY_TO_MANY";
248
- }>;
249
- onDelete: z.ZodDefault<z.ZodEnum<{
250
- NONE: "NONE";
251
- CASCADE: "CASCADE";
252
- RESTRICT: "RESTRICT";
253
- }>>;
254
230
  }, z.core.$strip>;
255
231
  target: z.ZodObject<{
256
232
  model: z.ZodString;
257
233
  field: z.ZodString;
258
234
  label: z.ZodString;
259
- cardinality: z.ZodEnum<{
260
- ONE_TO_ONE: "ONE_TO_ONE";
261
- ONE_TO_MANY: "ONE_TO_MANY";
262
- MANY_TO_ONE: "MANY_TO_ONE";
263
- MANY_TO_MANY: "MANY_TO_MANY";
264
- }>;
265
- onDelete: z.ZodDefault<z.ZodEnum<{
266
- NONE: "NONE";
267
- CASCADE: "CASCADE";
268
- RESTRICT: "RESTRICT";
269
- }>>;
270
235
  }, z.core.$strip>;
236
+ cardinality: z.ZodEnum<{
237
+ ONE_TO_ONE: "ONE_TO_ONE";
238
+ ONE_TO_MANY: "ONE_TO_MANY";
239
+ }>;
240
+ onDelete: z.ZodDefault<z.ZodEnum<{
241
+ NONE: "NONE";
242
+ CASCADE: "CASCADE";
243
+ RESTRICT: "RESTRICT";
244
+ }>>;
271
245
  }, z.core.$strip>;
272
246
  /** Standard capability types for communication channels */
273
247
  export declare const ChannelCapabilityTypeSchema: z.ZodEnum<{
@@ -402,13 +376,13 @@ export declare const PageTypeSchema: z.ZodEnum<{
402
376
  LIST: "LIST";
403
377
  }>;
404
378
  export declare const PageBlockTypeSchema: z.ZodEnum<{
405
- link: "link";
406
379
  list: "list";
407
380
  form: "form";
408
- card: "card";
409
381
  spreadsheet: "spreadsheet";
410
382
  kanban: "kanban";
411
383
  calendar: "calendar";
384
+ link: "link";
385
+ card: "card";
412
386
  }>;
413
387
  export declare const PageFieldTypeSchema: z.ZodEnum<{
414
388
  STRING: "STRING";
@@ -434,9 +408,9 @@ export declare const PageActionDefinitionSchema: z.ZodObject<{
434
408
  handler: z.ZodString;
435
409
  icon: z.ZodOptional<z.ZodString>;
436
410
  variant: z.ZodOptional<z.ZodEnum<{
437
- destructive: "destructive";
438
- secondary: "secondary";
439
411
  primary: "primary";
412
+ secondary: "secondary";
413
+ destructive: "destructive";
440
414
  }>>;
441
415
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
442
416
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -454,17 +428,17 @@ export declare const FieldSettingButtonPropsSchema: z.ZodObject<{
454
428
  label: z.ZodString;
455
429
  variant: z.ZodOptional<z.ZodEnum<{
456
430
  default: "default";
431
+ link: "link";
432
+ secondary: "secondary";
457
433
  destructive: "destructive";
458
434
  outline: "outline";
459
- secondary: "secondary";
460
435
  ghost: "ghost";
461
- link: "link";
462
436
  }>>;
463
437
  size: z.ZodOptional<z.ZodEnum<{
464
438
  default: "default";
439
+ icon: "icon";
465
440
  sm: "sm";
466
441
  lg: "lg";
467
- icon: "icon";
468
442
  }>>;
469
443
  isLoading: z.ZodOptional<z.ZodBoolean>;
470
444
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -516,12 +490,12 @@ export declare const InputComponentDefinitionSchema: z.ZodObject<{
516
490
  helpText: z.ZodOptional<z.ZodString>;
517
491
  type: z.ZodOptional<z.ZodEnum<{
518
492
  number: "number";
493
+ hidden: "hidden";
519
494
  text: "text";
520
495
  email: "email";
521
496
  password: "password";
522
497
  tel: "tel";
523
498
  url: "url";
524
- hidden: "hidden";
525
499
  }>>;
526
500
  required: z.ZodOptional<z.ZodBoolean>;
527
501
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -674,9 +648,9 @@ export declare const FileSettingComponentDefinitionSchema: z.ZodObject<{
674
648
  label: z.ZodOptional<z.ZodString>;
675
649
  variant: z.ZodOptional<z.ZodEnum<{
676
650
  default: "default";
651
+ link: "link";
677
652
  outline: "outline";
678
653
  ghost: "ghost";
679
- link: "link";
680
654
  }>>;
681
655
  size: z.ZodOptional<z.ZodEnum<{
682
656
  sm: "sm";
@@ -790,17 +764,17 @@ export declare const FieldSettingComponentDefinitionSchema: z.ZodObject<{
790
764
  label: z.ZodString;
791
765
  variant: z.ZodOptional<z.ZodEnum<{
792
766
  default: "default";
767
+ link: "link";
768
+ secondary: "secondary";
793
769
  destructive: "destructive";
794
770
  outline: "outline";
795
- secondary: "secondary";
796
771
  ghost: "ghost";
797
- link: "link";
798
772
  }>>;
799
773
  size: z.ZodOptional<z.ZodEnum<{
800
774
  default: "default";
775
+ icon: "icon";
801
776
  sm: "sm";
802
777
  lg: "lg";
803
- icon: "icon";
804
778
  }>>;
805
779
  isLoading: z.ZodOptional<z.ZodBoolean>;
806
780
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -839,12 +813,12 @@ export declare const FormV2ComponentDefinitionSchema: z.ZodDiscriminatedUnion<[z
839
813
  helpText: z.ZodOptional<z.ZodString>;
840
814
  type: z.ZodOptional<z.ZodEnum<{
841
815
  number: "number";
816
+ hidden: "hidden";
842
817
  text: "text";
843
818
  email: "email";
844
819
  password: "password";
845
820
  tel: "tel";
846
821
  url: "url";
847
- hidden: "hidden";
848
822
  }>>;
849
823
  required: z.ZodOptional<z.ZodBoolean>;
850
824
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -972,17 +946,17 @@ export declare const FormV2ComponentDefinitionSchema: z.ZodDiscriminatedUnion<[z
972
946
  label: z.ZodString;
973
947
  variant: z.ZodOptional<z.ZodEnum<{
974
948
  default: "default";
949
+ link: "link";
950
+ secondary: "secondary";
975
951
  destructive: "destructive";
976
952
  outline: "outline";
977
- secondary: "secondary";
978
953
  ghost: "ghost";
979
- link: "link";
980
954
  }>>;
981
955
  size: z.ZodOptional<z.ZodEnum<{
982
956
  default: "default";
957
+ icon: "icon";
983
958
  sm: "sm";
984
959
  lg: "lg";
985
- icon: "icon";
986
960
  }>>;
987
961
  isLoading: z.ZodOptional<z.ZodBoolean>;
988
962
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -1036,9 +1010,9 @@ export declare const FormV2ComponentDefinitionSchema: z.ZodDiscriminatedUnion<[z
1036
1010
  label: z.ZodOptional<z.ZodString>;
1037
1011
  variant: z.ZodOptional<z.ZodEnum<{
1038
1012
  default: "default";
1013
+ link: "link";
1039
1014
  outline: "outline";
1040
1015
  ghost: "ghost";
1041
- link: "link";
1042
1016
  }>>;
1043
1017
  size: z.ZodOptional<z.ZodEnum<{
1044
1018
  sm: "sm";
@@ -1121,12 +1095,12 @@ export declare const FormV2PropsDefinitionSchema: z.ZodObject<{
1121
1095
  helpText: z.ZodOptional<z.ZodString>;
1122
1096
  type: z.ZodOptional<z.ZodEnum<{
1123
1097
  number: "number";
1098
+ hidden: "hidden";
1124
1099
  text: "text";
1125
1100
  email: "email";
1126
1101
  password: "password";
1127
1102
  tel: "tel";
1128
1103
  url: "url";
1129
- hidden: "hidden";
1130
1104
  }>>;
1131
1105
  required: z.ZodOptional<z.ZodBoolean>;
1132
1106
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -1254,17 +1228,17 @@ export declare const FormV2PropsDefinitionSchema: z.ZodObject<{
1254
1228
  label: z.ZodString;
1255
1229
  variant: z.ZodOptional<z.ZodEnum<{
1256
1230
  default: "default";
1231
+ link: "link";
1232
+ secondary: "secondary";
1257
1233
  destructive: "destructive";
1258
1234
  outline: "outline";
1259
- secondary: "secondary";
1260
1235
  ghost: "ghost";
1261
- link: "link";
1262
1236
  }>>;
1263
1237
  size: z.ZodOptional<z.ZodEnum<{
1264
1238
  default: "default";
1239
+ icon: "icon";
1265
1240
  sm: "sm";
1266
1241
  lg: "lg";
1267
- icon: "icon";
1268
1242
  }>>;
1269
1243
  isLoading: z.ZodOptional<z.ZodBoolean>;
1270
1244
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -1318,9 +1292,9 @@ export declare const FormV2PropsDefinitionSchema: z.ZodObject<{
1318
1292
  label: z.ZodOptional<z.ZodString>;
1319
1293
  variant: z.ZodOptional<z.ZodEnum<{
1320
1294
  default: "default";
1295
+ link: "link";
1321
1296
  outline: "outline";
1322
1297
  ghost: "ghost";
1323
- link: "link";
1324
1298
  }>>;
1325
1299
  size: z.ZodOptional<z.ZodEnum<{
1326
1300
  sm: "sm";
@@ -1403,9 +1377,9 @@ export declare const FormV2PropsDefinitionSchema: z.ZodObject<{
1403
1377
  handler: z.ZodString;
1404
1378
  icon: z.ZodOptional<z.ZodString>;
1405
1379
  variant: z.ZodOptional<z.ZodEnum<{
1406
- destructive: "destructive";
1407
- secondary: "secondary";
1408
1380
  primary: "primary";
1381
+ secondary: "secondary";
1382
+ destructive: "destructive";
1409
1383
  }>>;
1410
1384
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
1411
1385
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -1442,12 +1416,12 @@ export declare const CardBlockDefinitionSchema: z.ZodObject<{
1442
1416
  helpText: z.ZodOptional<z.ZodString>;
1443
1417
  type: z.ZodOptional<z.ZodEnum<{
1444
1418
  number: "number";
1419
+ hidden: "hidden";
1445
1420
  text: "text";
1446
1421
  email: "email";
1447
1422
  password: "password";
1448
1423
  tel: "tel";
1449
1424
  url: "url";
1450
- hidden: "hidden";
1451
1425
  }>>;
1452
1426
  required: z.ZodOptional<z.ZodBoolean>;
1453
1427
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -1575,17 +1549,17 @@ export declare const CardBlockDefinitionSchema: z.ZodObject<{
1575
1549
  label: z.ZodString;
1576
1550
  variant: z.ZodOptional<z.ZodEnum<{
1577
1551
  default: "default";
1552
+ link: "link";
1553
+ secondary: "secondary";
1578
1554
  destructive: "destructive";
1579
1555
  outline: "outline";
1580
- secondary: "secondary";
1581
1556
  ghost: "ghost";
1582
- link: "link";
1583
1557
  }>>;
1584
1558
  size: z.ZodOptional<z.ZodEnum<{
1585
1559
  default: "default";
1560
+ icon: "icon";
1586
1561
  sm: "sm";
1587
1562
  lg: "lg";
1588
- icon: "icon";
1589
1563
  }>>;
1590
1564
  isLoading: z.ZodOptional<z.ZodBoolean>;
1591
1565
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -1639,9 +1613,9 @@ export declare const CardBlockDefinitionSchema: z.ZodObject<{
1639
1613
  label: z.ZodOptional<z.ZodString>;
1640
1614
  variant: z.ZodOptional<z.ZodEnum<{
1641
1615
  default: "default";
1616
+ link: "link";
1642
1617
  outline: "outline";
1643
1618
  ghost: "ghost";
1644
- link: "link";
1645
1619
  }>>;
1646
1620
  size: z.ZodOptional<z.ZodEnum<{
1647
1621
  sm: "sm";
@@ -1724,9 +1698,9 @@ export declare const CardBlockDefinitionSchema: z.ZodObject<{
1724
1698
  handler: z.ZodString;
1725
1699
  icon: z.ZodOptional<z.ZodString>;
1726
1700
  variant: z.ZodOptional<z.ZodEnum<{
1727
- destructive: "destructive";
1728
- secondary: "secondary";
1729
1701
  primary: "primary";
1702
+ secondary: "secondary";
1703
+ destructive: "destructive";
1730
1704
  }>>;
1731
1705
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
1732
1706
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -1738,9 +1712,9 @@ export declare const CardBlockDefinitionSchema: z.ZodObject<{
1738
1712
  handler: z.ZodString;
1739
1713
  icon: z.ZodOptional<z.ZodString>;
1740
1714
  variant: z.ZodOptional<z.ZodEnum<{
1741
- destructive: "destructive";
1742
- secondary: "secondary";
1743
1715
  primary: "primary";
1716
+ secondary: "secondary";
1717
+ destructive: "destructive";
1744
1718
  }>>;
1745
1719
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
1746
1720
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -1751,9 +1725,9 @@ export declare const CardBlockDefinitionSchema: z.ZodObject<{
1751
1725
  handler: z.ZodString;
1752
1726
  icon: z.ZodOptional<z.ZodString>;
1753
1727
  variant: z.ZodOptional<z.ZodEnum<{
1754
- destructive: "destructive";
1755
- secondary: "secondary";
1756
1728
  primary: "primary";
1729
+ secondary: "secondary";
1730
+ destructive: "destructive";
1757
1731
  }>>;
1758
1732
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
1759
1733
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -1764,9 +1738,9 @@ export declare const CardBlockDefinitionSchema: z.ZodObject<{
1764
1738
  handler: z.ZodString;
1765
1739
  icon: z.ZodOptional<z.ZodString>;
1766
1740
  variant: z.ZodOptional<z.ZodEnum<{
1767
- destructive: "destructive";
1768
- secondary: "secondary";
1769
1741
  primary: "primary";
1742
+ secondary: "secondary";
1743
+ destructive: "destructive";
1770
1744
  }>>;
1771
1745
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
1772
1746
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -1811,11 +1785,11 @@ export declare const PageFieldDefinitionSchema: z.ZodType<PageFieldDefinition>;
1811
1785
  /** Legacy form block definition */
1812
1786
  export declare const LegacyFormBlockDefinitionSchema: z.ZodObject<{
1813
1787
  type: z.ZodEnum<{
1814
- link: "link";
1815
1788
  form: "form";
1816
1789
  spreadsheet: "spreadsheet";
1817
1790
  kanban: "kanban";
1818
1791
  calendar: "calendar";
1792
+ link: "link";
1819
1793
  }>;
1820
1794
  title: z.ZodOptional<z.ZodString>;
1821
1795
  fields: z.ZodOptional<z.ZodArray<z.ZodType<PageFieldDefinition, unknown, z.core.$ZodTypeInternals<PageFieldDefinition, unknown>>>>;
@@ -1861,12 +1835,12 @@ export declare const PageBlockDefinitionSchema: z.ZodUnion<readonly [z.ZodObject
1861
1835
  helpText: z.ZodOptional<z.ZodString>;
1862
1836
  type: z.ZodOptional<z.ZodEnum<{
1863
1837
  number: "number";
1838
+ hidden: "hidden";
1864
1839
  text: "text";
1865
1840
  email: "email";
1866
1841
  password: "password";
1867
1842
  tel: "tel";
1868
1843
  url: "url";
1869
- hidden: "hidden";
1870
1844
  }>>;
1871
1845
  required: z.ZodOptional<z.ZodBoolean>;
1872
1846
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -1994,17 +1968,17 @@ export declare const PageBlockDefinitionSchema: z.ZodUnion<readonly [z.ZodObject
1994
1968
  label: z.ZodString;
1995
1969
  variant: z.ZodOptional<z.ZodEnum<{
1996
1970
  default: "default";
1971
+ link: "link";
1972
+ secondary: "secondary";
1997
1973
  destructive: "destructive";
1998
1974
  outline: "outline";
1999
- secondary: "secondary";
2000
1975
  ghost: "ghost";
2001
- link: "link";
2002
1976
  }>>;
2003
1977
  size: z.ZodOptional<z.ZodEnum<{
2004
1978
  default: "default";
1979
+ icon: "icon";
2005
1980
  sm: "sm";
2006
1981
  lg: "lg";
2007
- icon: "icon";
2008
1982
  }>>;
2009
1983
  isLoading: z.ZodOptional<z.ZodBoolean>;
2010
1984
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -2058,9 +2032,9 @@ export declare const PageBlockDefinitionSchema: z.ZodUnion<readonly [z.ZodObject
2058
2032
  label: z.ZodOptional<z.ZodString>;
2059
2033
  variant: z.ZodOptional<z.ZodEnum<{
2060
2034
  default: "default";
2035
+ link: "link";
2061
2036
  outline: "outline";
2062
2037
  ghost: "ghost";
2063
- link: "link";
2064
2038
  }>>;
2065
2039
  size: z.ZodOptional<z.ZodEnum<{
2066
2040
  sm: "sm";
@@ -2143,9 +2117,9 @@ export declare const PageBlockDefinitionSchema: z.ZodUnion<readonly [z.ZodObject
2143
2117
  handler: z.ZodString;
2144
2118
  icon: z.ZodOptional<z.ZodString>;
2145
2119
  variant: z.ZodOptional<z.ZodEnum<{
2146
- destructive: "destructive";
2147
- secondary: "secondary";
2148
2120
  primary: "primary";
2121
+ secondary: "secondary";
2122
+ destructive: "destructive";
2149
2123
  }>>;
2150
2124
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
2151
2125
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -2157,9 +2131,9 @@ export declare const PageBlockDefinitionSchema: z.ZodUnion<readonly [z.ZodObject
2157
2131
  handler: z.ZodString;
2158
2132
  icon: z.ZodOptional<z.ZodString>;
2159
2133
  variant: z.ZodOptional<z.ZodEnum<{
2160
- destructive: "destructive";
2161
- secondary: "secondary";
2162
2134
  primary: "primary";
2135
+ secondary: "secondary";
2136
+ destructive: "destructive";
2163
2137
  }>>;
2164
2138
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
2165
2139
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -2170,9 +2144,9 @@ export declare const PageBlockDefinitionSchema: z.ZodUnion<readonly [z.ZodObject
2170
2144
  handler: z.ZodString;
2171
2145
  icon: z.ZodOptional<z.ZodString>;
2172
2146
  variant: z.ZodOptional<z.ZodEnum<{
2173
- destructive: "destructive";
2174
- secondary: "secondary";
2175
2147
  primary: "primary";
2148
+ secondary: "secondary";
2149
+ destructive: "destructive";
2176
2150
  }>>;
2177
2151
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
2178
2152
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -2183,20 +2157,20 @@ export declare const PageBlockDefinitionSchema: z.ZodUnion<readonly [z.ZodObject
2183
2157
  handler: z.ZodString;
2184
2158
  icon: z.ZodOptional<z.ZodString>;
2185
2159
  variant: z.ZodOptional<z.ZodEnum<{
2186
- destructive: "destructive";
2187
- secondary: "secondary";
2188
2160
  primary: "primary";
2161
+ secondary: "secondary";
2162
+ destructive: "destructive";
2189
2163
  }>>;
2190
2164
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
2191
2165
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
2192
2166
  }, z.core.$strip>>>;
2193
2167
  }, z.core.$strip>, z.ZodObject<{
2194
2168
  type: z.ZodEnum<{
2195
- link: "link";
2196
2169
  form: "form";
2197
2170
  spreadsheet: "spreadsheet";
2198
2171
  kanban: "kanban";
2199
2172
  calendar: "calendar";
2173
+ link: "link";
2200
2174
  }>;
2201
2175
  title: z.ZodOptional<z.ZodString>;
2202
2176
  fields: z.ZodOptional<z.ZodArray<z.ZodType<PageFieldDefinition, unknown, z.core.$ZodTypeInternals<PageFieldDefinition, unknown>>>>;
@@ -2365,12 +2339,12 @@ export declare const PageDefinitionSchema: z.ZodObject<{
2365
2339
  helpText: z.ZodOptional<z.ZodString>;
2366
2340
  type: z.ZodOptional<z.ZodEnum<{
2367
2341
  number: "number";
2342
+ hidden: "hidden";
2368
2343
  text: "text";
2369
2344
  email: "email";
2370
2345
  password: "password";
2371
2346
  tel: "tel";
2372
2347
  url: "url";
2373
- hidden: "hidden";
2374
2348
  }>>;
2375
2349
  required: z.ZodOptional<z.ZodBoolean>;
2376
2350
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -2498,17 +2472,17 @@ export declare const PageDefinitionSchema: z.ZodObject<{
2498
2472
  label: z.ZodString;
2499
2473
  variant: z.ZodOptional<z.ZodEnum<{
2500
2474
  default: "default";
2475
+ link: "link";
2476
+ secondary: "secondary";
2501
2477
  destructive: "destructive";
2502
2478
  outline: "outline";
2503
- secondary: "secondary";
2504
2479
  ghost: "ghost";
2505
- link: "link";
2506
2480
  }>>;
2507
2481
  size: z.ZodOptional<z.ZodEnum<{
2508
2482
  default: "default";
2483
+ icon: "icon";
2509
2484
  sm: "sm";
2510
2485
  lg: "lg";
2511
- icon: "icon";
2512
2486
  }>>;
2513
2487
  isLoading: z.ZodOptional<z.ZodBoolean>;
2514
2488
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -2562,9 +2536,9 @@ export declare const PageDefinitionSchema: z.ZodObject<{
2562
2536
  label: z.ZodOptional<z.ZodString>;
2563
2537
  variant: z.ZodOptional<z.ZodEnum<{
2564
2538
  default: "default";
2539
+ link: "link";
2565
2540
  outline: "outline";
2566
2541
  ghost: "ghost";
2567
- link: "link";
2568
2542
  }>>;
2569
2543
  size: z.ZodOptional<z.ZodEnum<{
2570
2544
  sm: "sm";
@@ -2647,9 +2621,9 @@ export declare const PageDefinitionSchema: z.ZodObject<{
2647
2621
  handler: z.ZodString;
2648
2622
  icon: z.ZodOptional<z.ZodString>;
2649
2623
  variant: z.ZodOptional<z.ZodEnum<{
2650
- destructive: "destructive";
2651
- secondary: "secondary";
2652
2624
  primary: "primary";
2625
+ secondary: "secondary";
2626
+ destructive: "destructive";
2653
2627
  }>>;
2654
2628
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
2655
2629
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -2661,9 +2635,9 @@ export declare const PageDefinitionSchema: z.ZodObject<{
2661
2635
  handler: z.ZodString;
2662
2636
  icon: z.ZodOptional<z.ZodString>;
2663
2637
  variant: z.ZodOptional<z.ZodEnum<{
2664
- destructive: "destructive";
2665
- secondary: "secondary";
2666
2638
  primary: "primary";
2639
+ secondary: "secondary";
2640
+ destructive: "destructive";
2667
2641
  }>>;
2668
2642
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
2669
2643
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -2674,9 +2648,9 @@ export declare const PageDefinitionSchema: z.ZodObject<{
2674
2648
  handler: z.ZodString;
2675
2649
  icon: z.ZodOptional<z.ZodString>;
2676
2650
  variant: z.ZodOptional<z.ZodEnum<{
2677
- destructive: "destructive";
2678
- secondary: "secondary";
2679
2651
  primary: "primary";
2652
+ secondary: "secondary";
2653
+ destructive: "destructive";
2680
2654
  }>>;
2681
2655
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
2682
2656
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -2687,20 +2661,20 @@ export declare const PageDefinitionSchema: z.ZodObject<{
2687
2661
  handler: z.ZodString;
2688
2662
  icon: z.ZodOptional<z.ZodString>;
2689
2663
  variant: z.ZodOptional<z.ZodEnum<{
2690
- destructive: "destructive";
2691
- secondary: "secondary";
2692
2664
  primary: "primary";
2665
+ secondary: "secondary";
2666
+ destructive: "destructive";
2693
2667
  }>>;
2694
2668
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
2695
2669
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
2696
2670
  }, z.core.$strip>>>;
2697
2671
  }, z.core.$strip>, z.ZodObject<{
2698
2672
  type: z.ZodEnum<{
2699
- link: "link";
2700
2673
  form: "form";
2701
2674
  spreadsheet: "spreadsheet";
2702
2675
  kanban: "kanban";
2703
2676
  calendar: "calendar";
2677
+ link: "link";
2704
2678
  }>;
2705
2679
  title: z.ZodOptional<z.ZodString>;
2706
2680
  fields: z.ZodOptional<z.ZodArray<z.ZodType<PageFieldDefinition, unknown, z.core.$ZodTypeInternals<PageFieldDefinition, unknown>>>>;
@@ -2723,9 +2697,9 @@ export declare const PageDefinitionSchema: z.ZodObject<{
2723
2697
  handler: z.ZodString;
2724
2698
  icon: z.ZodOptional<z.ZodString>;
2725
2699
  variant: z.ZodOptional<z.ZodEnum<{
2726
- destructive: "destructive";
2727
- secondary: "secondary";
2728
2700
  primary: "primary";
2701
+ secondary: "secondary";
2702
+ destructive: "destructive";
2729
2703
  }>>;
2730
2704
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
2731
2705
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -2881,34 +2855,21 @@ export declare const InstallConfigSchema: z.ZodObject<{
2881
2855
  model: z.ZodString;
2882
2856
  field: z.ZodString;
2883
2857
  label: z.ZodString;
2884
- cardinality: z.ZodEnum<{
2885
- ONE_TO_ONE: "ONE_TO_ONE";
2886
- ONE_TO_MANY: "ONE_TO_MANY";
2887
- MANY_TO_ONE: "MANY_TO_ONE";
2888
- MANY_TO_MANY: "MANY_TO_MANY";
2889
- }>;
2890
- onDelete: z.ZodDefault<z.ZodEnum<{
2891
- NONE: "NONE";
2892
- CASCADE: "CASCADE";
2893
- RESTRICT: "RESTRICT";
2894
- }>>;
2895
2858
  }, z.core.$strip>;
2896
2859
  target: z.ZodObject<{
2897
2860
  model: z.ZodString;
2898
2861
  field: z.ZodString;
2899
2862
  label: z.ZodString;
2900
- cardinality: z.ZodEnum<{
2901
- ONE_TO_ONE: "ONE_TO_ONE";
2902
- ONE_TO_MANY: "ONE_TO_MANY";
2903
- MANY_TO_ONE: "MANY_TO_ONE";
2904
- MANY_TO_MANY: "MANY_TO_MANY";
2905
- }>;
2906
- onDelete: z.ZodDefault<z.ZodEnum<{
2907
- NONE: "NONE";
2908
- CASCADE: "CASCADE";
2909
- RESTRICT: "RESTRICT";
2910
- }>>;
2911
2863
  }, z.core.$strip>;
2864
+ cardinality: z.ZodEnum<{
2865
+ ONE_TO_ONE: "ONE_TO_ONE";
2866
+ ONE_TO_MANY: "ONE_TO_MANY";
2867
+ }>;
2868
+ onDelete: z.ZodDefault<z.ZodEnum<{
2869
+ NONE: "NONE";
2870
+ CASCADE: "CASCADE";
2871
+ RESTRICT: "RESTRICT";
2872
+ }>>;
2912
2873
  }, z.core.$strip>>>;
2913
2874
  }, z.core.$strip>;
2914
2875
  export declare const ProvisionConfigSchema: z.ZodObject<{
@@ -2994,34 +2955,21 @@ export declare const ProvisionConfigSchema: z.ZodObject<{
2994
2955
  model: z.ZodString;
2995
2956
  field: z.ZodString;
2996
2957
  label: z.ZodString;
2997
- cardinality: z.ZodEnum<{
2998
- ONE_TO_ONE: "ONE_TO_ONE";
2999
- ONE_TO_MANY: "ONE_TO_MANY";
3000
- MANY_TO_ONE: "MANY_TO_ONE";
3001
- MANY_TO_MANY: "MANY_TO_MANY";
3002
- }>;
3003
- onDelete: z.ZodDefault<z.ZodEnum<{
3004
- NONE: "NONE";
3005
- CASCADE: "CASCADE";
3006
- RESTRICT: "RESTRICT";
3007
- }>>;
3008
2958
  }, z.core.$strip>;
3009
2959
  target: z.ZodObject<{
3010
2960
  model: z.ZodString;
3011
2961
  field: z.ZodString;
3012
2962
  label: z.ZodString;
3013
- cardinality: z.ZodEnum<{
3014
- ONE_TO_ONE: "ONE_TO_ONE";
3015
- ONE_TO_MANY: "ONE_TO_MANY";
3016
- MANY_TO_ONE: "MANY_TO_ONE";
3017
- MANY_TO_MANY: "MANY_TO_MANY";
3018
- }>;
3019
- onDelete: z.ZodDefault<z.ZodEnum<{
3020
- NONE: "NONE";
3021
- CASCADE: "CASCADE";
3022
- RESTRICT: "RESTRICT";
3023
- }>>;
3024
2963
  }, z.core.$strip>;
2964
+ cardinality: z.ZodEnum<{
2965
+ ONE_TO_ONE: "ONE_TO_ONE";
2966
+ ONE_TO_MANY: "ONE_TO_MANY";
2967
+ }>;
2968
+ onDelete: z.ZodDefault<z.ZodEnum<{
2969
+ NONE: "NONE";
2970
+ CASCADE: "CASCADE";
2971
+ RESTRICT: "RESTRICT";
2972
+ }>>;
3025
2973
  }, z.core.$strip>>>;
3026
2974
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
3027
2975
  handle: z.ZodString;
@@ -3156,12 +3104,12 @@ export declare const ProvisionConfigSchema: z.ZodObject<{
3156
3104
  helpText: z.ZodOptional<z.ZodString>;
3157
3105
  type: z.ZodOptional<z.ZodEnum<{
3158
3106
  number: "number";
3107
+ hidden: "hidden";
3159
3108
  text: "text";
3160
3109
  email: "email";
3161
3110
  password: "password";
3162
3111
  tel: "tel";
3163
3112
  url: "url";
3164
- hidden: "hidden";
3165
3113
  }>>;
3166
3114
  required: z.ZodOptional<z.ZodBoolean>;
3167
3115
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -3289,17 +3237,17 @@ export declare const ProvisionConfigSchema: z.ZodObject<{
3289
3237
  label: z.ZodString;
3290
3238
  variant: z.ZodOptional<z.ZodEnum<{
3291
3239
  default: "default";
3240
+ link: "link";
3241
+ secondary: "secondary";
3292
3242
  destructive: "destructive";
3293
3243
  outline: "outline";
3294
- secondary: "secondary";
3295
3244
  ghost: "ghost";
3296
- link: "link";
3297
3245
  }>>;
3298
3246
  size: z.ZodOptional<z.ZodEnum<{
3299
3247
  default: "default";
3248
+ icon: "icon";
3300
3249
  sm: "sm";
3301
3250
  lg: "lg";
3302
- icon: "icon";
3303
3251
  }>>;
3304
3252
  isLoading: z.ZodOptional<z.ZodBoolean>;
3305
3253
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -3353,9 +3301,9 @@ export declare const ProvisionConfigSchema: z.ZodObject<{
3353
3301
  label: z.ZodOptional<z.ZodString>;
3354
3302
  variant: z.ZodOptional<z.ZodEnum<{
3355
3303
  default: "default";
3304
+ link: "link";
3356
3305
  outline: "outline";
3357
3306
  ghost: "ghost";
3358
- link: "link";
3359
3307
  }>>;
3360
3308
  size: z.ZodOptional<z.ZodEnum<{
3361
3309
  sm: "sm";
@@ -3438,9 +3386,9 @@ export declare const ProvisionConfigSchema: z.ZodObject<{
3438
3386
  handler: z.ZodString;
3439
3387
  icon: z.ZodOptional<z.ZodString>;
3440
3388
  variant: z.ZodOptional<z.ZodEnum<{
3441
- destructive: "destructive";
3442
- secondary: "secondary";
3443
3389
  primary: "primary";
3390
+ secondary: "secondary";
3391
+ destructive: "destructive";
3444
3392
  }>>;
3445
3393
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
3446
3394
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -3452,9 +3400,9 @@ export declare const ProvisionConfigSchema: z.ZodObject<{
3452
3400
  handler: z.ZodString;
3453
3401
  icon: z.ZodOptional<z.ZodString>;
3454
3402
  variant: z.ZodOptional<z.ZodEnum<{
3455
- destructive: "destructive";
3456
- secondary: "secondary";
3457
3403
  primary: "primary";
3404
+ secondary: "secondary";
3405
+ destructive: "destructive";
3458
3406
  }>>;
3459
3407
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
3460
3408
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -3465,9 +3413,9 @@ export declare const ProvisionConfigSchema: z.ZodObject<{
3465
3413
  handler: z.ZodString;
3466
3414
  icon: z.ZodOptional<z.ZodString>;
3467
3415
  variant: z.ZodOptional<z.ZodEnum<{
3468
- destructive: "destructive";
3469
- secondary: "secondary";
3470
3416
  primary: "primary";
3417
+ secondary: "secondary";
3418
+ destructive: "destructive";
3471
3419
  }>>;
3472
3420
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
3473
3421
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -3478,20 +3426,20 @@ export declare const ProvisionConfigSchema: z.ZodObject<{
3478
3426
  handler: z.ZodString;
3479
3427
  icon: z.ZodOptional<z.ZodString>;
3480
3428
  variant: z.ZodOptional<z.ZodEnum<{
3481
- destructive: "destructive";
3482
- secondary: "secondary";
3483
3429
  primary: "primary";
3430
+ secondary: "secondary";
3431
+ destructive: "destructive";
3484
3432
  }>>;
3485
3433
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
3486
3434
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
3487
3435
  }, z.core.$strip>>>;
3488
3436
  }, z.core.$strip>, z.ZodObject<{
3489
3437
  type: z.ZodEnum<{
3490
- link: "link";
3491
3438
  form: "form";
3492
3439
  spreadsheet: "spreadsheet";
3493
3440
  kanban: "kanban";
3494
3441
  calendar: "calendar";
3442
+ link: "link";
3495
3443
  }>;
3496
3444
  title: z.ZodOptional<z.ZodString>;
3497
3445
  fields: z.ZodOptional<z.ZodArray<z.ZodType<PageFieldDefinition, unknown, z.core.$ZodTypeInternals<PageFieldDefinition, unknown>>>>;
@@ -3514,9 +3462,9 @@ export declare const ProvisionConfigSchema: z.ZodObject<{
3514
3462
  handler: z.ZodString;
3515
3463
  icon: z.ZodOptional<z.ZodString>;
3516
3464
  variant: z.ZodOptional<z.ZodEnum<{
3517
- destructive: "destructive";
3518
- secondary: "secondary";
3519
3465
  primary: "primary";
3466
+ secondary: "secondary";
3467
+ destructive: "destructive";
3520
3468
  }>>;
3521
3469
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
3522
3470
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -3632,34 +3580,21 @@ export declare const SkedyulConfigSchema: z.ZodObject<{
3632
3580
  model: z.ZodString;
3633
3581
  field: z.ZodString;
3634
3582
  label: z.ZodString;
3635
- cardinality: z.ZodEnum<{
3636
- ONE_TO_ONE: "ONE_TO_ONE";
3637
- ONE_TO_MANY: "ONE_TO_MANY";
3638
- MANY_TO_ONE: "MANY_TO_ONE";
3639
- MANY_TO_MANY: "MANY_TO_MANY";
3640
- }>;
3641
- onDelete: z.ZodDefault<z.ZodEnum<{
3642
- NONE: "NONE";
3643
- CASCADE: "CASCADE";
3644
- RESTRICT: "RESTRICT";
3645
- }>>;
3646
3583
  }, z.core.$strip>;
3647
3584
  target: z.ZodObject<{
3648
3585
  model: z.ZodString;
3649
3586
  field: z.ZodString;
3650
3587
  label: z.ZodString;
3651
- cardinality: z.ZodEnum<{
3652
- ONE_TO_ONE: "ONE_TO_ONE";
3653
- ONE_TO_MANY: "ONE_TO_MANY";
3654
- MANY_TO_ONE: "MANY_TO_ONE";
3655
- MANY_TO_MANY: "MANY_TO_MANY";
3656
- }>;
3657
- onDelete: z.ZodDefault<z.ZodEnum<{
3658
- NONE: "NONE";
3659
- CASCADE: "CASCADE";
3660
- RESTRICT: "RESTRICT";
3661
- }>>;
3662
3588
  }, z.core.$strip>;
3589
+ cardinality: z.ZodEnum<{
3590
+ ONE_TO_ONE: "ONE_TO_ONE";
3591
+ ONE_TO_MANY: "ONE_TO_MANY";
3592
+ }>;
3593
+ onDelete: z.ZodDefault<z.ZodEnum<{
3594
+ NONE: "NONE";
3595
+ CASCADE: "CASCADE";
3596
+ RESTRICT: "RESTRICT";
3597
+ }>>;
3663
3598
  }, z.core.$strip>>>;
3664
3599
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
3665
3600
  handle: z.ZodString;
@@ -3794,12 +3729,12 @@ export declare const SkedyulConfigSchema: z.ZodObject<{
3794
3729
  helpText: z.ZodOptional<z.ZodString>;
3795
3730
  type: z.ZodOptional<z.ZodEnum<{
3796
3731
  number: "number";
3732
+ hidden: "hidden";
3797
3733
  text: "text";
3798
3734
  email: "email";
3799
3735
  password: "password";
3800
3736
  tel: "tel";
3801
3737
  url: "url";
3802
- hidden: "hidden";
3803
3738
  }>>;
3804
3739
  required: z.ZodOptional<z.ZodBoolean>;
3805
3740
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -3927,17 +3862,17 @@ export declare const SkedyulConfigSchema: z.ZodObject<{
3927
3862
  label: z.ZodString;
3928
3863
  variant: z.ZodOptional<z.ZodEnum<{
3929
3864
  default: "default";
3865
+ link: "link";
3866
+ secondary: "secondary";
3930
3867
  destructive: "destructive";
3931
3868
  outline: "outline";
3932
- secondary: "secondary";
3933
3869
  ghost: "ghost";
3934
- link: "link";
3935
3870
  }>>;
3936
3871
  size: z.ZodOptional<z.ZodEnum<{
3937
3872
  default: "default";
3873
+ icon: "icon";
3938
3874
  sm: "sm";
3939
3875
  lg: "lg";
3940
- icon: "icon";
3941
3876
  }>>;
3942
3877
  isLoading: z.ZodOptional<z.ZodBoolean>;
3943
3878
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -3991,9 +3926,9 @@ export declare const SkedyulConfigSchema: z.ZodObject<{
3991
3926
  label: z.ZodOptional<z.ZodString>;
3992
3927
  variant: z.ZodOptional<z.ZodEnum<{
3993
3928
  default: "default";
3929
+ link: "link";
3994
3930
  outline: "outline";
3995
3931
  ghost: "ghost";
3996
- link: "link";
3997
3932
  }>>;
3998
3933
  size: z.ZodOptional<z.ZodEnum<{
3999
3934
  sm: "sm";
@@ -4076,9 +4011,9 @@ export declare const SkedyulConfigSchema: z.ZodObject<{
4076
4011
  handler: z.ZodString;
4077
4012
  icon: z.ZodOptional<z.ZodString>;
4078
4013
  variant: z.ZodOptional<z.ZodEnum<{
4079
- destructive: "destructive";
4080
- secondary: "secondary";
4081
4014
  primary: "primary";
4015
+ secondary: "secondary";
4016
+ destructive: "destructive";
4082
4017
  }>>;
4083
4018
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
4084
4019
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -4090,9 +4025,9 @@ export declare const SkedyulConfigSchema: z.ZodObject<{
4090
4025
  handler: z.ZodString;
4091
4026
  icon: z.ZodOptional<z.ZodString>;
4092
4027
  variant: z.ZodOptional<z.ZodEnum<{
4093
- destructive: "destructive";
4094
- secondary: "secondary";
4095
4028
  primary: "primary";
4029
+ secondary: "secondary";
4030
+ destructive: "destructive";
4096
4031
  }>>;
4097
4032
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
4098
4033
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -4103,9 +4038,9 @@ export declare const SkedyulConfigSchema: z.ZodObject<{
4103
4038
  handler: z.ZodString;
4104
4039
  icon: z.ZodOptional<z.ZodString>;
4105
4040
  variant: z.ZodOptional<z.ZodEnum<{
4106
- destructive: "destructive";
4107
- secondary: "secondary";
4108
4041
  primary: "primary";
4042
+ secondary: "secondary";
4043
+ destructive: "destructive";
4109
4044
  }>>;
4110
4045
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
4111
4046
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
@@ -4116,20 +4051,20 @@ export declare const SkedyulConfigSchema: z.ZodObject<{
4116
4051
  handler: z.ZodString;
4117
4052
  icon: z.ZodOptional<z.ZodString>;
4118
4053
  variant: z.ZodOptional<z.ZodEnum<{
4119
- destructive: "destructive";
4120
- secondary: "secondary";
4121
4054
  primary: "primary";
4055
+ secondary: "secondary";
4056
+ destructive: "destructive";
4122
4057
  }>>;
4123
4058
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
4124
4059
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
4125
4060
  }, z.core.$strip>>>;
4126
4061
  }, z.core.$strip>, z.ZodObject<{
4127
4062
  type: z.ZodEnum<{
4128
- link: "link";
4129
4063
  form: "form";
4130
4064
  spreadsheet: "spreadsheet";
4131
4065
  kanban: "kanban";
4132
4066
  calendar: "calendar";
4067
+ link: "link";
4133
4068
  }>;
4134
4069
  title: z.ZodOptional<z.ZodString>;
4135
4070
  fields: z.ZodOptional<z.ZodArray<z.ZodType<PageFieldDefinition, unknown, z.core.$ZodTypeInternals<PageFieldDefinition, unknown>>>>;
@@ -4152,9 +4087,9 @@ export declare const SkedyulConfigSchema: z.ZodObject<{
4152
4087
  handler: z.ZodString;
4153
4088
  icon: z.ZodOptional<z.ZodString>;
4154
4089
  variant: z.ZodOptional<z.ZodEnum<{
4155
- destructive: "destructive";
4156
- secondary: "secondary";
4157
4090
  primary: "primary";
4091
+ secondary: "secondary";
4092
+ destructive: "destructive";
4158
4093
  }>>;
4159
4094
  isDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
4160
4095
  isHidden: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;