@dmptool/types 2.1.0 → 2.2.1
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/extension.d.ts +111 -0
- package/dist/dmp/index.js +48 -2
- package/dist/questions/__tests__/defaults.spec.js +12 -12
- package/dist/questions/__tests__/optionBasedQuestions.spec.js +25 -16
- package/dist/questions/dateQuestions.d.ts +4 -0
- package/dist/questions/dateQuestions.js +2 -2
- package/dist/questions/index.d.ts +38 -7
- package/dist/questions/numberQuestions.d.ts +8 -0
- package/dist/questions/numberQuestions.js +4 -4
- package/dist/questions/optionBasedQuestions.d.ts +18 -6
- package/dist/questions/optionBasedQuestions.js +23 -10
- package/dist/questions/tableQuestions.d.ts +94 -16
- package/dist/questions/tableQuestions.js +9 -9
- package/dist/questions/textQuestions.d.ts +4 -0
- package/dist/questions/textQuestions.js +2 -2
- package/dist/schemas/affiliationSearchAnswer.schema.json +3 -0
- package/dist/schemas/anyAnswer.schema.json +111 -0
- package/dist/schemas/anyQuestion.schema.json +114 -35
- package/dist/schemas/anyTableColumnAnswer.schema.json +54 -0
- package/dist/schemas/anyTableColumnQuestion.schema.json +42 -10
- package/dist/schemas/booleanAnswer.schema.json +3 -0
- package/dist/schemas/booleanQuestion.schema.json +3 -0
- package/dist/schemas/checkboxesAnswer.schema.json +3 -0
- package/dist/schemas/checkboxesQuestion.schema.json +6 -0
- package/dist/schemas/currencyAnswer.schema.json +3 -0
- package/dist/schemas/currencyQuestion.schema.json +3 -0
- package/dist/schemas/dateAnswer.schema.json +3 -0
- package/dist/schemas/dateQuestion.schema.json +3 -0
- package/dist/schemas/dateRangeAnswer.schema.json +3 -0
- package/dist/schemas/dateRangeQuestion.schema.json +3 -0
- package/dist/schemas/dmpExtension.schema.json +111 -0
- package/dist/schemas/emailAnswer.schema.json +3 -0
- package/dist/schemas/emailQuestion.schema.json +3 -0
- package/dist/schemas/licenseSearchAnswer.schema.json +3 -0
- package/dist/schemas/metadataStandardSearchAnswer.schema.json +3 -0
- package/dist/schemas/multiselectBoxAnswer.schema.json +3 -0
- package/dist/schemas/multiselectBoxQuestion.schema.json +6 -5
- package/dist/schemas/numberAnswer.schema.json +3 -0
- package/dist/schemas/numberQuestion.schema.json +3 -0
- package/dist/schemas/numberRangeAnswer.schema.json +3 -0
- package/dist/schemas/numberRangeQuestion.schema.json +3 -0
- package/dist/schemas/numberWithContextAnswer.schema.json +3 -0
- package/dist/schemas/numberWithContextQuestion.schema.json +3 -0
- package/dist/schemas/radioButtonsAnswer.schema.json +3 -0
- package/dist/schemas/radioButtonsQuestion.schema.json +6 -5
- package/dist/schemas/repositorySearchAnswer.schema.json +3 -0
- package/dist/schemas/researchOutputTableAnswer.schema.json +3344 -9
- package/dist/schemas/selectBoxAnswer.schema.json +3 -0
- package/dist/schemas/selectBoxQuestion.schema.json +6 -5
- package/dist/schemas/tableAnswer.schema.json +57 -0
- package/dist/schemas/tableQuestion.schema.json +42 -10
- package/dist/schemas/textAnswer.schema.json +3 -0
- package/dist/schemas/textAreaAnswer.schema.json +3 -0
- package/dist/schemas/urlAnswer.schema.json +3 -0
- package/dist/schemas/urlQuestion.schema.json +3 -0
- package/package.json +9 -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 +4823 -0
- package/schemas/anyTableColumnAnswer.schema.json +741 -0
- package/schemas/anyTableColumnQuestion.schema.json +1559 -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 +83 -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 +85 -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 +78 -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 +85 -0
- package/schemas/tableAnswer.schema.json +797 -0
- package/schemas/tableQuestion.schema.json +1661 -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>;
|
|
@@ -48,7 +49,9 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
48
49
|
checked: z.ZodDefault<z.ZodBoolean>;
|
|
49
50
|
label: z.ZodDefault<z.ZodString>;
|
|
50
51
|
value: z.ZodDefault<z.ZodString>;
|
|
52
|
+
description: z.ZodOptional<z.ZodString>;
|
|
51
53
|
}, z.core.$strip>>;
|
|
54
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
52
55
|
attributes: z.ZodObject<{
|
|
53
56
|
label: z.ZodOptional<z.ZodString>;
|
|
54
57
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -70,6 +73,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
70
73
|
help: z.ZodOptional<z.ZodString>;
|
|
71
74
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
72
75
|
}, z.core.$strip>;
|
|
76
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
73
77
|
meta: z.ZodObject<{
|
|
74
78
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
75
79
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -85,6 +89,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
85
89
|
help: z.ZodOptional<z.ZodString>;
|
|
86
90
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
87
91
|
}, z.core.$strip>;
|
|
92
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
88
93
|
meta: z.ZodObject<{
|
|
89
94
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
90
95
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -110,6 +115,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
110
115
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
111
116
|
}, z.core.$strip>;
|
|
112
117
|
}, z.core.$strip>;
|
|
118
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
113
119
|
attributes: z.ZodObject<{
|
|
114
120
|
label: z.ZodOptional<z.ZodString>;
|
|
115
121
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -131,6 +137,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
131
137
|
help: z.ZodOptional<z.ZodString>;
|
|
132
138
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
133
139
|
}, z.core.$strip>;
|
|
140
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
134
141
|
meta: z.ZodObject<{
|
|
135
142
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
136
143
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -210,6 +217,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
210
217
|
help: z.ZodOptional<z.ZodString>;
|
|
211
218
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
212
219
|
}, z.core.$strip>;
|
|
220
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
213
221
|
meta: z.ZodObject<{
|
|
214
222
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
215
223
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -231,6 +239,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
231
239
|
help: z.ZodOptional<z.ZodString>;
|
|
232
240
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
233
241
|
}, z.core.$strip>;
|
|
242
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
234
243
|
meta: z.ZodObject<{
|
|
235
244
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
236
245
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -239,10 +248,11 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
239
248
|
}, z.core.$strip>, z.ZodObject<{
|
|
240
249
|
type: z.ZodLiteral<"radioButtons">;
|
|
241
250
|
options: z.ZodArray<z.ZodObject<{
|
|
242
|
-
selected: z.ZodDefault<z.ZodBoolean>;
|
|
243
251
|
label: z.ZodDefault<z.ZodString>;
|
|
244
252
|
value: z.ZodDefault<z.ZodString>;
|
|
253
|
+
description: z.ZodOptional<z.ZodString>;
|
|
245
254
|
}, z.core.$strip>>;
|
|
255
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
246
256
|
attributes: z.ZodObject<{
|
|
247
257
|
label: z.ZodOptional<z.ZodString>;
|
|
248
258
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -288,9 +298,9 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
288
298
|
}, z.core.$strip>, z.ZodObject<{
|
|
289
299
|
type: z.ZodLiteral<"selectBox">;
|
|
290
300
|
options: z.ZodArray<z.ZodObject<{
|
|
291
|
-
selected: z.ZodDefault<z.ZodBoolean>;
|
|
292
301
|
label: z.ZodDefault<z.ZodString>;
|
|
293
302
|
value: z.ZodDefault<z.ZodString>;
|
|
303
|
+
description: z.ZodOptional<z.ZodString>;
|
|
294
304
|
}, z.core.$strip>>;
|
|
295
305
|
attributes: z.ZodObject<{
|
|
296
306
|
multiple: z.ZodLiteral<false>;
|
|
@@ -298,6 +308,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
298
308
|
help: z.ZodOptional<z.ZodString>;
|
|
299
309
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
300
310
|
}, z.core.$strip>;
|
|
311
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
301
312
|
meta: z.ZodObject<{
|
|
302
313
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
303
314
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -346,6 +357,7 @@ export declare const AnyTableColumnQuestionSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
346
357
|
help: z.ZodOptional<z.ZodString>;
|
|
347
358
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
348
359
|
}, z.core.$strip>;
|
|
360
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
349
361
|
meta: z.ZodObject<{
|
|
350
362
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
351
363
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -395,6 +407,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
395
407
|
label: z.ZodString;
|
|
396
408
|
value: z.ZodDefault<z.ZodBoolean>;
|
|
397
409
|
}, z.core.$strip>;
|
|
410
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
398
411
|
meta: z.ZodObject<{
|
|
399
412
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
400
413
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -406,7 +419,9 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
406
419
|
checked: z.ZodDefault<z.ZodBoolean>;
|
|
407
420
|
label: z.ZodDefault<z.ZodString>;
|
|
408
421
|
value: z.ZodDefault<z.ZodString>;
|
|
422
|
+
description: z.ZodOptional<z.ZodString>;
|
|
409
423
|
}, z.core.$strip>>;
|
|
424
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
410
425
|
attributes: z.ZodObject<{
|
|
411
426
|
label: z.ZodOptional<z.ZodString>;
|
|
412
427
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -428,6 +443,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
428
443
|
help: z.ZodOptional<z.ZodString>;
|
|
429
444
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
430
445
|
}, z.core.$strip>;
|
|
446
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
431
447
|
meta: z.ZodObject<{
|
|
432
448
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
433
449
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -443,6 +459,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
443
459
|
help: z.ZodOptional<z.ZodString>;
|
|
444
460
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
445
461
|
}, z.core.$strip>;
|
|
462
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
446
463
|
meta: z.ZodObject<{
|
|
447
464
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
448
465
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -468,6 +485,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
468
485
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
469
486
|
}, z.core.$strip>;
|
|
470
487
|
}, z.core.$strip>;
|
|
488
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
471
489
|
attributes: z.ZodObject<{
|
|
472
490
|
label: z.ZodOptional<z.ZodString>;
|
|
473
491
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -489,6 +507,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
489
507
|
help: z.ZodOptional<z.ZodString>;
|
|
490
508
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
491
509
|
}, z.core.$strip>;
|
|
510
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
492
511
|
meta: z.ZodObject<{
|
|
493
512
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
494
513
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -568,6 +587,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
568
587
|
help: z.ZodOptional<z.ZodString>;
|
|
569
588
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
570
589
|
}, z.core.$strip>;
|
|
590
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
571
591
|
meta: z.ZodObject<{
|
|
572
592
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
573
593
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -589,6 +609,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
589
609
|
help: z.ZodOptional<z.ZodString>;
|
|
590
610
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
591
611
|
}, z.core.$strip>;
|
|
612
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
592
613
|
meta: z.ZodObject<{
|
|
593
614
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
594
615
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -597,10 +618,11 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
597
618
|
}, z.core.$strip>, z.ZodObject<{
|
|
598
619
|
type: z.ZodLiteral<"radioButtons">;
|
|
599
620
|
options: z.ZodArray<z.ZodObject<{
|
|
600
|
-
selected: z.ZodDefault<z.ZodBoolean>;
|
|
601
621
|
label: z.ZodDefault<z.ZodString>;
|
|
602
622
|
value: z.ZodDefault<z.ZodString>;
|
|
623
|
+
description: z.ZodOptional<z.ZodString>;
|
|
603
624
|
}, z.core.$strip>>;
|
|
625
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
604
626
|
attributes: z.ZodObject<{
|
|
605
627
|
label: z.ZodOptional<z.ZodString>;
|
|
606
628
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -646,9 +668,9 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
646
668
|
}, z.core.$strip>, z.ZodObject<{
|
|
647
669
|
type: z.ZodLiteral<"selectBox">;
|
|
648
670
|
options: z.ZodArray<z.ZodObject<{
|
|
649
|
-
selected: z.ZodDefault<z.ZodBoolean>;
|
|
650
671
|
label: z.ZodDefault<z.ZodString>;
|
|
651
672
|
value: z.ZodDefault<z.ZodString>;
|
|
673
|
+
description: z.ZodOptional<z.ZodString>;
|
|
652
674
|
}, z.core.$strip>>;
|
|
653
675
|
attributes: z.ZodObject<{
|
|
654
676
|
multiple: z.ZodLiteral<false>;
|
|
@@ -656,6 +678,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
656
678
|
help: z.ZodOptional<z.ZodString>;
|
|
657
679
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
658
680
|
}, z.core.$strip>;
|
|
681
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
659
682
|
meta: z.ZodObject<{
|
|
660
683
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
661
684
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -704,6 +727,7 @@ export declare const TableColumnSchema: z.ZodObject<{
|
|
|
704
727
|
help: z.ZodOptional<z.ZodString>;
|
|
705
728
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
706
729
|
}, z.core.$strip>;
|
|
730
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
707
731
|
meta: z.ZodObject<{
|
|
708
732
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
709
733
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -731,6 +755,7 @@ export declare const DefaultTableColumn: {
|
|
|
731
755
|
title?: string | undefined;
|
|
732
756
|
usageDescription?: string | undefined;
|
|
733
757
|
};
|
|
758
|
+
showCommentField?: boolean | undefined;
|
|
734
759
|
} | {
|
|
735
760
|
type: "number";
|
|
736
761
|
attributes: {
|
|
@@ -746,6 +771,7 @@ export declare const DefaultTableColumn: {
|
|
|
746
771
|
title?: string | undefined;
|
|
747
772
|
usageDescription?: string | undefined;
|
|
748
773
|
};
|
|
774
|
+
showCommentField?: boolean | undefined;
|
|
749
775
|
} | {
|
|
750
776
|
type: "numberWithContext";
|
|
751
777
|
attributes: {
|
|
@@ -767,6 +793,7 @@ export declare const DefaultTableColumn: {
|
|
|
767
793
|
title?: string | undefined;
|
|
768
794
|
usageDescription?: string | undefined;
|
|
769
795
|
};
|
|
796
|
+
showCommentField?: boolean | undefined;
|
|
770
797
|
} | {
|
|
771
798
|
type: "email";
|
|
772
799
|
attributes: {
|
|
@@ -783,6 +810,7 @@ export declare const DefaultTableColumn: {
|
|
|
783
810
|
title?: string | undefined;
|
|
784
811
|
usageDescription?: string | undefined;
|
|
785
812
|
};
|
|
813
|
+
showCommentField?: boolean | undefined;
|
|
786
814
|
} | {
|
|
787
815
|
type: "textArea";
|
|
788
816
|
attributes: {
|
|
@@ -831,6 +859,7 @@ export declare const DefaultTableColumn: {
|
|
|
831
859
|
title?: string | undefined;
|
|
832
860
|
usageDescription?: string | undefined;
|
|
833
861
|
};
|
|
862
|
+
showCommentField?: boolean | undefined;
|
|
834
863
|
} | {
|
|
835
864
|
type: "date";
|
|
836
865
|
attributes: {
|
|
@@ -846,6 +875,7 @@ export declare const DefaultTableColumn: {
|
|
|
846
875
|
title?: string | undefined;
|
|
847
876
|
usageDescription?: string | undefined;
|
|
848
877
|
};
|
|
878
|
+
showCommentField?: boolean | undefined;
|
|
849
879
|
} | {
|
|
850
880
|
type: "dateRange";
|
|
851
881
|
columns: {
|
|
@@ -876,6 +906,7 @@ export declare const DefaultTableColumn: {
|
|
|
876
906
|
title?: string | undefined;
|
|
877
907
|
usageDescription?: string | undefined;
|
|
878
908
|
};
|
|
909
|
+
showCommentField?: boolean | undefined;
|
|
879
910
|
} | {
|
|
880
911
|
type: "boolean";
|
|
881
912
|
attributes: {
|
|
@@ -887,12 +918,14 @@ export declare const DefaultTableColumn: {
|
|
|
887
918
|
title?: string | undefined;
|
|
888
919
|
usageDescription?: string | undefined;
|
|
889
920
|
};
|
|
921
|
+
showCommentField?: boolean | undefined;
|
|
890
922
|
} | {
|
|
891
923
|
type: "checkBoxes";
|
|
892
924
|
options: {
|
|
893
925
|
checked: boolean;
|
|
894
926
|
label: string;
|
|
895
927
|
value: string;
|
|
928
|
+
description?: string | undefined;
|
|
896
929
|
}[];
|
|
897
930
|
attributes: {
|
|
898
931
|
label?: string | undefined;
|
|
@@ -904,12 +937,13 @@ export declare const DefaultTableColumn: {
|
|
|
904
937
|
title?: string | undefined;
|
|
905
938
|
usageDescription?: string | undefined;
|
|
906
939
|
};
|
|
940
|
+
showCommentField?: boolean | undefined;
|
|
907
941
|
} | {
|
|
908
942
|
type: "radioButtons";
|
|
909
943
|
options: {
|
|
910
|
-
selected: boolean;
|
|
911
944
|
label: string;
|
|
912
945
|
value: string;
|
|
946
|
+
description?: string | undefined;
|
|
913
947
|
}[];
|
|
914
948
|
attributes: {
|
|
915
949
|
label?: string | undefined;
|
|
@@ -921,12 +955,13 @@ export declare const DefaultTableColumn: {
|
|
|
921
955
|
title?: string | undefined;
|
|
922
956
|
usageDescription?: string | undefined;
|
|
923
957
|
};
|
|
958
|
+
showCommentField?: boolean | undefined;
|
|
924
959
|
} | {
|
|
925
960
|
type: "selectBox";
|
|
926
961
|
options: {
|
|
927
|
-
selected: boolean;
|
|
928
962
|
label: string;
|
|
929
963
|
value: string;
|
|
964
|
+
description?: string | undefined;
|
|
930
965
|
}[];
|
|
931
966
|
attributes: {
|
|
932
967
|
multiple: false;
|
|
@@ -939,6 +974,7 @@ export declare const DefaultTableColumn: {
|
|
|
939
974
|
title?: string | undefined;
|
|
940
975
|
usageDescription?: string | undefined;
|
|
941
976
|
};
|
|
977
|
+
showCommentField?: boolean | undefined;
|
|
942
978
|
} | {
|
|
943
979
|
type: "affiliationSearch";
|
|
944
980
|
graphQL: {
|
|
@@ -1115,6 +1151,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1115
1151
|
label: z.ZodString;
|
|
1116
1152
|
value: z.ZodDefault<z.ZodBoolean>;
|
|
1117
1153
|
}, z.core.$strip>;
|
|
1154
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1118
1155
|
meta: z.ZodObject<{
|
|
1119
1156
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1120
1157
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1126,7 +1163,9 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1126
1163
|
checked: z.ZodDefault<z.ZodBoolean>;
|
|
1127
1164
|
label: z.ZodDefault<z.ZodString>;
|
|
1128
1165
|
value: z.ZodDefault<z.ZodString>;
|
|
1166
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1129
1167
|
}, z.core.$strip>>;
|
|
1168
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1130
1169
|
attributes: z.ZodObject<{
|
|
1131
1170
|
label: z.ZodOptional<z.ZodString>;
|
|
1132
1171
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -1148,6 +1187,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1148
1187
|
help: z.ZodOptional<z.ZodString>;
|
|
1149
1188
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1150
1189
|
}, z.core.$strip>;
|
|
1190
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1151
1191
|
meta: z.ZodObject<{
|
|
1152
1192
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1153
1193
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1163,6 +1203,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1163
1203
|
help: z.ZodOptional<z.ZodString>;
|
|
1164
1204
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1165
1205
|
}, z.core.$strip>;
|
|
1206
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1166
1207
|
meta: z.ZodObject<{
|
|
1167
1208
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1168
1209
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1188,6 +1229,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1188
1229
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1189
1230
|
}, z.core.$strip>;
|
|
1190
1231
|
}, z.core.$strip>;
|
|
1232
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1191
1233
|
attributes: z.ZodObject<{
|
|
1192
1234
|
label: z.ZodOptional<z.ZodString>;
|
|
1193
1235
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -1209,6 +1251,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1209
1251
|
help: z.ZodOptional<z.ZodString>;
|
|
1210
1252
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1211
1253
|
}, z.core.$strip>;
|
|
1254
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1212
1255
|
meta: z.ZodObject<{
|
|
1213
1256
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1214
1257
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1288,6 +1331,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1288
1331
|
help: z.ZodOptional<z.ZodString>;
|
|
1289
1332
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1290
1333
|
}, z.core.$strip>;
|
|
1334
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1291
1335
|
meta: z.ZodObject<{
|
|
1292
1336
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1293
1337
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1309,6 +1353,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1309
1353
|
help: z.ZodOptional<z.ZodString>;
|
|
1310
1354
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1311
1355
|
}, z.core.$strip>;
|
|
1356
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1312
1357
|
meta: z.ZodObject<{
|
|
1313
1358
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1314
1359
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1317,10 +1362,11 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1317
1362
|
}, z.core.$strip>, z.ZodObject<{
|
|
1318
1363
|
type: z.ZodLiteral<"radioButtons">;
|
|
1319
1364
|
options: z.ZodArray<z.ZodObject<{
|
|
1320
|
-
selected: z.ZodDefault<z.ZodBoolean>;
|
|
1321
1365
|
label: z.ZodDefault<z.ZodString>;
|
|
1322
1366
|
value: z.ZodDefault<z.ZodString>;
|
|
1367
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1323
1368
|
}, z.core.$strip>>;
|
|
1369
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1324
1370
|
attributes: z.ZodObject<{
|
|
1325
1371
|
label: z.ZodOptional<z.ZodString>;
|
|
1326
1372
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -1366,9 +1412,9 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1366
1412
|
}, z.core.$strip>, z.ZodObject<{
|
|
1367
1413
|
type: z.ZodLiteral<"selectBox">;
|
|
1368
1414
|
options: z.ZodArray<z.ZodObject<{
|
|
1369
|
-
selected: z.ZodDefault<z.ZodBoolean>;
|
|
1370
1415
|
label: z.ZodDefault<z.ZodString>;
|
|
1371
1416
|
value: z.ZodDefault<z.ZodString>;
|
|
1417
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1372
1418
|
}, z.core.$strip>>;
|
|
1373
1419
|
attributes: z.ZodObject<{
|
|
1374
1420
|
multiple: z.ZodLiteral<false>;
|
|
@@ -1376,6 +1422,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1376
1422
|
help: z.ZodOptional<z.ZodString>;
|
|
1377
1423
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1378
1424
|
}, z.core.$strip>;
|
|
1425
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1379
1426
|
meta: z.ZodObject<{
|
|
1380
1427
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1381
1428
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1424,6 +1471,7 @@ export declare const TableQuestionSchema: z.ZodObject<{
|
|
|
1424
1471
|
help: z.ZodOptional<z.ZodString>;
|
|
1425
1472
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1426
1473
|
}, z.core.$strip>;
|
|
1474
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1427
1475
|
meta: z.ZodObject<{
|
|
1428
1476
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1429
1477
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1469,6 +1517,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1469
1517
|
title?: string | undefined;
|
|
1470
1518
|
usageDescription?: string | undefined;
|
|
1471
1519
|
};
|
|
1520
|
+
showCommentField?: boolean | undefined;
|
|
1472
1521
|
} | {
|
|
1473
1522
|
type: "number";
|
|
1474
1523
|
attributes: {
|
|
@@ -1484,6 +1533,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1484
1533
|
title?: string | undefined;
|
|
1485
1534
|
usageDescription?: string | undefined;
|
|
1486
1535
|
};
|
|
1536
|
+
showCommentField?: boolean | undefined;
|
|
1487
1537
|
} | {
|
|
1488
1538
|
type: "numberWithContext";
|
|
1489
1539
|
attributes: {
|
|
@@ -1505,6 +1555,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1505
1555
|
title?: string | undefined;
|
|
1506
1556
|
usageDescription?: string | undefined;
|
|
1507
1557
|
};
|
|
1558
|
+
showCommentField?: boolean | undefined;
|
|
1508
1559
|
} | {
|
|
1509
1560
|
type: "email";
|
|
1510
1561
|
attributes: {
|
|
@@ -1521,6 +1572,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1521
1572
|
title?: string | undefined;
|
|
1522
1573
|
usageDescription?: string | undefined;
|
|
1523
1574
|
};
|
|
1575
|
+
showCommentField?: boolean | undefined;
|
|
1524
1576
|
} | {
|
|
1525
1577
|
type: "textArea";
|
|
1526
1578
|
attributes: {
|
|
@@ -1569,6 +1621,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1569
1621
|
title?: string | undefined;
|
|
1570
1622
|
usageDescription?: string | undefined;
|
|
1571
1623
|
};
|
|
1624
|
+
showCommentField?: boolean | undefined;
|
|
1572
1625
|
} | {
|
|
1573
1626
|
type: "date";
|
|
1574
1627
|
attributes: {
|
|
@@ -1584,6 +1637,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1584
1637
|
title?: string | undefined;
|
|
1585
1638
|
usageDescription?: string | undefined;
|
|
1586
1639
|
};
|
|
1640
|
+
showCommentField?: boolean | undefined;
|
|
1587
1641
|
} | {
|
|
1588
1642
|
type: "dateRange";
|
|
1589
1643
|
columns: {
|
|
@@ -1614,6 +1668,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1614
1668
|
title?: string | undefined;
|
|
1615
1669
|
usageDescription?: string | undefined;
|
|
1616
1670
|
};
|
|
1671
|
+
showCommentField?: boolean | undefined;
|
|
1617
1672
|
} | {
|
|
1618
1673
|
type: "boolean";
|
|
1619
1674
|
attributes: {
|
|
@@ -1625,12 +1680,14 @@ export declare const DefaultTableQuestion: {
|
|
|
1625
1680
|
title?: string | undefined;
|
|
1626
1681
|
usageDescription?: string | undefined;
|
|
1627
1682
|
};
|
|
1683
|
+
showCommentField?: boolean | undefined;
|
|
1628
1684
|
} | {
|
|
1629
1685
|
type: "checkBoxes";
|
|
1630
1686
|
options: {
|
|
1631
1687
|
checked: boolean;
|
|
1632
1688
|
label: string;
|
|
1633
1689
|
value: string;
|
|
1690
|
+
description?: string | undefined;
|
|
1634
1691
|
}[];
|
|
1635
1692
|
attributes: {
|
|
1636
1693
|
label?: string | undefined;
|
|
@@ -1642,12 +1699,13 @@ export declare const DefaultTableQuestion: {
|
|
|
1642
1699
|
title?: string | undefined;
|
|
1643
1700
|
usageDescription?: string | undefined;
|
|
1644
1701
|
};
|
|
1702
|
+
showCommentField?: boolean | undefined;
|
|
1645
1703
|
} | {
|
|
1646
1704
|
type: "radioButtons";
|
|
1647
1705
|
options: {
|
|
1648
|
-
selected: boolean;
|
|
1649
1706
|
label: string;
|
|
1650
1707
|
value: string;
|
|
1708
|
+
description?: string | undefined;
|
|
1651
1709
|
}[];
|
|
1652
1710
|
attributes: {
|
|
1653
1711
|
label?: string | undefined;
|
|
@@ -1659,12 +1717,13 @@ export declare const DefaultTableQuestion: {
|
|
|
1659
1717
|
title?: string | undefined;
|
|
1660
1718
|
usageDescription?: string | undefined;
|
|
1661
1719
|
};
|
|
1720
|
+
showCommentField?: boolean | undefined;
|
|
1662
1721
|
} | {
|
|
1663
1722
|
type: "selectBox";
|
|
1664
1723
|
options: {
|
|
1665
|
-
selected: boolean;
|
|
1666
1724
|
label: string;
|
|
1667
1725
|
value: string;
|
|
1726
|
+
description?: string | undefined;
|
|
1668
1727
|
}[];
|
|
1669
1728
|
attributes: {
|
|
1670
1729
|
multiple: false;
|
|
@@ -1677,6 +1736,7 @@ export declare const DefaultTableQuestion: {
|
|
|
1677
1736
|
title?: string | undefined;
|
|
1678
1737
|
usageDescription?: string | undefined;
|
|
1679
1738
|
};
|
|
1739
|
+
showCommentField?: boolean | undefined;
|
|
1680
1740
|
} | {
|
|
1681
1741
|
type: "affiliationSearch";
|
|
1682
1742
|
graphQL: {
|
|
@@ -1922,9 +1982,9 @@ declare const AnyResearchOutputColumnSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
1922
1982
|
content: z.ZodObject<{
|
|
1923
1983
|
type: z.ZodLiteral<"selectBox">;
|
|
1924
1984
|
options: z.ZodArray<z.ZodObject<{
|
|
1925
|
-
selected: z.ZodDefault<z.ZodBoolean>;
|
|
1926
1985
|
label: z.ZodDefault<z.ZodString>;
|
|
1927
1986
|
value: z.ZodDefault<z.ZodString>;
|
|
1987
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1928
1988
|
}, z.core.$strip>>;
|
|
1929
1989
|
attributes: z.ZodObject<{
|
|
1930
1990
|
multiple: z.ZodLiteral<false>;
|
|
@@ -1932,6 +1992,7 @@ declare const AnyResearchOutputColumnSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
1932
1992
|
help: z.ZodOptional<z.ZodString>;
|
|
1933
1993
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
1934
1994
|
}, z.core.$strip>;
|
|
1995
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1935
1996
|
meta: z.ZodObject<{
|
|
1936
1997
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
1937
1998
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1949,7 +2010,9 @@ declare const AnyResearchOutputColumnSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
1949
2010
|
checked: z.ZodDefault<z.ZodBoolean>;
|
|
1950
2011
|
label: z.ZodDefault<z.ZodString>;
|
|
1951
2012
|
value: z.ZodDefault<z.ZodString>;
|
|
2013
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1952
2014
|
}, z.core.$strip>>;
|
|
2015
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1953
2016
|
attributes: z.ZodObject<{
|
|
1954
2017
|
label: z.ZodOptional<z.ZodString>;
|
|
1955
2018
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -1969,10 +2032,11 @@ declare const AnyResearchOutputColumnSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
1969
2032
|
content: z.ZodObject<{
|
|
1970
2033
|
type: z.ZodLiteral<"radioButtons">;
|
|
1971
2034
|
options: z.ZodArray<z.ZodObject<{
|
|
1972
|
-
selected: z.ZodDefault<z.ZodBoolean>;
|
|
1973
2035
|
label: z.ZodDefault<z.ZodString>;
|
|
1974
2036
|
value: z.ZodDefault<z.ZodString>;
|
|
2037
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1975
2038
|
}, z.core.$strip>>;
|
|
2039
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
1976
2040
|
attributes: z.ZodObject<{
|
|
1977
2041
|
label: z.ZodOptional<z.ZodString>;
|
|
1978
2042
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -1999,6 +2063,7 @@ declare const AnyResearchOutputColumnSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
1999
2063
|
help: z.ZodOptional<z.ZodString>;
|
|
2000
2064
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2001
2065
|
}, z.core.$strip>;
|
|
2066
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
2002
2067
|
meta: z.ZodObject<{
|
|
2003
2068
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2004
2069
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -2026,6 +2091,7 @@ declare const AnyResearchOutputColumnSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
2026
2091
|
help: z.ZodOptional<z.ZodString>;
|
|
2027
2092
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2028
2093
|
}, z.core.$strip>;
|
|
2094
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
2029
2095
|
meta: z.ZodObject<{
|
|
2030
2096
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2031
2097
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -2236,9 +2302,9 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
2236
2302
|
content: z.ZodObject<{
|
|
2237
2303
|
type: z.ZodLiteral<"selectBox">;
|
|
2238
2304
|
options: z.ZodArray<z.ZodObject<{
|
|
2239
|
-
selected: z.ZodDefault<z.ZodBoolean>;
|
|
2240
2305
|
label: z.ZodDefault<z.ZodString>;
|
|
2241
2306
|
value: z.ZodDefault<z.ZodString>;
|
|
2307
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2242
2308
|
}, z.core.$strip>>;
|
|
2243
2309
|
attributes: z.ZodObject<{
|
|
2244
2310
|
multiple: z.ZodLiteral<false>;
|
|
@@ -2246,6 +2312,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
2246
2312
|
help: z.ZodOptional<z.ZodString>;
|
|
2247
2313
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2248
2314
|
}, z.core.$strip>;
|
|
2315
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
2249
2316
|
meta: z.ZodObject<{
|
|
2250
2317
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2251
2318
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -2263,7 +2330,9 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
2263
2330
|
checked: z.ZodDefault<z.ZodBoolean>;
|
|
2264
2331
|
label: z.ZodDefault<z.ZodString>;
|
|
2265
2332
|
value: z.ZodDefault<z.ZodString>;
|
|
2333
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2266
2334
|
}, z.core.$strip>>;
|
|
2335
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
2267
2336
|
attributes: z.ZodObject<{
|
|
2268
2337
|
label: z.ZodOptional<z.ZodString>;
|
|
2269
2338
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -2283,10 +2352,11 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
2283
2352
|
content: z.ZodObject<{
|
|
2284
2353
|
type: z.ZodLiteral<"radioButtons">;
|
|
2285
2354
|
options: z.ZodArray<z.ZodObject<{
|
|
2286
|
-
selected: z.ZodDefault<z.ZodBoolean>;
|
|
2287
2355
|
label: z.ZodDefault<z.ZodString>;
|
|
2288
2356
|
value: z.ZodDefault<z.ZodString>;
|
|
2357
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2289
2358
|
}, z.core.$strip>>;
|
|
2359
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
2290
2360
|
attributes: z.ZodObject<{
|
|
2291
2361
|
label: z.ZodOptional<z.ZodString>;
|
|
2292
2362
|
help: z.ZodOptional<z.ZodString>;
|
|
@@ -2313,6 +2383,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
2313
2383
|
help: z.ZodOptional<z.ZodString>;
|
|
2314
2384
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2315
2385
|
}, z.core.$strip>;
|
|
2386
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
2316
2387
|
meta: z.ZodObject<{
|
|
2317
2388
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2318
2389
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -2340,6 +2411,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
2340
2411
|
help: z.ZodOptional<z.ZodString>;
|
|
2341
2412
|
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
2342
2413
|
}, z.core.$strip>;
|
|
2414
|
+
showCommentField: z.ZodOptional<z.ZodBoolean>;
|
|
2343
2415
|
meta: z.ZodObject<{
|
|
2344
2416
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
2345
2417
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -2566,9 +2638,9 @@ export declare const DefaultResearchOutputTableQuestion: {
|
|
|
2566
2638
|
content: {
|
|
2567
2639
|
type: "selectBox";
|
|
2568
2640
|
options: {
|
|
2569
|
-
selected: boolean;
|
|
2570
2641
|
label: string;
|
|
2571
2642
|
value: string;
|
|
2643
|
+
description?: string | undefined;
|
|
2572
2644
|
}[];
|
|
2573
2645
|
attributes: {
|
|
2574
2646
|
multiple: false;
|
|
@@ -2581,6 +2653,7 @@ export declare const DefaultResearchOutputTableQuestion: {
|
|
|
2581
2653
|
title?: string | undefined;
|
|
2582
2654
|
usageDescription?: string | undefined;
|
|
2583
2655
|
};
|
|
2656
|
+
showCommentField?: boolean | undefined;
|
|
2584
2657
|
};
|
|
2585
2658
|
enabled: boolean;
|
|
2586
2659
|
} | {
|
|
@@ -2593,6 +2666,7 @@ export declare const DefaultResearchOutputTableQuestion: {
|
|
|
2593
2666
|
checked: boolean;
|
|
2594
2667
|
label: string;
|
|
2595
2668
|
value: string;
|
|
2669
|
+
description?: string | undefined;
|
|
2596
2670
|
}[];
|
|
2597
2671
|
attributes: {
|
|
2598
2672
|
label?: string | undefined;
|
|
@@ -2604,6 +2678,7 @@ export declare const DefaultResearchOutputTableQuestion: {
|
|
|
2604
2678
|
title?: string | undefined;
|
|
2605
2679
|
usageDescription?: string | undefined;
|
|
2606
2680
|
};
|
|
2681
|
+
showCommentField?: boolean | undefined;
|
|
2607
2682
|
};
|
|
2608
2683
|
required: boolean;
|
|
2609
2684
|
} | {
|
|
@@ -2613,9 +2688,9 @@ export declare const DefaultResearchOutputTableQuestion: {
|
|
|
2613
2688
|
content: {
|
|
2614
2689
|
type: "radioButtons";
|
|
2615
2690
|
options: {
|
|
2616
|
-
selected: boolean;
|
|
2617
2691
|
label: string;
|
|
2618
2692
|
value: string;
|
|
2693
|
+
description?: string | undefined;
|
|
2619
2694
|
}[];
|
|
2620
2695
|
attributes: {
|
|
2621
2696
|
label?: string | undefined;
|
|
@@ -2627,6 +2702,7 @@ export declare const DefaultResearchOutputTableQuestion: {
|
|
|
2627
2702
|
title?: string | undefined;
|
|
2628
2703
|
usageDescription?: string | undefined;
|
|
2629
2704
|
};
|
|
2705
|
+
showCommentField?: boolean | undefined;
|
|
2630
2706
|
};
|
|
2631
2707
|
required: boolean;
|
|
2632
2708
|
} | {
|
|
@@ -2648,6 +2724,7 @@ export declare const DefaultResearchOutputTableQuestion: {
|
|
|
2648
2724
|
title?: string | undefined;
|
|
2649
2725
|
usageDescription?: string | undefined;
|
|
2650
2726
|
};
|
|
2727
|
+
showCommentField?: boolean | undefined;
|
|
2651
2728
|
};
|
|
2652
2729
|
required: boolean;
|
|
2653
2730
|
} | {
|
|
@@ -2675,6 +2752,7 @@ export declare const DefaultResearchOutputTableQuestion: {
|
|
|
2675
2752
|
title?: string | undefined;
|
|
2676
2753
|
usageDescription?: string | undefined;
|
|
2677
2754
|
};
|
|
2755
|
+
showCommentField?: boolean | undefined;
|
|
2678
2756
|
};
|
|
2679
2757
|
required: boolean;
|
|
2680
2758
|
} | {
|