busa-sdk 0.9.13 → 0.9.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2210 -73
- package/dist/index.js +213 -29
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -231,6 +231,15 @@ declare const BUILTIN_NODE_TYPES: readonly [{
|
|
|
231
231
|
readonly label: "Update doc";
|
|
232
232
|
readonly tone: "border-blue-200 bg-blue-50 text-blue-800";
|
|
233
233
|
}];
|
|
234
|
+
}, {
|
|
235
|
+
readonly type: "form";
|
|
236
|
+
readonly label: "Form";
|
|
237
|
+
readonly icon: "clipboard-list";
|
|
238
|
+
readonly capabilities: {
|
|
239
|
+
readonly hasDetail: true;
|
|
240
|
+
readonly creatable: true;
|
|
241
|
+
};
|
|
242
|
+
readonly operations: readonly [];
|
|
234
243
|
}, {
|
|
235
244
|
readonly type: "whiteboard";
|
|
236
245
|
readonly label: "Whiteboard";
|
|
@@ -739,7 +748,7 @@ declare const cloudContract: {
|
|
|
739
748
|
createChangeRequest: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
740
749
|
message: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
741
750
|
submittedBy: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
742
|
-
autoMerge: z.
|
|
751
|
+
autoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
743
752
|
operations: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
744
753
|
kind: z.ZodLiteral<"create">;
|
|
745
754
|
ref: z.ZodOptional<z.ZodString>;
|
|
@@ -770,6 +779,7 @@ declare const cloudContract: {
|
|
|
770
779
|
email: "email";
|
|
771
780
|
date: "date";
|
|
772
781
|
text: "text";
|
|
782
|
+
whiteboard: "whiteboard";
|
|
773
783
|
html: "html";
|
|
774
784
|
longtext: "longtext";
|
|
775
785
|
markdown: "markdown";
|
|
@@ -791,6 +801,8 @@ declare const cloudContract: {
|
|
|
791
801
|
code: "code";
|
|
792
802
|
json: "json";
|
|
793
803
|
yaml: "yaml";
|
|
804
|
+
formula: "formula";
|
|
805
|
+
lookup: "lookup";
|
|
794
806
|
}>>;
|
|
795
807
|
required: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
796
808
|
options: z.ZodDefault<z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -822,7 +834,27 @@ declare const cloudContract: {
|
|
|
822
834
|
height: z.ZodOptional<z.ZodNumber>;
|
|
823
835
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
824
836
|
}, z.core.$strip>>;
|
|
837
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
838
|
+
expression: z.ZodString;
|
|
839
|
+
}, z.core.$strip>>;
|
|
825
840
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
841
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
842
|
+
relationFieldSlug: z.ZodString;
|
|
843
|
+
targetFieldSlug: z.ZodString;
|
|
844
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
845
|
+
values: "values";
|
|
846
|
+
count: "count";
|
|
847
|
+
sum: "sum";
|
|
848
|
+
average: "average";
|
|
849
|
+
min: "min";
|
|
850
|
+
max: "max";
|
|
851
|
+
concatenate: "concatenate";
|
|
852
|
+
}>>>;
|
|
853
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
854
|
+
all: "all";
|
|
855
|
+
first: "first";
|
|
856
|
+
}>>;
|
|
857
|
+
}, z.core.$strip>>;
|
|
826
858
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
827
859
|
number: z.ZodOptional<z.ZodObject<{
|
|
828
860
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -919,6 +951,7 @@ declare const cloudContract: {
|
|
|
919
951
|
email: "email";
|
|
920
952
|
date: "date";
|
|
921
953
|
text: "text";
|
|
954
|
+
whiteboard: "whiteboard";
|
|
922
955
|
html: "html";
|
|
923
956
|
longtext: "longtext";
|
|
924
957
|
markdown: "markdown";
|
|
@@ -940,6 +973,8 @@ declare const cloudContract: {
|
|
|
940
973
|
code: "code";
|
|
941
974
|
json: "json";
|
|
942
975
|
yaml: "yaml";
|
|
976
|
+
formula: "formula";
|
|
977
|
+
lookup: "lookup";
|
|
943
978
|
}>;
|
|
944
979
|
required: z.ZodBoolean;
|
|
945
980
|
position: z.ZodNumber;
|
|
@@ -972,7 +1007,27 @@ declare const cloudContract: {
|
|
|
972
1007
|
height: z.ZodOptional<z.ZodNumber>;
|
|
973
1008
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
974
1009
|
}, z.core.$strip>>;
|
|
1010
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
1011
|
+
expression: z.ZodString;
|
|
1012
|
+
}, z.core.$strip>>;
|
|
975
1013
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
1014
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
1015
|
+
relationFieldSlug: z.ZodString;
|
|
1016
|
+
targetFieldSlug: z.ZodString;
|
|
1017
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
1018
|
+
values: "values";
|
|
1019
|
+
count: "count";
|
|
1020
|
+
sum: "sum";
|
|
1021
|
+
average: "average";
|
|
1022
|
+
min: "min";
|
|
1023
|
+
max: "max";
|
|
1024
|
+
concatenate: "concatenate";
|
|
1025
|
+
}>>>;
|
|
1026
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
1027
|
+
all: "all";
|
|
1028
|
+
first: "first";
|
|
1029
|
+
}>>;
|
|
1030
|
+
}, z.core.$strip>>;
|
|
976
1031
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
977
1032
|
number: z.ZodOptional<z.ZodObject<{
|
|
978
1033
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1303,6 +1358,7 @@ declare const cloudContract: {
|
|
|
1303
1358
|
email: "email";
|
|
1304
1359
|
date: "date";
|
|
1305
1360
|
text: "text";
|
|
1361
|
+
whiteboard: "whiteboard";
|
|
1306
1362
|
html: "html";
|
|
1307
1363
|
longtext: "longtext";
|
|
1308
1364
|
markdown: "markdown";
|
|
@@ -1324,6 +1380,8 @@ declare const cloudContract: {
|
|
|
1324
1380
|
code: "code";
|
|
1325
1381
|
json: "json";
|
|
1326
1382
|
yaml: "yaml";
|
|
1383
|
+
formula: "formula";
|
|
1384
|
+
lookup: "lookup";
|
|
1327
1385
|
}>;
|
|
1328
1386
|
required: z.ZodBoolean;
|
|
1329
1387
|
position: z.ZodNumber;
|
|
@@ -1356,7 +1414,27 @@ declare const cloudContract: {
|
|
|
1356
1414
|
height: z.ZodOptional<z.ZodNumber>;
|
|
1357
1415
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1358
1416
|
}, z.core.$strip>>;
|
|
1417
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
1418
|
+
expression: z.ZodString;
|
|
1419
|
+
}, z.core.$strip>>;
|
|
1359
1420
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
1421
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
1422
|
+
relationFieldSlug: z.ZodString;
|
|
1423
|
+
targetFieldSlug: z.ZodString;
|
|
1424
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
1425
|
+
values: "values";
|
|
1426
|
+
count: "count";
|
|
1427
|
+
sum: "sum";
|
|
1428
|
+
average: "average";
|
|
1429
|
+
min: "min";
|
|
1430
|
+
max: "max";
|
|
1431
|
+
concatenate: "concatenate";
|
|
1432
|
+
}>>>;
|
|
1433
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
1434
|
+
all: "all";
|
|
1435
|
+
first: "first";
|
|
1436
|
+
}>>;
|
|
1437
|
+
}, z.core.$strip>>;
|
|
1360
1438
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
1361
1439
|
number: z.ZodOptional<z.ZodObject<{
|
|
1362
1440
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1691,6 +1769,66 @@ declare const cloudContract: {
|
|
|
1691
1769
|
removed: z.ZodBoolean;
|
|
1692
1770
|
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
1693
1771
|
};
|
|
1772
|
+
share: {
|
|
1773
|
+
get: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
1774
|
+
nodeId: z.ZodString;
|
|
1775
|
+
}, z.core.$strip>, z.ZodNullable<z.ZodObject<{
|
|
1776
|
+
nodeId: z.ZodString;
|
|
1777
|
+
scope: z.ZodEnum<{
|
|
1778
|
+
public: "public";
|
|
1779
|
+
none: "none";
|
|
1780
|
+
}>;
|
|
1781
|
+
capability: z.ZodEnum<{
|
|
1782
|
+
read: "read";
|
|
1783
|
+
submit: "submit";
|
|
1784
|
+
}>;
|
|
1785
|
+
hasPassword: z.ZodBoolean;
|
|
1786
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
1787
|
+
updatedAt: z.ZodString;
|
|
1788
|
+
}, z.core.$strip>>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
1789
|
+
set: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
1790
|
+
nodeId: z.ZodString;
|
|
1791
|
+
scope: z.ZodEnum<{
|
|
1792
|
+
public: "public";
|
|
1793
|
+
none: "none";
|
|
1794
|
+
}>;
|
|
1795
|
+
capability: z.ZodOptional<z.ZodEnum<{
|
|
1796
|
+
read: "read";
|
|
1797
|
+
submit: "submit";
|
|
1798
|
+
}>>;
|
|
1799
|
+
password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1800
|
+
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1801
|
+
}, z.core.$strip>, z.ZodNullable<z.ZodObject<{
|
|
1802
|
+
nodeId: z.ZodString;
|
|
1803
|
+
scope: z.ZodEnum<{
|
|
1804
|
+
public: "public";
|
|
1805
|
+
none: "none";
|
|
1806
|
+
}>;
|
|
1807
|
+
capability: z.ZodEnum<{
|
|
1808
|
+
read: "read";
|
|
1809
|
+
submit: "submit";
|
|
1810
|
+
}>;
|
|
1811
|
+
hasPassword: z.ZodBoolean;
|
|
1812
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
1813
|
+
updatedAt: z.ZodString;
|
|
1814
|
+
}, z.core.$strip>>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
1815
|
+
disable: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
1816
|
+
nodeId: z.ZodString;
|
|
1817
|
+
}, z.core.$strip>, z.ZodNullable<z.ZodObject<{
|
|
1818
|
+
nodeId: z.ZodString;
|
|
1819
|
+
scope: z.ZodEnum<{
|
|
1820
|
+
public: "public";
|
|
1821
|
+
none: "none";
|
|
1822
|
+
}>;
|
|
1823
|
+
capability: z.ZodEnum<{
|
|
1824
|
+
read: "read";
|
|
1825
|
+
submit: "submit";
|
|
1826
|
+
}>;
|
|
1827
|
+
hasPassword: z.ZodBoolean;
|
|
1828
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
1829
|
+
updatedAt: z.ZodString;
|
|
1830
|
+
}, z.core.$strip>>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
1831
|
+
};
|
|
1694
1832
|
};
|
|
1695
1833
|
auditEvents: {
|
|
1696
1834
|
list: _orpc_contract.ContractProcedure<z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
@@ -1878,6 +2016,7 @@ declare const cloudContract: {
|
|
|
1878
2016
|
email: "email";
|
|
1879
2017
|
date: "date";
|
|
1880
2018
|
text: "text";
|
|
2019
|
+
whiteboard: "whiteboard";
|
|
1881
2020
|
html: "html";
|
|
1882
2021
|
longtext: "longtext";
|
|
1883
2022
|
markdown: "markdown";
|
|
@@ -1899,6 +2038,8 @@ declare const cloudContract: {
|
|
|
1899
2038
|
code: "code";
|
|
1900
2039
|
json: "json";
|
|
1901
2040
|
yaml: "yaml";
|
|
2041
|
+
formula: "formula";
|
|
2042
|
+
lookup: "lookup";
|
|
1902
2043
|
}>;
|
|
1903
2044
|
required: z.ZodBoolean;
|
|
1904
2045
|
position: z.ZodNumber;
|
|
@@ -1931,7 +2072,27 @@ declare const cloudContract: {
|
|
|
1931
2072
|
height: z.ZodOptional<z.ZodNumber>;
|
|
1932
2073
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1933
2074
|
}, z.core.$strip>>;
|
|
2075
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
2076
|
+
expression: z.ZodString;
|
|
2077
|
+
}, z.core.$strip>>;
|
|
1934
2078
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
2079
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
2080
|
+
relationFieldSlug: z.ZodString;
|
|
2081
|
+
targetFieldSlug: z.ZodString;
|
|
2082
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2083
|
+
values: "values";
|
|
2084
|
+
count: "count";
|
|
2085
|
+
sum: "sum";
|
|
2086
|
+
average: "average";
|
|
2087
|
+
min: "min";
|
|
2088
|
+
max: "max";
|
|
2089
|
+
concatenate: "concatenate";
|
|
2090
|
+
}>>>;
|
|
2091
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
2092
|
+
all: "all";
|
|
2093
|
+
first: "first";
|
|
2094
|
+
}>>;
|
|
2095
|
+
}, z.core.$strip>>;
|
|
1935
2096
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
1936
2097
|
number: z.ZodOptional<z.ZodObject<{
|
|
1937
2098
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2260,6 +2421,7 @@ declare const cloudContract: {
|
|
|
2260
2421
|
email: "email";
|
|
2261
2422
|
date: "date";
|
|
2262
2423
|
text: "text";
|
|
2424
|
+
whiteboard: "whiteboard";
|
|
2263
2425
|
html: "html";
|
|
2264
2426
|
longtext: "longtext";
|
|
2265
2427
|
markdown: "markdown";
|
|
@@ -2281,6 +2443,8 @@ declare const cloudContract: {
|
|
|
2281
2443
|
code: "code";
|
|
2282
2444
|
json: "json";
|
|
2283
2445
|
yaml: "yaml";
|
|
2446
|
+
formula: "formula";
|
|
2447
|
+
lookup: "lookup";
|
|
2284
2448
|
}>;
|
|
2285
2449
|
required: z.ZodBoolean;
|
|
2286
2450
|
position: z.ZodNumber;
|
|
@@ -2313,7 +2477,27 @@ declare const cloudContract: {
|
|
|
2313
2477
|
height: z.ZodOptional<z.ZodNumber>;
|
|
2314
2478
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2315
2479
|
}, z.core.$strip>>;
|
|
2480
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
2481
|
+
expression: z.ZodString;
|
|
2482
|
+
}, z.core.$strip>>;
|
|
2316
2483
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
2484
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
2485
|
+
relationFieldSlug: z.ZodString;
|
|
2486
|
+
targetFieldSlug: z.ZodString;
|
|
2487
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2488
|
+
values: "values";
|
|
2489
|
+
count: "count";
|
|
2490
|
+
sum: "sum";
|
|
2491
|
+
average: "average";
|
|
2492
|
+
min: "min";
|
|
2493
|
+
max: "max";
|
|
2494
|
+
concatenate: "concatenate";
|
|
2495
|
+
}>>>;
|
|
2496
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
2497
|
+
all: "all";
|
|
2498
|
+
first: "first";
|
|
2499
|
+
}>>;
|
|
2500
|
+
}, z.core.$strip>>;
|
|
2317
2501
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
2318
2502
|
number: z.ZodOptional<z.ZodObject<{
|
|
2319
2503
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2629,6 +2813,7 @@ declare const cloudContract: {
|
|
|
2629
2813
|
email: "email";
|
|
2630
2814
|
date: "date";
|
|
2631
2815
|
text: "text";
|
|
2816
|
+
whiteboard: "whiteboard";
|
|
2632
2817
|
html: "html";
|
|
2633
2818
|
longtext: "longtext";
|
|
2634
2819
|
markdown: "markdown";
|
|
@@ -2650,6 +2835,8 @@ declare const cloudContract: {
|
|
|
2650
2835
|
code: "code";
|
|
2651
2836
|
json: "json";
|
|
2652
2837
|
yaml: "yaml";
|
|
2838
|
+
formula: "formula";
|
|
2839
|
+
lookup: "lookup";
|
|
2653
2840
|
}>;
|
|
2654
2841
|
required: z.ZodBoolean;
|
|
2655
2842
|
position: z.ZodNumber;
|
|
@@ -2682,7 +2869,27 @@ declare const cloudContract: {
|
|
|
2682
2869
|
height: z.ZodOptional<z.ZodNumber>;
|
|
2683
2870
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2684
2871
|
}, z.core.$strip>>;
|
|
2872
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
2873
|
+
expression: z.ZodString;
|
|
2874
|
+
}, z.core.$strip>>;
|
|
2685
2875
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
2876
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
2877
|
+
relationFieldSlug: z.ZodString;
|
|
2878
|
+
targetFieldSlug: z.ZodString;
|
|
2879
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2880
|
+
values: "values";
|
|
2881
|
+
count: "count";
|
|
2882
|
+
sum: "sum";
|
|
2883
|
+
average: "average";
|
|
2884
|
+
min: "min";
|
|
2885
|
+
max: "max";
|
|
2886
|
+
concatenate: "concatenate";
|
|
2887
|
+
}>>>;
|
|
2888
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
2889
|
+
all: "all";
|
|
2890
|
+
first: "first";
|
|
2891
|
+
}>>;
|
|
2892
|
+
}, z.core.$strip>>;
|
|
2686
2893
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
2687
2894
|
number: z.ZodOptional<z.ZodObject<{
|
|
2688
2895
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2844,6 +3051,7 @@ declare const cloudContract: {
|
|
|
2844
3051
|
email: "email";
|
|
2845
3052
|
date: "date";
|
|
2846
3053
|
text: "text";
|
|
3054
|
+
whiteboard: "whiteboard";
|
|
2847
3055
|
html: "html";
|
|
2848
3056
|
longtext: "longtext";
|
|
2849
3057
|
markdown: "markdown";
|
|
@@ -2865,6 +3073,8 @@ declare const cloudContract: {
|
|
|
2865
3073
|
code: "code";
|
|
2866
3074
|
json: "json";
|
|
2867
3075
|
yaml: "yaml";
|
|
3076
|
+
formula: "formula";
|
|
3077
|
+
lookup: "lookup";
|
|
2868
3078
|
}>;
|
|
2869
3079
|
required: z.ZodBoolean;
|
|
2870
3080
|
position: z.ZodNumber;
|
|
@@ -2897,7 +3107,27 @@ declare const cloudContract: {
|
|
|
2897
3107
|
height: z.ZodOptional<z.ZodNumber>;
|
|
2898
3108
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2899
3109
|
}, z.core.$strip>>;
|
|
3110
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
3111
|
+
expression: z.ZodString;
|
|
3112
|
+
}, z.core.$strip>>;
|
|
2900
3113
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
3114
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
3115
|
+
relationFieldSlug: z.ZodString;
|
|
3116
|
+
targetFieldSlug: z.ZodString;
|
|
3117
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3118
|
+
values: "values";
|
|
3119
|
+
count: "count";
|
|
3120
|
+
sum: "sum";
|
|
3121
|
+
average: "average";
|
|
3122
|
+
min: "min";
|
|
3123
|
+
max: "max";
|
|
3124
|
+
concatenate: "concatenate";
|
|
3125
|
+
}>>>;
|
|
3126
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
3127
|
+
all: "all";
|
|
3128
|
+
first: "first";
|
|
3129
|
+
}>>;
|
|
3130
|
+
}, z.core.$strip>>;
|
|
2901
3131
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
2902
3132
|
number: z.ZodOptional<z.ZodObject<{
|
|
2903
3133
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3107,6 +3337,7 @@ declare const cloudContract: {
|
|
|
3107
3337
|
email: "email";
|
|
3108
3338
|
date: "date";
|
|
3109
3339
|
text: "text";
|
|
3340
|
+
whiteboard: "whiteboard";
|
|
3110
3341
|
html: "html";
|
|
3111
3342
|
longtext: "longtext";
|
|
3112
3343
|
markdown: "markdown";
|
|
@@ -3128,6 +3359,8 @@ declare const cloudContract: {
|
|
|
3128
3359
|
code: "code";
|
|
3129
3360
|
json: "json";
|
|
3130
3361
|
yaml: "yaml";
|
|
3362
|
+
formula: "formula";
|
|
3363
|
+
lookup: "lookup";
|
|
3131
3364
|
}>;
|
|
3132
3365
|
required: z.ZodBoolean;
|
|
3133
3366
|
position: z.ZodNumber;
|
|
@@ -3160,7 +3393,27 @@ declare const cloudContract: {
|
|
|
3160
3393
|
height: z.ZodOptional<z.ZodNumber>;
|
|
3161
3394
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3162
3395
|
}, z.core.$strip>>;
|
|
3396
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
3397
|
+
expression: z.ZodString;
|
|
3398
|
+
}, z.core.$strip>>;
|
|
3163
3399
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
3400
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
3401
|
+
relationFieldSlug: z.ZodString;
|
|
3402
|
+
targetFieldSlug: z.ZodString;
|
|
3403
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3404
|
+
values: "values";
|
|
3405
|
+
count: "count";
|
|
3406
|
+
sum: "sum";
|
|
3407
|
+
average: "average";
|
|
3408
|
+
min: "min";
|
|
3409
|
+
max: "max";
|
|
3410
|
+
concatenate: "concatenate";
|
|
3411
|
+
}>>>;
|
|
3412
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
3413
|
+
all: "all";
|
|
3414
|
+
first: "first";
|
|
3415
|
+
}>>;
|
|
3416
|
+
}, z.core.$strip>>;
|
|
3164
3417
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
3165
3418
|
number: z.ZodOptional<z.ZodObject<{
|
|
3166
3419
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3509,6 +3762,7 @@ declare const cloudContract: {
|
|
|
3509
3762
|
email: "email";
|
|
3510
3763
|
date: "date";
|
|
3511
3764
|
text: "text";
|
|
3765
|
+
whiteboard: "whiteboard";
|
|
3512
3766
|
html: "html";
|
|
3513
3767
|
longtext: "longtext";
|
|
3514
3768
|
markdown: "markdown";
|
|
@@ -3530,6 +3784,8 @@ declare const cloudContract: {
|
|
|
3530
3784
|
code: "code";
|
|
3531
3785
|
json: "json";
|
|
3532
3786
|
yaml: "yaml";
|
|
3787
|
+
formula: "formula";
|
|
3788
|
+
lookup: "lookup";
|
|
3533
3789
|
}>;
|
|
3534
3790
|
required: z.ZodBoolean;
|
|
3535
3791
|
position: z.ZodNumber;
|
|
@@ -3562,7 +3818,27 @@ declare const cloudContract: {
|
|
|
3562
3818
|
height: z.ZodOptional<z.ZodNumber>;
|
|
3563
3819
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3564
3820
|
}, z.core.$strip>>;
|
|
3821
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
3822
|
+
expression: z.ZodString;
|
|
3823
|
+
}, z.core.$strip>>;
|
|
3565
3824
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
3825
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
3826
|
+
relationFieldSlug: z.ZodString;
|
|
3827
|
+
targetFieldSlug: z.ZodString;
|
|
3828
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3829
|
+
values: "values";
|
|
3830
|
+
count: "count";
|
|
3831
|
+
sum: "sum";
|
|
3832
|
+
average: "average";
|
|
3833
|
+
min: "min";
|
|
3834
|
+
max: "max";
|
|
3835
|
+
concatenate: "concatenate";
|
|
3836
|
+
}>>>;
|
|
3837
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
3838
|
+
all: "all";
|
|
3839
|
+
first: "first";
|
|
3840
|
+
}>>;
|
|
3841
|
+
}, z.core.$strip>>;
|
|
3566
3842
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
3567
3843
|
number: z.ZodOptional<z.ZodObject<{
|
|
3568
3844
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3608,6 +3884,7 @@ declare const cloudContract: {
|
|
|
3608
3884
|
email: "email";
|
|
3609
3885
|
date: "date";
|
|
3610
3886
|
text: "text";
|
|
3887
|
+
whiteboard: "whiteboard";
|
|
3611
3888
|
html: "html";
|
|
3612
3889
|
longtext: "longtext";
|
|
3613
3890
|
markdown: "markdown";
|
|
@@ -3629,6 +3906,8 @@ declare const cloudContract: {
|
|
|
3629
3906
|
code: "code";
|
|
3630
3907
|
json: "json";
|
|
3631
3908
|
yaml: "yaml";
|
|
3909
|
+
formula: "formula";
|
|
3910
|
+
lookup: "lookup";
|
|
3632
3911
|
}>;
|
|
3633
3912
|
required: z.ZodBoolean;
|
|
3634
3913
|
position: z.ZodNumber;
|
|
@@ -3661,7 +3940,27 @@ declare const cloudContract: {
|
|
|
3661
3940
|
height: z.ZodOptional<z.ZodNumber>;
|
|
3662
3941
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3663
3942
|
}, z.core.$strip>>;
|
|
3943
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
3944
|
+
expression: z.ZodString;
|
|
3945
|
+
}, z.core.$strip>>;
|
|
3664
3946
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
3947
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
3948
|
+
relationFieldSlug: z.ZodString;
|
|
3949
|
+
targetFieldSlug: z.ZodString;
|
|
3950
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3951
|
+
values: "values";
|
|
3952
|
+
count: "count";
|
|
3953
|
+
sum: "sum";
|
|
3954
|
+
average: "average";
|
|
3955
|
+
min: "min";
|
|
3956
|
+
max: "max";
|
|
3957
|
+
concatenate: "concatenate";
|
|
3958
|
+
}>>>;
|
|
3959
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
3960
|
+
all: "all";
|
|
3961
|
+
first: "first";
|
|
3962
|
+
}>>;
|
|
3963
|
+
}, z.core.$strip>>;
|
|
3665
3964
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
3666
3965
|
number: z.ZodOptional<z.ZodObject<{
|
|
3667
3966
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3709,6 +4008,7 @@ declare const cloudContract: {
|
|
|
3709
4008
|
email: "email";
|
|
3710
4009
|
date: "date";
|
|
3711
4010
|
text: "text";
|
|
4011
|
+
whiteboard: "whiteboard";
|
|
3712
4012
|
html: "html";
|
|
3713
4013
|
longtext: "longtext";
|
|
3714
4014
|
markdown: "markdown";
|
|
@@ -3730,6 +4030,8 @@ declare const cloudContract: {
|
|
|
3730
4030
|
code: "code";
|
|
3731
4031
|
json: "json";
|
|
3732
4032
|
yaml: "yaml";
|
|
4033
|
+
formula: "formula";
|
|
4034
|
+
lookup: "lookup";
|
|
3733
4035
|
}>;
|
|
3734
4036
|
required: z.ZodBoolean;
|
|
3735
4037
|
position: z.ZodNumber;
|
|
@@ -3762,7 +4064,27 @@ declare const cloudContract: {
|
|
|
3762
4064
|
height: z.ZodOptional<z.ZodNumber>;
|
|
3763
4065
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3764
4066
|
}, z.core.$strip>>;
|
|
4067
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
4068
|
+
expression: z.ZodString;
|
|
4069
|
+
}, z.core.$strip>>;
|
|
3765
4070
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
4071
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
4072
|
+
relationFieldSlug: z.ZodString;
|
|
4073
|
+
targetFieldSlug: z.ZodString;
|
|
4074
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
4075
|
+
values: "values";
|
|
4076
|
+
count: "count";
|
|
4077
|
+
sum: "sum";
|
|
4078
|
+
average: "average";
|
|
4079
|
+
min: "min";
|
|
4080
|
+
max: "max";
|
|
4081
|
+
concatenate: "concatenate";
|
|
4082
|
+
}>>>;
|
|
4083
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
4084
|
+
all: "all";
|
|
4085
|
+
first: "first";
|
|
4086
|
+
}>>;
|
|
4087
|
+
}, z.core.$strip>>;
|
|
3766
4088
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
3767
4089
|
number: z.ZodOptional<z.ZodObject<{
|
|
3768
4090
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3799,6 +4121,7 @@ declare const cloudContract: {
|
|
|
3799
4121
|
email: "email";
|
|
3800
4122
|
date: "date";
|
|
3801
4123
|
text: "text";
|
|
4124
|
+
whiteboard: "whiteboard";
|
|
3802
4125
|
html: "html";
|
|
3803
4126
|
longtext: "longtext";
|
|
3804
4127
|
markdown: "markdown";
|
|
@@ -3820,6 +4143,8 @@ declare const cloudContract: {
|
|
|
3820
4143
|
code: "code";
|
|
3821
4144
|
json: "json";
|
|
3822
4145
|
yaml: "yaml";
|
|
4146
|
+
formula: "formula";
|
|
4147
|
+
lookup: "lookup";
|
|
3823
4148
|
}>;
|
|
3824
4149
|
required: z.ZodBoolean;
|
|
3825
4150
|
position: z.ZodNumber;
|
|
@@ -3852,7 +4177,27 @@ declare const cloudContract: {
|
|
|
3852
4177
|
height: z.ZodOptional<z.ZodNumber>;
|
|
3853
4178
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3854
4179
|
}, z.core.$strip>>;
|
|
4180
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
4181
|
+
expression: z.ZodString;
|
|
4182
|
+
}, z.core.$strip>>;
|
|
3855
4183
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
4184
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
4185
|
+
relationFieldSlug: z.ZodString;
|
|
4186
|
+
targetFieldSlug: z.ZodString;
|
|
4187
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
4188
|
+
values: "values";
|
|
4189
|
+
count: "count";
|
|
4190
|
+
sum: "sum";
|
|
4191
|
+
average: "average";
|
|
4192
|
+
min: "min";
|
|
4193
|
+
max: "max";
|
|
4194
|
+
concatenate: "concatenate";
|
|
4195
|
+
}>>>;
|
|
4196
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
4197
|
+
all: "all";
|
|
4198
|
+
first: "first";
|
|
4199
|
+
}>>;
|
|
4200
|
+
}, z.core.$strip>>;
|
|
3856
4201
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
3857
4202
|
number: z.ZodOptional<z.ZodObject<{
|
|
3858
4203
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4070,6 +4415,7 @@ declare const cloudContract: {
|
|
|
4070
4415
|
email: "email";
|
|
4071
4416
|
date: "date";
|
|
4072
4417
|
text: "text";
|
|
4418
|
+
whiteboard: "whiteboard";
|
|
4073
4419
|
html: "html";
|
|
4074
4420
|
longtext: "longtext";
|
|
4075
4421
|
markdown: "markdown";
|
|
@@ -4091,6 +4437,8 @@ declare const cloudContract: {
|
|
|
4091
4437
|
code: "code";
|
|
4092
4438
|
json: "json";
|
|
4093
4439
|
yaml: "yaml";
|
|
4440
|
+
formula: "formula";
|
|
4441
|
+
lookup: "lookup";
|
|
4094
4442
|
}>;
|
|
4095
4443
|
required: z.ZodBoolean;
|
|
4096
4444
|
position: z.ZodNumber;
|
|
@@ -4123,7 +4471,27 @@ declare const cloudContract: {
|
|
|
4123
4471
|
height: z.ZodOptional<z.ZodNumber>;
|
|
4124
4472
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4125
4473
|
}, z.core.$strip>>;
|
|
4474
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
4475
|
+
expression: z.ZodString;
|
|
4476
|
+
}, z.core.$strip>>;
|
|
4126
4477
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
4478
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
4479
|
+
relationFieldSlug: z.ZodString;
|
|
4480
|
+
targetFieldSlug: z.ZodString;
|
|
4481
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
4482
|
+
values: "values";
|
|
4483
|
+
count: "count";
|
|
4484
|
+
sum: "sum";
|
|
4485
|
+
average: "average";
|
|
4486
|
+
min: "min";
|
|
4487
|
+
max: "max";
|
|
4488
|
+
concatenate: "concatenate";
|
|
4489
|
+
}>>>;
|
|
4490
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
4491
|
+
all: "all";
|
|
4492
|
+
first: "first";
|
|
4493
|
+
}>>;
|
|
4494
|
+
}, z.core.$strip>>;
|
|
4127
4495
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
4128
4496
|
number: z.ZodOptional<z.ZodObject<{
|
|
4129
4497
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4247,6 +4615,7 @@ declare const cloudContract: {
|
|
|
4247
4615
|
email: "email";
|
|
4248
4616
|
date: "date";
|
|
4249
4617
|
text: "text";
|
|
4618
|
+
whiteboard: "whiteboard";
|
|
4250
4619
|
html: "html";
|
|
4251
4620
|
longtext: "longtext";
|
|
4252
4621
|
markdown: "markdown";
|
|
@@ -4268,6 +4637,8 @@ declare const cloudContract: {
|
|
|
4268
4637
|
code: "code";
|
|
4269
4638
|
json: "json";
|
|
4270
4639
|
yaml: "yaml";
|
|
4640
|
+
formula: "formula";
|
|
4641
|
+
lookup: "lookup";
|
|
4271
4642
|
}>;
|
|
4272
4643
|
required: z.ZodBoolean;
|
|
4273
4644
|
position: z.ZodNumber;
|
|
@@ -4300,7 +4671,27 @@ declare const cloudContract: {
|
|
|
4300
4671
|
height: z.ZodOptional<z.ZodNumber>;
|
|
4301
4672
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4302
4673
|
}, z.core.$strip>>;
|
|
4674
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
4675
|
+
expression: z.ZodString;
|
|
4676
|
+
}, z.core.$strip>>;
|
|
4303
4677
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
4678
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
4679
|
+
relationFieldSlug: z.ZodString;
|
|
4680
|
+
targetFieldSlug: z.ZodString;
|
|
4681
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
4682
|
+
values: "values";
|
|
4683
|
+
count: "count";
|
|
4684
|
+
sum: "sum";
|
|
4685
|
+
average: "average";
|
|
4686
|
+
min: "min";
|
|
4687
|
+
max: "max";
|
|
4688
|
+
concatenate: "concatenate";
|
|
4689
|
+
}>>>;
|
|
4690
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
4691
|
+
all: "all";
|
|
4692
|
+
first: "first";
|
|
4693
|
+
}>>;
|
|
4694
|
+
}, z.core.$strip>>;
|
|
4304
4695
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
4305
4696
|
number: z.ZodOptional<z.ZodObject<{
|
|
4306
4697
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4392,6 +4783,7 @@ declare const cloudContract: {
|
|
|
4392
4783
|
email: "email";
|
|
4393
4784
|
date: "date";
|
|
4394
4785
|
text: "text";
|
|
4786
|
+
whiteboard: "whiteboard";
|
|
4395
4787
|
html: "html";
|
|
4396
4788
|
longtext: "longtext";
|
|
4397
4789
|
markdown: "markdown";
|
|
@@ -4413,6 +4805,8 @@ declare const cloudContract: {
|
|
|
4413
4805
|
code: "code";
|
|
4414
4806
|
json: "json";
|
|
4415
4807
|
yaml: "yaml";
|
|
4808
|
+
formula: "formula";
|
|
4809
|
+
lookup: "lookup";
|
|
4416
4810
|
}>>;
|
|
4417
4811
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
4418
4812
|
options: z.ZodDefault<z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -4444,7 +4838,27 @@ declare const cloudContract: {
|
|
|
4444
4838
|
height: z.ZodOptional<z.ZodNumber>;
|
|
4445
4839
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4446
4840
|
}, z.core.$strip>>;
|
|
4841
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
4842
|
+
expression: z.ZodString;
|
|
4843
|
+
}, z.core.$strip>>;
|
|
4447
4844
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
4845
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
4846
|
+
relationFieldSlug: z.ZodString;
|
|
4847
|
+
targetFieldSlug: z.ZodString;
|
|
4848
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
4849
|
+
values: "values";
|
|
4850
|
+
count: "count";
|
|
4851
|
+
sum: "sum";
|
|
4852
|
+
average: "average";
|
|
4853
|
+
min: "min";
|
|
4854
|
+
max: "max";
|
|
4855
|
+
concatenate: "concatenate";
|
|
4856
|
+
}>>>;
|
|
4857
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
4858
|
+
all: "all";
|
|
4859
|
+
first: "first";
|
|
4860
|
+
}>>;
|
|
4861
|
+
}, z.core.$strip>>;
|
|
4448
4862
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
4449
4863
|
number: z.ZodOptional<z.ZodObject<{
|
|
4450
4864
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4458,7 +4872,7 @@ declare const cloudContract: {
|
|
|
4458
4872
|
targetBaseSlug: z.ZodOptional<z.ZodString>;
|
|
4459
4873
|
}, z.core.$strip>>>>;
|
|
4460
4874
|
}, z.core.$strip>>>;
|
|
4461
|
-
autoMerge: z.
|
|
4875
|
+
autoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
4462
4876
|
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
4463
4877
|
id: z.ZodString;
|
|
4464
4878
|
nodeId: z.ZodString;
|
|
@@ -4490,6 +4904,7 @@ declare const cloudContract: {
|
|
|
4490
4904
|
email: "email";
|
|
4491
4905
|
date: "date";
|
|
4492
4906
|
text: "text";
|
|
4907
|
+
whiteboard: "whiteboard";
|
|
4493
4908
|
html: "html";
|
|
4494
4909
|
longtext: "longtext";
|
|
4495
4910
|
markdown: "markdown";
|
|
@@ -4511,6 +4926,8 @@ declare const cloudContract: {
|
|
|
4511
4926
|
code: "code";
|
|
4512
4927
|
json: "json";
|
|
4513
4928
|
yaml: "yaml";
|
|
4929
|
+
formula: "formula";
|
|
4930
|
+
lookup: "lookup";
|
|
4514
4931
|
}>;
|
|
4515
4932
|
required: z.ZodBoolean;
|
|
4516
4933
|
position: z.ZodNumber;
|
|
@@ -4543,7 +4960,27 @@ declare const cloudContract: {
|
|
|
4543
4960
|
height: z.ZodOptional<z.ZodNumber>;
|
|
4544
4961
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4545
4962
|
}, z.core.$strip>>;
|
|
4963
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
4964
|
+
expression: z.ZodString;
|
|
4965
|
+
}, z.core.$strip>>;
|
|
4546
4966
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
4967
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
4968
|
+
relationFieldSlug: z.ZodString;
|
|
4969
|
+
targetFieldSlug: z.ZodString;
|
|
4970
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
4971
|
+
values: "values";
|
|
4972
|
+
count: "count";
|
|
4973
|
+
sum: "sum";
|
|
4974
|
+
average: "average";
|
|
4975
|
+
min: "min";
|
|
4976
|
+
max: "max";
|
|
4977
|
+
concatenate: "concatenate";
|
|
4978
|
+
}>>>;
|
|
4979
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
4980
|
+
all: "all";
|
|
4981
|
+
first: "first";
|
|
4982
|
+
}>>;
|
|
4983
|
+
}, z.core.$strip>>;
|
|
4547
4984
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
4548
4985
|
number: z.ZodOptional<z.ZodObject<{
|
|
4549
4986
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4622,6 +5059,7 @@ declare const cloudContract: {
|
|
|
4622
5059
|
email: "email";
|
|
4623
5060
|
date: "date";
|
|
4624
5061
|
text: "text";
|
|
5062
|
+
whiteboard: "whiteboard";
|
|
4625
5063
|
html: "html";
|
|
4626
5064
|
longtext: "longtext";
|
|
4627
5065
|
markdown: "markdown";
|
|
@@ -4643,6 +5081,8 @@ declare const cloudContract: {
|
|
|
4643
5081
|
code: "code";
|
|
4644
5082
|
json: "json";
|
|
4645
5083
|
yaml: "yaml";
|
|
5084
|
+
formula: "formula";
|
|
5085
|
+
lookup: "lookup";
|
|
4646
5086
|
}>;
|
|
4647
5087
|
required: z.ZodBoolean;
|
|
4648
5088
|
position: z.ZodNumber;
|
|
@@ -4675,7 +5115,27 @@ declare const cloudContract: {
|
|
|
4675
5115
|
height: z.ZodOptional<z.ZodNumber>;
|
|
4676
5116
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4677
5117
|
}, z.core.$strip>>;
|
|
5118
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
5119
|
+
expression: z.ZodString;
|
|
5120
|
+
}, z.core.$strip>>;
|
|
4678
5121
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
5122
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
5123
|
+
relationFieldSlug: z.ZodString;
|
|
5124
|
+
targetFieldSlug: z.ZodString;
|
|
5125
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
5126
|
+
values: "values";
|
|
5127
|
+
count: "count";
|
|
5128
|
+
sum: "sum";
|
|
5129
|
+
average: "average";
|
|
5130
|
+
min: "min";
|
|
5131
|
+
max: "max";
|
|
5132
|
+
concatenate: "concatenate";
|
|
5133
|
+
}>>>;
|
|
5134
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
5135
|
+
all: "all";
|
|
5136
|
+
first: "first";
|
|
5137
|
+
}>>;
|
|
5138
|
+
}, z.core.$strip>>;
|
|
4679
5139
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
4680
5140
|
number: z.ZodOptional<z.ZodObject<{
|
|
4681
5141
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4942,7 +5402,7 @@ declare const cloudContract: {
|
|
|
4942
5402
|
message: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4943
5403
|
submittedBy: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4944
5404
|
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
4945
|
-
autoMerge: z.
|
|
5405
|
+
autoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
4946
5406
|
baseId: z.ZodString;
|
|
4947
5407
|
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
4948
5408
|
id: z.ZodString;
|
|
@@ -4996,6 +5456,7 @@ declare const cloudContract: {
|
|
|
4996
5456
|
email: "email";
|
|
4997
5457
|
date: "date";
|
|
4998
5458
|
text: "text";
|
|
5459
|
+
whiteboard: "whiteboard";
|
|
4999
5460
|
html: "html";
|
|
5000
5461
|
longtext: "longtext";
|
|
5001
5462
|
markdown: "markdown";
|
|
@@ -5017,6 +5478,8 @@ declare const cloudContract: {
|
|
|
5017
5478
|
code: "code";
|
|
5018
5479
|
json: "json";
|
|
5019
5480
|
yaml: "yaml";
|
|
5481
|
+
formula: "formula";
|
|
5482
|
+
lookup: "lookup";
|
|
5020
5483
|
}>;
|
|
5021
5484
|
required: z.ZodBoolean;
|
|
5022
5485
|
position: z.ZodNumber;
|
|
@@ -5049,7 +5512,27 @@ declare const cloudContract: {
|
|
|
5049
5512
|
height: z.ZodOptional<z.ZodNumber>;
|
|
5050
5513
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5051
5514
|
}, z.core.$strip>>;
|
|
5515
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
5516
|
+
expression: z.ZodString;
|
|
5517
|
+
}, z.core.$strip>>;
|
|
5052
5518
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
5519
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
5520
|
+
relationFieldSlug: z.ZodString;
|
|
5521
|
+
targetFieldSlug: z.ZodString;
|
|
5522
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
5523
|
+
values: "values";
|
|
5524
|
+
count: "count";
|
|
5525
|
+
sum: "sum";
|
|
5526
|
+
average: "average";
|
|
5527
|
+
min: "min";
|
|
5528
|
+
max: "max";
|
|
5529
|
+
concatenate: "concatenate";
|
|
5530
|
+
}>>>;
|
|
5531
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
5532
|
+
all: "all";
|
|
5533
|
+
first: "first";
|
|
5534
|
+
}>>;
|
|
5535
|
+
}, z.core.$strip>>;
|
|
5053
5536
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
5054
5537
|
number: z.ZodOptional<z.ZodObject<{
|
|
5055
5538
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -5180,6 +5663,7 @@ declare const cloudContract: {
|
|
|
5180
5663
|
email: "email";
|
|
5181
5664
|
date: "date";
|
|
5182
5665
|
text: "text";
|
|
5666
|
+
whiteboard: "whiteboard";
|
|
5183
5667
|
html: "html";
|
|
5184
5668
|
longtext: "longtext";
|
|
5185
5669
|
markdown: "markdown";
|
|
@@ -5201,6 +5685,8 @@ declare const cloudContract: {
|
|
|
5201
5685
|
code: "code";
|
|
5202
5686
|
json: "json";
|
|
5203
5687
|
yaml: "yaml";
|
|
5688
|
+
formula: "formula";
|
|
5689
|
+
lookup: "lookup";
|
|
5204
5690
|
}>;
|
|
5205
5691
|
required: z.ZodBoolean;
|
|
5206
5692
|
position: z.ZodNumber;
|
|
@@ -5233,7 +5719,27 @@ declare const cloudContract: {
|
|
|
5233
5719
|
height: z.ZodOptional<z.ZodNumber>;
|
|
5234
5720
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5235
5721
|
}, z.core.$strip>>;
|
|
5722
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
5723
|
+
expression: z.ZodString;
|
|
5724
|
+
}, z.core.$strip>>;
|
|
5236
5725
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
5726
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
5727
|
+
relationFieldSlug: z.ZodString;
|
|
5728
|
+
targetFieldSlug: z.ZodString;
|
|
5729
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
5730
|
+
values: "values";
|
|
5731
|
+
count: "count";
|
|
5732
|
+
sum: "sum";
|
|
5733
|
+
average: "average";
|
|
5734
|
+
min: "min";
|
|
5735
|
+
max: "max";
|
|
5736
|
+
concatenate: "concatenate";
|
|
5737
|
+
}>>>;
|
|
5738
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
5739
|
+
all: "all";
|
|
5740
|
+
first: "first";
|
|
5741
|
+
}>>;
|
|
5742
|
+
}, z.core.$strip>>;
|
|
5237
5743
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
5238
5744
|
number: z.ZodOptional<z.ZodObject<{
|
|
5239
5745
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -5565,6 +6071,7 @@ declare const cloudContract: {
|
|
|
5565
6071
|
email: "email";
|
|
5566
6072
|
date: "date";
|
|
5567
6073
|
text: "text";
|
|
6074
|
+
whiteboard: "whiteboard";
|
|
5568
6075
|
html: "html";
|
|
5569
6076
|
longtext: "longtext";
|
|
5570
6077
|
markdown: "markdown";
|
|
@@ -5586,6 +6093,8 @@ declare const cloudContract: {
|
|
|
5586
6093
|
code: "code";
|
|
5587
6094
|
json: "json";
|
|
5588
6095
|
yaml: "yaml";
|
|
6096
|
+
formula: "formula";
|
|
6097
|
+
lookup: "lookup";
|
|
5589
6098
|
}>;
|
|
5590
6099
|
required: z.ZodBoolean;
|
|
5591
6100
|
position: z.ZodNumber;
|
|
@@ -5618,7 +6127,27 @@ declare const cloudContract: {
|
|
|
5618
6127
|
height: z.ZodOptional<z.ZodNumber>;
|
|
5619
6128
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5620
6129
|
}, z.core.$strip>>;
|
|
6130
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
6131
|
+
expression: z.ZodString;
|
|
6132
|
+
}, z.core.$strip>>;
|
|
5621
6133
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
6134
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
6135
|
+
relationFieldSlug: z.ZodString;
|
|
6136
|
+
targetFieldSlug: z.ZodString;
|
|
6137
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
6138
|
+
values: "values";
|
|
6139
|
+
count: "count";
|
|
6140
|
+
sum: "sum";
|
|
6141
|
+
average: "average";
|
|
6142
|
+
min: "min";
|
|
6143
|
+
max: "max";
|
|
6144
|
+
concatenate: "concatenate";
|
|
6145
|
+
}>>>;
|
|
6146
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
6147
|
+
all: "all";
|
|
6148
|
+
first: "first";
|
|
6149
|
+
}>>;
|
|
6150
|
+
}, z.core.$strip>>;
|
|
5622
6151
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
5623
6152
|
number: z.ZodOptional<z.ZodObject<{
|
|
5624
6153
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -5897,6 +6426,7 @@ declare const cloudContract: {
|
|
|
5897
6426
|
email: "email";
|
|
5898
6427
|
date: "date";
|
|
5899
6428
|
text: "text";
|
|
6429
|
+
whiteboard: "whiteboard";
|
|
5900
6430
|
html: "html";
|
|
5901
6431
|
longtext: "longtext";
|
|
5902
6432
|
markdown: "markdown";
|
|
@@ -5918,6 +6448,8 @@ declare const cloudContract: {
|
|
|
5918
6448
|
code: "code";
|
|
5919
6449
|
json: "json";
|
|
5920
6450
|
yaml: "yaml";
|
|
6451
|
+
formula: "formula";
|
|
6452
|
+
lookup: "lookup";
|
|
5921
6453
|
}>>;
|
|
5922
6454
|
required: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5923
6455
|
options: z.ZodDefault<z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -5949,7 +6481,27 @@ declare const cloudContract: {
|
|
|
5949
6481
|
height: z.ZodOptional<z.ZodNumber>;
|
|
5950
6482
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5951
6483
|
}, z.core.$strip>>;
|
|
6484
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
6485
|
+
expression: z.ZodString;
|
|
6486
|
+
}, z.core.$strip>>;
|
|
5952
6487
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
6488
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
6489
|
+
relationFieldSlug: z.ZodString;
|
|
6490
|
+
targetFieldSlug: z.ZodString;
|
|
6491
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
6492
|
+
values: "values";
|
|
6493
|
+
count: "count";
|
|
6494
|
+
sum: "sum";
|
|
6495
|
+
average: "average";
|
|
6496
|
+
min: "min";
|
|
6497
|
+
max: "max";
|
|
6498
|
+
concatenate: "concatenate";
|
|
6499
|
+
}>>>;
|
|
6500
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
6501
|
+
all: "all";
|
|
6502
|
+
first: "first";
|
|
6503
|
+
}>>;
|
|
6504
|
+
}, z.core.$strip>>;
|
|
5953
6505
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
5954
6506
|
number: z.ZodOptional<z.ZodObject<{
|
|
5955
6507
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -5994,6 +6546,7 @@ declare const cloudContract: {
|
|
|
5994
6546
|
email: "email";
|
|
5995
6547
|
date: "date";
|
|
5996
6548
|
text: "text";
|
|
6549
|
+
whiteboard: "whiteboard";
|
|
5997
6550
|
html: "html";
|
|
5998
6551
|
longtext: "longtext";
|
|
5999
6552
|
markdown: "markdown";
|
|
@@ -6015,6 +6568,8 @@ declare const cloudContract: {
|
|
|
6015
6568
|
code: "code";
|
|
6016
6569
|
json: "json";
|
|
6017
6570
|
yaml: "yaml";
|
|
6571
|
+
formula: "formula";
|
|
6572
|
+
lookup: "lookup";
|
|
6018
6573
|
}>;
|
|
6019
6574
|
required: z.ZodBoolean;
|
|
6020
6575
|
position: z.ZodNumber;
|
|
@@ -6047,7 +6602,27 @@ declare const cloudContract: {
|
|
|
6047
6602
|
height: z.ZodOptional<z.ZodNumber>;
|
|
6048
6603
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6049
6604
|
}, z.core.$strip>>;
|
|
6605
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
6606
|
+
expression: z.ZodString;
|
|
6607
|
+
}, z.core.$strip>>;
|
|
6050
6608
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
6609
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
6610
|
+
relationFieldSlug: z.ZodString;
|
|
6611
|
+
targetFieldSlug: z.ZodString;
|
|
6612
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
6613
|
+
values: "values";
|
|
6614
|
+
count: "count";
|
|
6615
|
+
sum: "sum";
|
|
6616
|
+
average: "average";
|
|
6617
|
+
min: "min";
|
|
6618
|
+
max: "max";
|
|
6619
|
+
concatenate: "concatenate";
|
|
6620
|
+
}>>>;
|
|
6621
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
6622
|
+
all: "all";
|
|
6623
|
+
first: "first";
|
|
6624
|
+
}>>;
|
|
6625
|
+
}, z.core.$strip>>;
|
|
6051
6626
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
6052
6627
|
number: z.ZodOptional<z.ZodObject<{
|
|
6053
6628
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6080,6 +6655,7 @@ declare const cloudContract: {
|
|
|
6080
6655
|
email: "email";
|
|
6081
6656
|
date: "date";
|
|
6082
6657
|
text: "text";
|
|
6658
|
+
whiteboard: "whiteboard";
|
|
6083
6659
|
html: "html";
|
|
6084
6660
|
longtext: "longtext";
|
|
6085
6661
|
markdown: "markdown";
|
|
@@ -6101,6 +6677,8 @@ declare const cloudContract: {
|
|
|
6101
6677
|
code: "code";
|
|
6102
6678
|
json: "json";
|
|
6103
6679
|
yaml: "yaml";
|
|
6680
|
+
formula: "formula";
|
|
6681
|
+
lookup: "lookup";
|
|
6104
6682
|
}>>;
|
|
6105
6683
|
required: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
6106
6684
|
options: z.ZodDefault<z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -6132,7 +6710,27 @@ declare const cloudContract: {
|
|
|
6132
6710
|
height: z.ZodOptional<z.ZodNumber>;
|
|
6133
6711
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6134
6712
|
}, z.core.$strip>>;
|
|
6713
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
6714
|
+
expression: z.ZodString;
|
|
6715
|
+
}, z.core.$strip>>;
|
|
6135
6716
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
6717
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
6718
|
+
relationFieldSlug: z.ZodString;
|
|
6719
|
+
targetFieldSlug: z.ZodString;
|
|
6720
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
6721
|
+
values: "values";
|
|
6722
|
+
count: "count";
|
|
6723
|
+
sum: "sum";
|
|
6724
|
+
average: "average";
|
|
6725
|
+
min: "min";
|
|
6726
|
+
max: "max";
|
|
6727
|
+
concatenate: "concatenate";
|
|
6728
|
+
}>>>;
|
|
6729
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
6730
|
+
all: "all";
|
|
6731
|
+
first: "first";
|
|
6732
|
+
}>>;
|
|
6733
|
+
}, z.core.$strip>>;
|
|
6136
6734
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
6137
6735
|
number: z.ZodOptional<z.ZodObject<{
|
|
6138
6736
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6212,6 +6810,7 @@ declare const cloudContract: {
|
|
|
6212
6810
|
email: "email";
|
|
6213
6811
|
date: "date";
|
|
6214
6812
|
text: "text";
|
|
6813
|
+
whiteboard: "whiteboard";
|
|
6215
6814
|
html: "html";
|
|
6216
6815
|
longtext: "longtext";
|
|
6217
6816
|
markdown: "markdown";
|
|
@@ -6233,6 +6832,8 @@ declare const cloudContract: {
|
|
|
6233
6832
|
code: "code";
|
|
6234
6833
|
json: "json";
|
|
6235
6834
|
yaml: "yaml";
|
|
6835
|
+
formula: "formula";
|
|
6836
|
+
lookup: "lookup";
|
|
6236
6837
|
}>;
|
|
6237
6838
|
required: z.ZodBoolean;
|
|
6238
6839
|
position: z.ZodNumber;
|
|
@@ -6265,7 +6866,27 @@ declare const cloudContract: {
|
|
|
6265
6866
|
height: z.ZodOptional<z.ZodNumber>;
|
|
6266
6867
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6267
6868
|
}, z.core.$strip>>;
|
|
6869
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
6870
|
+
expression: z.ZodString;
|
|
6871
|
+
}, z.core.$strip>>;
|
|
6268
6872
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
6873
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
6874
|
+
relationFieldSlug: z.ZodString;
|
|
6875
|
+
targetFieldSlug: z.ZodString;
|
|
6876
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
6877
|
+
values: "values";
|
|
6878
|
+
count: "count";
|
|
6879
|
+
sum: "sum";
|
|
6880
|
+
average: "average";
|
|
6881
|
+
min: "min";
|
|
6882
|
+
max: "max";
|
|
6883
|
+
concatenate: "concatenate";
|
|
6884
|
+
}>>>;
|
|
6885
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
6886
|
+
all: "all";
|
|
6887
|
+
first: "first";
|
|
6888
|
+
}>>;
|
|
6889
|
+
}, z.core.$strip>>;
|
|
6269
6890
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
6270
6891
|
number: z.ZodOptional<z.ZodObject<{
|
|
6271
6892
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6648,6 +7269,7 @@ declare const cloudContract: {
|
|
|
6648
7269
|
email: "email";
|
|
6649
7270
|
date: "date";
|
|
6650
7271
|
text: "text";
|
|
7272
|
+
whiteboard: "whiteboard";
|
|
6651
7273
|
html: "html";
|
|
6652
7274
|
longtext: "longtext";
|
|
6653
7275
|
markdown: "markdown";
|
|
@@ -6669,6 +7291,8 @@ declare const cloudContract: {
|
|
|
6669
7291
|
code: "code";
|
|
6670
7292
|
json: "json";
|
|
6671
7293
|
yaml: "yaml";
|
|
7294
|
+
formula: "formula";
|
|
7295
|
+
lookup: "lookup";
|
|
6672
7296
|
}>;
|
|
6673
7297
|
required: z.ZodBoolean;
|
|
6674
7298
|
position: z.ZodNumber;
|
|
@@ -6701,7 +7325,27 @@ declare const cloudContract: {
|
|
|
6701
7325
|
height: z.ZodOptional<z.ZodNumber>;
|
|
6702
7326
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6703
7327
|
}, z.core.$strip>>;
|
|
7328
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
7329
|
+
expression: z.ZodString;
|
|
7330
|
+
}, z.core.$strip>>;
|
|
6704
7331
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
7332
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
7333
|
+
relationFieldSlug: z.ZodString;
|
|
7334
|
+
targetFieldSlug: z.ZodString;
|
|
7335
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
7336
|
+
values: "values";
|
|
7337
|
+
count: "count";
|
|
7338
|
+
sum: "sum";
|
|
7339
|
+
average: "average";
|
|
7340
|
+
min: "min";
|
|
7341
|
+
max: "max";
|
|
7342
|
+
concatenate: "concatenate";
|
|
7343
|
+
}>>>;
|
|
7344
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
7345
|
+
all: "all";
|
|
7346
|
+
first: "first";
|
|
7347
|
+
}>>;
|
|
7348
|
+
}, z.core.$strip>>;
|
|
6705
7349
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
6706
7350
|
number: z.ZodOptional<z.ZodObject<{
|
|
6707
7351
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -7031,6 +7675,7 @@ declare const cloudContract: {
|
|
|
7031
7675
|
email: "email";
|
|
7032
7676
|
date: "date";
|
|
7033
7677
|
text: "text";
|
|
7678
|
+
whiteboard: "whiteboard";
|
|
7034
7679
|
html: "html";
|
|
7035
7680
|
longtext: "longtext";
|
|
7036
7681
|
markdown: "markdown";
|
|
@@ -7052,6 +7697,8 @@ declare const cloudContract: {
|
|
|
7052
7697
|
code: "code";
|
|
7053
7698
|
json: "json";
|
|
7054
7699
|
yaml: "yaml";
|
|
7700
|
+
formula: "formula";
|
|
7701
|
+
lookup: "lookup";
|
|
7055
7702
|
}>;
|
|
7056
7703
|
required: z.ZodBoolean;
|
|
7057
7704
|
position: z.ZodNumber;
|
|
@@ -7084,7 +7731,27 @@ declare const cloudContract: {
|
|
|
7084
7731
|
height: z.ZodOptional<z.ZodNumber>;
|
|
7085
7732
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7086
7733
|
}, z.core.$strip>>;
|
|
7734
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
7735
|
+
expression: z.ZodString;
|
|
7736
|
+
}, z.core.$strip>>;
|
|
7087
7737
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
7738
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
7739
|
+
relationFieldSlug: z.ZodString;
|
|
7740
|
+
targetFieldSlug: z.ZodString;
|
|
7741
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
7742
|
+
values: "values";
|
|
7743
|
+
count: "count";
|
|
7744
|
+
sum: "sum";
|
|
7745
|
+
average: "average";
|
|
7746
|
+
min: "min";
|
|
7747
|
+
max: "max";
|
|
7748
|
+
concatenate: "concatenate";
|
|
7749
|
+
}>>>;
|
|
7750
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
7751
|
+
all: "all";
|
|
7752
|
+
first: "first";
|
|
7753
|
+
}>>;
|
|
7754
|
+
}, z.core.$strip>>;
|
|
7088
7755
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
7089
7756
|
number: z.ZodOptional<z.ZodObject<{
|
|
7090
7757
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -7389,7 +8056,27 @@ declare const cloudContract: {
|
|
|
7389
8056
|
height: z.ZodOptional<z.ZodNumber>;
|
|
7390
8057
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7391
8058
|
}, z.core.$strip>>;
|
|
8059
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
8060
|
+
expression: z.ZodString;
|
|
8061
|
+
}, z.core.$strip>>;
|
|
7392
8062
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
8063
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
8064
|
+
relationFieldSlug: z.ZodString;
|
|
8065
|
+
targetFieldSlug: z.ZodString;
|
|
8066
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
8067
|
+
values: "values";
|
|
8068
|
+
count: "count";
|
|
8069
|
+
sum: "sum";
|
|
8070
|
+
average: "average";
|
|
8071
|
+
min: "min";
|
|
8072
|
+
max: "max";
|
|
8073
|
+
concatenate: "concatenate";
|
|
8074
|
+
}>>>;
|
|
8075
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
8076
|
+
all: "all";
|
|
8077
|
+
first: "first";
|
|
8078
|
+
}>>;
|
|
8079
|
+
}, z.core.$strip>>;
|
|
7393
8080
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
7394
8081
|
number: z.ZodOptional<z.ZodObject<{
|
|
7395
8082
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -7470,6 +8157,7 @@ declare const cloudContract: {
|
|
|
7470
8157
|
email: "email";
|
|
7471
8158
|
date: "date";
|
|
7472
8159
|
text: "text";
|
|
8160
|
+
whiteboard: "whiteboard";
|
|
7473
8161
|
html: "html";
|
|
7474
8162
|
longtext: "longtext";
|
|
7475
8163
|
markdown: "markdown";
|
|
@@ -7491,6 +8179,8 @@ declare const cloudContract: {
|
|
|
7491
8179
|
code: "code";
|
|
7492
8180
|
json: "json";
|
|
7493
8181
|
yaml: "yaml";
|
|
8182
|
+
formula: "formula";
|
|
8183
|
+
lookup: "lookup";
|
|
7494
8184
|
}>;
|
|
7495
8185
|
required: z.ZodBoolean;
|
|
7496
8186
|
position: z.ZodNumber;
|
|
@@ -7523,7 +8213,27 @@ declare const cloudContract: {
|
|
|
7523
8213
|
height: z.ZodOptional<z.ZodNumber>;
|
|
7524
8214
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7525
8215
|
}, z.core.$strip>>;
|
|
8216
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
8217
|
+
expression: z.ZodString;
|
|
8218
|
+
}, z.core.$strip>>;
|
|
7526
8219
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
8220
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
8221
|
+
relationFieldSlug: z.ZodString;
|
|
8222
|
+
targetFieldSlug: z.ZodString;
|
|
8223
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
8224
|
+
values: "values";
|
|
8225
|
+
count: "count";
|
|
8226
|
+
sum: "sum";
|
|
8227
|
+
average: "average";
|
|
8228
|
+
min: "min";
|
|
8229
|
+
max: "max";
|
|
8230
|
+
concatenate: "concatenate";
|
|
8231
|
+
}>>>;
|
|
8232
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
8233
|
+
all: "all";
|
|
8234
|
+
first: "first";
|
|
8235
|
+
}>>;
|
|
8236
|
+
}, z.core.$strip>>;
|
|
7527
8237
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
7528
8238
|
number: z.ZodOptional<z.ZodObject<{
|
|
7529
8239
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -7791,6 +8501,7 @@ declare const cloudContract: {
|
|
|
7791
8501
|
email: "email";
|
|
7792
8502
|
date: "date";
|
|
7793
8503
|
text: "text";
|
|
8504
|
+
whiteboard: "whiteboard";
|
|
7794
8505
|
html: "html";
|
|
7795
8506
|
longtext: "longtext";
|
|
7796
8507
|
markdown: "markdown";
|
|
@@ -7812,6 +8523,8 @@ declare const cloudContract: {
|
|
|
7812
8523
|
code: "code";
|
|
7813
8524
|
json: "json";
|
|
7814
8525
|
yaml: "yaml";
|
|
8526
|
+
formula: "formula";
|
|
8527
|
+
lookup: "lookup";
|
|
7815
8528
|
}>;
|
|
7816
8529
|
baseId: z.ZodString;
|
|
7817
8530
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -7830,6 +8543,7 @@ declare const cloudContract: {
|
|
|
7830
8543
|
email: "email";
|
|
7831
8544
|
date: "date";
|
|
7832
8545
|
text: "text";
|
|
8546
|
+
whiteboard: "whiteboard";
|
|
7833
8547
|
html: "html";
|
|
7834
8548
|
longtext: "longtext";
|
|
7835
8549
|
markdown: "markdown";
|
|
@@ -7851,6 +8565,8 @@ declare const cloudContract: {
|
|
|
7851
8565
|
code: "code";
|
|
7852
8566
|
json: "json";
|
|
7853
8567
|
yaml: "yaml";
|
|
8568
|
+
formula: "formula";
|
|
8569
|
+
lookup: "lookup";
|
|
7854
8570
|
}>;
|
|
7855
8571
|
selectChoiceMode: z.ZodDefault<z.ZodEnum<{
|
|
7856
8572
|
auto_create: "auto_create";
|
|
@@ -7923,6 +8639,7 @@ declare const cloudContract: {
|
|
|
7923
8639
|
email: "email";
|
|
7924
8640
|
date: "date";
|
|
7925
8641
|
text: "text";
|
|
8642
|
+
whiteboard: "whiteboard";
|
|
7926
8643
|
html: "html";
|
|
7927
8644
|
longtext: "longtext";
|
|
7928
8645
|
markdown: "markdown";
|
|
@@ -7944,6 +8661,8 @@ declare const cloudContract: {
|
|
|
7944
8661
|
code: "code";
|
|
7945
8662
|
json: "json";
|
|
7946
8663
|
yaml: "yaml";
|
|
8664
|
+
formula: "formula";
|
|
8665
|
+
lookup: "lookup";
|
|
7947
8666
|
}>;
|
|
7948
8667
|
required: z.ZodBoolean;
|
|
7949
8668
|
position: z.ZodNumber;
|
|
@@ -7976,7 +8695,27 @@ declare const cloudContract: {
|
|
|
7976
8695
|
height: z.ZodOptional<z.ZodNumber>;
|
|
7977
8696
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7978
8697
|
}, z.core.$strip>>;
|
|
8698
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
8699
|
+
expression: z.ZodString;
|
|
8700
|
+
}, z.core.$strip>>;
|
|
7979
8701
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
8702
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
8703
|
+
relationFieldSlug: z.ZodString;
|
|
8704
|
+
targetFieldSlug: z.ZodString;
|
|
8705
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
8706
|
+
values: "values";
|
|
8707
|
+
count: "count";
|
|
8708
|
+
sum: "sum";
|
|
8709
|
+
average: "average";
|
|
8710
|
+
min: "min";
|
|
8711
|
+
max: "max";
|
|
8712
|
+
concatenate: "concatenate";
|
|
8713
|
+
}>>>;
|
|
8714
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
8715
|
+
all: "all";
|
|
8716
|
+
first: "first";
|
|
8717
|
+
}>>;
|
|
8718
|
+
}, z.core.$strip>>;
|
|
7980
8719
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
7981
8720
|
number: z.ZodOptional<z.ZodObject<{
|
|
7982
8721
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -8306,6 +9045,7 @@ declare const cloudContract: {
|
|
|
8306
9045
|
email: "email";
|
|
8307
9046
|
date: "date";
|
|
8308
9047
|
text: "text";
|
|
9048
|
+
whiteboard: "whiteboard";
|
|
8309
9049
|
html: "html";
|
|
8310
9050
|
longtext: "longtext";
|
|
8311
9051
|
markdown: "markdown";
|
|
@@ -8327,6 +9067,8 @@ declare const cloudContract: {
|
|
|
8327
9067
|
code: "code";
|
|
8328
9068
|
json: "json";
|
|
8329
9069
|
yaml: "yaml";
|
|
9070
|
+
formula: "formula";
|
|
9071
|
+
lookup: "lookup";
|
|
8330
9072
|
}>;
|
|
8331
9073
|
required: z.ZodBoolean;
|
|
8332
9074
|
position: z.ZodNumber;
|
|
@@ -8359,7 +9101,27 @@ declare const cloudContract: {
|
|
|
8359
9101
|
height: z.ZodOptional<z.ZodNumber>;
|
|
8360
9102
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8361
9103
|
}, z.core.$strip>>;
|
|
9104
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
9105
|
+
expression: z.ZodString;
|
|
9106
|
+
}, z.core.$strip>>;
|
|
8362
9107
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
9108
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
9109
|
+
relationFieldSlug: z.ZodString;
|
|
9110
|
+
targetFieldSlug: z.ZodString;
|
|
9111
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
9112
|
+
values: "values";
|
|
9113
|
+
count: "count";
|
|
9114
|
+
sum: "sum";
|
|
9115
|
+
average: "average";
|
|
9116
|
+
min: "min";
|
|
9117
|
+
max: "max";
|
|
9118
|
+
concatenate: "concatenate";
|
|
9119
|
+
}>>>;
|
|
9120
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
9121
|
+
all: "all";
|
|
9122
|
+
first: "first";
|
|
9123
|
+
}>>;
|
|
9124
|
+
}, z.core.$strip>>;
|
|
8363
9125
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
8364
9126
|
number: z.ZodOptional<z.ZodObject<{
|
|
8365
9127
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -8688,6 +9450,7 @@ declare const cloudContract: {
|
|
|
8688
9450
|
email: "email";
|
|
8689
9451
|
date: "date";
|
|
8690
9452
|
text: "text";
|
|
9453
|
+
whiteboard: "whiteboard";
|
|
8691
9454
|
html: "html";
|
|
8692
9455
|
longtext: "longtext";
|
|
8693
9456
|
markdown: "markdown";
|
|
@@ -8709,6 +9472,8 @@ declare const cloudContract: {
|
|
|
8709
9472
|
code: "code";
|
|
8710
9473
|
json: "json";
|
|
8711
9474
|
yaml: "yaml";
|
|
9475
|
+
formula: "formula";
|
|
9476
|
+
lookup: "lookup";
|
|
8712
9477
|
}>;
|
|
8713
9478
|
required: z.ZodBoolean;
|
|
8714
9479
|
position: z.ZodNumber;
|
|
@@ -8741,7 +9506,27 @@ declare const cloudContract: {
|
|
|
8741
9506
|
height: z.ZodOptional<z.ZodNumber>;
|
|
8742
9507
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8743
9508
|
}, z.core.$strip>>;
|
|
9509
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
9510
|
+
expression: z.ZodString;
|
|
9511
|
+
}, z.core.$strip>>;
|
|
8744
9512
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
9513
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
9514
|
+
relationFieldSlug: z.ZodString;
|
|
9515
|
+
targetFieldSlug: z.ZodString;
|
|
9516
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
9517
|
+
values: "values";
|
|
9518
|
+
count: "count";
|
|
9519
|
+
sum: "sum";
|
|
9520
|
+
average: "average";
|
|
9521
|
+
min: "min";
|
|
9522
|
+
max: "max";
|
|
9523
|
+
concatenate: "concatenate";
|
|
9524
|
+
}>>>;
|
|
9525
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
9526
|
+
all: "all";
|
|
9527
|
+
first: "first";
|
|
9528
|
+
}>>;
|
|
9529
|
+
}, z.core.$strip>>;
|
|
8745
9530
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
8746
9531
|
number: z.ZodOptional<z.ZodObject<{
|
|
8747
9532
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -9070,6 +9855,7 @@ declare const cloudContract: {
|
|
|
9070
9855
|
email: "email";
|
|
9071
9856
|
date: "date";
|
|
9072
9857
|
text: "text";
|
|
9858
|
+
whiteboard: "whiteboard";
|
|
9073
9859
|
html: "html";
|
|
9074
9860
|
longtext: "longtext";
|
|
9075
9861
|
markdown: "markdown";
|
|
@@ -9091,6 +9877,8 @@ declare const cloudContract: {
|
|
|
9091
9877
|
code: "code";
|
|
9092
9878
|
json: "json";
|
|
9093
9879
|
yaml: "yaml";
|
|
9880
|
+
formula: "formula";
|
|
9881
|
+
lookup: "lookup";
|
|
9094
9882
|
}>;
|
|
9095
9883
|
required: z.ZodBoolean;
|
|
9096
9884
|
position: z.ZodNumber;
|
|
@@ -9123,7 +9911,27 @@ declare const cloudContract: {
|
|
|
9123
9911
|
height: z.ZodOptional<z.ZodNumber>;
|
|
9124
9912
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9125
9913
|
}, z.core.$strip>>;
|
|
9914
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
9915
|
+
expression: z.ZodString;
|
|
9916
|
+
}, z.core.$strip>>;
|
|
9126
9917
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
9918
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
9919
|
+
relationFieldSlug: z.ZodString;
|
|
9920
|
+
targetFieldSlug: z.ZodString;
|
|
9921
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
9922
|
+
values: "values";
|
|
9923
|
+
count: "count";
|
|
9924
|
+
sum: "sum";
|
|
9925
|
+
average: "average";
|
|
9926
|
+
min: "min";
|
|
9927
|
+
max: "max";
|
|
9928
|
+
concatenate: "concatenate";
|
|
9929
|
+
}>>>;
|
|
9930
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
9931
|
+
all: "all";
|
|
9932
|
+
first: "first";
|
|
9933
|
+
}>>;
|
|
9934
|
+
}, z.core.$strip>>;
|
|
9127
9935
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
9128
9936
|
number: z.ZodOptional<z.ZodObject<{
|
|
9129
9937
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -9453,6 +10261,7 @@ declare const cloudContract: {
|
|
|
9453
10261
|
email: "email";
|
|
9454
10262
|
date: "date";
|
|
9455
10263
|
text: "text";
|
|
10264
|
+
whiteboard: "whiteboard";
|
|
9456
10265
|
html: "html";
|
|
9457
10266
|
longtext: "longtext";
|
|
9458
10267
|
markdown: "markdown";
|
|
@@ -9474,6 +10283,8 @@ declare const cloudContract: {
|
|
|
9474
10283
|
code: "code";
|
|
9475
10284
|
json: "json";
|
|
9476
10285
|
yaml: "yaml";
|
|
10286
|
+
formula: "formula";
|
|
10287
|
+
lookup: "lookup";
|
|
9477
10288
|
}>;
|
|
9478
10289
|
required: z.ZodBoolean;
|
|
9479
10290
|
position: z.ZodNumber;
|
|
@@ -9506,7 +10317,27 @@ declare const cloudContract: {
|
|
|
9506
10317
|
height: z.ZodOptional<z.ZodNumber>;
|
|
9507
10318
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9508
10319
|
}, z.core.$strip>>;
|
|
10320
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
10321
|
+
expression: z.ZodString;
|
|
10322
|
+
}, z.core.$strip>>;
|
|
9509
10323
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
10324
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
10325
|
+
relationFieldSlug: z.ZodString;
|
|
10326
|
+
targetFieldSlug: z.ZodString;
|
|
10327
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
10328
|
+
values: "values";
|
|
10329
|
+
count: "count";
|
|
10330
|
+
sum: "sum";
|
|
10331
|
+
average: "average";
|
|
10332
|
+
min: "min";
|
|
10333
|
+
max: "max";
|
|
10334
|
+
concatenate: "concatenate";
|
|
10335
|
+
}>>>;
|
|
10336
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
10337
|
+
all: "all";
|
|
10338
|
+
first: "first";
|
|
10339
|
+
}>>;
|
|
10340
|
+
}, z.core.$strip>>;
|
|
9510
10341
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
9511
10342
|
number: z.ZodOptional<z.ZodObject<{
|
|
9512
10343
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -9810,7 +10641,7 @@ declare const cloudContract: {
|
|
|
9810
10641
|
content: z.ZodDefault<z.ZodString>;
|
|
9811
10642
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
9812
10643
|
}, z.core.$strict>]>>>>;
|
|
9813
|
-
autoMerge: z.
|
|
10644
|
+
autoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
9814
10645
|
mergeMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
9815
10646
|
replace: "replace";
|
|
9816
10647
|
merge: "merge";
|
|
@@ -9899,6 +10730,7 @@ declare const cloudContract: {
|
|
|
9899
10730
|
email: "email";
|
|
9900
10731
|
date: "date";
|
|
9901
10732
|
text: "text";
|
|
10733
|
+
whiteboard: "whiteboard";
|
|
9902
10734
|
html: "html";
|
|
9903
10735
|
longtext: "longtext";
|
|
9904
10736
|
markdown: "markdown";
|
|
@@ -9920,6 +10752,8 @@ declare const cloudContract: {
|
|
|
9920
10752
|
code: "code";
|
|
9921
10753
|
json: "json";
|
|
9922
10754
|
yaml: "yaml";
|
|
10755
|
+
formula: "formula";
|
|
10756
|
+
lookup: "lookup";
|
|
9923
10757
|
}>;
|
|
9924
10758
|
required: z.ZodBoolean;
|
|
9925
10759
|
position: z.ZodNumber;
|
|
@@ -9952,7 +10786,27 @@ declare const cloudContract: {
|
|
|
9952
10786
|
height: z.ZodOptional<z.ZodNumber>;
|
|
9953
10787
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9954
10788
|
}, z.core.$strip>>;
|
|
10789
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
10790
|
+
expression: z.ZodString;
|
|
10791
|
+
}, z.core.$strip>>;
|
|
9955
10792
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
10793
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
10794
|
+
relationFieldSlug: z.ZodString;
|
|
10795
|
+
targetFieldSlug: z.ZodString;
|
|
10796
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
10797
|
+
values: "values";
|
|
10798
|
+
count: "count";
|
|
10799
|
+
sum: "sum";
|
|
10800
|
+
average: "average";
|
|
10801
|
+
min: "min";
|
|
10802
|
+
max: "max";
|
|
10803
|
+
concatenate: "concatenate";
|
|
10804
|
+
}>>>;
|
|
10805
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
10806
|
+
all: "all";
|
|
10807
|
+
first: "first";
|
|
10808
|
+
}>>;
|
|
10809
|
+
}, z.core.$strip>>;
|
|
9956
10810
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
9957
10811
|
number: z.ZodOptional<z.ZodObject<{
|
|
9958
10812
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -10367,6 +11221,7 @@ declare const cloudContract: {
|
|
|
10367
11221
|
email: "email";
|
|
10368
11222
|
date: "date";
|
|
10369
11223
|
text: "text";
|
|
11224
|
+
whiteboard: "whiteboard";
|
|
10370
11225
|
html: "html";
|
|
10371
11226
|
longtext: "longtext";
|
|
10372
11227
|
markdown: "markdown";
|
|
@@ -10388,6 +11243,8 @@ declare const cloudContract: {
|
|
|
10388
11243
|
code: "code";
|
|
10389
11244
|
json: "json";
|
|
10390
11245
|
yaml: "yaml";
|
|
11246
|
+
formula: "formula";
|
|
11247
|
+
lookup: "lookup";
|
|
10391
11248
|
}>;
|
|
10392
11249
|
required: z.ZodBoolean;
|
|
10393
11250
|
position: z.ZodNumber;
|
|
@@ -10420,7 +11277,27 @@ declare const cloudContract: {
|
|
|
10420
11277
|
height: z.ZodOptional<z.ZodNumber>;
|
|
10421
11278
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10422
11279
|
}, z.core.$strip>>;
|
|
11280
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
11281
|
+
expression: z.ZodString;
|
|
11282
|
+
}, z.core.$strip>>;
|
|
10423
11283
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
11284
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
11285
|
+
relationFieldSlug: z.ZodString;
|
|
11286
|
+
targetFieldSlug: z.ZodString;
|
|
11287
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
11288
|
+
values: "values";
|
|
11289
|
+
count: "count";
|
|
11290
|
+
sum: "sum";
|
|
11291
|
+
average: "average";
|
|
11292
|
+
min: "min";
|
|
11293
|
+
max: "max";
|
|
11294
|
+
concatenate: "concatenate";
|
|
11295
|
+
}>>>;
|
|
11296
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
11297
|
+
all: "all";
|
|
11298
|
+
first: "first";
|
|
11299
|
+
}>>;
|
|
11300
|
+
}, z.core.$strip>>;
|
|
10424
11301
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
10425
11302
|
number: z.ZodOptional<z.ZodObject<{
|
|
10426
11303
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -10724,7 +11601,7 @@ declare const cloudContract: {
|
|
|
10724
11601
|
content: z.ZodDefault<z.ZodString>;
|
|
10725
11602
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
10726
11603
|
}, z.core.$strict>]>>>>;
|
|
10727
|
-
autoMerge: z.
|
|
11604
|
+
autoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
10728
11605
|
mergeMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
10729
11606
|
replace: "replace";
|
|
10730
11607
|
merge: "merge";
|
|
@@ -10813,6 +11690,7 @@ declare const cloudContract: {
|
|
|
10813
11690
|
email: "email";
|
|
10814
11691
|
date: "date";
|
|
10815
11692
|
text: "text";
|
|
11693
|
+
whiteboard: "whiteboard";
|
|
10816
11694
|
html: "html";
|
|
10817
11695
|
longtext: "longtext";
|
|
10818
11696
|
markdown: "markdown";
|
|
@@ -10834,6 +11712,8 @@ declare const cloudContract: {
|
|
|
10834
11712
|
code: "code";
|
|
10835
11713
|
json: "json";
|
|
10836
11714
|
yaml: "yaml";
|
|
11715
|
+
formula: "formula";
|
|
11716
|
+
lookup: "lookup";
|
|
10837
11717
|
}>;
|
|
10838
11718
|
required: z.ZodBoolean;
|
|
10839
11719
|
position: z.ZodNumber;
|
|
@@ -10866,7 +11746,27 @@ declare const cloudContract: {
|
|
|
10866
11746
|
height: z.ZodOptional<z.ZodNumber>;
|
|
10867
11747
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10868
11748
|
}, z.core.$strip>>;
|
|
11749
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
11750
|
+
expression: z.ZodString;
|
|
11751
|
+
}, z.core.$strip>>;
|
|
10869
11752
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
11753
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
11754
|
+
relationFieldSlug: z.ZodString;
|
|
11755
|
+
targetFieldSlug: z.ZodString;
|
|
11756
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
11757
|
+
values: "values";
|
|
11758
|
+
count: "count";
|
|
11759
|
+
sum: "sum";
|
|
11760
|
+
average: "average";
|
|
11761
|
+
min: "min";
|
|
11762
|
+
max: "max";
|
|
11763
|
+
concatenate: "concatenate";
|
|
11764
|
+
}>>>;
|
|
11765
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
11766
|
+
all: "all";
|
|
11767
|
+
first: "first";
|
|
11768
|
+
}>>;
|
|
11769
|
+
}, z.core.$strip>>;
|
|
10870
11770
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
10871
11771
|
number: z.ZodOptional<z.ZodObject<{
|
|
10872
11772
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -11281,6 +12181,7 @@ declare const cloudContract: {
|
|
|
11281
12181
|
email: "email";
|
|
11282
12182
|
date: "date";
|
|
11283
12183
|
text: "text";
|
|
12184
|
+
whiteboard: "whiteboard";
|
|
11284
12185
|
html: "html";
|
|
11285
12186
|
longtext: "longtext";
|
|
11286
12187
|
markdown: "markdown";
|
|
@@ -11302,6 +12203,8 @@ declare const cloudContract: {
|
|
|
11302
12203
|
code: "code";
|
|
11303
12204
|
json: "json";
|
|
11304
12205
|
yaml: "yaml";
|
|
12206
|
+
formula: "formula";
|
|
12207
|
+
lookup: "lookup";
|
|
11305
12208
|
}>;
|
|
11306
12209
|
required: z.ZodBoolean;
|
|
11307
12210
|
position: z.ZodNumber;
|
|
@@ -11334,7 +12237,27 @@ declare const cloudContract: {
|
|
|
11334
12237
|
height: z.ZodOptional<z.ZodNumber>;
|
|
11335
12238
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11336
12239
|
}, z.core.$strip>>;
|
|
12240
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
12241
|
+
expression: z.ZodString;
|
|
12242
|
+
}, z.core.$strip>>;
|
|
11337
12243
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
12244
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
12245
|
+
relationFieldSlug: z.ZodString;
|
|
12246
|
+
targetFieldSlug: z.ZodString;
|
|
12247
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
12248
|
+
values: "values";
|
|
12249
|
+
count: "count";
|
|
12250
|
+
sum: "sum";
|
|
12251
|
+
average: "average";
|
|
12252
|
+
min: "min";
|
|
12253
|
+
max: "max";
|
|
12254
|
+
concatenate: "concatenate";
|
|
12255
|
+
}>>>;
|
|
12256
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
12257
|
+
all: "all";
|
|
12258
|
+
first: "first";
|
|
12259
|
+
}>>;
|
|
12260
|
+
}, z.core.$strip>>;
|
|
11338
12261
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
11339
12262
|
number: z.ZodOptional<z.ZodObject<{
|
|
11340
12263
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -11674,7 +12597,7 @@ declare const cloudContract: {
|
|
|
11674
12597
|
content: z.ZodDefault<z.ZodString>;
|
|
11675
12598
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
11676
12599
|
}, z.core.$strict>]>>>>;
|
|
11677
|
-
autoMerge: z.
|
|
12600
|
+
autoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
11678
12601
|
mergeMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
11679
12602
|
replace: "replace";
|
|
11680
12603
|
merge: "merge";
|
|
@@ -11763,6 +12686,7 @@ declare const cloudContract: {
|
|
|
11763
12686
|
email: "email";
|
|
11764
12687
|
date: "date";
|
|
11765
12688
|
text: "text";
|
|
12689
|
+
whiteboard: "whiteboard";
|
|
11766
12690
|
html: "html";
|
|
11767
12691
|
longtext: "longtext";
|
|
11768
12692
|
markdown: "markdown";
|
|
@@ -11784,6 +12708,8 @@ declare const cloudContract: {
|
|
|
11784
12708
|
code: "code";
|
|
11785
12709
|
json: "json";
|
|
11786
12710
|
yaml: "yaml";
|
|
12711
|
+
formula: "formula";
|
|
12712
|
+
lookup: "lookup";
|
|
11787
12713
|
}>;
|
|
11788
12714
|
required: z.ZodBoolean;
|
|
11789
12715
|
position: z.ZodNumber;
|
|
@@ -11816,7 +12742,27 @@ declare const cloudContract: {
|
|
|
11816
12742
|
height: z.ZodOptional<z.ZodNumber>;
|
|
11817
12743
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11818
12744
|
}, z.core.$strip>>;
|
|
12745
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
12746
|
+
expression: z.ZodString;
|
|
12747
|
+
}, z.core.$strip>>;
|
|
11819
12748
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
12749
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
12750
|
+
relationFieldSlug: z.ZodString;
|
|
12751
|
+
targetFieldSlug: z.ZodString;
|
|
12752
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
12753
|
+
values: "values";
|
|
12754
|
+
count: "count";
|
|
12755
|
+
sum: "sum";
|
|
12756
|
+
average: "average";
|
|
12757
|
+
min: "min";
|
|
12758
|
+
max: "max";
|
|
12759
|
+
concatenate: "concatenate";
|
|
12760
|
+
}>>>;
|
|
12761
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
12762
|
+
all: "all";
|
|
12763
|
+
first: "first";
|
|
12764
|
+
}>>;
|
|
12765
|
+
}, z.core.$strip>>;
|
|
11820
12766
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
11821
12767
|
number: z.ZodOptional<z.ZodObject<{
|
|
11822
12768
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -12231,6 +13177,7 @@ declare const cloudContract: {
|
|
|
12231
13177
|
email: "email";
|
|
12232
13178
|
date: "date";
|
|
12233
13179
|
text: "text";
|
|
13180
|
+
whiteboard: "whiteboard";
|
|
12234
13181
|
html: "html";
|
|
12235
13182
|
longtext: "longtext";
|
|
12236
13183
|
markdown: "markdown";
|
|
@@ -12252,6 +13199,8 @@ declare const cloudContract: {
|
|
|
12252
13199
|
code: "code";
|
|
12253
13200
|
json: "json";
|
|
12254
13201
|
yaml: "yaml";
|
|
13202
|
+
formula: "formula";
|
|
13203
|
+
lookup: "lookup";
|
|
12255
13204
|
}>;
|
|
12256
13205
|
required: z.ZodBoolean;
|
|
12257
13206
|
position: z.ZodNumber;
|
|
@@ -12284,7 +13233,27 @@ declare const cloudContract: {
|
|
|
12284
13233
|
height: z.ZodOptional<z.ZodNumber>;
|
|
12285
13234
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12286
13235
|
}, z.core.$strip>>;
|
|
13236
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
13237
|
+
expression: z.ZodString;
|
|
13238
|
+
}, z.core.$strip>>;
|
|
12287
13239
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
13240
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
13241
|
+
relationFieldSlug: z.ZodString;
|
|
13242
|
+
targetFieldSlug: z.ZodString;
|
|
13243
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
13244
|
+
values: "values";
|
|
13245
|
+
count: "count";
|
|
13246
|
+
sum: "sum";
|
|
13247
|
+
average: "average";
|
|
13248
|
+
min: "min";
|
|
13249
|
+
max: "max";
|
|
13250
|
+
concatenate: "concatenate";
|
|
13251
|
+
}>>>;
|
|
13252
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
13253
|
+
all: "all";
|
|
13254
|
+
first: "first";
|
|
13255
|
+
}>>;
|
|
13256
|
+
}, z.core.$strip>>;
|
|
12288
13257
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
12289
13258
|
number: z.ZodOptional<z.ZodObject<{
|
|
12290
13259
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -12567,8 +13536,8 @@ declare const cloudContract: {
|
|
|
12567
13536
|
textStatus: z.ZodEnum<{
|
|
12568
13537
|
missing: "missing";
|
|
12569
13538
|
stale: "stale";
|
|
12570
|
-
present: "present";
|
|
12571
13539
|
none: "none";
|
|
13540
|
+
present: "present";
|
|
12572
13541
|
}>;
|
|
12573
13542
|
createdAt: z.ZodString;
|
|
12574
13543
|
}, z.core.$strip>;
|
|
@@ -12579,7 +13548,7 @@ declare const cloudContract: {
|
|
|
12579
13548
|
name: z.ZodString;
|
|
12580
13549
|
description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
12581
13550
|
assetId: z.ZodString;
|
|
12582
|
-
autoMerge: z.
|
|
13551
|
+
autoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
12583
13552
|
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
12584
13553
|
node: z.ZodType<NodeOutput, unknown, z.core.$ZodTypeInternals<NodeOutput, unknown>>;
|
|
12585
13554
|
asset: z.ZodObject<{
|
|
@@ -12600,8 +13569,8 @@ declare const cloudContract: {
|
|
|
12600
13569
|
textStatus: z.ZodEnum<{
|
|
12601
13570
|
missing: "missing";
|
|
12602
13571
|
stale: "stale";
|
|
12603
|
-
present: "present";
|
|
12604
13572
|
none: "none";
|
|
13573
|
+
present: "present";
|
|
12605
13574
|
}>;
|
|
12606
13575
|
createdAt: z.ZodString;
|
|
12607
13576
|
}, z.core.$strip>;
|
|
@@ -12670,6 +13639,7 @@ declare const cloudContract: {
|
|
|
12670
13639
|
email: "email";
|
|
12671
13640
|
date: "date";
|
|
12672
13641
|
text: "text";
|
|
13642
|
+
whiteboard: "whiteboard";
|
|
12673
13643
|
html: "html";
|
|
12674
13644
|
longtext: "longtext";
|
|
12675
13645
|
markdown: "markdown";
|
|
@@ -12691,6 +13661,8 @@ declare const cloudContract: {
|
|
|
12691
13661
|
code: "code";
|
|
12692
13662
|
json: "json";
|
|
12693
13663
|
yaml: "yaml";
|
|
13664
|
+
formula: "formula";
|
|
13665
|
+
lookup: "lookup";
|
|
12694
13666
|
}>;
|
|
12695
13667
|
required: z.ZodBoolean;
|
|
12696
13668
|
position: z.ZodNumber;
|
|
@@ -12723,7 +13695,27 @@ declare const cloudContract: {
|
|
|
12723
13695
|
height: z.ZodOptional<z.ZodNumber>;
|
|
12724
13696
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12725
13697
|
}, z.core.$strip>>;
|
|
13698
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
13699
|
+
expression: z.ZodString;
|
|
13700
|
+
}, z.core.$strip>>;
|
|
12726
13701
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
13702
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
13703
|
+
relationFieldSlug: z.ZodString;
|
|
13704
|
+
targetFieldSlug: z.ZodString;
|
|
13705
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
13706
|
+
values: "values";
|
|
13707
|
+
count: "count";
|
|
13708
|
+
sum: "sum";
|
|
13709
|
+
average: "average";
|
|
13710
|
+
min: "min";
|
|
13711
|
+
max: "max";
|
|
13712
|
+
concatenate: "concatenate";
|
|
13713
|
+
}>>>;
|
|
13714
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
13715
|
+
all: "all";
|
|
13716
|
+
first: "first";
|
|
13717
|
+
}>>;
|
|
13718
|
+
}, z.core.$strip>>;
|
|
12727
13719
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
12728
13720
|
number: z.ZodOptional<z.ZodObject<{
|
|
12729
13721
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -13007,8 +13999,8 @@ declare const cloudContract: {
|
|
|
13007
13999
|
textStatus: z.ZodEnum<{
|
|
13008
14000
|
missing: "missing";
|
|
13009
14001
|
stale: "stale";
|
|
13010
|
-
present: "present";
|
|
13011
14002
|
none: "none";
|
|
14003
|
+
present: "present";
|
|
13012
14004
|
}>;
|
|
13013
14005
|
createdAt: z.ZodString;
|
|
13014
14006
|
}, z.core.$strip>;
|
|
@@ -13026,7 +14018,7 @@ declare const cloudContract: {
|
|
|
13026
14018
|
name: z.ZodString;
|
|
13027
14019
|
description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
13028
14020
|
body: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
13029
|
-
autoMerge: z.
|
|
14021
|
+
autoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
13030
14022
|
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
13031
14023
|
node: z.ZodType<NodeOutput, unknown, z.core.$ZodTypeInternals<NodeOutput, unknown>>;
|
|
13032
14024
|
storagePrefix: z.ZodString;
|
|
@@ -13096,6 +14088,7 @@ declare const cloudContract: {
|
|
|
13096
14088
|
email: "email";
|
|
13097
14089
|
date: "date";
|
|
13098
14090
|
text: "text";
|
|
14091
|
+
whiteboard: "whiteboard";
|
|
13099
14092
|
html: "html";
|
|
13100
14093
|
longtext: "longtext";
|
|
13101
14094
|
markdown: "markdown";
|
|
@@ -13117,6 +14110,8 @@ declare const cloudContract: {
|
|
|
13117
14110
|
code: "code";
|
|
13118
14111
|
json: "json";
|
|
13119
14112
|
yaml: "yaml";
|
|
14113
|
+
formula: "formula";
|
|
14114
|
+
lookup: "lookup";
|
|
13120
14115
|
}>;
|
|
13121
14116
|
required: z.ZodBoolean;
|
|
13122
14117
|
position: z.ZodNumber;
|
|
@@ -13149,7 +14144,27 @@ declare const cloudContract: {
|
|
|
13149
14144
|
height: z.ZodOptional<z.ZodNumber>;
|
|
13150
14145
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13151
14146
|
}, z.core.$strip>>;
|
|
14147
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
14148
|
+
expression: z.ZodString;
|
|
14149
|
+
}, z.core.$strip>>;
|
|
13152
14150
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
14151
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
14152
|
+
relationFieldSlug: z.ZodString;
|
|
14153
|
+
targetFieldSlug: z.ZodString;
|
|
14154
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
14155
|
+
values: "values";
|
|
14156
|
+
count: "count";
|
|
14157
|
+
sum: "sum";
|
|
14158
|
+
average: "average";
|
|
14159
|
+
min: "min";
|
|
14160
|
+
max: "max";
|
|
14161
|
+
concatenate: "concatenate";
|
|
14162
|
+
}>>>;
|
|
14163
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
14164
|
+
all: "all";
|
|
14165
|
+
first: "first";
|
|
14166
|
+
}>>;
|
|
14167
|
+
}, z.core.$strip>>;
|
|
13153
14168
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13154
14169
|
number: z.ZodOptional<z.ZodObject<{
|
|
13155
14170
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -13506,6 +14521,7 @@ declare const cloudContract: {
|
|
|
13506
14521
|
email: "email";
|
|
13507
14522
|
date: "date";
|
|
13508
14523
|
text: "text";
|
|
14524
|
+
whiteboard: "whiteboard";
|
|
13509
14525
|
html: "html";
|
|
13510
14526
|
longtext: "longtext";
|
|
13511
14527
|
markdown: "markdown";
|
|
@@ -13527,6 +14543,8 @@ declare const cloudContract: {
|
|
|
13527
14543
|
code: "code";
|
|
13528
14544
|
json: "json";
|
|
13529
14545
|
yaml: "yaml";
|
|
14546
|
+
formula: "formula";
|
|
14547
|
+
lookup: "lookup";
|
|
13530
14548
|
}>;
|
|
13531
14549
|
required: z.ZodBoolean;
|
|
13532
14550
|
position: z.ZodNumber;
|
|
@@ -13559,7 +14577,27 @@ declare const cloudContract: {
|
|
|
13559
14577
|
height: z.ZodOptional<z.ZodNumber>;
|
|
13560
14578
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13561
14579
|
}, z.core.$strip>>;
|
|
14580
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
14581
|
+
expression: z.ZodString;
|
|
14582
|
+
}, z.core.$strip>>;
|
|
13562
14583
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
14584
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
14585
|
+
relationFieldSlug: z.ZodString;
|
|
14586
|
+
targetFieldSlug: z.ZodString;
|
|
14587
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
14588
|
+
values: "values";
|
|
14589
|
+
count: "count";
|
|
14590
|
+
sum: "sum";
|
|
14591
|
+
average: "average";
|
|
14592
|
+
min: "min";
|
|
14593
|
+
max: "max";
|
|
14594
|
+
concatenate: "concatenate";
|
|
14595
|
+
}>>>;
|
|
14596
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
14597
|
+
all: "all";
|
|
14598
|
+
first: "first";
|
|
14599
|
+
}>>;
|
|
14600
|
+
}, z.core.$strip>>;
|
|
13563
14601
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13564
14602
|
number: z.ZodOptional<z.ZodObject<{
|
|
13565
14603
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -13833,64 +14871,243 @@ declare const cloudContract: {
|
|
|
13833
14871
|
children: z.ZodArray<z.ZodType<NodeOutput, unknown, z.core.$ZodTypeInternals<NodeOutput, unknown>>>;
|
|
13834
14872
|
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13835
14873
|
};
|
|
13836
|
-
|
|
13837
|
-
|
|
13838
|
-
|
|
13839
|
-
mimeType: z.ZodString;
|
|
13840
|
-
sizeBytes: z.ZodNumber;
|
|
13841
|
-
spaceId: z.ZodOptional<z.ZodString>;
|
|
13842
|
-
context: z.ZodOptional<z.ZodString>;
|
|
13843
|
-
contentHash: z.ZodOptional<z.ZodString>;
|
|
13844
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
13845
|
-
uploadUrl: z.ZodString;
|
|
13846
|
-
storageKey: z.ZodString;
|
|
13847
|
-
publicUrl: z.ZodString;
|
|
13848
|
-
expiresIn: z.ZodNumber;
|
|
13849
|
-
duplicate: z.ZodOptional<z.ZodBoolean>;
|
|
13850
|
-
attachmentId: z.ZodOptional<z.ZodString>;
|
|
13851
|
-
assetId: z.ZodOptional<z.ZodString>;
|
|
13852
|
-
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13853
|
-
confirm: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
13854
|
-
storageKey: z.ZodString;
|
|
13855
|
-
fileName: z.ZodString;
|
|
13856
|
-
mimeType: z.ZodString;
|
|
13857
|
-
sizeBytes: z.ZodNumber;
|
|
13858
|
-
spaceId: z.ZodOptional<z.ZodString>;
|
|
13859
|
-
context: z.ZodOptional<z.ZodString>;
|
|
13860
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13861
|
-
contentHash: z.ZodOptional<z.ZodString>;
|
|
14874
|
+
forms: {
|
|
14875
|
+
getByNode: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
14876
|
+
nodeId: z.ZodString;
|
|
13862
14877
|
}, z.core.$strip>, z.ZodObject<{
|
|
13863
|
-
success: z.ZodBoolean;
|
|
13864
|
-
attachmentId: z.ZodString;
|
|
13865
|
-
assetId: z.ZodOptional<z.ZodString>;
|
|
13866
|
-
storageKey: z.ZodString;
|
|
13867
|
-
publicUrl: z.ZodString;
|
|
13868
|
-
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13869
|
-
list: _orpc_contract.ContractProcedure<_orpc_contract.Schema<unknown, unknown>, z.ZodArray<z.ZodObject<{
|
|
13870
14878
|
id: z.ZodString;
|
|
13871
|
-
|
|
14879
|
+
nodeId: z.ZodString;
|
|
14880
|
+
spaceId: z.ZodString;
|
|
14881
|
+
targetBaseId: z.ZodString;
|
|
13872
14882
|
name: z.ZodString;
|
|
13873
|
-
|
|
13874
|
-
|
|
13875
|
-
|
|
13876
|
-
|
|
13877
|
-
|
|
13878
|
-
|
|
13879
|
-
|
|
13880
|
-
|
|
13881
|
-
|
|
13882
|
-
|
|
13883
|
-
|
|
13884
|
-
|
|
13885
|
-
|
|
13886
|
-
|
|
13887
|
-
|
|
13888
|
-
|
|
14883
|
+
description: z.ZodString;
|
|
14884
|
+
bindings: z.ZodArray<z.ZodObject<{
|
|
14885
|
+
inputName: z.ZodString;
|
|
14886
|
+
fieldSlug: z.ZodString;
|
|
14887
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
14888
|
+
label: z.ZodOptional<z.ZodString>;
|
|
14889
|
+
help: z.ZodOptional<z.ZodString>;
|
|
14890
|
+
}, z.core.$strip>>;
|
|
14891
|
+
page: z.ZodObject<{
|
|
14892
|
+
code: z.ZodOptional<z.ZodString>;
|
|
14893
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
14894
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
14895
|
+
coverUrl: z.ZodOptional<z.ZodString>;
|
|
14896
|
+
brandColor: z.ZodOptional<z.ZodString>;
|
|
14897
|
+
hideBranding: z.ZodOptional<z.ZodBoolean>;
|
|
14898
|
+
}, z.core.$strip>>;
|
|
14899
|
+
}, z.core.$strip>;
|
|
14900
|
+
share: z.ZodObject<{
|
|
14901
|
+
isPublic: z.ZodDefault<z.ZodBoolean>;
|
|
14902
|
+
anonymousSubmit: z.ZodDefault<z.ZodBoolean>;
|
|
14903
|
+
submitLimit: z.ZodOptional<z.ZodNumber>;
|
|
14904
|
+
requireCaptcha: z.ZodOptional<z.ZodBoolean>;
|
|
14905
|
+
}, z.core.$strip>;
|
|
14906
|
+
submissionCount: z.ZodDefault<z.ZodNumber>;
|
|
14907
|
+
status: z.ZodEnum<{
|
|
14908
|
+
archived: "archived";
|
|
14909
|
+
active: "active";
|
|
13889
14910
|
}>;
|
|
14911
|
+
createdBy: z.ZodString;
|
|
13890
14912
|
createdAt: z.ZodString;
|
|
13891
|
-
|
|
13892
|
-
|
|
13893
|
-
|
|
14913
|
+
updatedAt: z.ZodString;
|
|
14914
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
14915
|
+
create: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
14916
|
+
nodeId: z.ZodString;
|
|
14917
|
+
targetBaseId: z.ZodString;
|
|
14918
|
+
name: z.ZodString;
|
|
14919
|
+
description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
14920
|
+
bindings: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14921
|
+
inputName: z.ZodString;
|
|
14922
|
+
fieldSlug: z.ZodString;
|
|
14923
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
14924
|
+
label: z.ZodOptional<z.ZodString>;
|
|
14925
|
+
help: z.ZodOptional<z.ZodString>;
|
|
14926
|
+
}, z.core.$strip>>>>;
|
|
14927
|
+
page: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
14928
|
+
code: z.ZodOptional<z.ZodString>;
|
|
14929
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
14930
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
14931
|
+
coverUrl: z.ZodOptional<z.ZodString>;
|
|
14932
|
+
brandColor: z.ZodOptional<z.ZodString>;
|
|
14933
|
+
hideBranding: z.ZodOptional<z.ZodBoolean>;
|
|
14934
|
+
}, z.core.$strip>>;
|
|
14935
|
+
}, z.core.$strip>>>;
|
|
14936
|
+
share: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
14937
|
+
isPublic: z.ZodDefault<z.ZodBoolean>;
|
|
14938
|
+
anonymousSubmit: z.ZodDefault<z.ZodBoolean>;
|
|
14939
|
+
submitLimit: z.ZodOptional<z.ZodNumber>;
|
|
14940
|
+
requireCaptcha: z.ZodOptional<z.ZodBoolean>;
|
|
14941
|
+
}, z.core.$strip>>>;
|
|
14942
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
14943
|
+
id: z.ZodString;
|
|
14944
|
+
nodeId: z.ZodString;
|
|
14945
|
+
spaceId: z.ZodString;
|
|
14946
|
+
targetBaseId: z.ZodString;
|
|
14947
|
+
name: z.ZodString;
|
|
14948
|
+
description: z.ZodString;
|
|
14949
|
+
bindings: z.ZodArray<z.ZodObject<{
|
|
14950
|
+
inputName: z.ZodString;
|
|
14951
|
+
fieldSlug: z.ZodString;
|
|
14952
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
14953
|
+
label: z.ZodOptional<z.ZodString>;
|
|
14954
|
+
help: z.ZodOptional<z.ZodString>;
|
|
14955
|
+
}, z.core.$strip>>;
|
|
14956
|
+
page: z.ZodObject<{
|
|
14957
|
+
code: z.ZodOptional<z.ZodString>;
|
|
14958
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
14959
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
14960
|
+
coverUrl: z.ZodOptional<z.ZodString>;
|
|
14961
|
+
brandColor: z.ZodOptional<z.ZodString>;
|
|
14962
|
+
hideBranding: z.ZodOptional<z.ZodBoolean>;
|
|
14963
|
+
}, z.core.$strip>>;
|
|
14964
|
+
}, z.core.$strip>;
|
|
14965
|
+
share: z.ZodObject<{
|
|
14966
|
+
isPublic: z.ZodDefault<z.ZodBoolean>;
|
|
14967
|
+
anonymousSubmit: z.ZodDefault<z.ZodBoolean>;
|
|
14968
|
+
submitLimit: z.ZodOptional<z.ZodNumber>;
|
|
14969
|
+
requireCaptcha: z.ZodOptional<z.ZodBoolean>;
|
|
14970
|
+
}, z.core.$strip>;
|
|
14971
|
+
submissionCount: z.ZodDefault<z.ZodNumber>;
|
|
14972
|
+
status: z.ZodEnum<{
|
|
14973
|
+
archived: "archived";
|
|
14974
|
+
active: "active";
|
|
14975
|
+
}>;
|
|
14976
|
+
createdBy: z.ZodString;
|
|
14977
|
+
createdAt: z.ZodString;
|
|
14978
|
+
updatedAt: z.ZodString;
|
|
14979
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
14980
|
+
update: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
14981
|
+
name: z.ZodOptional<z.ZodString>;
|
|
14982
|
+
description: z.ZodOptional<z.ZodString>;
|
|
14983
|
+
bindings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14984
|
+
inputName: z.ZodString;
|
|
14985
|
+
fieldSlug: z.ZodString;
|
|
14986
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
14987
|
+
label: z.ZodOptional<z.ZodString>;
|
|
14988
|
+
help: z.ZodOptional<z.ZodString>;
|
|
14989
|
+
}, z.core.$strip>>>;
|
|
14990
|
+
page: z.ZodOptional<z.ZodObject<{
|
|
14991
|
+
code: z.ZodOptional<z.ZodString>;
|
|
14992
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
14993
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
14994
|
+
coverUrl: z.ZodOptional<z.ZodString>;
|
|
14995
|
+
brandColor: z.ZodOptional<z.ZodString>;
|
|
14996
|
+
hideBranding: z.ZodOptional<z.ZodBoolean>;
|
|
14997
|
+
}, z.core.$strip>>;
|
|
14998
|
+
}, z.core.$strip>>;
|
|
14999
|
+
share: z.ZodOptional<z.ZodObject<{
|
|
15000
|
+
isPublic: z.ZodDefault<z.ZodBoolean>;
|
|
15001
|
+
anonymousSubmit: z.ZodDefault<z.ZodBoolean>;
|
|
15002
|
+
submitLimit: z.ZodOptional<z.ZodNumber>;
|
|
15003
|
+
requireCaptcha: z.ZodOptional<z.ZodBoolean>;
|
|
15004
|
+
}, z.core.$strip>>;
|
|
15005
|
+
nodeId: z.ZodString;
|
|
15006
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15007
|
+
id: z.ZodString;
|
|
15008
|
+
nodeId: z.ZodString;
|
|
15009
|
+
spaceId: z.ZodString;
|
|
15010
|
+
targetBaseId: z.ZodString;
|
|
15011
|
+
name: z.ZodString;
|
|
15012
|
+
description: z.ZodString;
|
|
15013
|
+
bindings: z.ZodArray<z.ZodObject<{
|
|
15014
|
+
inputName: z.ZodString;
|
|
15015
|
+
fieldSlug: z.ZodString;
|
|
15016
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
15017
|
+
label: z.ZodOptional<z.ZodString>;
|
|
15018
|
+
help: z.ZodOptional<z.ZodString>;
|
|
15019
|
+
}, z.core.$strip>>;
|
|
15020
|
+
page: z.ZodObject<{
|
|
15021
|
+
code: z.ZodOptional<z.ZodString>;
|
|
15022
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
15023
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
15024
|
+
coverUrl: z.ZodOptional<z.ZodString>;
|
|
15025
|
+
brandColor: z.ZodOptional<z.ZodString>;
|
|
15026
|
+
hideBranding: z.ZodOptional<z.ZodBoolean>;
|
|
15027
|
+
}, z.core.$strip>>;
|
|
15028
|
+
}, z.core.$strip>;
|
|
15029
|
+
share: z.ZodObject<{
|
|
15030
|
+
isPublic: z.ZodDefault<z.ZodBoolean>;
|
|
15031
|
+
anonymousSubmit: z.ZodDefault<z.ZodBoolean>;
|
|
15032
|
+
submitLimit: z.ZodOptional<z.ZodNumber>;
|
|
15033
|
+
requireCaptcha: z.ZodOptional<z.ZodBoolean>;
|
|
15034
|
+
}, z.core.$strip>;
|
|
15035
|
+
submissionCount: z.ZodDefault<z.ZodNumber>;
|
|
15036
|
+
status: z.ZodEnum<{
|
|
15037
|
+
archived: "archived";
|
|
15038
|
+
active: "active";
|
|
15039
|
+
}>;
|
|
15040
|
+
createdBy: z.ZodString;
|
|
15041
|
+
createdAt: z.ZodString;
|
|
15042
|
+
updatedAt: z.ZodString;
|
|
15043
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
15044
|
+
submit: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
15045
|
+
values: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
15046
|
+
captchaToken: z.ZodOptional<z.ZodString>;
|
|
15047
|
+
nodeId: z.ZodString;
|
|
15048
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15049
|
+
changeRequestId: z.ZodString;
|
|
15050
|
+
status: z.ZodLiteral<"pending_review">;
|
|
15051
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
15052
|
+
};
|
|
15053
|
+
assets: {
|
|
15054
|
+
createUploadUrl: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
15055
|
+
fileName: z.ZodString;
|
|
15056
|
+
mimeType: z.ZodString;
|
|
15057
|
+
sizeBytes: z.ZodNumber;
|
|
15058
|
+
spaceId: z.ZodOptional<z.ZodString>;
|
|
15059
|
+
context: z.ZodOptional<z.ZodString>;
|
|
15060
|
+
contentHash: z.ZodOptional<z.ZodString>;
|
|
15061
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15062
|
+
uploadUrl: z.ZodString;
|
|
15063
|
+
storageKey: z.ZodString;
|
|
15064
|
+
publicUrl: z.ZodString;
|
|
15065
|
+
expiresIn: z.ZodNumber;
|
|
15066
|
+
duplicate: z.ZodOptional<z.ZodBoolean>;
|
|
15067
|
+
attachmentId: z.ZodOptional<z.ZodString>;
|
|
15068
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
15069
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
15070
|
+
confirm: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
15071
|
+
storageKey: z.ZodString;
|
|
15072
|
+
fileName: z.ZodString;
|
|
15073
|
+
mimeType: z.ZodString;
|
|
15074
|
+
sizeBytes: z.ZodNumber;
|
|
15075
|
+
spaceId: z.ZodOptional<z.ZodString>;
|
|
15076
|
+
context: z.ZodOptional<z.ZodString>;
|
|
15077
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15078
|
+
contentHash: z.ZodOptional<z.ZodString>;
|
|
15079
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15080
|
+
success: z.ZodBoolean;
|
|
15081
|
+
attachmentId: z.ZodString;
|
|
15082
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
15083
|
+
storageKey: z.ZodString;
|
|
15084
|
+
publicUrl: z.ZodString;
|
|
15085
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
15086
|
+
list: _orpc_contract.ContractProcedure<_orpc_contract.Schema<unknown, unknown>, z.ZodArray<z.ZodObject<{
|
|
15087
|
+
id: z.ZodString;
|
|
15088
|
+
attachmentId: z.ZodString;
|
|
15089
|
+
name: z.ZodString;
|
|
15090
|
+
contentKind: z.ZodEnum<{
|
|
15091
|
+
text: "text";
|
|
15092
|
+
binary: "binary";
|
|
15093
|
+
}>;
|
|
15094
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15095
|
+
fileName: z.ZodString;
|
|
15096
|
+
mimeType: z.ZodString;
|
|
15097
|
+
size: z.ZodNumber;
|
|
15098
|
+
url: z.ZodString;
|
|
15099
|
+
contentHash: z.ZodNullable<z.ZodString>;
|
|
15100
|
+
usageCount: z.ZodNumber;
|
|
15101
|
+
textStatus: z.ZodEnum<{
|
|
15102
|
+
missing: "missing";
|
|
15103
|
+
stale: "stale";
|
|
15104
|
+
none: "none";
|
|
15105
|
+
present: "present";
|
|
15106
|
+
}>;
|
|
15107
|
+
createdAt: z.ZodString;
|
|
15108
|
+
}, z.core.$strip>>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
15109
|
+
get: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
15110
|
+
assetId: z.ZodString;
|
|
13894
15111
|
}, z.core.$strip>, z.ZodObject<{
|
|
13895
15112
|
asset: z.ZodObject<{
|
|
13896
15113
|
id: z.ZodString;
|
|
@@ -13910,8 +15127,8 @@ declare const cloudContract: {
|
|
|
13910
15127
|
textStatus: z.ZodEnum<{
|
|
13911
15128
|
missing: "missing";
|
|
13912
15129
|
stale: "stale";
|
|
13913
|
-
present: "present";
|
|
13914
15130
|
none: "none";
|
|
15131
|
+
present: "present";
|
|
13915
15132
|
}>;
|
|
13916
15133
|
createdAt: z.ZodString;
|
|
13917
15134
|
}, z.core.$strip>;
|
|
@@ -13961,8 +15178,8 @@ declare const cloudContract: {
|
|
|
13961
15178
|
textStatus: z.ZodEnum<{
|
|
13962
15179
|
missing: "missing";
|
|
13963
15180
|
stale: "stale";
|
|
13964
|
-
present: "present";
|
|
13965
15181
|
none: "none";
|
|
15182
|
+
present: "present";
|
|
13966
15183
|
}>;
|
|
13967
15184
|
createdAt: z.ZodString;
|
|
13968
15185
|
}, z.core.$strip>;
|
|
@@ -14012,8 +15229,8 @@ declare const cloudContract: {
|
|
|
14012
15229
|
textStatus: z.ZodEnum<{
|
|
14013
15230
|
missing: "missing";
|
|
14014
15231
|
stale: "stale";
|
|
14015
|
-
present: "present";
|
|
14016
15232
|
none: "none";
|
|
15233
|
+
present: "present";
|
|
14017
15234
|
}>;
|
|
14018
15235
|
lineCount: z.ZodNumber;
|
|
14019
15236
|
charCount: z.ZodNumber;
|
|
@@ -14141,6 +15358,7 @@ declare const cloudContract: {
|
|
|
14141
15358
|
email: "email";
|
|
14142
15359
|
date: "date";
|
|
14143
15360
|
text: "text";
|
|
15361
|
+
whiteboard: "whiteboard";
|
|
14144
15362
|
html: "html";
|
|
14145
15363
|
longtext: "longtext";
|
|
14146
15364
|
markdown: "markdown";
|
|
@@ -14162,6 +15380,8 @@ declare const cloudContract: {
|
|
|
14162
15380
|
code: "code";
|
|
14163
15381
|
json: "json";
|
|
14164
15382
|
yaml: "yaml";
|
|
15383
|
+
formula: "formula";
|
|
15384
|
+
lookup: "lookup";
|
|
14165
15385
|
}>;
|
|
14166
15386
|
required: z.ZodBoolean;
|
|
14167
15387
|
position: z.ZodNumber;
|
|
@@ -14194,7 +15414,27 @@ declare const cloudContract: {
|
|
|
14194
15414
|
height: z.ZodOptional<z.ZodNumber>;
|
|
14195
15415
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14196
15416
|
}, z.core.$strip>>;
|
|
15417
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
15418
|
+
expression: z.ZodString;
|
|
15419
|
+
}, z.core.$strip>>;
|
|
14197
15420
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
15421
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
15422
|
+
relationFieldSlug: z.ZodString;
|
|
15423
|
+
targetFieldSlug: z.ZodString;
|
|
15424
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
15425
|
+
values: "values";
|
|
15426
|
+
count: "count";
|
|
15427
|
+
sum: "sum";
|
|
15428
|
+
average: "average";
|
|
15429
|
+
min: "min";
|
|
15430
|
+
max: "max";
|
|
15431
|
+
concatenate: "concatenate";
|
|
15432
|
+
}>>>;
|
|
15433
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
15434
|
+
all: "all";
|
|
15435
|
+
first: "first";
|
|
15436
|
+
}>>;
|
|
15437
|
+
}, z.core.$strip>>;
|
|
14198
15438
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
14199
15439
|
number: z.ZodOptional<z.ZodObject<{
|
|
14200
15440
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -15159,6 +16399,7 @@ declare const cloudContract: {
|
|
|
15159
16399
|
email: "email";
|
|
15160
16400
|
date: "date";
|
|
15161
16401
|
text: "text";
|
|
16402
|
+
whiteboard: "whiteboard";
|
|
15162
16403
|
html: "html";
|
|
15163
16404
|
longtext: "longtext";
|
|
15164
16405
|
markdown: "markdown";
|
|
@@ -15180,6 +16421,8 @@ declare const cloudContract: {
|
|
|
15180
16421
|
code: "code";
|
|
15181
16422
|
json: "json";
|
|
15182
16423
|
yaml: "yaml";
|
|
16424
|
+
formula: "formula";
|
|
16425
|
+
lookup: "lookup";
|
|
15183
16426
|
}>;
|
|
15184
16427
|
required: z.ZodBoolean;
|
|
15185
16428
|
position: z.ZodNumber;
|
|
@@ -15212,7 +16455,27 @@ declare const cloudContract: {
|
|
|
15212
16455
|
height: z.ZodOptional<z.ZodNumber>;
|
|
15213
16456
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
15214
16457
|
}, z.core.$strip>>;
|
|
16458
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
16459
|
+
expression: z.ZodString;
|
|
16460
|
+
}, z.core.$strip>>;
|
|
15215
16461
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
16462
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
16463
|
+
relationFieldSlug: z.ZodString;
|
|
16464
|
+
targetFieldSlug: z.ZodString;
|
|
16465
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
16466
|
+
values: "values";
|
|
16467
|
+
count: "count";
|
|
16468
|
+
sum: "sum";
|
|
16469
|
+
average: "average";
|
|
16470
|
+
min: "min";
|
|
16471
|
+
max: "max";
|
|
16472
|
+
concatenate: "concatenate";
|
|
16473
|
+
}>>>;
|
|
16474
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
16475
|
+
all: "all";
|
|
16476
|
+
first: "first";
|
|
16477
|
+
}>>;
|
|
16478
|
+
}, z.core.$strip>>;
|
|
15216
16479
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
15217
16480
|
number: z.ZodOptional<z.ZodObject<{
|
|
15218
16481
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -15551,6 +16814,7 @@ declare const cloudContract: {
|
|
|
15551
16814
|
email: "email";
|
|
15552
16815
|
date: "date";
|
|
15553
16816
|
text: "text";
|
|
16817
|
+
whiteboard: "whiteboard";
|
|
15554
16818
|
html: "html";
|
|
15555
16819
|
longtext: "longtext";
|
|
15556
16820
|
markdown: "markdown";
|
|
@@ -15572,6 +16836,8 @@ declare const cloudContract: {
|
|
|
15572
16836
|
code: "code";
|
|
15573
16837
|
json: "json";
|
|
15574
16838
|
yaml: "yaml";
|
|
16839
|
+
formula: "formula";
|
|
16840
|
+
lookup: "lookup";
|
|
15575
16841
|
}>;
|
|
15576
16842
|
required: z.ZodBoolean;
|
|
15577
16843
|
position: z.ZodNumber;
|
|
@@ -15604,7 +16870,27 @@ declare const cloudContract: {
|
|
|
15604
16870
|
height: z.ZodOptional<z.ZodNumber>;
|
|
15605
16871
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
15606
16872
|
}, z.core.$strip>>;
|
|
16873
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
16874
|
+
expression: z.ZodString;
|
|
16875
|
+
}, z.core.$strip>>;
|
|
15607
16876
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
16877
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
16878
|
+
relationFieldSlug: z.ZodString;
|
|
16879
|
+
targetFieldSlug: z.ZodString;
|
|
16880
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
16881
|
+
values: "values";
|
|
16882
|
+
count: "count";
|
|
16883
|
+
sum: "sum";
|
|
16884
|
+
average: "average";
|
|
16885
|
+
min: "min";
|
|
16886
|
+
max: "max";
|
|
16887
|
+
concatenate: "concatenate";
|
|
16888
|
+
}>>>;
|
|
16889
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
16890
|
+
all: "all";
|
|
16891
|
+
first: "first";
|
|
16892
|
+
}>>;
|
|
16893
|
+
}, z.core.$strip>>;
|
|
15608
16894
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
15609
16895
|
number: z.ZodOptional<z.ZodObject<{
|
|
15610
16896
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -15941,6 +17227,7 @@ declare const cloudContract: {
|
|
|
15941
17227
|
email: "email";
|
|
15942
17228
|
date: "date";
|
|
15943
17229
|
text: "text";
|
|
17230
|
+
whiteboard: "whiteboard";
|
|
15944
17231
|
html: "html";
|
|
15945
17232
|
longtext: "longtext";
|
|
15946
17233
|
markdown: "markdown";
|
|
@@ -15962,6 +17249,8 @@ declare const cloudContract: {
|
|
|
15962
17249
|
code: "code";
|
|
15963
17250
|
json: "json";
|
|
15964
17251
|
yaml: "yaml";
|
|
17252
|
+
formula: "formula";
|
|
17253
|
+
lookup: "lookup";
|
|
15965
17254
|
}>;
|
|
15966
17255
|
required: z.ZodBoolean;
|
|
15967
17256
|
position: z.ZodNumber;
|
|
@@ -15994,7 +17283,27 @@ declare const cloudContract: {
|
|
|
15994
17283
|
height: z.ZodOptional<z.ZodNumber>;
|
|
15995
17284
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
15996
17285
|
}, z.core.$strip>>;
|
|
17286
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
17287
|
+
expression: z.ZodString;
|
|
17288
|
+
}, z.core.$strip>>;
|
|
15997
17289
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
17290
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
17291
|
+
relationFieldSlug: z.ZodString;
|
|
17292
|
+
targetFieldSlug: z.ZodString;
|
|
17293
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
17294
|
+
values: "values";
|
|
17295
|
+
count: "count";
|
|
17296
|
+
sum: "sum";
|
|
17297
|
+
average: "average";
|
|
17298
|
+
min: "min";
|
|
17299
|
+
max: "max";
|
|
17300
|
+
concatenate: "concatenate";
|
|
17301
|
+
}>>>;
|
|
17302
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
17303
|
+
all: "all";
|
|
17304
|
+
first: "first";
|
|
17305
|
+
}>>;
|
|
17306
|
+
}, z.core.$strip>>;
|
|
15998
17307
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
15999
17308
|
number: z.ZodOptional<z.ZodObject<{
|
|
16000
17309
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -16326,6 +17635,7 @@ declare const cloudContract: {
|
|
|
16326
17635
|
email: "email";
|
|
16327
17636
|
date: "date";
|
|
16328
17637
|
text: "text";
|
|
17638
|
+
whiteboard: "whiteboard";
|
|
16329
17639
|
html: "html";
|
|
16330
17640
|
longtext: "longtext";
|
|
16331
17641
|
markdown: "markdown";
|
|
@@ -16347,6 +17657,8 @@ declare const cloudContract: {
|
|
|
16347
17657
|
code: "code";
|
|
16348
17658
|
json: "json";
|
|
16349
17659
|
yaml: "yaml";
|
|
17660
|
+
formula: "formula";
|
|
17661
|
+
lookup: "lookup";
|
|
16350
17662
|
}>;
|
|
16351
17663
|
required: z.ZodBoolean;
|
|
16352
17664
|
position: z.ZodNumber;
|
|
@@ -16379,7 +17691,27 @@ declare const cloudContract: {
|
|
|
16379
17691
|
height: z.ZodOptional<z.ZodNumber>;
|
|
16380
17692
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16381
17693
|
}, z.core.$strip>>;
|
|
17694
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
17695
|
+
expression: z.ZodString;
|
|
17696
|
+
}, z.core.$strip>>;
|
|
16382
17697
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
17698
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
17699
|
+
relationFieldSlug: z.ZodString;
|
|
17700
|
+
targetFieldSlug: z.ZodString;
|
|
17701
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
17702
|
+
values: "values";
|
|
17703
|
+
count: "count";
|
|
17704
|
+
sum: "sum";
|
|
17705
|
+
average: "average";
|
|
17706
|
+
min: "min";
|
|
17707
|
+
max: "max";
|
|
17708
|
+
concatenate: "concatenate";
|
|
17709
|
+
}>>>;
|
|
17710
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
17711
|
+
all: "all";
|
|
17712
|
+
first: "first";
|
|
17713
|
+
}>>;
|
|
17714
|
+
}, z.core.$strip>>;
|
|
16383
17715
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
16384
17716
|
number: z.ZodOptional<z.ZodObject<{
|
|
16385
17717
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -16722,6 +18054,7 @@ declare const cloudContract: {
|
|
|
16722
18054
|
email: "email";
|
|
16723
18055
|
date: "date";
|
|
16724
18056
|
text: "text";
|
|
18057
|
+
whiteboard: "whiteboard";
|
|
16725
18058
|
html: "html";
|
|
16726
18059
|
longtext: "longtext";
|
|
16727
18060
|
markdown: "markdown";
|
|
@@ -16743,6 +18076,8 @@ declare const cloudContract: {
|
|
|
16743
18076
|
code: "code";
|
|
16744
18077
|
json: "json";
|
|
16745
18078
|
yaml: "yaml";
|
|
18079
|
+
formula: "formula";
|
|
18080
|
+
lookup: "lookup";
|
|
16746
18081
|
}>;
|
|
16747
18082
|
required: z.ZodBoolean;
|
|
16748
18083
|
position: z.ZodNumber;
|
|
@@ -16775,7 +18110,27 @@ declare const cloudContract: {
|
|
|
16775
18110
|
height: z.ZodOptional<z.ZodNumber>;
|
|
16776
18111
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16777
18112
|
}, z.core.$strip>>;
|
|
18113
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
18114
|
+
expression: z.ZodString;
|
|
18115
|
+
}, z.core.$strip>>;
|
|
16778
18116
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
18117
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
18118
|
+
relationFieldSlug: z.ZodString;
|
|
18119
|
+
targetFieldSlug: z.ZodString;
|
|
18120
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
18121
|
+
values: "values";
|
|
18122
|
+
count: "count";
|
|
18123
|
+
sum: "sum";
|
|
18124
|
+
average: "average";
|
|
18125
|
+
min: "min";
|
|
18126
|
+
max: "max";
|
|
18127
|
+
concatenate: "concatenate";
|
|
18128
|
+
}>>>;
|
|
18129
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
18130
|
+
all: "all";
|
|
18131
|
+
first: "first";
|
|
18132
|
+
}>>;
|
|
18133
|
+
}, z.core.$strip>>;
|
|
16779
18134
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
16780
18135
|
number: z.ZodOptional<z.ZodObject<{
|
|
16781
18136
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -17103,6 +18458,7 @@ declare const cloudContract: {
|
|
|
17103
18458
|
email: "email";
|
|
17104
18459
|
date: "date";
|
|
17105
18460
|
text: "text";
|
|
18461
|
+
whiteboard: "whiteboard";
|
|
17106
18462
|
html: "html";
|
|
17107
18463
|
longtext: "longtext";
|
|
17108
18464
|
markdown: "markdown";
|
|
@@ -17124,6 +18480,8 @@ declare const cloudContract: {
|
|
|
17124
18480
|
code: "code";
|
|
17125
18481
|
json: "json";
|
|
17126
18482
|
yaml: "yaml";
|
|
18483
|
+
formula: "formula";
|
|
18484
|
+
lookup: "lookup";
|
|
17127
18485
|
}>;
|
|
17128
18486
|
required: z.ZodBoolean;
|
|
17129
18487
|
position: z.ZodNumber;
|
|
@@ -17156,7 +18514,27 @@ declare const cloudContract: {
|
|
|
17156
18514
|
height: z.ZodOptional<z.ZodNumber>;
|
|
17157
18515
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
17158
18516
|
}, z.core.$strip>>;
|
|
18517
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
18518
|
+
expression: z.ZodString;
|
|
18519
|
+
}, z.core.$strip>>;
|
|
17159
18520
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
18521
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
18522
|
+
relationFieldSlug: z.ZodString;
|
|
18523
|
+
targetFieldSlug: z.ZodString;
|
|
18524
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
18525
|
+
values: "values";
|
|
18526
|
+
count: "count";
|
|
18527
|
+
sum: "sum";
|
|
18528
|
+
average: "average";
|
|
18529
|
+
min: "min";
|
|
18530
|
+
max: "max";
|
|
18531
|
+
concatenate: "concatenate";
|
|
18532
|
+
}>>>;
|
|
18533
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
18534
|
+
all: "all";
|
|
18535
|
+
first: "first";
|
|
18536
|
+
}>>;
|
|
18537
|
+
}, z.core.$strip>>;
|
|
17160
18538
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
17161
18539
|
number: z.ZodOptional<z.ZodObject<{
|
|
17162
18540
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -17469,6 +18847,7 @@ declare const cloudContract: {
|
|
|
17469
18847
|
email: "email";
|
|
17470
18848
|
date: "date";
|
|
17471
18849
|
text: "text";
|
|
18850
|
+
whiteboard: "whiteboard";
|
|
17472
18851
|
html: "html";
|
|
17473
18852
|
longtext: "longtext";
|
|
17474
18853
|
markdown: "markdown";
|
|
@@ -17490,6 +18869,8 @@ declare const cloudContract: {
|
|
|
17490
18869
|
code: "code";
|
|
17491
18870
|
json: "json";
|
|
17492
18871
|
yaml: "yaml";
|
|
18872
|
+
formula: "formula";
|
|
18873
|
+
lookup: "lookup";
|
|
17493
18874
|
}>;
|
|
17494
18875
|
required: z.ZodBoolean;
|
|
17495
18876
|
position: z.ZodNumber;
|
|
@@ -17522,7 +18903,27 @@ declare const cloudContract: {
|
|
|
17522
18903
|
height: z.ZodOptional<z.ZodNumber>;
|
|
17523
18904
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
17524
18905
|
}, z.core.$strip>>;
|
|
18906
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
18907
|
+
expression: z.ZodString;
|
|
18908
|
+
}, z.core.$strip>>;
|
|
17525
18909
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
18910
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
18911
|
+
relationFieldSlug: z.ZodString;
|
|
18912
|
+
targetFieldSlug: z.ZodString;
|
|
18913
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
18914
|
+
values: "values";
|
|
18915
|
+
count: "count";
|
|
18916
|
+
sum: "sum";
|
|
18917
|
+
average: "average";
|
|
18918
|
+
min: "min";
|
|
18919
|
+
max: "max";
|
|
18920
|
+
concatenate: "concatenate";
|
|
18921
|
+
}>>>;
|
|
18922
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
18923
|
+
all: "all";
|
|
18924
|
+
first: "first";
|
|
18925
|
+
}>>;
|
|
18926
|
+
}, z.core.$strip>>;
|
|
17526
18927
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
17527
18928
|
number: z.ZodOptional<z.ZodObject<{
|
|
17528
18929
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -17745,6 +19146,7 @@ declare const cloudContract: {
|
|
|
17745
19146
|
email: "email";
|
|
17746
19147
|
date: "date";
|
|
17747
19148
|
text: "text";
|
|
19149
|
+
whiteboard: "whiteboard";
|
|
17748
19150
|
html: "html";
|
|
17749
19151
|
longtext: "longtext";
|
|
17750
19152
|
markdown: "markdown";
|
|
@@ -17766,6 +19168,8 @@ declare const cloudContract: {
|
|
|
17766
19168
|
code: "code";
|
|
17767
19169
|
json: "json";
|
|
17768
19170
|
yaml: "yaml";
|
|
19171
|
+
formula: "formula";
|
|
19172
|
+
lookup: "lookup";
|
|
17769
19173
|
}>;
|
|
17770
19174
|
required: z.ZodBoolean;
|
|
17771
19175
|
position: z.ZodNumber;
|
|
@@ -17798,7 +19202,27 @@ declare const cloudContract: {
|
|
|
17798
19202
|
height: z.ZodOptional<z.ZodNumber>;
|
|
17799
19203
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
17800
19204
|
}, z.core.$strip>>;
|
|
19205
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
19206
|
+
expression: z.ZodString;
|
|
19207
|
+
}, z.core.$strip>>;
|
|
17801
19208
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
19209
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
19210
|
+
relationFieldSlug: z.ZodString;
|
|
19211
|
+
targetFieldSlug: z.ZodString;
|
|
19212
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
19213
|
+
values: "values";
|
|
19214
|
+
count: "count";
|
|
19215
|
+
sum: "sum";
|
|
19216
|
+
average: "average";
|
|
19217
|
+
min: "min";
|
|
19218
|
+
max: "max";
|
|
19219
|
+
concatenate: "concatenate";
|
|
19220
|
+
}>>>;
|
|
19221
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
19222
|
+
all: "all";
|
|
19223
|
+
first: "first";
|
|
19224
|
+
}>>;
|
|
19225
|
+
}, z.core.$strip>>;
|
|
17802
19226
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
17803
19227
|
number: z.ZodOptional<z.ZodObject<{
|
|
17804
19228
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -18115,6 +19539,7 @@ declare const cloudContract: {
|
|
|
18115
19539
|
email: "email";
|
|
18116
19540
|
date: "date";
|
|
18117
19541
|
text: "text";
|
|
19542
|
+
whiteboard: "whiteboard";
|
|
18118
19543
|
html: "html";
|
|
18119
19544
|
longtext: "longtext";
|
|
18120
19545
|
markdown: "markdown";
|
|
@@ -18136,6 +19561,8 @@ declare const cloudContract: {
|
|
|
18136
19561
|
code: "code";
|
|
18137
19562
|
json: "json";
|
|
18138
19563
|
yaml: "yaml";
|
|
19564
|
+
formula: "formula";
|
|
19565
|
+
lookup: "lookup";
|
|
18139
19566
|
}>;
|
|
18140
19567
|
required: z.ZodBoolean;
|
|
18141
19568
|
position: z.ZodNumber;
|
|
@@ -18168,7 +19595,27 @@ declare const cloudContract: {
|
|
|
18168
19595
|
height: z.ZodOptional<z.ZodNumber>;
|
|
18169
19596
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
18170
19597
|
}, z.core.$strip>>;
|
|
19598
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
19599
|
+
expression: z.ZodString;
|
|
19600
|
+
}, z.core.$strip>>;
|
|
18171
19601
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
19602
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
19603
|
+
relationFieldSlug: z.ZodString;
|
|
19604
|
+
targetFieldSlug: z.ZodString;
|
|
19605
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
19606
|
+
values: "values";
|
|
19607
|
+
count: "count";
|
|
19608
|
+
sum: "sum";
|
|
19609
|
+
average: "average";
|
|
19610
|
+
min: "min";
|
|
19611
|
+
max: "max";
|
|
19612
|
+
concatenate: "concatenate";
|
|
19613
|
+
}>>>;
|
|
19614
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
19615
|
+
all: "all";
|
|
19616
|
+
first: "first";
|
|
19617
|
+
}>>;
|
|
19618
|
+
}, z.core.$strip>>;
|
|
18172
19619
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
18173
19620
|
number: z.ZodOptional<z.ZodObject<{
|
|
18174
19621
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -18313,6 +19760,7 @@ declare const cloudContract: {
|
|
|
18313
19760
|
email: "email";
|
|
18314
19761
|
date: "date";
|
|
18315
19762
|
text: "text";
|
|
19763
|
+
whiteboard: "whiteboard";
|
|
18316
19764
|
html: "html";
|
|
18317
19765
|
longtext: "longtext";
|
|
18318
19766
|
markdown: "markdown";
|
|
@@ -18334,6 +19782,8 @@ declare const cloudContract: {
|
|
|
18334
19782
|
code: "code";
|
|
18335
19783
|
json: "json";
|
|
18336
19784
|
yaml: "yaml";
|
|
19785
|
+
formula: "formula";
|
|
19786
|
+
lookup: "lookup";
|
|
18337
19787
|
}>;
|
|
18338
19788
|
required: z.ZodBoolean;
|
|
18339
19789
|
position: z.ZodNumber;
|
|
@@ -18366,7 +19816,27 @@ declare const cloudContract: {
|
|
|
18366
19816
|
height: z.ZodOptional<z.ZodNumber>;
|
|
18367
19817
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
18368
19818
|
}, z.core.$strip>>;
|
|
19819
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
19820
|
+
expression: z.ZodString;
|
|
19821
|
+
}, z.core.$strip>>;
|
|
18369
19822
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
19823
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
19824
|
+
relationFieldSlug: z.ZodString;
|
|
19825
|
+
targetFieldSlug: z.ZodString;
|
|
19826
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
19827
|
+
values: "values";
|
|
19828
|
+
count: "count";
|
|
19829
|
+
sum: "sum";
|
|
19830
|
+
average: "average";
|
|
19831
|
+
min: "min";
|
|
19832
|
+
max: "max";
|
|
19833
|
+
concatenate: "concatenate";
|
|
19834
|
+
}>>>;
|
|
19835
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
19836
|
+
all: "all";
|
|
19837
|
+
first: "first";
|
|
19838
|
+
}>>;
|
|
19839
|
+
}, z.core.$strip>>;
|
|
18370
19840
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
18371
19841
|
number: z.ZodOptional<z.ZodObject<{
|
|
18372
19842
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -18494,6 +19964,7 @@ declare const cloudContract: {
|
|
|
18494
19964
|
email: "email";
|
|
18495
19965
|
date: "date";
|
|
18496
19966
|
text: "text";
|
|
19967
|
+
whiteboard: "whiteboard";
|
|
18497
19968
|
html: "html";
|
|
18498
19969
|
longtext: "longtext";
|
|
18499
19970
|
markdown: "markdown";
|
|
@@ -18515,6 +19986,8 @@ declare const cloudContract: {
|
|
|
18515
19986
|
code: "code";
|
|
18516
19987
|
json: "json";
|
|
18517
19988
|
yaml: "yaml";
|
|
19989
|
+
formula: "formula";
|
|
19990
|
+
lookup: "lookup";
|
|
18518
19991
|
}>;
|
|
18519
19992
|
required: z.ZodBoolean;
|
|
18520
19993
|
position: z.ZodNumber;
|
|
@@ -18547,7 +20020,27 @@ declare const cloudContract: {
|
|
|
18547
20020
|
height: z.ZodOptional<z.ZodNumber>;
|
|
18548
20021
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
18549
20022
|
}, z.core.$strip>>;
|
|
20023
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
20024
|
+
expression: z.ZodString;
|
|
20025
|
+
}, z.core.$strip>>;
|
|
18550
20026
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
20027
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
20028
|
+
relationFieldSlug: z.ZodString;
|
|
20029
|
+
targetFieldSlug: z.ZodString;
|
|
20030
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
20031
|
+
values: "values";
|
|
20032
|
+
count: "count";
|
|
20033
|
+
sum: "sum";
|
|
20034
|
+
average: "average";
|
|
20035
|
+
min: "min";
|
|
20036
|
+
max: "max";
|
|
20037
|
+
concatenate: "concatenate";
|
|
20038
|
+
}>>>;
|
|
20039
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
20040
|
+
all: "all";
|
|
20041
|
+
first: "first";
|
|
20042
|
+
}>>;
|
|
20043
|
+
}, z.core.$strip>>;
|
|
18551
20044
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
18552
20045
|
number: z.ZodOptional<z.ZodObject<{
|
|
18553
20046
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -18671,6 +20164,7 @@ declare const cloudContract: {
|
|
|
18671
20164
|
email: "email";
|
|
18672
20165
|
date: "date";
|
|
18673
20166
|
text: "text";
|
|
20167
|
+
whiteboard: "whiteboard";
|
|
18674
20168
|
html: "html";
|
|
18675
20169
|
longtext: "longtext";
|
|
18676
20170
|
markdown: "markdown";
|
|
@@ -18692,6 +20186,8 @@ declare const cloudContract: {
|
|
|
18692
20186
|
code: "code";
|
|
18693
20187
|
json: "json";
|
|
18694
20188
|
yaml: "yaml";
|
|
20189
|
+
formula: "formula";
|
|
20190
|
+
lookup: "lookup";
|
|
18695
20191
|
}>;
|
|
18696
20192
|
required: z.ZodBoolean;
|
|
18697
20193
|
position: z.ZodNumber;
|
|
@@ -18724,7 +20220,226 @@ declare const cloudContract: {
|
|
|
18724
20220
|
height: z.ZodOptional<z.ZodNumber>;
|
|
18725
20221
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
18726
20222
|
}, z.core.$strip>>;
|
|
20223
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
20224
|
+
expression: z.ZodString;
|
|
20225
|
+
}, z.core.$strip>>;
|
|
18727
20226
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
20227
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
20228
|
+
relationFieldSlug: z.ZodString;
|
|
20229
|
+
targetFieldSlug: z.ZodString;
|
|
20230
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
20231
|
+
values: "values";
|
|
20232
|
+
count: "count";
|
|
20233
|
+
sum: "sum";
|
|
20234
|
+
average: "average";
|
|
20235
|
+
min: "min";
|
|
20236
|
+
max: "max";
|
|
20237
|
+
concatenate: "concatenate";
|
|
20238
|
+
}>>>;
|
|
20239
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
20240
|
+
all: "all";
|
|
20241
|
+
first: "first";
|
|
20242
|
+
}>>;
|
|
20243
|
+
}, z.core.$strip>>;
|
|
20244
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
20245
|
+
number: z.ZodOptional<z.ZodObject<{
|
|
20246
|
+
format: z.ZodOptional<z.ZodEnum<{
|
|
20247
|
+
plain: "plain";
|
|
20248
|
+
currency: "currency";
|
|
20249
|
+
}>>;
|
|
20250
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
20251
|
+
locale: z.ZodOptional<z.ZodString>;
|
|
20252
|
+
}, z.core.$strip>>;
|
|
20253
|
+
targetBaseId: z.ZodOptional<z.ZodString>;
|
|
20254
|
+
targetBaseSlug: z.ZodOptional<z.ZodString>;
|
|
20255
|
+
}, z.core.$strip>>;
|
|
20256
|
+
}, z.core.$strip>>;
|
|
20257
|
+
}, z.core.$strip>;
|
|
20258
|
+
headCommit: z.ZodObject<{
|
|
20259
|
+
id: z.ZodString;
|
|
20260
|
+
baseId: z.ZodNullable<z.ZodString>;
|
|
20261
|
+
targetType: z.ZodEnum<{
|
|
20262
|
+
base: "base";
|
|
20263
|
+
node: "node";
|
|
20264
|
+
}>;
|
|
20265
|
+
nodeId: z.ZodNullable<z.ZodString>;
|
|
20266
|
+
operationId: z.ZodNullable<z.ZodString>;
|
|
20267
|
+
parentCommitId: z.ZodNullable<z.ZodString>;
|
|
20268
|
+
fields: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
20269
|
+
operation: z.ZodEnum<{
|
|
20270
|
+
[x: `${string}_file_create`]: `${string}_file_create`;
|
|
20271
|
+
[x: `${string}_file_update`]: `${string}_file_update`;
|
|
20272
|
+
[x: `${string}_file_delete`]: `${string}_file_delete`;
|
|
20273
|
+
[x: `${string}_metadata_update`]: `${string}_metadata_update`;
|
|
20274
|
+
record_create: "record_create";
|
|
20275
|
+
record_update: "record_update";
|
|
20276
|
+
record_delete: "record_delete";
|
|
20277
|
+
record_variant: "record_variant";
|
|
20278
|
+
view_create: "view_create";
|
|
20279
|
+
view_update: "view_update";
|
|
20280
|
+
view_delete: "view_delete";
|
|
20281
|
+
view_restore: "view_restore";
|
|
20282
|
+
base_add_field: "base_add_field";
|
|
20283
|
+
base_delete_field: "base_delete_field";
|
|
20284
|
+
base_update_field: "base_update_field";
|
|
20285
|
+
base_convert_field: "base_convert_field";
|
|
20286
|
+
base_reorder_fields: "base_reorder_fields";
|
|
20287
|
+
base_restore_field: "base_restore_field";
|
|
20288
|
+
base_archive: "base_archive";
|
|
20289
|
+
base_restore: "base_restore";
|
|
20290
|
+
record_restore: "record_restore";
|
|
20291
|
+
doc_update: "doc_update";
|
|
20292
|
+
node_create: "node_create";
|
|
20293
|
+
node_rename: "node_rename";
|
|
20294
|
+
node_delete: "node_delete";
|
|
20295
|
+
node_restore: "node_restore";
|
|
20296
|
+
node_move: "node_move";
|
|
20297
|
+
}>;
|
|
20298
|
+
message: z.ZodString;
|
|
20299
|
+
author: z.ZodString;
|
|
20300
|
+
authorUser: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
20301
|
+
id: z.ZodString;
|
|
20302
|
+
name: z.ZodNullable<z.ZodString>;
|
|
20303
|
+
email: z.ZodNullable<z.ZodString>;
|
|
20304
|
+
image: z.ZodNullable<z.ZodString>;
|
|
20305
|
+
role: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20306
|
+
}, z.core.$strip>>>>;
|
|
20307
|
+
createdAt: z.ZodString;
|
|
20308
|
+
}, z.core.$strip>;
|
|
20309
|
+
}, z.core.$strip>>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
20310
|
+
getByField: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
20311
|
+
baseId: z.ZodString;
|
|
20312
|
+
fieldSlug: z.ZodString;
|
|
20313
|
+
valueText: z.ZodString;
|
|
20314
|
+
}, z.core.$strip>, z.ZodNullable<z.ZodObject<{
|
|
20315
|
+
id: z.ZodString;
|
|
20316
|
+
baseId: z.ZodString;
|
|
20317
|
+
headCommitId: z.ZodString;
|
|
20318
|
+
parentRecordId: z.ZodNullable<z.ZodString>;
|
|
20319
|
+
parentCommitId: z.ZodNullable<z.ZodString>;
|
|
20320
|
+
status: z.ZodEnum<{
|
|
20321
|
+
archived: "archived";
|
|
20322
|
+
active: "active";
|
|
20323
|
+
}>;
|
|
20324
|
+
createdBy: z.ZodString;
|
|
20325
|
+
createdByUser: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
20326
|
+
id: z.ZodString;
|
|
20327
|
+
name: z.ZodNullable<z.ZodString>;
|
|
20328
|
+
email: z.ZodNullable<z.ZodString>;
|
|
20329
|
+
image: z.ZodNullable<z.ZodString>;
|
|
20330
|
+
role: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20331
|
+
}, z.core.$strip>>>>;
|
|
20332
|
+
archivedAt: z.ZodNullable<z.ZodString>;
|
|
20333
|
+
createdAt: z.ZodString;
|
|
20334
|
+
updatedAt: z.ZodString;
|
|
20335
|
+
base: z.ZodObject<{
|
|
20336
|
+
id: z.ZodString;
|
|
20337
|
+
nodeId: z.ZodString;
|
|
20338
|
+
slug: z.ZodString;
|
|
20339
|
+
name: z.ZodString;
|
|
20340
|
+
description: z.ZodString;
|
|
20341
|
+
reviewPolicy: z.ZodObject<{
|
|
20342
|
+
kind: z.ZodLiteral<"single">;
|
|
20343
|
+
requiredApprovals: z.ZodNumber;
|
|
20344
|
+
}, z.core.$strip>;
|
|
20345
|
+
createdAt: z.ZodString;
|
|
20346
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
20347
|
+
id: z.ZodString;
|
|
20348
|
+
baseId: z.ZodString;
|
|
20349
|
+
slug: z.ZodString;
|
|
20350
|
+
name: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodEnum<{
|
|
20351
|
+
en: "en";
|
|
20352
|
+
"zh-CN": "zh-CN";
|
|
20353
|
+
"zh-TW": "zh-TW";
|
|
20354
|
+
ja: "ja";
|
|
20355
|
+
ko: "ko";
|
|
20356
|
+
de: "de";
|
|
20357
|
+
fr: "fr";
|
|
20358
|
+
es: "es";
|
|
20359
|
+
pt: "pt";
|
|
20360
|
+
}> & z.core.$partial, z.ZodString>]>;
|
|
20361
|
+
type: z.ZodEnum<{
|
|
20362
|
+
number: "number";
|
|
20363
|
+
email: "email";
|
|
20364
|
+
date: "date";
|
|
20365
|
+
text: "text";
|
|
20366
|
+
whiteboard: "whiteboard";
|
|
20367
|
+
html: "html";
|
|
20368
|
+
longtext: "longtext";
|
|
20369
|
+
markdown: "markdown";
|
|
20370
|
+
attachment: "attachment";
|
|
20371
|
+
relation: "relation";
|
|
20372
|
+
checkbox: "checkbox";
|
|
20373
|
+
select: "select";
|
|
20374
|
+
multiselect: "multiselect";
|
|
20375
|
+
url: "url";
|
|
20376
|
+
embed: "embed";
|
|
20377
|
+
phone: "phone";
|
|
20378
|
+
created_time: "created_time";
|
|
20379
|
+
updated_time: "updated_time";
|
|
20380
|
+
created_by: "created_by";
|
|
20381
|
+
updated_by: "updated_by";
|
|
20382
|
+
auto_number: "auto_number";
|
|
20383
|
+
ai_summary: "ai_summary";
|
|
20384
|
+
ai_tags: "ai_tags";
|
|
20385
|
+
code: "code";
|
|
20386
|
+
json: "json";
|
|
20387
|
+
yaml: "yaml";
|
|
20388
|
+
formula: "formula";
|
|
20389
|
+
lookup: "lookup";
|
|
20390
|
+
}>;
|
|
20391
|
+
required: z.ZodBoolean;
|
|
20392
|
+
position: z.ZodNumber;
|
|
20393
|
+
options: z.ZodDefault<z.ZodObject<{
|
|
20394
|
+
ai: z.ZodOptional<z.ZodObject<{
|
|
20395
|
+
model: z.ZodOptional<z.ZodString>;
|
|
20396
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
20397
|
+
reviewRequired: z.ZodOptional<z.ZodBoolean>;
|
|
20398
|
+
sourceFieldIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
20399
|
+
}, z.core.$strip>>;
|
|
20400
|
+
attachment: z.ZodOptional<z.ZodObject<{
|
|
20401
|
+
maxFiles: z.ZodOptional<z.ZodNumber>;
|
|
20402
|
+
allowedMimeTypes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
20403
|
+
maxFileSize: z.ZodOptional<z.ZodNumber>;
|
|
20404
|
+
}, z.core.$strip>>;
|
|
20405
|
+
choices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20406
|
+
color: z.ZodOptional<z.ZodString>;
|
|
20407
|
+
id: z.ZodString;
|
|
20408
|
+
name: z.ZodString;
|
|
20409
|
+
}, z.core.$strip>>>;
|
|
20410
|
+
code: z.ZodOptional<z.ZodObject<{
|
|
20411
|
+
language: z.ZodOptional<z.ZodString>;
|
|
20412
|
+
}, z.core.$strip>>;
|
|
20413
|
+
embed: z.ZodOptional<z.ZodObject<{
|
|
20414
|
+
aspectRatio: z.ZodOptional<z.ZodEnum<{
|
|
20415
|
+
"16:9": "16:9";
|
|
20416
|
+
"4:3": "4:3";
|
|
20417
|
+
"1:1": "1:1";
|
|
20418
|
+
}>>;
|
|
20419
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
20420
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
20421
|
+
}, z.core.$strip>>;
|
|
20422
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
20423
|
+
expression: z.ZodString;
|
|
20424
|
+
}, z.core.$strip>>;
|
|
20425
|
+
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
20426
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
20427
|
+
relationFieldSlug: z.ZodString;
|
|
20428
|
+
targetFieldSlug: z.ZodString;
|
|
20429
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
20430
|
+
values: "values";
|
|
20431
|
+
count: "count";
|
|
20432
|
+
sum: "sum";
|
|
20433
|
+
average: "average";
|
|
20434
|
+
min: "min";
|
|
20435
|
+
max: "max";
|
|
20436
|
+
concatenate: "concatenate";
|
|
20437
|
+
}>>>;
|
|
20438
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
20439
|
+
all: "all";
|
|
20440
|
+
first: "first";
|
|
20441
|
+
}>>;
|
|
20442
|
+
}, z.core.$strip>>;
|
|
18728
20443
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
18729
20444
|
number: z.ZodOptional<z.ZodObject<{
|
|
18730
20445
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -18861,6 +20576,7 @@ declare const cloudContract: {
|
|
|
18861
20576
|
email: "email";
|
|
18862
20577
|
date: "date";
|
|
18863
20578
|
text: "text";
|
|
20579
|
+
whiteboard: "whiteboard";
|
|
18864
20580
|
html: "html";
|
|
18865
20581
|
longtext: "longtext";
|
|
18866
20582
|
markdown: "markdown";
|
|
@@ -18882,6 +20598,8 @@ declare const cloudContract: {
|
|
|
18882
20598
|
code: "code";
|
|
18883
20599
|
json: "json";
|
|
18884
20600
|
yaml: "yaml";
|
|
20601
|
+
formula: "formula";
|
|
20602
|
+
lookup: "lookup";
|
|
18885
20603
|
}>;
|
|
18886
20604
|
required: z.ZodBoolean;
|
|
18887
20605
|
position: z.ZodNumber;
|
|
@@ -18914,7 +20632,27 @@ declare const cloudContract: {
|
|
|
18914
20632
|
height: z.ZodOptional<z.ZodNumber>;
|
|
18915
20633
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
18916
20634
|
}, z.core.$strip>>;
|
|
20635
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
20636
|
+
expression: z.ZodString;
|
|
20637
|
+
}, z.core.$strip>>;
|
|
18917
20638
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
20639
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
20640
|
+
relationFieldSlug: z.ZodString;
|
|
20641
|
+
targetFieldSlug: z.ZodString;
|
|
20642
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
20643
|
+
values: "values";
|
|
20644
|
+
count: "count";
|
|
20645
|
+
sum: "sum";
|
|
20646
|
+
average: "average";
|
|
20647
|
+
min: "min";
|
|
20648
|
+
max: "max";
|
|
20649
|
+
concatenate: "concatenate";
|
|
20650
|
+
}>>>;
|
|
20651
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
20652
|
+
all: "all";
|
|
20653
|
+
first: "first";
|
|
20654
|
+
}>>;
|
|
20655
|
+
}, z.core.$strip>>;
|
|
18918
20656
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
18919
20657
|
number: z.ZodOptional<z.ZodObject<{
|
|
18920
20658
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -19246,6 +20984,7 @@ declare const cloudContract: {
|
|
|
19246
20984
|
email: "email";
|
|
19247
20985
|
date: "date";
|
|
19248
20986
|
text: "text";
|
|
20987
|
+
whiteboard: "whiteboard";
|
|
19249
20988
|
html: "html";
|
|
19250
20989
|
longtext: "longtext";
|
|
19251
20990
|
markdown: "markdown";
|
|
@@ -19267,6 +21006,8 @@ declare const cloudContract: {
|
|
|
19267
21006
|
code: "code";
|
|
19268
21007
|
json: "json";
|
|
19269
21008
|
yaml: "yaml";
|
|
21009
|
+
formula: "formula";
|
|
21010
|
+
lookup: "lookup";
|
|
19270
21011
|
}>;
|
|
19271
21012
|
required: z.ZodBoolean;
|
|
19272
21013
|
position: z.ZodNumber;
|
|
@@ -19299,7 +21040,27 @@ declare const cloudContract: {
|
|
|
19299
21040
|
height: z.ZodOptional<z.ZodNumber>;
|
|
19300
21041
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
19301
21042
|
}, z.core.$strip>>;
|
|
21043
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
21044
|
+
expression: z.ZodString;
|
|
21045
|
+
}, z.core.$strip>>;
|
|
19302
21046
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
21047
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
21048
|
+
relationFieldSlug: z.ZodString;
|
|
21049
|
+
targetFieldSlug: z.ZodString;
|
|
21050
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
21051
|
+
values: "values";
|
|
21052
|
+
count: "count";
|
|
21053
|
+
sum: "sum";
|
|
21054
|
+
average: "average";
|
|
21055
|
+
min: "min";
|
|
21056
|
+
max: "max";
|
|
21057
|
+
concatenate: "concatenate";
|
|
21058
|
+
}>>>;
|
|
21059
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
21060
|
+
all: "all";
|
|
21061
|
+
first: "first";
|
|
21062
|
+
}>>;
|
|
21063
|
+
}, z.core.$strip>>;
|
|
19303
21064
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
19304
21065
|
number: z.ZodOptional<z.ZodObject<{
|
|
19305
21066
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -19626,6 +21387,7 @@ declare const cloudContract: {
|
|
|
19626
21387
|
email: "email";
|
|
19627
21388
|
date: "date";
|
|
19628
21389
|
text: "text";
|
|
21390
|
+
whiteboard: "whiteboard";
|
|
19629
21391
|
html: "html";
|
|
19630
21392
|
longtext: "longtext";
|
|
19631
21393
|
markdown: "markdown";
|
|
@@ -19647,6 +21409,8 @@ declare const cloudContract: {
|
|
|
19647
21409
|
code: "code";
|
|
19648
21410
|
json: "json";
|
|
19649
21411
|
yaml: "yaml";
|
|
21412
|
+
formula: "formula";
|
|
21413
|
+
lookup: "lookup";
|
|
19650
21414
|
}>;
|
|
19651
21415
|
required: z.ZodBoolean;
|
|
19652
21416
|
position: z.ZodNumber;
|
|
@@ -19679,7 +21443,27 @@ declare const cloudContract: {
|
|
|
19679
21443
|
height: z.ZodOptional<z.ZodNumber>;
|
|
19680
21444
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
19681
21445
|
}, z.core.$strip>>;
|
|
21446
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
21447
|
+
expression: z.ZodString;
|
|
21448
|
+
}, z.core.$strip>>;
|
|
19682
21449
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
21450
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
21451
|
+
relationFieldSlug: z.ZodString;
|
|
21452
|
+
targetFieldSlug: z.ZodString;
|
|
21453
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
21454
|
+
values: "values";
|
|
21455
|
+
count: "count";
|
|
21456
|
+
sum: "sum";
|
|
21457
|
+
average: "average";
|
|
21458
|
+
min: "min";
|
|
21459
|
+
max: "max";
|
|
21460
|
+
concatenate: "concatenate";
|
|
21461
|
+
}>>>;
|
|
21462
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
21463
|
+
all: "all";
|
|
21464
|
+
first: "first";
|
|
21465
|
+
}>>;
|
|
21466
|
+
}, z.core.$strip>>;
|
|
19683
21467
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
19684
21468
|
number: z.ZodOptional<z.ZodObject<{
|
|
19685
21469
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -20008,6 +21792,7 @@ declare const cloudContract: {
|
|
|
20008
21792
|
email: "email";
|
|
20009
21793
|
date: "date";
|
|
20010
21794
|
text: "text";
|
|
21795
|
+
whiteboard: "whiteboard";
|
|
20011
21796
|
html: "html";
|
|
20012
21797
|
longtext: "longtext";
|
|
20013
21798
|
markdown: "markdown";
|
|
@@ -20029,6 +21814,8 @@ declare const cloudContract: {
|
|
|
20029
21814
|
code: "code";
|
|
20030
21815
|
json: "json";
|
|
20031
21816
|
yaml: "yaml";
|
|
21817
|
+
formula: "formula";
|
|
21818
|
+
lookup: "lookup";
|
|
20032
21819
|
}>;
|
|
20033
21820
|
required: z.ZodBoolean;
|
|
20034
21821
|
position: z.ZodNumber;
|
|
@@ -20061,7 +21848,27 @@ declare const cloudContract: {
|
|
|
20061
21848
|
height: z.ZodOptional<z.ZodNumber>;
|
|
20062
21849
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
20063
21850
|
}, z.core.$strip>>;
|
|
21851
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
21852
|
+
expression: z.ZodString;
|
|
21853
|
+
}, z.core.$strip>>;
|
|
20064
21854
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
21855
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
21856
|
+
relationFieldSlug: z.ZodString;
|
|
21857
|
+
targetFieldSlug: z.ZodString;
|
|
21858
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
21859
|
+
values: "values";
|
|
21860
|
+
count: "count";
|
|
21861
|
+
sum: "sum";
|
|
21862
|
+
average: "average";
|
|
21863
|
+
min: "min";
|
|
21864
|
+
max: "max";
|
|
21865
|
+
concatenate: "concatenate";
|
|
21866
|
+
}>>>;
|
|
21867
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
21868
|
+
all: "all";
|
|
21869
|
+
first: "first";
|
|
21870
|
+
}>>;
|
|
21871
|
+
}, z.core.$strip>>;
|
|
20065
21872
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
20066
21873
|
number: z.ZodOptional<z.ZodObject<{
|
|
20067
21874
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -20460,6 +22267,7 @@ declare const cloudContract: {
|
|
|
20460
22267
|
email: "email";
|
|
20461
22268
|
date: "date";
|
|
20462
22269
|
text: "text";
|
|
22270
|
+
whiteboard: "whiteboard";
|
|
20463
22271
|
html: "html";
|
|
20464
22272
|
longtext: "longtext";
|
|
20465
22273
|
markdown: "markdown";
|
|
@@ -20481,6 +22289,8 @@ declare const cloudContract: {
|
|
|
20481
22289
|
code: "code";
|
|
20482
22290
|
json: "json";
|
|
20483
22291
|
yaml: "yaml";
|
|
22292
|
+
formula: "formula";
|
|
22293
|
+
lookup: "lookup";
|
|
20484
22294
|
}>;
|
|
20485
22295
|
required: z.ZodBoolean;
|
|
20486
22296
|
position: z.ZodNumber;
|
|
@@ -20513,7 +22323,27 @@ declare const cloudContract: {
|
|
|
20513
22323
|
height: z.ZodOptional<z.ZodNumber>;
|
|
20514
22324
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
20515
22325
|
}, z.core.$strip>>;
|
|
22326
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
22327
|
+
expression: z.ZodString;
|
|
22328
|
+
}, z.core.$strip>>;
|
|
20516
22329
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
22330
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
22331
|
+
relationFieldSlug: z.ZodString;
|
|
22332
|
+
targetFieldSlug: z.ZodString;
|
|
22333
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
22334
|
+
values: "values";
|
|
22335
|
+
count: "count";
|
|
22336
|
+
sum: "sum";
|
|
22337
|
+
average: "average";
|
|
22338
|
+
min: "min";
|
|
22339
|
+
max: "max";
|
|
22340
|
+
concatenate: "concatenate";
|
|
22341
|
+
}>>>;
|
|
22342
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
22343
|
+
all: "all";
|
|
22344
|
+
first: "first";
|
|
22345
|
+
}>>;
|
|
22346
|
+
}, z.core.$strip>>;
|
|
20517
22347
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
20518
22348
|
number: z.ZodOptional<z.ZodObject<{
|
|
20519
22349
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -20842,6 +22672,7 @@ declare const cloudContract: {
|
|
|
20842
22672
|
email: "email";
|
|
20843
22673
|
date: "date";
|
|
20844
22674
|
text: "text";
|
|
22675
|
+
whiteboard: "whiteboard";
|
|
20845
22676
|
html: "html";
|
|
20846
22677
|
longtext: "longtext";
|
|
20847
22678
|
markdown: "markdown";
|
|
@@ -20863,6 +22694,8 @@ declare const cloudContract: {
|
|
|
20863
22694
|
code: "code";
|
|
20864
22695
|
json: "json";
|
|
20865
22696
|
yaml: "yaml";
|
|
22697
|
+
formula: "formula";
|
|
22698
|
+
lookup: "lookup";
|
|
20866
22699
|
}>;
|
|
20867
22700
|
required: z.ZodBoolean;
|
|
20868
22701
|
position: z.ZodNumber;
|
|
@@ -20895,7 +22728,27 @@ declare const cloudContract: {
|
|
|
20895
22728
|
height: z.ZodOptional<z.ZodNumber>;
|
|
20896
22729
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
20897
22730
|
}, z.core.$strip>>;
|
|
22731
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
22732
|
+
expression: z.ZodString;
|
|
22733
|
+
}, z.core.$strip>>;
|
|
20898
22734
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
22735
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
22736
|
+
relationFieldSlug: z.ZodString;
|
|
22737
|
+
targetFieldSlug: z.ZodString;
|
|
22738
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
22739
|
+
values: "values";
|
|
22740
|
+
count: "count";
|
|
22741
|
+
sum: "sum";
|
|
22742
|
+
average: "average";
|
|
22743
|
+
min: "min";
|
|
22744
|
+
max: "max";
|
|
22745
|
+
concatenate: "concatenate";
|
|
22746
|
+
}>>>;
|
|
22747
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
22748
|
+
all: "all";
|
|
22749
|
+
first: "first";
|
|
22750
|
+
}>>;
|
|
22751
|
+
}, z.core.$strip>>;
|
|
20899
22752
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
20900
22753
|
number: z.ZodOptional<z.ZodObject<{
|
|
20901
22754
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -21224,6 +23077,7 @@ declare const cloudContract: {
|
|
|
21224
23077
|
email: "email";
|
|
21225
23078
|
date: "date";
|
|
21226
23079
|
text: "text";
|
|
23080
|
+
whiteboard: "whiteboard";
|
|
21227
23081
|
html: "html";
|
|
21228
23082
|
longtext: "longtext";
|
|
21229
23083
|
markdown: "markdown";
|
|
@@ -21245,6 +23099,8 @@ declare const cloudContract: {
|
|
|
21245
23099
|
code: "code";
|
|
21246
23100
|
json: "json";
|
|
21247
23101
|
yaml: "yaml";
|
|
23102
|
+
formula: "formula";
|
|
23103
|
+
lookup: "lookup";
|
|
21248
23104
|
}>;
|
|
21249
23105
|
required: z.ZodBoolean;
|
|
21250
23106
|
position: z.ZodNumber;
|
|
@@ -21277,7 +23133,27 @@ declare const cloudContract: {
|
|
|
21277
23133
|
height: z.ZodOptional<z.ZodNumber>;
|
|
21278
23134
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
21279
23135
|
}, z.core.$strip>>;
|
|
23136
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
23137
|
+
expression: z.ZodString;
|
|
23138
|
+
}, z.core.$strip>>;
|
|
21280
23139
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
23140
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
23141
|
+
relationFieldSlug: z.ZodString;
|
|
23142
|
+
targetFieldSlug: z.ZodString;
|
|
23143
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
23144
|
+
values: "values";
|
|
23145
|
+
count: "count";
|
|
23146
|
+
sum: "sum";
|
|
23147
|
+
average: "average";
|
|
23148
|
+
min: "min";
|
|
23149
|
+
max: "max";
|
|
23150
|
+
concatenate: "concatenate";
|
|
23151
|
+
}>>>;
|
|
23152
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
23153
|
+
all: "all";
|
|
23154
|
+
first: "first";
|
|
23155
|
+
}>>;
|
|
23156
|
+
}, z.core.$strip>>;
|
|
21281
23157
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
21282
23158
|
number: z.ZodOptional<z.ZodObject<{
|
|
21283
23159
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -21728,7 +23604,16 @@ interface BaseFieldVO {
|
|
|
21728
23604
|
height?: number;
|
|
21729
23605
|
providers?: string[];
|
|
21730
23606
|
};
|
|
23607
|
+
formula?: {
|
|
23608
|
+
expression: string;
|
|
23609
|
+
};
|
|
21731
23610
|
inverseFieldId?: string;
|
|
23611
|
+
lookup?: {
|
|
23612
|
+
relationFieldSlug: string;
|
|
23613
|
+
targetFieldSlug: string;
|
|
23614
|
+
rollup?: LookupRollup;
|
|
23615
|
+
limit?: "all" | "first";
|
|
23616
|
+
};
|
|
21732
23617
|
multiple?: boolean;
|
|
21733
23618
|
targetBaseId?: string;
|
|
21734
23619
|
number?: {
|
|
@@ -21829,6 +23714,164 @@ interface RecordLinkVO {
|
|
|
21829
23714
|
updatedAt: string;
|
|
21830
23715
|
}
|
|
21831
23716
|
|
|
23717
|
+
/**
|
|
23718
|
+
* One input-to-field mapping. `inputName` is the name the agent-authored page
|
|
23719
|
+
* uses for a control; `fieldSlug` is the target Base field it writes to.
|
|
23720
|
+
* `required`/`label`/`help` are per-form overrides that DON'T mutate the Base
|
|
23721
|
+
* field definition (fixing APITable's "form not self-contained" limitation).
|
|
23722
|
+
*/
|
|
23723
|
+
declare const FormFieldBindingSchema: z.ZodObject<{
|
|
23724
|
+
inputName: z.ZodString;
|
|
23725
|
+
fieldSlug: z.ZodString;
|
|
23726
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
23727
|
+
label: z.ZodOptional<z.ZodString>;
|
|
23728
|
+
help: z.ZodOptional<z.ZodString>;
|
|
23729
|
+
}, z.core.$strip>;
|
|
23730
|
+
type FormFieldBindingVO = z.infer<typeof FormFieldBindingSchema>;
|
|
23731
|
+
/** Optional theme tokens layered over the agent-authored page. */
|
|
23732
|
+
declare const FormThemeSchema: z.ZodObject<{
|
|
23733
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
23734
|
+
coverUrl: z.ZodOptional<z.ZodString>;
|
|
23735
|
+
brandColor: z.ZodOptional<z.ZodString>;
|
|
23736
|
+
hideBranding: z.ZodOptional<z.ZodBoolean>;
|
|
23737
|
+
}, z.core.$strip>;
|
|
23738
|
+
type FormThemeVO = z.infer<typeof FormThemeSchema>;
|
|
23739
|
+
/**
|
|
23740
|
+
* Page source: ONE HTML document the agent authors — `<style>`/`<script>` live
|
|
23741
|
+
* inside it, exactly as a real web page does. (This was briefly split into
|
|
23742
|
+
* html/css/js, but the renderer only ever concatenated the parts back into a
|
|
23743
|
+
* single document and no step needed them apart — the split was ceremony.)
|
|
23744
|
+
* Block-drag authoring is intentionally NOT built; the agent writes code.
|
|
23745
|
+
*/
|
|
23746
|
+
declare const FormPageSourceSchema: z.ZodObject<{
|
|
23747
|
+
code: z.ZodOptional<z.ZodString>;
|
|
23748
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
23749
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
23750
|
+
coverUrl: z.ZodOptional<z.ZodString>;
|
|
23751
|
+
brandColor: z.ZodOptional<z.ZodString>;
|
|
23752
|
+
hideBranding: z.ZodOptional<z.ZodBoolean>;
|
|
23753
|
+
}, z.core.$strip>>;
|
|
23754
|
+
}, z.core.$strip>;
|
|
23755
|
+
type FormPageSourceVO = z.infer<typeof FormPageSourceSchema>;
|
|
23756
|
+
/**
|
|
23757
|
+
* Public/anonymous settings. No shareToken — the submit endpoint gates on these
|
|
23758
|
+
* flags. Three states: private / public+anonymous / public+require-login.
|
|
23759
|
+
*/
|
|
23760
|
+
declare const FormShareSchema: z.ZodObject<{
|
|
23761
|
+
isPublic: z.ZodDefault<z.ZodBoolean>;
|
|
23762
|
+
anonymousSubmit: z.ZodDefault<z.ZodBoolean>;
|
|
23763
|
+
submitLimit: z.ZodOptional<z.ZodNumber>;
|
|
23764
|
+
requireCaptcha: z.ZodOptional<z.ZodBoolean>;
|
|
23765
|
+
}, z.core.$strip>;
|
|
23766
|
+
type FormShareVO = z.infer<typeof FormShareSchema>;
|
|
23767
|
+
declare const FormVOSchema: z.ZodObject<{
|
|
23768
|
+
id: z.ZodString;
|
|
23769
|
+
nodeId: z.ZodString;
|
|
23770
|
+
spaceId: z.ZodString;
|
|
23771
|
+
targetBaseId: z.ZodString;
|
|
23772
|
+
name: z.ZodString;
|
|
23773
|
+
description: z.ZodString;
|
|
23774
|
+
bindings: z.ZodArray<z.ZodObject<{
|
|
23775
|
+
inputName: z.ZodString;
|
|
23776
|
+
fieldSlug: z.ZodString;
|
|
23777
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
23778
|
+
label: z.ZodOptional<z.ZodString>;
|
|
23779
|
+
help: z.ZodOptional<z.ZodString>;
|
|
23780
|
+
}, z.core.$strip>>;
|
|
23781
|
+
page: z.ZodObject<{
|
|
23782
|
+
code: z.ZodOptional<z.ZodString>;
|
|
23783
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
23784
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
23785
|
+
coverUrl: z.ZodOptional<z.ZodString>;
|
|
23786
|
+
brandColor: z.ZodOptional<z.ZodString>;
|
|
23787
|
+
hideBranding: z.ZodOptional<z.ZodBoolean>;
|
|
23788
|
+
}, z.core.$strip>>;
|
|
23789
|
+
}, z.core.$strip>;
|
|
23790
|
+
share: z.ZodObject<{
|
|
23791
|
+
isPublic: z.ZodDefault<z.ZodBoolean>;
|
|
23792
|
+
anonymousSubmit: z.ZodDefault<z.ZodBoolean>;
|
|
23793
|
+
submitLimit: z.ZodOptional<z.ZodNumber>;
|
|
23794
|
+
requireCaptcha: z.ZodOptional<z.ZodBoolean>;
|
|
23795
|
+
}, z.core.$strip>;
|
|
23796
|
+
submissionCount: z.ZodDefault<z.ZodNumber>;
|
|
23797
|
+
status: z.ZodEnum<{
|
|
23798
|
+
archived: "archived";
|
|
23799
|
+
active: "active";
|
|
23800
|
+
}>;
|
|
23801
|
+
createdBy: z.ZodString;
|
|
23802
|
+
createdAt: z.ZodString;
|
|
23803
|
+
updatedAt: z.ZodString;
|
|
23804
|
+
}, z.core.$strip>;
|
|
23805
|
+
type FormVO = z.infer<typeof FormVOSchema>;
|
|
23806
|
+
declare const CreateFormInputSchema: z.ZodObject<{
|
|
23807
|
+
nodeId: z.ZodString;
|
|
23808
|
+
targetBaseId: z.ZodString;
|
|
23809
|
+
name: z.ZodString;
|
|
23810
|
+
description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23811
|
+
bindings: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23812
|
+
inputName: z.ZodString;
|
|
23813
|
+
fieldSlug: z.ZodString;
|
|
23814
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
23815
|
+
label: z.ZodOptional<z.ZodString>;
|
|
23816
|
+
help: z.ZodOptional<z.ZodString>;
|
|
23817
|
+
}, z.core.$strip>>>>;
|
|
23818
|
+
page: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
23819
|
+
code: z.ZodOptional<z.ZodString>;
|
|
23820
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
23821
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
23822
|
+
coverUrl: z.ZodOptional<z.ZodString>;
|
|
23823
|
+
brandColor: z.ZodOptional<z.ZodString>;
|
|
23824
|
+
hideBranding: z.ZodOptional<z.ZodBoolean>;
|
|
23825
|
+
}, z.core.$strip>>;
|
|
23826
|
+
}, z.core.$strip>>>;
|
|
23827
|
+
share: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
23828
|
+
isPublic: z.ZodDefault<z.ZodBoolean>;
|
|
23829
|
+
anonymousSubmit: z.ZodDefault<z.ZodBoolean>;
|
|
23830
|
+
submitLimit: z.ZodOptional<z.ZodNumber>;
|
|
23831
|
+
requireCaptcha: z.ZodOptional<z.ZodBoolean>;
|
|
23832
|
+
}, z.core.$strip>>>;
|
|
23833
|
+
}, z.core.$strip>;
|
|
23834
|
+
type CreateFormDTO = z.input<typeof CreateFormInputSchema>;
|
|
23835
|
+
declare const UpdateFormInputSchema: z.ZodObject<{
|
|
23836
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23837
|
+
description: z.ZodOptional<z.ZodString>;
|
|
23838
|
+
bindings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23839
|
+
inputName: z.ZodString;
|
|
23840
|
+
fieldSlug: z.ZodString;
|
|
23841
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
23842
|
+
label: z.ZodOptional<z.ZodString>;
|
|
23843
|
+
help: z.ZodOptional<z.ZodString>;
|
|
23844
|
+
}, z.core.$strip>>>;
|
|
23845
|
+
page: z.ZodOptional<z.ZodObject<{
|
|
23846
|
+
code: z.ZodOptional<z.ZodString>;
|
|
23847
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
23848
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
23849
|
+
coverUrl: z.ZodOptional<z.ZodString>;
|
|
23850
|
+
brandColor: z.ZodOptional<z.ZodString>;
|
|
23851
|
+
hideBranding: z.ZodOptional<z.ZodBoolean>;
|
|
23852
|
+
}, z.core.$strip>>;
|
|
23853
|
+
}, z.core.$strip>>;
|
|
23854
|
+
share: z.ZodOptional<z.ZodObject<{
|
|
23855
|
+
isPublic: z.ZodDefault<z.ZodBoolean>;
|
|
23856
|
+
anonymousSubmit: z.ZodDefault<z.ZodBoolean>;
|
|
23857
|
+
submitLimit: z.ZodOptional<z.ZodNumber>;
|
|
23858
|
+
requireCaptcha: z.ZodOptional<z.ZodBoolean>;
|
|
23859
|
+
}, z.core.$strip>>;
|
|
23860
|
+
}, z.core.$strip>;
|
|
23861
|
+
type UpdateFormDTO = z.input<typeof UpdateFormInputSchema>;
|
|
23862
|
+
/** A filled-in submission: input names → values, plus optional anti-abuse token. */
|
|
23863
|
+
declare const SubmitFormInputSchema: z.ZodObject<{
|
|
23864
|
+
values: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
23865
|
+
captchaToken: z.ZodOptional<z.ZodString>;
|
|
23866
|
+
}, z.core.$strip>;
|
|
23867
|
+
type SubmitFormDTO = z.input<typeof SubmitFormInputSchema>;
|
|
23868
|
+
/** What the submit endpoint returns — the pending ChangeRequest id, never data. */
|
|
23869
|
+
declare const FormSubmitResultSchema: z.ZodObject<{
|
|
23870
|
+
changeRequestId: z.ZodString;
|
|
23871
|
+
status: z.ZodLiteral<"pending_review">;
|
|
23872
|
+
}, z.core.$strip>;
|
|
23873
|
+
type FormSubmitResultVO = z.infer<typeof FormSubmitResultSchema>;
|
|
23874
|
+
|
|
21832
23875
|
/**
|
|
21833
23876
|
* One activity-feed row, discriminated by `kind`. Each carries the VO(s) the
|
|
21834
23877
|
* client needs to render its title/body/href:
|
|
@@ -21905,6 +23948,7 @@ declare const activityItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
21905
23948
|
email: "email";
|
|
21906
23949
|
date: "date";
|
|
21907
23950
|
text: "text";
|
|
23951
|
+
whiteboard: "whiteboard";
|
|
21908
23952
|
html: "html";
|
|
21909
23953
|
longtext: "longtext";
|
|
21910
23954
|
markdown: "markdown";
|
|
@@ -21926,6 +23970,8 @@ declare const activityItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
21926
23970
|
code: "code";
|
|
21927
23971
|
json: "json";
|
|
21928
23972
|
yaml: "yaml";
|
|
23973
|
+
formula: "formula";
|
|
23974
|
+
lookup: "lookup";
|
|
21929
23975
|
}>;
|
|
21930
23976
|
required: z.ZodBoolean;
|
|
21931
23977
|
position: z.ZodNumber;
|
|
@@ -21958,7 +24004,27 @@ declare const activityItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
21958
24004
|
height: z.ZodOptional<z.ZodNumber>;
|
|
21959
24005
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
21960
24006
|
}, z.core.$strip>>;
|
|
24007
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
24008
|
+
expression: z.ZodString;
|
|
24009
|
+
}, z.core.$strip>>;
|
|
21961
24010
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
24011
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
24012
|
+
relationFieldSlug: z.ZodString;
|
|
24013
|
+
targetFieldSlug: z.ZodString;
|
|
24014
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
24015
|
+
values: "values";
|
|
24016
|
+
count: "count";
|
|
24017
|
+
sum: "sum";
|
|
24018
|
+
average: "average";
|
|
24019
|
+
min: "min";
|
|
24020
|
+
max: "max";
|
|
24021
|
+
concatenate: "concatenate";
|
|
24022
|
+
}>>>;
|
|
24023
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
24024
|
+
all: "all";
|
|
24025
|
+
first: "first";
|
|
24026
|
+
}>>;
|
|
24027
|
+
}, z.core.$strip>>;
|
|
21962
24028
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
21963
24029
|
number: z.ZodOptional<z.ZodObject<{
|
|
21964
24030
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -22287,6 +24353,7 @@ declare const activityItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
22287
24353
|
email: "email";
|
|
22288
24354
|
date: "date";
|
|
22289
24355
|
text: "text";
|
|
24356
|
+
whiteboard: "whiteboard";
|
|
22290
24357
|
html: "html";
|
|
22291
24358
|
longtext: "longtext";
|
|
22292
24359
|
markdown: "markdown";
|
|
@@ -22308,6 +24375,8 @@ declare const activityItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
22308
24375
|
code: "code";
|
|
22309
24376
|
json: "json";
|
|
22310
24377
|
yaml: "yaml";
|
|
24378
|
+
formula: "formula";
|
|
24379
|
+
lookup: "lookup";
|
|
22311
24380
|
}>;
|
|
22312
24381
|
required: z.ZodBoolean;
|
|
22313
24382
|
position: z.ZodNumber;
|
|
@@ -22340,7 +24409,27 @@ declare const activityItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
22340
24409
|
height: z.ZodOptional<z.ZodNumber>;
|
|
22341
24410
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22342
24411
|
}, z.core.$strip>>;
|
|
24412
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
24413
|
+
expression: z.ZodString;
|
|
24414
|
+
}, z.core.$strip>>;
|
|
22343
24415
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
24416
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
24417
|
+
relationFieldSlug: z.ZodString;
|
|
24418
|
+
targetFieldSlug: z.ZodString;
|
|
24419
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
24420
|
+
values: "values";
|
|
24421
|
+
count: "count";
|
|
24422
|
+
sum: "sum";
|
|
24423
|
+
average: "average";
|
|
24424
|
+
min: "min";
|
|
24425
|
+
max: "max";
|
|
24426
|
+
concatenate: "concatenate";
|
|
24427
|
+
}>>>;
|
|
24428
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
24429
|
+
all: "all";
|
|
24430
|
+
first: "first";
|
|
24431
|
+
}>>;
|
|
24432
|
+
}, z.core.$strip>>;
|
|
22344
24433
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
22345
24434
|
number: z.ZodOptional<z.ZodObject<{
|
|
22346
24435
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -22656,6 +24745,7 @@ declare const activityItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
22656
24745
|
email: "email";
|
|
22657
24746
|
date: "date";
|
|
22658
24747
|
text: "text";
|
|
24748
|
+
whiteboard: "whiteboard";
|
|
22659
24749
|
html: "html";
|
|
22660
24750
|
longtext: "longtext";
|
|
22661
24751
|
markdown: "markdown";
|
|
@@ -22677,6 +24767,8 @@ declare const activityItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
22677
24767
|
code: "code";
|
|
22678
24768
|
json: "json";
|
|
22679
24769
|
yaml: "yaml";
|
|
24770
|
+
formula: "formula";
|
|
24771
|
+
lookup: "lookup";
|
|
22680
24772
|
}>;
|
|
22681
24773
|
required: z.ZodBoolean;
|
|
22682
24774
|
position: z.ZodNumber;
|
|
@@ -22709,7 +24801,27 @@ declare const activityItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
22709
24801
|
height: z.ZodOptional<z.ZodNumber>;
|
|
22710
24802
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22711
24803
|
}, z.core.$strip>>;
|
|
24804
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
24805
|
+
expression: z.ZodString;
|
|
24806
|
+
}, z.core.$strip>>;
|
|
22712
24807
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
24808
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
24809
|
+
relationFieldSlug: z.ZodString;
|
|
24810
|
+
targetFieldSlug: z.ZodString;
|
|
24811
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
24812
|
+
values: "values";
|
|
24813
|
+
count: "count";
|
|
24814
|
+
sum: "sum";
|
|
24815
|
+
average: "average";
|
|
24816
|
+
min: "min";
|
|
24817
|
+
max: "max";
|
|
24818
|
+
concatenate: "concatenate";
|
|
24819
|
+
}>>>;
|
|
24820
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
24821
|
+
all: "all";
|
|
24822
|
+
first: "first";
|
|
24823
|
+
}>>;
|
|
24824
|
+
}, z.core.$strip>>;
|
|
22713
24825
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
22714
24826
|
number: z.ZodOptional<z.ZodObject<{
|
|
22715
24827
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -22871,6 +24983,7 @@ declare const activityItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
22871
24983
|
email: "email";
|
|
22872
24984
|
date: "date";
|
|
22873
24985
|
text: "text";
|
|
24986
|
+
whiteboard: "whiteboard";
|
|
22874
24987
|
html: "html";
|
|
22875
24988
|
longtext: "longtext";
|
|
22876
24989
|
markdown: "markdown";
|
|
@@ -22892,6 +25005,8 @@ declare const activityItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
22892
25005
|
code: "code";
|
|
22893
25006
|
json: "json";
|
|
22894
25007
|
yaml: "yaml";
|
|
25008
|
+
formula: "formula";
|
|
25009
|
+
lookup: "lookup";
|
|
22895
25010
|
}>;
|
|
22896
25011
|
required: z.ZodBoolean;
|
|
22897
25012
|
position: z.ZodNumber;
|
|
@@ -22924,7 +25039,27 @@ declare const activityItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
22924
25039
|
height: z.ZodOptional<z.ZodNumber>;
|
|
22925
25040
|
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22926
25041
|
}, z.core.$strip>>;
|
|
25042
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
25043
|
+
expression: z.ZodString;
|
|
25044
|
+
}, z.core.$strip>>;
|
|
22927
25045
|
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
25046
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
25047
|
+
relationFieldSlug: z.ZodString;
|
|
25048
|
+
targetFieldSlug: z.ZodString;
|
|
25049
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
25050
|
+
values: "values";
|
|
25051
|
+
count: "count";
|
|
25052
|
+
sum: "sum";
|
|
25053
|
+
average: "average";
|
|
25054
|
+
min: "min";
|
|
25055
|
+
max: "max";
|
|
25056
|
+
concatenate: "concatenate";
|
|
25057
|
+
}>>>;
|
|
25058
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
25059
|
+
all: "all";
|
|
25060
|
+
first: "first";
|
|
25061
|
+
}>>;
|
|
25062
|
+
}, z.core.$strip>>;
|
|
22928
25063
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
22929
25064
|
number: z.ZodOptional<z.ZodObject<{
|
|
22930
25065
|
format: z.ZodOptional<z.ZodEnum<{
|
|
@@ -23038,8 +25173,8 @@ interface FileTreeReadFileVO {
|
|
|
23038
25173
|
declare const AssetTextStatusSchema: z.ZodEnum<{
|
|
23039
25174
|
missing: "missing";
|
|
23040
25175
|
stale: "stale";
|
|
23041
|
-
present: "present";
|
|
23042
25176
|
none: "none";
|
|
25177
|
+
present: "present";
|
|
23043
25178
|
}>;
|
|
23044
25179
|
type AssetTextStatus = z.infer<typeof AssetTextStatusSchema>;
|
|
23045
25180
|
/** One library entry: the deduped file + its busabase metadata + usage count. */
|
|
@@ -23061,8 +25196,8 @@ declare const AssetVOSchema: z.ZodObject<{
|
|
|
23061
25196
|
textStatus: z.ZodEnum<{
|
|
23062
25197
|
missing: "missing";
|
|
23063
25198
|
stale: "stale";
|
|
23064
|
-
present: "present";
|
|
23065
25199
|
none: "none";
|
|
25200
|
+
present: "present";
|
|
23066
25201
|
}>;
|
|
23067
25202
|
createdAt: z.ZodString;
|
|
23068
25203
|
}, z.core.$strip>;
|
|
@@ -23108,8 +25243,8 @@ declare const AssetDetailVOSchema: z.ZodObject<{
|
|
|
23108
25243
|
textStatus: z.ZodEnum<{
|
|
23109
25244
|
missing: "missing";
|
|
23110
25245
|
stale: "stale";
|
|
23111
|
-
present: "present";
|
|
23112
25246
|
none: "none";
|
|
25247
|
+
present: "present";
|
|
23113
25248
|
}>;
|
|
23114
25249
|
createdAt: z.ZodString;
|
|
23115
25250
|
}, z.core.$strip>;
|
|
@@ -23159,8 +25294,8 @@ declare const FileNodeVOSchema: z.ZodObject<{
|
|
|
23159
25294
|
textStatus: z.ZodEnum<{
|
|
23160
25295
|
missing: "missing";
|
|
23161
25296
|
stale: "stale";
|
|
23162
|
-
present: "present";
|
|
23163
25297
|
none: "none";
|
|
25298
|
+
present: "present";
|
|
23164
25299
|
}>;
|
|
23165
25300
|
createdAt: z.ZodString;
|
|
23166
25301
|
}, z.core.$strip>;
|
|
@@ -23338,7 +25473,9 @@ type VaultSettingsVO = z.infer<typeof VaultSettingsVOSchema>;
|
|
|
23338
25473
|
declare const VaultRuntimeEnvSchema: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
23339
25474
|
type VaultRuntimeEnv = z.infer<typeof VaultRuntimeEnvSchema>;
|
|
23340
25475
|
|
|
23341
|
-
type FieldType = "text" | "longtext" | "markdown" | "html" | "attachment" | "relation" | "number" | "date" | "checkbox" | "select" | "multiselect" | "url" | "embed" | "email" | "phone" | "created_time" | "updated_time" | "created_by" | "updated_by" | "auto_number" | "ai_summary" | "ai_tags" | "code" | "json" | "yaml";
|
|
25476
|
+
type FieldType = "text" | "longtext" | "markdown" | "html" | "attachment" | "relation" | "number" | "date" | "checkbox" | "select" | "multiselect" | "url" | "embed" | "email" | "phone" | "created_time" | "updated_time" | "created_by" | "updated_by" | "auto_number" | "ai_summary" | "ai_tags" | "code" | "json" | "yaml" | "formula" | "lookup" | "whiteboard";
|
|
25477
|
+
/** Rollup functions a `lookup` field can apply — mirrors `lookupRollupSchema`. */
|
|
25478
|
+
type LookupRollup = "values" | "count" | "sum" | "average" | "min" | "max" | "concatenate";
|
|
23342
25479
|
|
|
23343
25480
|
type ChangeRequestStatus = "in_review" | "changes_requested" | "approved" | "rejected" | "merged" | "abandoned" | "conflict";
|
|
23344
25481
|
type OperationStatus = "pending" | "merged" | "archived" | "failed";
|
|
@@ -23697,4 +25834,4 @@ declare class Busabase {
|
|
|
23697
25834
|
}>>>>;
|
|
23698
25835
|
}
|
|
23699
25836
|
|
|
23700
|
-
export { type ActivityItemVO, type AgentTaskVO, type FileTreeFileVO as AirAppFileVO, type FileTreeReadFileVO as AirAppReadFileVO, type FileTreeNodeVO as AirAppVO, type AssetAttachmentRef, type AssetDetailVO, type AssetTextStatus, type AssetUsageVO, type AssetVO, type AttachmentRef, type AuditAction, type AuditEventVO, type BaseFieldVO, type BaseVO, Busabase, type BusabaseClient, type BusabaseConfig, type BusabaseRpcConfig, CREATABLE_NODE_TYPES, type ChangeRequestBatchResultVO, type ChangeRequestCountsVO, type ChangeRequestStatus, type ChangeRequestTargetType, type ChangeRequestVO, type CloudContract, type CommentSubjectType, type CommentVO, type CommitVO, type CreatableNodeType, DEFAULT_BASE_URL, type FileTreeFileVO as DriveFileVO, type FileTreeReadFileVO as DriveReadFileVO, type FileTreeNodeVO as DriveVO, type FieldType, type FileNodeMetadata, type FileNodeVO, type FileTreeFileVO, type FileTreeNodeVO, type FileTreeReadFileVO, type GalleryCardSize, type GalleryCoverFit, type GanttScale, type NodeSearchResultVO, type NodeType, type NodeVO, type OperationKind, type OperationStatus, type OperationVO, type RecordLinkVO, type RecordVO, type ResolvedConfig, type ReviewVO, type ReviewVerdict, type SearchResponseVO, type SearchResultKind, type SearchResultVO, type FileTreeFileVO as SkillFileVO, type FileTreeReadFileVO as SkillReadFileVO, type FileTreeNodeVO as SkillVO, type UpdateVaultSettingsDTO, type UserRefVO, VIEW_FIELD_MAX_WIDTH, VIEW_FIELD_MIN_WIDTH, type VaultAccessPolicy, type VaultEnvironment, type VaultItemInput, type VaultItemKind, type VaultItemVO, type VaultRuntimeEnv, type VaultScopeType, type VaultSettingsVO, type ViewConfigVO, type ViewFilterOperator, type ViewFilterVO, type ViewSortVO, type ViewType, type ViewVO, cloudContract, createBusabaseClient, createBusabaseRpcClient, normalizeBaseUrl, resolveConfig };
|
|
25837
|
+
export { type ActivityItemVO, type AgentTaskVO, type FileTreeFileVO as AirAppFileVO, type FileTreeReadFileVO as AirAppReadFileVO, type FileTreeNodeVO as AirAppVO, type AssetAttachmentRef, type AssetDetailVO, type AssetTextStatus, type AssetUsageVO, type AssetVO, type AttachmentRef, type AuditAction, type AuditEventVO, type BaseFieldVO, type BaseVO, Busabase, type BusabaseClient, type BusabaseConfig, type BusabaseRpcConfig, CREATABLE_NODE_TYPES, type ChangeRequestBatchResultVO, type ChangeRequestCountsVO, type ChangeRequestStatus, type ChangeRequestTargetType, type ChangeRequestVO, type CloudContract, type CommentSubjectType, type CommentVO, type CommitVO, type CreatableNodeType, type CreateFormDTO, DEFAULT_BASE_URL, type FileTreeFileVO as DriveFileVO, type FileTreeReadFileVO as DriveReadFileVO, type FileTreeNodeVO as DriveVO, type FieldType, type FileNodeMetadata, type FileNodeVO, type FileTreeFileVO, type FileTreeNodeVO, type FileTreeReadFileVO, type FormFieldBindingVO, type FormPageSourceVO, type FormShareVO, type FormSubmitResultVO, type FormThemeVO, type FormVO, type GalleryCardSize, type GalleryCoverFit, type GanttScale, type LookupRollup, type NodeSearchResultVO, type NodeType, type NodeVO, type OperationKind, type OperationStatus, type OperationVO, type RecordLinkVO, type RecordVO, type ResolvedConfig, type ReviewVO, type ReviewVerdict, type SearchResponseVO, type SearchResultKind, type SearchResultVO, type FileTreeFileVO as SkillFileVO, type FileTreeReadFileVO as SkillReadFileVO, type FileTreeNodeVO as SkillVO, type SubmitFormDTO, type UpdateFormDTO, type UpdateVaultSettingsDTO, type UserRefVO, VIEW_FIELD_MAX_WIDTH, VIEW_FIELD_MIN_WIDTH, type VaultAccessPolicy, type VaultEnvironment, type VaultItemInput, type VaultItemKind, type VaultItemVO, type VaultRuntimeEnv, type VaultScopeType, type VaultSettingsVO, type ViewConfigVO, type ViewFilterOperator, type ViewFilterVO, type ViewSortVO, type ViewType, type ViewVO, cloudContract, createBusabaseClient, createBusabaseRpcClient, normalizeBaseUrl, resolveConfig };
|