@dmptool/types 2.0.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +70 -1
- package/dist/answers/__tests__/defaults.spec.js +80 -21
- package/dist/answers/answer.d.ts +2 -0
- package/dist/answers/answer.js +4 -2
- package/dist/answers/dateAnswers.d.ts +4 -0
- package/dist/answers/graphQLAnswers.d.ts +8 -0
- package/dist/answers/index.d.ts +37 -0
- package/dist/answers/numberAnswers.d.ts +8 -0
- package/dist/answers/optionBasedAnswers.d.ts +10 -0
- package/dist/answers/tableAnswers.d.ts +94 -0
- package/dist/answers/textAnswers.d.ts +8 -0
- package/dist/dmp/__tests__/commonStandard.spec.d.ts +1 -0
- package/dist/dmp/__tests__/commonStandard.spec.js +210 -0
- package/dist/dmp/__tests__/extensions.spec.d.ts +1 -0
- package/dist/dmp/__tests__/extensions.spec.js +99 -0
- package/dist/dmp/extension.d.ts +1117 -0
- package/dist/dmp/extension.js +234 -0
- package/dist/dmp/index.d.ts +9 -0
- package/dist/dmp/index.js +69 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/questions/__tests__/defaults.spec.js +2 -2
- package/dist/questions/__tests__/optionBasedQuestions.spec.js +8 -4
- package/dist/questions/dateQuestions.d.ts +4 -0
- package/dist/questions/dateQuestions.js +2 -2
- package/dist/questions/index.d.ts +30 -22
- package/dist/questions/numberQuestions.d.ts +8 -0
- package/dist/questions/numberQuestions.js +4 -4
- package/dist/questions/optionBasedQuestions.d.ts +10 -0
- package/dist/questions/optionBasedQuestions.js +5 -5
- package/dist/questions/tableQuestions.d.ts +393 -25
- package/dist/questions/tableQuestions.js +3 -2
- package/dist/questions/textQuestions.d.ts +4 -0
- package/dist/questions/textQuestions.js +2 -2
- package/dist/schemas/affiliationSearchAnswer.schema.json +50 -0
- package/dist/schemas/affiliationSearchQuestion.schema.json +142 -0
- package/dist/schemas/anyAnswer.schema.json +1537 -0
- package/dist/schemas/anyQuestion.schema.json +4828 -0
- package/dist/schemas/anyTableColumnAnswer.schema.json +741 -0
- package/dist/schemas/anyTableColumnQuestion.schema.json +1560 -0
- package/dist/schemas/booleanAnswer.schema.json +36 -0
- package/dist/schemas/booleanQuestion.schema.json +55 -0
- package/dist/schemas/checkboxesAnswer.schema.json +41 -0
- package/dist/schemas/checkboxesQuestion.schema.json +80 -0
- package/dist/schemas/currencyAnswer.schema.json +36 -0
- package/dist/schemas/currencyQuestion.schema.json +73 -0
- package/dist/schemas/dateAnswer.schema.json +36 -0
- package/dist/schemas/datePickerAnswer.schema.json +37 -0
- package/dist/schemas/datePickerQuestion.schema.json +52 -0
- package/dist/schemas/dateQuestion.schema.json +66 -0
- package/dist/schemas/dateRangeAnswer.schema.json +50 -0
- package/dist/schemas/dateRangeQuestion.schema.json +124 -0
- package/dist/schemas/dmp.schema.json +2070 -0
- package/dist/schemas/dmpExtension.schema.json +1985 -0
- package/dist/schemas/emailAnswer.schema.json +36 -0
- package/dist/schemas/emailQuestion.schema.json +71 -0
- package/dist/schemas/filteredSearchAnswer.schema.json +40 -0
- package/dist/schemas/filteredSearchQuestion.schema.json +130 -0
- package/dist/schemas/licenseSearchAnswer.schema.json +54 -0
- package/dist/schemas/licenseSearchQuestion.schema.json +140 -0
- package/dist/schemas/metadataStandardSearchAnswer.schema.json +54 -0
- package/dist/schemas/metadataStandardSearchQuestion.schema.json +141 -0
- package/dist/schemas/multiselectBoxAnswer.schema.json +41 -0
- package/dist/schemas/multiselectBoxQuestion.schema.json +87 -0
- package/dist/schemas/numberAnswer.schema.json +36 -0
- package/dist/schemas/numberQuestion.schema.json +68 -0
- package/dist/schemas/numberRangeAnswer.schema.json +50 -0
- package/dist/schemas/numberRangeQuestion.schema.json +128 -0
- package/dist/schemas/numberWithContextAnswer.schema.json +50 -0
- package/dist/schemas/numberWithContextQuestion.schema.json +98 -0
- package/dist/schemas/radioButtonsAnswer.schema.json +36 -0
- package/dist/schemas/radioButtonsQuestion.schema.json +80 -0
- package/dist/schemas/repositorySearchAnswer.schema.json +54 -0
- package/dist/schemas/repositorySearchQuestion.schema.json +140 -0
- package/dist/schemas/researchOutputTableAnswer.schema.json +20065 -0
- package/dist/schemas/researchOutputTableQuestion.schema.json +140 -0
- package/dist/schemas/selectBoxAnswer.schema.json +36 -0
- package/dist/schemas/selectBoxQuestion.schema.json +87 -0
- package/dist/schemas/tableAnswer.schema.json +797 -0
- package/dist/schemas/tableQuestion.schema.json +1662 -0
- package/dist/schemas/textAnswer.schema.json +36 -0
- package/dist/schemas/textAreaAnswer.schema.json +36 -0
- package/dist/schemas/textAreaQuestion.schema.json +78 -0
- package/dist/schemas/textQuestion.schema.json +63 -0
- package/dist/schemas/typeaheadSearchAnswer.schema.json +37 -0
- package/dist/schemas/typeaheadSearchQuestion.schema.json +120 -0
- package/dist/schemas/urlAnswer.schema.json +36 -0
- package/dist/schemas/urlQuestion.schema.json +66 -0
- package/package.json +12 -4
- package/schemas/.placeholder +0 -0
- package/schemas/affiliationSearchAnswer.schema.json +50 -0
- package/schemas/affiliationSearchQuestion.schema.json +142 -0
- package/schemas/anyAnswer.schema.json +1537 -0
- package/schemas/anyQuestion.schema.json +4828 -0
- package/schemas/anyTableColumnAnswer.schema.json +741 -0
- package/schemas/anyTableColumnQuestion.schema.json +1560 -0
- package/schemas/booleanAnswer.schema.json +36 -0
- package/schemas/booleanQuestion.schema.json +55 -0
- package/schemas/checkboxesAnswer.schema.json +41 -0
- package/schemas/checkboxesQuestion.schema.json +80 -0
- package/schemas/currencyAnswer.schema.json +36 -0
- package/schemas/currencyQuestion.schema.json +73 -0
- package/schemas/dateAnswer.schema.json +36 -0
- package/schemas/datePickerAnswer.schema.json +37 -0
- package/schemas/datePickerQuestion.schema.json +52 -0
- package/schemas/dateQuestion.schema.json +66 -0
- package/schemas/dateRangeAnswer.schema.json +50 -0
- package/schemas/dateRangeQuestion.schema.json +124 -0
- package/schemas/dmp.schema.json +2070 -0
- package/schemas/dmpExtension.schema.json +1985 -0
- package/schemas/emailAnswer.schema.json +36 -0
- package/schemas/emailQuestion.schema.json +71 -0
- package/schemas/filteredSearchAnswer.schema.json +40 -0
- package/schemas/filteredSearchQuestion.schema.json +130 -0
- package/schemas/licenseSearchAnswer.schema.json +54 -0
- package/schemas/licenseSearchQuestion.schema.json +140 -0
- package/schemas/metadataStandardSearchAnswer.schema.json +54 -0
- package/schemas/metadataStandardSearchQuestion.schema.json +141 -0
- package/schemas/multiselectBoxAnswer.schema.json +41 -0
- package/schemas/multiselectBoxQuestion.schema.json +87 -0
- package/schemas/numberAnswer.schema.json +36 -0
- package/schemas/numberQuestion.schema.json +68 -0
- package/schemas/numberRangeAnswer.schema.json +50 -0
- package/schemas/numberRangeQuestion.schema.json +128 -0
- package/schemas/numberWithContextAnswer.schema.json +50 -0
- package/schemas/numberWithContextQuestion.schema.json +98 -0
- package/schemas/radioButtonsAnswer.schema.json +36 -0
- package/schemas/radioButtonsQuestion.schema.json +80 -0
- package/schemas/repositorySearchAnswer.schema.json +54 -0
- package/schemas/repositorySearchQuestion.schema.json +140 -0
- package/schemas/researchOutputTableAnswer.schema.json +20065 -0
- package/schemas/researchOutputTableQuestion.schema.json +140 -0
- package/schemas/selectBoxAnswer.schema.json +36 -0
- package/schemas/selectBoxQuestion.schema.json +87 -0
- package/schemas/tableAnswer.schema.json +797 -0
- package/schemas/tableQuestion.schema.json +1662 -0
- package/schemas/textAnswer.schema.json +36 -0
- package/schemas/textAreaAnswer.schema.json +36 -0
- package/schemas/textAreaQuestion.schema.json +78 -0
- package/schemas/textQuestion.schema.json +63 -0
- package/schemas/typeaheadSearchAnswer.schema.json +37 -0
- package/schemas/typeaheadSearchQuestion.schema.json +120 -0
- package/schemas/urlAnswer.schema.json +36 -0
- package/schemas/urlQuestion.schema.json +66 -0
|
@@ -37,6 +37,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
37
37
|
label: z.ZodString;
|
|
38
38
|
value: z.ZodDefault<z.ZodBoolean>;
|
|
39
39
|
}, z.core.$strip>;
|
|
40
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
40
41
|
meta: z.ZodObject<{
|
|
41
42
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
42
43
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -49,6 +50,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
49
50
|
label: z.ZodDefault<z.ZodString>;
|
|
50
51
|
value: z.ZodDefault<z.ZodString>;
|
|
51
52
|
}, z.core.$strip>>;
|
|
53
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
52
54
|
attributes: z.ZodObject<{
|
|
53
55
|
label: z.ZodOptional<z.ZodString>;
|
|
54
56
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -70,6 +72,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
70
72
|
help: z.ZodOptional<z.ZodString>;
|
|
71
73
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
72
74
|
}, z.core.$strip>;
|
|
75
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
73
76
|
meta: z.ZodObject<{
|
|
74
77
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
75
78
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -85,6 +88,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
85
88
|
help: z.ZodOptional<z.ZodString>;
|
|
86
89
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
87
90
|
}, z.core.$strip>;
|
|
91
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
88
92
|
meta: z.ZodObject<{
|
|
89
93
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
90
94
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -110,6 +114,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
110
114
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
111
115
|
}, z.core.$strip>;
|
|
112
116
|
}, z.core.$strip>;
|
|
117
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
113
118
|
attributes: z.ZodObject<{
|
|
114
119
|
label: z.ZodOptional<z.ZodString>;
|
|
115
120
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -131,6 +136,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
131
136
|
help: z.ZodOptional<z.ZodString>;
|
|
132
137
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
133
138
|
}, z.core.$strip>;
|
|
139
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
134
140
|
meta: z.ZodObject<{
|
|
135
141
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
136
142
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -210,6 +216,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
210
216
|
help: z.ZodOptional<z.ZodString>;
|
|
211
217
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
212
218
|
}, z.core.$strip>;
|
|
219
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
213
220
|
meta: z.ZodObject<{
|
|
214
221
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
215
222
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -231,6 +238,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
231
238
|
help: z.ZodOptional<z.ZodString>;
|
|
232
239
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
233
240
|
}, z.core.$strip>;
|
|
241
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
234
242
|
meta: z.ZodObject<{
|
|
235
243
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
236
244
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -243,6 +251,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
243
251
|
label: z.ZodDefault<z.ZodString>;
|
|
244
252
|
value: z.ZodDefault<z.ZodString>;
|
|
245
253
|
}, z.core.$strip>>;
|
|
254
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
246
255
|
attributes: z.ZodObject<{
|
|
247
256
|
label: z.ZodOptional<z.ZodString>;
|
|
248
257
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -298,6 +307,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
298
307
|
help: z.ZodOptional<z.ZodString>;
|
|
299
308
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
300
309
|
}, z.core.$strip>;
|
|
310
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
301
311
|
meta: z.ZodObject<{
|
|
302
312
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
303
313
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -346,6 +356,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
346
356
|
help: z.ZodOptional<z.ZodString>;
|
|
347
357
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
348
358
|
}, z.core.$strip>;
|
|
359
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
349
360
|
meta: z.ZodObject<{
|
|
350
361
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
351
362
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -395,6 +406,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
395
406
|
label: z.ZodString;
|
|
396
407
|
value: z.ZodDefault<z.ZodBoolean>;
|
|
397
408
|
}, z.core.$strip>;
|
|
409
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
398
410
|
meta: z.ZodObject<{
|
|
399
411
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
400
412
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -407,6 +419,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
407
419
|
label: z.ZodDefault<z.ZodString>;
|
|
408
420
|
value: z.ZodDefault<z.ZodString>;
|
|
409
421
|
}, z.core.$strip>>;
|
|
422
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
410
423
|
attributes: z.ZodObject<{
|
|
411
424
|
label: z.ZodOptional<z.ZodString>;
|
|
412
425
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -428,6 +441,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
428
441
|
help: z.ZodOptional<z.ZodString>;
|
|
429
442
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
430
443
|
}, z.core.$strip>;
|
|
444
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
431
445
|
meta: z.ZodObject<{
|
|
432
446
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
433
447
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -443,6 +457,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
443
457
|
help: z.ZodOptional<z.ZodString>;
|
|
444
458
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
445
459
|
}, z.core.$strip>;
|
|
460
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
446
461
|
meta: z.ZodObject<{
|
|
447
462
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
448
463
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -468,6 +483,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
468
483
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
469
484
|
}, z.core.$strip>;
|
|
470
485
|
}, z.core.$strip>;
|
|
486
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
471
487
|
attributes: z.ZodObject<{
|
|
472
488
|
label: z.ZodOptional<z.ZodString>;
|
|
473
489
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -489,6 +505,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
489
505
|
help: z.ZodOptional<z.ZodString>;
|
|
490
506
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
491
507
|
}, z.core.$strip>;
|
|
508
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
492
509
|
meta: z.ZodObject<{
|
|
493
510
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
494
511
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -568,6 +585,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
568
585
|
help: z.ZodOptional<z.ZodString>;
|
|
569
586
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
570
587
|
}, z.core.$strip>;
|
|
588
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
571
589
|
meta: z.ZodObject<{
|
|
572
590
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
573
591
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -589,6 +607,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
589
607
|
help: z.ZodOptional<z.ZodString>;
|
|
590
608
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
591
609
|
}, z.core.$strip>;
|
|
610
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
592
611
|
meta: z.ZodObject<{
|
|
593
612
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
594
613
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -601,6 +620,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
601
620
|
label: z.ZodDefault<z.ZodString>;
|
|
602
621
|
value: z.ZodDefault<z.ZodString>;
|
|
603
622
|
}, z.core.$strip>>;
|
|
623
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
604
624
|
attributes: z.ZodObject<{
|
|
605
625
|
label: z.ZodOptional<z.ZodString>;
|
|
606
626
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -656,6 +676,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
656
676
|
help: z.ZodOptional<z.ZodString>;
|
|
657
677
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
658
678
|
}, z.core.$strip>;
|
|
679
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
659
680
|
meta: z.ZodObject<{
|
|
660
681
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
661
682
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -704,6 +725,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
704
725
|
help: z.ZodOptional<z.ZodString>;
|
|
705
726
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
706
727
|
}, z.core.$strip>;
|
|
728
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
707
729
|
meta: z.ZodObject<{
|
|
708
730
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
709
731
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -731,6 +753,7 @@ export declare const DefaultTableColumn: {
|
|
|
731
753
|
title?: string | undefined;
|
|
732
754
|
usageDescription?: string | undefined;
|
|
733
755
|
};
|
|
756
|
+
showCommentField?: boolean | undefined;
|
|
734
757
|
} | {
|
|
735
758
|
type: "number";
|
|
736
759
|
attributes: {
|
|
@@ -746,6 +769,7 @@ export declare const DefaultTableColumn: {
|
|
|
746
769
|
title?: string | undefined;
|
|
747
770
|
usageDescription?: string | undefined;
|
|
748
771
|
};
|
|
772
|
+
showCommentField?: boolean | undefined;
|
|
749
773
|
} | {
|
|
750
774
|
type: "numberWithContext";
|
|
751
775
|
attributes: {
|
|
@@ -767,6 +791,7 @@ export declare const DefaultTableColumn: {
|
|
|
767
791
|
title?: string | undefined;
|
|
768
792
|
usageDescription?: string | undefined;
|
|
769
793
|
};
|
|
794
|
+
showCommentField?: boolean | undefined;
|
|
770
795
|
} | {
|
|
771
796
|
type: "email";
|
|
772
797
|
attributes: {
|
|
@@ -783,6 +808,7 @@ export declare const DefaultTableColumn: {
|
|
|
783
808
|
title?: string | undefined;
|
|
784
809
|
usageDescription?: string | undefined;
|
|
785
810
|
};
|
|
811
|
+
showCommentField?: boolean | undefined;
|
|
786
812
|
} | {
|
|
787
813
|
type: "textArea";
|
|
788
814
|
attributes: {
|
|
@@ -831,6 +857,7 @@ export declare const DefaultTableColumn: {
|
|
|
831
857
|
title?: string | undefined;
|
|
832
858
|
usageDescription?: string | undefined;
|
|
833
859
|
};
|
|
860
|
+
showCommentField?: boolean | undefined;
|
|
834
861
|
} | {
|
|
835
862
|
type: "date";
|
|
836
863
|
attributes: {
|
|
@@ -846,6 +873,7 @@ export declare const DefaultTableColumn: {
|
|
|
846
873
|
title?: string | undefined;
|
|
847
874
|
usageDescription?: string | undefined;
|
|
848
875
|
};
|
|
876
|
+
showCommentField?: boolean | undefined;
|
|
849
877
|
} | {
|
|
850
878
|
type: "dateRange";
|
|
851
879
|
columns: {
|
|
@@ -876,6 +904,7 @@ export declare const DefaultTableColumn: {
|
|
|
876
904
|
title?: string | undefined;
|
|
877
905
|
usageDescription?: string | undefined;
|
|
878
906
|
};
|
|
907
|
+
showCommentField?: boolean | undefined;
|
|
879
908
|
} | {
|
|
880
909
|
type: "boolean";
|
|
881
910
|
attributes: {
|
|
@@ -887,6 +916,7 @@ export declare const DefaultTableColumn: {
|
|
|
887
916
|
title?: string | undefined;
|
|
888
917
|
usageDescription?: string | undefined;
|
|
889
918
|
};
|
|
919
|
+
showCommentField?: boolean | undefined;
|
|
890
920
|
} | {
|
|
891
921
|
type: "checkBoxes";
|
|
892
922
|
options: {
|
|
@@ -904,6 +934,7 @@ export declare const DefaultTableColumn: {
|
|
|
904
934
|
title?: string | undefined;
|
|
905
935
|
usageDescription?: string | undefined;
|
|
906
936
|
};
|
|
937
|
+
showCommentField?: boolean | undefined;
|
|
907
938
|
} | {
|
|
908
939
|
type: "radioButtons";
|
|
909
940
|
options: {
|
|
@@ -921,6 +952,7 @@ export declare const DefaultTableColumn: {
|
|
|
921
952
|
title?: string | undefined;
|
|
922
953
|
usageDescription?: string | undefined;
|
|
923
954
|
};
|
|
955
|
+
showCommentField?: boolean | undefined;
|
|
924
956
|
} | {
|
|
925
957
|
type: "selectBox";
|
|
926
958
|
options: {
|
|
@@ -939,6 +971,7 @@ export declare const DefaultTableColumn: {
|
|
|
939
971
|
title?: string | undefined;
|
|
940
972
|
usageDescription?: string | undefined;
|
|
941
973
|
};
|
|
974
|
+
showCommentField?: boolean | undefined;
|
|
942
975
|
} | {
|
|
943
976
|
type: "affiliationSearch";
|
|
944
977
|
graphQL: {
|
|
@@ -1115,6 +1148,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1115
1148
|
label: z.ZodString;
|
|
1116
1149
|
value: z.ZodDefault<z.ZodBoolean>;
|
|
1117
1150
|
}, z.core.$strip>;
|
|
1151
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1118
1152
|
meta: z.ZodObject<{
|
|
1119
1153
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1120
1154
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1127,6 +1161,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1127
1161
|
label: z.ZodDefault<z.ZodString>;
|
|
1128
1162
|
value: z.ZodDefault<z.ZodString>;
|
|
1129
1163
|
}, z.core.$strip>>;
|
|
1164
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1130
1165
|
attributes: z.ZodObject<{
|
|
1131
1166
|
label: z.ZodOptional<z.ZodString>;
|
|
1132
1167
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -1148,6 +1183,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1148
1183
|
help: z.ZodOptional<z.ZodString>;
|
|
1149
1184
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1150
1185
|
}, z.core.$strip>;
|
|
1186
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1151
1187
|
meta: z.ZodObject<{
|
|
1152
1188
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1153
1189
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1163,6 +1199,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1163
1199
|
help: z.ZodOptional<z.ZodString>;
|
|
1164
1200
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1165
1201
|
}, z.core.$strip>;
|
|
1202
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1166
1203
|
meta: z.ZodObject<{
|
|
1167
1204
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1168
1205
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1188,6 +1225,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1188
1225
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1189
1226
|
}, z.core.$strip>;
|
|
1190
1227
|
}, z.core.$strip>;
|
|
1228
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1191
1229
|
attributes: z.ZodObject<{
|
|
1192
1230
|
label: z.ZodOptional<z.ZodString>;
|
|
1193
1231
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -1209,6 +1247,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1209
1247
|
help: z.ZodOptional<z.ZodString>;
|
|
1210
1248
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1211
1249
|
}, z.core.$strip>;
|
|
1250
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1212
1251
|
meta: z.ZodObject<{
|
|
1213
1252
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1214
1253
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1288,6 +1327,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1288
1327
|
help: z.ZodOptional<z.ZodString>;
|
|
1289
1328
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1290
1329
|
}, z.core.$strip>;
|
|
1330
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1291
1331
|
meta: z.ZodObject<{
|
|
1292
1332
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1293
1333
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1309,6 +1349,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1309
1349
|
help: z.ZodOptional<z.ZodString>;
|
|
1310
1350
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1311
1351
|
}, z.core.$strip>;
|
|
1352
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1312
1353
|
meta: z.ZodObject<{
|
|
1313
1354
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1314
1355
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1321,6 +1362,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1321
1362
|
label: z.ZodDefault<z.ZodString>;
|
|
1322
1363
|
value: z.ZodDefault<z.ZodString>;
|
|
1323
1364
|
}, z.core.$strip>>;
|
|
1365
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1324
1366
|
attributes: z.ZodObject<{
|
|
1325
1367
|
label: z.ZodOptional<z.ZodString>;
|
|
1326
1368
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -1376,6 +1418,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1376
1418
|
help: z.ZodOptional<z.ZodString>;
|
|
1377
1419
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1378
1420
|
}, z.core.$strip>;
|
|
1421
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1379
1422
|
meta: z.ZodObject<{
|
|
1380
1423
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1381
1424
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1424,6 +1467,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1424
1467
|
help: z.ZodOptional<z.ZodString>;
|
|
1425
1468
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1426
1469
|
}, z.core.$strip>;
|
|
1470
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1427
1471
|
meta: z.ZodObject<{
|
|
1428
1472
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1429
1473
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1469,6 +1513,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1469
1513
|
title?: string | undefined;
|
|
1470
1514
|
usageDescription?: string | undefined;
|
|
1471
1515
|
};
|
|
1516
|
+
showCommentField?: boolean | undefined;
|
|
1472
1517
|
} | {
|
|
1473
1518
|
type: "number";
|
|
1474
1519
|
attributes: {
|
|
@@ -1484,6 +1529,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1484
1529
|
title?: string | undefined;
|
|
1485
1530
|
usageDescription?: string | undefined;
|
|
1486
1531
|
};
|
|
1532
|
+
showCommentField?: boolean | undefined;
|
|
1487
1533
|
} | {
|
|
1488
1534
|
type: "numberWithContext";
|
|
1489
1535
|
attributes: {
|
|
@@ -1505,6 +1551,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1505
1551
|
title?: string | undefined;
|
|
1506
1552
|
usageDescription?: string | undefined;
|
|
1507
1553
|
};
|
|
1554
|
+
showCommentField?: boolean | undefined;
|
|
1508
1555
|
} | {
|
|
1509
1556
|
type: "email";
|
|
1510
1557
|
attributes: {
|
|
@@ -1521,6 +1568,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1521
1568
|
title?: string | undefined;
|
|
1522
1569
|
usageDescription?: string | undefined;
|
|
1523
1570
|
};
|
|
1571
|
+
showCommentField?: boolean | undefined;
|
|
1524
1572
|
} | {
|
|
1525
1573
|
type: "textArea";
|
|
1526
1574
|
attributes: {
|
|
@@ -1569,6 +1617,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1569
1617
|
title?: string | undefined;
|
|
1570
1618
|
usageDescription?: string | undefined;
|
|
1571
1619
|
};
|
|
1620
|
+
showCommentField?: boolean | undefined;
|
|
1572
1621
|
} | {
|
|
1573
1622
|
type: "date";
|
|
1574
1623
|
attributes: {
|
|
@@ -1584,6 +1633,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1584
1633
|
title?: string | undefined;
|
|
1585
1634
|
usageDescription?: string | undefined;
|
|
1586
1635
|
};
|
|
1636
|
+
showCommentField?: boolean | undefined;
|
|
1587
1637
|
} | {
|
|
1588
1638
|
type: "dateRange";
|
|
1589
1639
|
columns: {
|
|
@@ -1614,6 +1664,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1614
1664
|
title?: string | undefined;
|
|
1615
1665
|
usageDescription?: string | undefined;
|
|
1616
1666
|
};
|
|
1667
|
+
showCommentField?: boolean | undefined;
|
|
1617
1668
|
} | {
|
|
1618
1669
|
type: "boolean";
|
|
1619
1670
|
attributes: {
|
|
@@ -1625,6 +1676,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1625
1676
|
title?: string | undefined;
|
|
1626
1677
|
usageDescription?: string | undefined;
|
|
1627
1678
|
};
|
|
1679
|
+
showCommentField?: boolean | undefined;
|
|
1628
1680
|
} | {
|
|
1629
1681
|
type: "checkBoxes";
|
|
1630
1682
|
options: {
|
|
@@ -1642,6 +1694,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1642
1694
|
title?: string | undefined;
|
|
1643
1695
|
usageDescription?: string | undefined;
|
|
1644
1696
|
};
|
|
1697
|
+
showCommentField?: boolean | undefined;
|
|
1645
1698
|
} | {
|
|
1646
1699
|
type: "radioButtons";
|
|
1647
1700
|
options: {
|
|
@@ -1659,6 +1712,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1659
1712
|
title?: string | undefined;
|
|
1660
1713
|
usageDescription?: string | undefined;
|
|
1661
1714
|
};
|
|
1715
|
+
showCommentField?: boolean | undefined;
|
|
1662
1716
|
} | {
|
|
1663
1717
|
type: "selectBox";
|
|
1664
1718
|
options: {
|
|
@@ -1677,6 +1731,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1677
1731
|
title?: string | undefined;
|
|
1678
1732
|
usageDescription?: string | undefined;
|
|
1679
1733
|
};
|
|
1734
|
+
showCommentField?: boolean | undefined;
|
|
1680
1735
|
} | {
|
|
1681
1736
|
type: "affiliationSearch";
|
|
1682
1737
|
graphQL: {
|
|
@@ -1830,12 +1885,13 @@ export declare const ResearchOutputCustomColumnSchema: z.ZodObject<{
|
|
|
1830
1885
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1831
1886
|
content: z.ZodObject<{
|
|
1832
1887
|
attributes: z.ZodObject<{
|
|
1833
|
-
maxLength: z.ZodDefault<z.ZodNumber>;
|
|
1834
1888
|
minLength: z.ZodOptional<z.ZodNumber>;
|
|
1835
1889
|
pattern: z.ZodOptional<z.ZodString>;
|
|
1836
1890
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1837
1891
|
label: z.ZodOptional<z.ZodString>;
|
|
1838
1892
|
help: z.ZodOptional<z.ZodString>;
|
|
1893
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
1894
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1839
1895
|
}, z.core.$strip>;
|
|
1840
1896
|
type: z.ZodLiteral<"text">;
|
|
1841
1897
|
meta: z.ZodObject<{
|
|
@@ -1852,12 +1908,13 @@ export declare const DefaultResearchOutputCustomColumn: {
|
|
|
1852
1908
|
enabled: boolean;
|
|
1853
1909
|
content: {
|
|
1854
1910
|
attributes: {
|
|
1855
|
-
maxLength: number;
|
|
1856
1911
|
minLength?: number | undefined;
|
|
1857
1912
|
pattern?: string | undefined;
|
|
1858
1913
|
labelTranslationKey?: string | undefined;
|
|
1859
1914
|
label?: string | undefined;
|
|
1860
1915
|
help?: string | undefined;
|
|
1916
|
+
maxLength?: number | undefined;
|
|
1917
|
+
defaultValue?: string | undefined;
|
|
1861
1918
|
};
|
|
1862
1919
|
type: "text";
|
|
1863
1920
|
meta: {
|
|
@@ -1868,6 +1925,323 @@ export declare const DefaultResearchOutputCustomColumn: {
|
|
|
1868
1925
|
};
|
|
1869
1926
|
required: boolean;
|
|
1870
1927
|
};
|
|
1928
|
+
declare const AnyResearchOutputColumnSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1929
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
1930
|
+
help: z.ZodDefault<z.ZodString>;
|
|
1931
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
1932
|
+
content: z.ZodObject<{
|
|
1933
|
+
type: z.ZodLiteral<"text">;
|
|
1934
|
+
attributes: z.ZodObject<{
|
|
1935
|
+
maxLength: z.ZodDefault<z.ZodNumber>;
|
|
1936
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
1937
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
1938
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1939
|
+
help: z.ZodOptional<z.ZodString>;
|
|
1940
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1941
|
+
}, z.core.$strip>;
|
|
1942
|
+
meta: z.ZodObject<{
|
|
1943
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1944
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1945
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
1946
|
+
}, z.core.$strip>;
|
|
1947
|
+
}, z.core.$strip>;
|
|
1948
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1949
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1950
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
1951
|
+
help: z.ZodDefault<z.ZodString>;
|
|
1952
|
+
content: z.ZodObject<{
|
|
1953
|
+
type: z.ZodLiteral<"textArea">;
|
|
1954
|
+
attributes: z.ZodObject<{
|
|
1955
|
+
cols: z.ZodDefault<z.ZodNumber>;
|
|
1956
|
+
rows: z.ZodDefault<z.ZodNumber>;
|
|
1957
|
+
asRichText: z.ZodDefault<z.ZodBoolean>;
|
|
1958
|
+
maxLength: z.ZodDefault<z.ZodNumber>;
|
|
1959
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
1960
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
1961
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1962
|
+
help: z.ZodOptional<z.ZodString>;
|
|
1963
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1964
|
+
}, z.core.$strip>;
|
|
1965
|
+
meta: z.ZodObject<{
|
|
1966
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1967
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1968
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
1969
|
+
}, z.core.$strip>;
|
|
1970
|
+
}, z.core.$strip>;
|
|
1971
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
1972
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1973
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1974
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
1975
|
+
help: z.ZodDefault<z.ZodString>;
|
|
1976
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
1977
|
+
content: z.ZodObject<{
|
|
1978
|
+
type: z.ZodLiteral<"selectBox">;
|
|
1979
|
+
options: z.ZodArray<z.ZodObject<{
|
|
1980
|
+
selected: z.ZodDefault<z.ZodBoolean>;
|
|
1981
|
+
label: z.ZodDefault<z.ZodString>;
|
|
1982
|
+
value: z.ZodDefault<z.ZodString>;
|
|
1983
|
+
}, z.core.$strip>>;
|
|
1984
|
+
attributes: z.ZodObject<{
|
|
1985
|
+
multiple: z.ZodLiteral<false>;
|
|
1986
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1987
|
+
help: z.ZodOptional<z.ZodString>;
|
|
1988
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1989
|
+
}, z.core.$strip>;
|
|
1990
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1991
|
+
meta: z.ZodObject<{
|
|
1992
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1993
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1994
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
1995
|
+
}, z.core.$strip>;
|
|
1996
|
+
}, z.core.$strip>;
|
|
1997
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1998
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1999
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
2000
|
+
help: z.ZodDefault<z.ZodString>;
|
|
2001
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2002
|
+
content: z.ZodObject<{
|
|
2003
|
+
type: z.ZodLiteral<"checkBoxes">;
|
|
2004
|
+
options: z.ZodArray<z.ZodObject<{
|
|
2005
|
+
checked: z.ZodDefault<z.ZodBoolean>;
|
|
2006
|
+
label: z.ZodDefault<z.ZodString>;
|
|
2007
|
+
value: z.ZodDefault<z.ZodString>;
|
|
2008
|
+
}, z.core.$strip>>;
|
|
2009
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
2010
|
+
attributes: z.ZodObject<{
|
|
2011
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2012
|
+
help: z.ZodOptional<z.ZodString>;
|
|
2013
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2014
|
+
}, z.core.$strip>;
|
|
2015
|
+
meta: z.ZodObject<{
|
|
2016
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2017
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2018
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
2019
|
+
}, z.core.$strip>;
|
|
2020
|
+
}, z.core.$strip>;
|
|
2021
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
2022
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2023
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
2024
|
+
help: z.ZodDefault<z.ZodString>;
|
|
2025
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2026
|
+
content: z.ZodObject<{
|
|
2027
|
+
type: z.ZodLiteral<"radioButtons">;
|
|
2028
|
+
options: z.ZodArray<z.ZodObject<{
|
|
2029
|
+
selected: z.ZodDefault<z.ZodBoolean>;
|
|
2030
|
+
label: z.ZodDefault<z.ZodString>;
|
|
2031
|
+
value: z.ZodDefault<z.ZodString>;
|
|
2032
|
+
}, z.core.$strip>>;
|
|
2033
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
2034
|
+
attributes: z.ZodObject<{
|
|
2035
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2036
|
+
help: z.ZodOptional<z.ZodString>;
|
|
2037
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2038
|
+
}, z.core.$strip>;
|
|
2039
|
+
meta: z.ZodObject<{
|
|
2040
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2041
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2042
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
2043
|
+
}, z.core.$strip>;
|
|
2044
|
+
}, z.core.$strip>;
|
|
2045
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
2046
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2047
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
2048
|
+
help: z.ZodDefault<z.ZodString>;
|
|
2049
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2050
|
+
content: z.ZodObject<{
|
|
2051
|
+
type: z.ZodLiteral<"date">;
|
|
2052
|
+
attributes: z.ZodObject<{
|
|
2053
|
+
max: z.ZodOptional<z.ZodString>;
|
|
2054
|
+
min: z.ZodOptional<z.ZodString>;
|
|
2055
|
+
step: z.ZodDefault<z.ZodNumber>;
|
|
2056
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2057
|
+
help: z.ZodOptional<z.ZodString>;
|
|
2058
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2059
|
+
}, z.core.$strip>;
|
|
2060
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
2061
|
+
meta: z.ZodObject<{
|
|
2062
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2063
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2064
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
2065
|
+
}, z.core.$strip>;
|
|
2066
|
+
}, z.core.$strip>;
|
|
2067
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
2068
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2069
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
2070
|
+
help: z.ZodDefault<z.ZodString>;
|
|
2071
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2072
|
+
content: z.ZodObject<{
|
|
2073
|
+
type: z.ZodLiteral<"numberWithContext">;
|
|
2074
|
+
attributes: z.ZodObject<{
|
|
2075
|
+
context: z.ZodArray<z.ZodObject<{
|
|
2076
|
+
label: z.ZodDefault<z.ZodString>;
|
|
2077
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2078
|
+
value: z.ZodDefault<z.ZodString>;
|
|
2079
|
+
selected: z.ZodDefault<z.ZodBoolean>;
|
|
2080
|
+
}, z.core.$strip>>;
|
|
2081
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2082
|
+
min: z.ZodDefault<z.ZodNumber>;
|
|
2083
|
+
step: z.ZodDefault<z.ZodNumber>;
|
|
2084
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2085
|
+
help: z.ZodOptional<z.ZodString>;
|
|
2086
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2087
|
+
}, z.core.$strip>;
|
|
2088
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
2089
|
+
meta: z.ZodObject<{
|
|
2090
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2091
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2092
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
2093
|
+
}, z.core.$strip>;
|
|
2094
|
+
}, z.core.$strip>;
|
|
2095
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
2096
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2097
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
2098
|
+
help: z.ZodDefault<z.ZodString>;
|
|
2099
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2100
|
+
content: z.ZodObject<{
|
|
2101
|
+
type: z.ZodLiteral<"repositorySearch">;
|
|
2102
|
+
graphQL: z.ZodObject<{
|
|
2103
|
+
query: z.ZodLiteral<string>;
|
|
2104
|
+
queryId: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
2105
|
+
variables: z.ZodArray<z.ZodObject<{
|
|
2106
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
2107
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2108
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2109
|
+
name: z.ZodDefault<z.ZodString>;
|
|
2110
|
+
type: z.ZodDefault<z.ZodString>;
|
|
2111
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2112
|
+
}, z.core.$strip>>;
|
|
2113
|
+
answerField: z.ZodLiteral<"uri">;
|
|
2114
|
+
displayFields: z.ZodArray<z.ZodObject<{
|
|
2115
|
+
propertyName: z.ZodDefault<z.ZodString>;
|
|
2116
|
+
label: z.ZodDefault<z.ZodString>;
|
|
2117
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2118
|
+
}, z.core.$strip>>;
|
|
2119
|
+
responseField: z.ZodLiteral<"repositories.items">;
|
|
2120
|
+
localQueryId: z.ZodOptional<z.ZodString>;
|
|
2121
|
+
}, z.core.$strip>;
|
|
2122
|
+
attributes: z.ZodObject<{
|
|
2123
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2124
|
+
help: z.ZodOptional<z.ZodString>;
|
|
2125
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2126
|
+
}, z.core.$strip>;
|
|
2127
|
+
meta: z.ZodObject<{
|
|
2128
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2129
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2130
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
2131
|
+
}, z.core.$strip>;
|
|
2132
|
+
}, z.core.$strip>;
|
|
2133
|
+
preferences: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2134
|
+
label: z.ZodDefault<z.ZodString>;
|
|
2135
|
+
value: z.ZodDefault<z.ZodString>;
|
|
2136
|
+
}, z.core.$strip>>>;
|
|
2137
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
2138
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2139
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
2140
|
+
help: z.ZodDefault<z.ZodString>;
|
|
2141
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2142
|
+
content: z.ZodObject<{
|
|
2143
|
+
type: z.ZodLiteral<"metadataStandardSearch">;
|
|
2144
|
+
graphQL: z.ZodObject<{
|
|
2145
|
+
query: z.ZodLiteral<string>;
|
|
2146
|
+
queryId: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
2147
|
+
variables: z.ZodArray<z.ZodObject<{
|
|
2148
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
2149
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2150
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2151
|
+
name: z.ZodDefault<z.ZodString>;
|
|
2152
|
+
type: z.ZodDefault<z.ZodString>;
|
|
2153
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2154
|
+
}, z.core.$strip>>;
|
|
2155
|
+
answerField: z.ZodDefault<z.ZodLiteral<"uri">>;
|
|
2156
|
+
displayFields: z.ZodArray<z.ZodObject<{
|
|
2157
|
+
propertyName: z.ZodDefault<z.ZodString>;
|
|
2158
|
+
label: z.ZodDefault<z.ZodString>;
|
|
2159
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2160
|
+
}, z.core.$strip>>;
|
|
2161
|
+
responseField: z.ZodLiteral<"metadataStandards.items">;
|
|
2162
|
+
localQueryId: z.ZodOptional<z.ZodString>;
|
|
2163
|
+
}, z.core.$strip>;
|
|
2164
|
+
attributes: z.ZodObject<{
|
|
2165
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2166
|
+
help: z.ZodOptional<z.ZodString>;
|
|
2167
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2168
|
+
}, z.core.$strip>;
|
|
2169
|
+
meta: z.ZodObject<{
|
|
2170
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2171
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2172
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
2173
|
+
}, z.core.$strip>;
|
|
2174
|
+
}, z.core.$strip>;
|
|
2175
|
+
preferences: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2176
|
+
label: z.ZodDefault<z.ZodString>;
|
|
2177
|
+
value: z.ZodDefault<z.ZodString>;
|
|
2178
|
+
}, z.core.$strip>>>;
|
|
2179
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
2180
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2181
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
2182
|
+
help: z.ZodDefault<z.ZodString>;
|
|
2183
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2184
|
+
content: z.ZodObject<{
|
|
2185
|
+
type: z.ZodLiteral<"licenseSearch">;
|
|
2186
|
+
graphQL: z.ZodObject<{
|
|
2187
|
+
query: z.ZodLiteral<string>;
|
|
2188
|
+
queryId: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
2189
|
+
variables: z.ZodArray<z.ZodObject<{
|
|
2190
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
2191
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2192
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2193
|
+
name: z.ZodDefault<z.ZodString>;
|
|
2194
|
+
type: z.ZodDefault<z.ZodString>;
|
|
2195
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2196
|
+
}, z.core.$strip>>;
|
|
2197
|
+
answerField: z.ZodLiteral<"uri">;
|
|
2198
|
+
displayFields: z.ZodArray<z.ZodObject<{
|
|
2199
|
+
propertyName: z.ZodDefault<z.ZodString>;
|
|
2200
|
+
label: z.ZodDefault<z.ZodString>;
|
|
2201
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2202
|
+
}, z.core.$strip>>;
|
|
2203
|
+
responseField: z.ZodLiteral<"licenses.items">;
|
|
2204
|
+
localQueryId: z.ZodOptional<z.ZodString>;
|
|
2205
|
+
}, z.core.$strip>;
|
|
2206
|
+
attributes: z.ZodObject<{
|
|
2207
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2208
|
+
help: z.ZodOptional<z.ZodString>;
|
|
2209
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2210
|
+
}, z.core.$strip>;
|
|
2211
|
+
meta: z.ZodObject<{
|
|
2212
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2213
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2214
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
2215
|
+
}, z.core.$strip>;
|
|
2216
|
+
}, z.core.$strip>;
|
|
2217
|
+
preferences: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2218
|
+
label: z.ZodDefault<z.ZodString>;
|
|
2219
|
+
value: z.ZodDefault<z.ZodString>;
|
|
2220
|
+
}, z.core.$strip>>>;
|
|
2221
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
2222
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2223
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
2224
|
+
help: z.ZodDefault<z.ZodString>;
|
|
2225
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2226
|
+
content: z.ZodObject<{
|
|
2227
|
+
attributes: z.ZodObject<{
|
|
2228
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
2229
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
2230
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2231
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2232
|
+
help: z.ZodOptional<z.ZodString>;
|
|
2233
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
2234
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2235
|
+
}, z.core.$strip>;
|
|
2236
|
+
type: z.ZodLiteral<"text">;
|
|
2237
|
+
meta: z.ZodObject<{
|
|
2238
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2239
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2240
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
2241
|
+
}, z.core.$strip>;
|
|
2242
|
+
}, z.core.$strip>;
|
|
2243
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
2244
|
+
}, z.core.$strip>]>;
|
|
1871
2245
|
export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
1872
2246
|
type: z.ZodLiteral<"researchOutputTable">;
|
|
1873
2247
|
columns: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -1932,6 +2306,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
1932
2306
|
help: z.ZodOptional<z.ZodString>;
|
|
1933
2307
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1934
2308
|
}, z.core.$strip>;
|
|
2309
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1935
2310
|
meta: z.ZodObject<{
|
|
1936
2311
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1937
2312
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1950,6 +2325,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
1950
2325
|
label: z.ZodDefault<z.ZodString>;
|
|
1951
2326
|
value: z.ZodDefault<z.ZodString>;
|
|
1952
2327
|
}, z.core.$strip>>;
|
|
2328
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1953
2329
|
attributes: z.ZodObject<{
|
|
1954
2330
|
label: z.ZodOptional<z.ZodString>;
|
|
1955
2331
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -1973,6 +2349,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
1973
2349
|
label: z.ZodDefault<z.ZodString>;
|
|
1974
2350
|
value: z.ZodDefault<z.ZodString>;
|
|
1975
2351
|
}, z.core.$strip>>;
|
|
2352
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1976
2353
|
attributes: z.ZodObject<{
|
|
1977
2354
|
label: z.ZodOptional<z.ZodString>;
|
|
1978
2355
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -1999,6 +2376,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
1999
2376
|
help: z.ZodOptional<z.ZodString>;
|
|
2000
2377
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2001
2378
|
}, z.core.$strip>;
|
|
2379
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
2002
2380
|
meta: z.ZodObject<{
|
|
2003
2381
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2004
2382
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -2026,6 +2404,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
2026
2404
|
help: z.ZodOptional<z.ZodString>;
|
|
2027
2405
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2028
2406
|
}, z.core.$strip>;
|
|
2407
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
2029
2408
|
meta: z.ZodObject<{
|
|
2030
2409
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2031
2410
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -2165,33 +2544,13 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
2165
2544
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2166
2545
|
content: z.ZodObject<{
|
|
2167
2546
|
attributes: z.ZodObject<{
|
|
2168
|
-
maxLength: z.ZodDefault<z.ZodNumber>;
|
|
2169
|
-
minLength: z.ZodOptional<z.ZodNumber>;
|
|
2170
|
-
pattern: z.ZodOptional<z.ZodString>;
|
|
2171
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2172
|
-
label: z.ZodOptional<z.ZodString>;
|
|
2173
|
-
help: z.ZodOptional<z.ZodString>;
|
|
2174
|
-
}, z.core.$strip>;
|
|
2175
|
-
type: z.ZodLiteral<"text">;
|
|
2176
|
-
meta: z.ZodObject<{
|
|
2177
|
-
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2178
|
-
title: z.ZodOptional<z.ZodString>;
|
|
2179
|
-
usageDescription: z.ZodOptional<z.ZodString>;
|
|
2180
|
-
}, z.core.$strip>;
|
|
2181
|
-
}, z.core.$strip>;
|
|
2182
|
-
required: z.ZodDefault<z.ZodBoolean>;
|
|
2183
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2184
|
-
heading: z.ZodDefault<z.ZodString>;
|
|
2185
|
-
help: z.ZodDefault<z.ZodString>;
|
|
2186
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2187
|
-
content: z.ZodObject<{
|
|
2188
|
-
attributes: z.ZodObject<{
|
|
2189
|
-
maxLength: z.ZodDefault<z.ZodNumber>;
|
|
2190
2547
|
minLength: z.ZodOptional<z.ZodNumber>;
|
|
2191
2548
|
pattern: z.ZodOptional<z.ZodString>;
|
|
2192
2549
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2193
2550
|
label: z.ZodOptional<z.ZodString>;
|
|
2194
2551
|
help: z.ZodOptional<z.ZodString>;
|
|
2552
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
2553
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2195
2554
|
}, z.core.$strip>;
|
|
2196
2555
|
type: z.ZodLiteral<"text">;
|
|
2197
2556
|
meta: z.ZodObject<{
|
|
@@ -2287,6 +2646,7 @@ export declare const DefaultResearchOutputTableQuestion: {
|
|
|
2287
2646
|
title?: string | undefined;
|
|
2288
2647
|
usageDescription?: string | undefined;
|
|
2289
2648
|
};
|
|
2649
|
+
showCommentField?: boolean | undefined;
|
|
2290
2650
|
};
|
|
2291
2651
|
enabled: boolean;
|
|
2292
2652
|
} | {
|
|
@@ -2310,6 +2670,7 @@ export declare const DefaultResearchOutputTableQuestion: {
|
|
|
2310
2670
|
title?: string | undefined;
|
|
2311
2671
|
usageDescription?: string | undefined;
|
|
2312
2672
|
};
|
|
2673
|
+
showCommentField?: boolean | undefined;
|
|
2313
2674
|
};
|
|
2314
2675
|
required: boolean;
|
|
2315
2676
|
} | {
|
|
@@ -2333,6 +2694,7 @@ export declare const DefaultResearchOutputTableQuestion: {
|
|
|
2333
2694
|
title?: string | undefined;
|
|
2334
2695
|
usageDescription?: string | undefined;
|
|
2335
2696
|
};
|
|
2697
|
+
showCommentField?: boolean | undefined;
|
|
2336
2698
|
};
|
|
2337
2699
|
required: boolean;
|
|
2338
2700
|
} | {
|
|
@@ -2354,6 +2716,7 @@ export declare const DefaultResearchOutputTableQuestion: {
|
|
|
2354
2716
|
title?: string | undefined;
|
|
2355
2717
|
usageDescription?: string | undefined;
|
|
2356
2718
|
};
|
|
2719
|
+
showCommentField?: boolean | undefined;
|
|
2357
2720
|
};
|
|
2358
2721
|
required: boolean;
|
|
2359
2722
|
} | {
|
|
@@ -2381,6 +2744,7 @@ export declare const DefaultResearchOutputTableQuestion: {
|
|
|
2381
2744
|
title?: string | undefined;
|
|
2382
2745
|
usageDescription?: string | undefined;
|
|
2383
2746
|
};
|
|
2747
|
+
showCommentField?: boolean | undefined;
|
|
2384
2748
|
};
|
|
2385
2749
|
required: boolean;
|
|
2386
2750
|
} | {
|
|
@@ -2515,12 +2879,13 @@ export declare const DefaultResearchOutputTableQuestion: {
|
|
|
2515
2879
|
enabled: boolean;
|
|
2516
2880
|
content: {
|
|
2517
2881
|
attributes: {
|
|
2518
|
-
maxLength: number;
|
|
2519
2882
|
minLength?: number | undefined;
|
|
2520
2883
|
pattern?: string | undefined;
|
|
2521
2884
|
labelTranslationKey?: string | undefined;
|
|
2522
2885
|
label?: string | undefined;
|
|
2523
2886
|
help?: string | undefined;
|
|
2887
|
+
maxLength?: number | undefined;
|
|
2888
|
+
defaultValue?: string | undefined;
|
|
2524
2889
|
};
|
|
2525
2890
|
type: "text";
|
|
2526
2891
|
meta: {
|
|
@@ -2549,7 +2914,10 @@ export declare const DefaultResearchOutputTableQuestion: {
|
|
|
2549
2914
|
};
|
|
2550
2915
|
export type TableQuestionType = z.infer<typeof TableQuestionSchema>;
|
|
2551
2916
|
export type AnyTableColumnQuestionType = z.infer<typeof AnyTableColumnQuestionSchema>;
|
|
2917
|
+
export type ResearchOutputCustomTableColumnType = z.infer<typeof ResearchOutputCustomColumnSchema>;
|
|
2918
|
+
export type AnyResearchOutputColumnType = z.infer<typeof AnyResearchOutputColumnSchema>;
|
|
2552
2919
|
export type ResearchOutputTableQuestionType = z.infer<typeof ResearchOutputTableQuestionSchema>;
|
|
2553
2920
|
export declare const AnyTableColumnQuestionJSONSchema: z.core.JSONSchema.JSONSchema;
|
|
2554
2921
|
export declare const TableQuestionJSONSchema: z.core.JSONSchema.JSONSchema;
|
|
2555
2922
|
export declare const ResearchOutputTableQuestionJSONSchema: z.core.JSONSchema.JSONSchema;
|
|
2923
|
+
export {};
|