@dmptool/types 1.1.3 → 1.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 +119 -47
- package/dist/answers/__tests__/answers.spec.js +20 -28
- package/dist/answers/__tests__/usage.spec.d.ts +1 -0
- package/dist/answers/__tests__/usage.spec.js +175 -0
- package/dist/answers/answer.d.ts +12 -15
- package/dist/answers/answer.js +3 -4
- package/dist/answers/dateAnswers.d.ts +30 -30
- package/dist/answers/dateAnswers.js +6 -5
- package/dist/answers/graphQLAnswers.d.ts +25 -25
- package/dist/answers/graphQLAnswers.js +4 -4
- package/dist/answers/index.d.ts +860 -1088
- package/dist/answers/index.js +2 -2
- package/dist/answers/numberAnswers.d.ts +41 -41
- package/dist/answers/numberAnswers.js +8 -8
- package/dist/answers/optionBasedAnswers.d.ts +55 -55
- package/dist/answers/optionBasedAnswers.js +10 -10
- package/dist/answers/tableAnswers.d.ts +811 -1772
- package/dist/answers/tableAnswers.js +12 -8
- package/dist/answers/textAnswers.d.ts +44 -44
- package/dist/answers/textAnswers.js +8 -8
- package/dist/questions/__tests__/graphQLQuestions.spec.js +1 -1
- package/dist/questions/__tests__/usage.spec.d.ts +8 -0
- package/dist/questions/__tests__/usage.spec.js +312 -0
- package/dist/questions/dateQuestions.d.ts +81 -82
- package/dist/questions/dateQuestions.js +12 -16
- package/dist/questions/graphQLQuestions.d.ts +142 -142
- package/dist/questions/graphQLQuestions.js +35 -30
- package/dist/questions/index.d.ts +1494 -1674
- package/dist/questions/index.js +2 -2
- package/dist/questions/numberQuestions.d.ts +97 -98
- package/dist/questions/numberQuestions.js +7 -19
- package/dist/questions/optionBasedQuestions.d.ts +163 -166
- package/dist/questions/optionBasedQuestions.js +20 -36
- package/dist/questions/question.d.ts +24 -48
- package/dist/questions/question.js +78 -17
- package/dist/questions/tableQuestions.d.ts +2219 -2231
- package/dist/questions/tableQuestions.js +6 -11
- package/dist/questions/textQuestions.d.ts +104 -104
- package/dist/questions/textQuestions.js +6 -23
- package/dist/schemas/affiliationSearchAnswer.schema.json +9 -12
- package/dist/schemas/affiliationSearchQuestion.schema.json +30 -36
- package/dist/schemas/anyAnswer.schema.json +228 -237
- package/dist/schemas/anyQuestion.schema.json +292 -493
- package/dist/schemas/anyTableColumnAnswer.schema.json +93 -106
- package/dist/schemas/anyTableColumnQuestion.schema.json +164 -325
- package/dist/schemas/booleanAnswer.schema.json +8 -11
- package/dist/schemas/booleanQuestion.schema.json +7 -10
- package/dist/schemas/checkboxesAnswer.schema.json +13 -14
- package/dist/schemas/checkboxesQuestion.schema.json +12 -13
- package/dist/schemas/currencyAnswer.schema.json +8 -11
- package/dist/schemas/currencyQuestion.schema.json +7 -10
- package/dist/schemas/dateAnswer.schema.json +8 -11
- package/dist/schemas/dateQuestion.schema.json +7 -10
- package/dist/schemas/dateRangeAnswer.schema.json +16 -21
- package/dist/schemas/dateRangeQuestion.schema.json +38 -20
- package/dist/schemas/emailAnswer.schema.json +8 -11
- package/dist/schemas/emailQuestion.schema.json +7 -10
- package/dist/schemas/multiselectBoxAnswer.schema.json +13 -14
- package/dist/schemas/multiselectBoxQuestion.schema.json +14 -14
- package/dist/schemas/numberAnswer.schema.json +8 -11
- package/dist/schemas/numberQuestion.schema.json +7 -10
- package/dist/schemas/numberRangeAnswer.schema.json +17 -22
- package/dist/schemas/numberRangeQuestion.schema.json +18 -19
- package/dist/schemas/radioButtonsAnswer.schema.json +8 -11
- package/dist/schemas/radioButtonsQuestion.schema.json +12 -13
- package/dist/schemas/selectBoxAnswer.schema.json +8 -11
- package/dist/schemas/selectBoxQuestion.schema.json +18 -15
- package/dist/schemas/tableAnswer.schema.json +337 -343
- package/dist/schemas/tableQuestion.schema.json +178 -352
- package/dist/schemas/textAnswer.schema.json +8 -11
- package/dist/schemas/textAreaAnswer.schema.json +8 -11
- package/dist/schemas/textAreaQuestion.schema.json +7 -10
- package/dist/schemas/textQuestion.schema.json +7 -10
- package/dist/schemas/urlAnswer.schema.json +8 -11
- package/dist/schemas/urlQuestion.schema.json +7 -10
- package/package.json +1 -1
|
@@ -8,27 +8,24 @@
|
|
|
8
8
|
"type": "string",
|
|
9
9
|
"const": "text"
|
|
10
10
|
},
|
|
11
|
-
"answer": {
|
|
12
|
-
"type": "string"
|
|
13
|
-
},
|
|
14
11
|
"meta": {
|
|
15
12
|
"type": "object",
|
|
16
13
|
"properties": {
|
|
17
14
|
"schemaVersion": {
|
|
18
15
|
"type": "string",
|
|
19
|
-
"
|
|
16
|
+
"default": "1.0"
|
|
20
17
|
}
|
|
21
18
|
},
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
19
|
+
"additionalProperties": false,
|
|
20
|
+
"default": {}
|
|
21
|
+
},
|
|
22
|
+
"answer": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"default": ""
|
|
26
25
|
}
|
|
27
26
|
},
|
|
28
27
|
"required": [
|
|
29
|
-
"type"
|
|
30
|
-
"answer",
|
|
31
|
-
"meta"
|
|
28
|
+
"type"
|
|
32
29
|
],
|
|
33
30
|
"additionalProperties": false
|
|
34
31
|
}
|
|
@@ -8,27 +8,24 @@
|
|
|
8
8
|
"type": "string",
|
|
9
9
|
"const": "textArea"
|
|
10
10
|
},
|
|
11
|
-
"answer": {
|
|
12
|
-
"type": "string"
|
|
13
|
-
},
|
|
14
11
|
"meta": {
|
|
15
12
|
"type": "object",
|
|
16
13
|
"properties": {
|
|
17
14
|
"schemaVersion": {
|
|
18
15
|
"type": "string",
|
|
19
|
-
"
|
|
16
|
+
"default": "1.0"
|
|
20
17
|
}
|
|
21
18
|
},
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
19
|
+
"additionalProperties": false,
|
|
20
|
+
"default": {}
|
|
21
|
+
},
|
|
22
|
+
"answer": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"default": ""
|
|
26
25
|
}
|
|
27
26
|
},
|
|
28
27
|
"required": [
|
|
29
|
-
"type"
|
|
30
|
-
"answer",
|
|
31
|
-
"meta"
|
|
28
|
+
"type"
|
|
32
29
|
],
|
|
33
30
|
"additionalProperties": false
|
|
34
31
|
}
|
|
@@ -39,28 +39,25 @@
|
|
|
39
39
|
"default": true
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
|
-
"additionalProperties": false
|
|
42
|
+
"additionalProperties": false,
|
|
43
|
+
"default": {}
|
|
43
44
|
},
|
|
44
45
|
"meta": {
|
|
45
46
|
"type": "object",
|
|
46
47
|
"properties": {
|
|
47
48
|
"schemaVersion": {
|
|
48
49
|
"type": "string",
|
|
49
|
-
"
|
|
50
|
+
"default": "1.0"
|
|
50
51
|
},
|
|
51
52
|
"title": {
|
|
52
|
-
"type": "string"
|
|
53
|
-
"const": "Text Area"
|
|
53
|
+
"type": "string"
|
|
54
54
|
},
|
|
55
55
|
"usageDescription": {
|
|
56
|
-
"type": "string"
|
|
57
|
-
"const": "For questions that require longer answers, you can select formatting options too."
|
|
56
|
+
"type": "string"
|
|
58
57
|
}
|
|
59
58
|
},
|
|
60
|
-
"
|
|
61
|
-
|
|
62
|
-
],
|
|
63
|
-
"additionalProperties": false
|
|
59
|
+
"additionalProperties": false,
|
|
60
|
+
"default": {}
|
|
64
61
|
}
|
|
65
62
|
},
|
|
66
63
|
"required": [
|
|
@@ -31,28 +31,25 @@
|
|
|
31
31
|
"type": "string"
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
|
-
"additionalProperties": false
|
|
34
|
+
"additionalProperties": false,
|
|
35
|
+
"default": {}
|
|
35
36
|
},
|
|
36
37
|
"meta": {
|
|
37
38
|
"type": "object",
|
|
38
39
|
"properties": {
|
|
39
40
|
"schemaVersion": {
|
|
40
41
|
"type": "string",
|
|
41
|
-
"
|
|
42
|
+
"default": "1.0"
|
|
42
43
|
},
|
|
43
44
|
"title": {
|
|
44
|
-
"type": "string"
|
|
45
|
-
"const": "Text Field"
|
|
45
|
+
"type": "string"
|
|
46
46
|
},
|
|
47
47
|
"usageDescription": {
|
|
48
|
-
"type": "string"
|
|
49
|
-
"const": "For questions that require short, simple answers."
|
|
48
|
+
"type": "string"
|
|
50
49
|
}
|
|
51
50
|
},
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
],
|
|
55
|
-
"additionalProperties": false
|
|
51
|
+
"additionalProperties": false,
|
|
52
|
+
"default": {}
|
|
56
53
|
}
|
|
57
54
|
},
|
|
58
55
|
"required": [
|
|
@@ -8,27 +8,24 @@
|
|
|
8
8
|
"type": "string",
|
|
9
9
|
"const": "url"
|
|
10
10
|
},
|
|
11
|
-
"answer": {
|
|
12
|
-
"type": "string"
|
|
13
|
-
},
|
|
14
11
|
"meta": {
|
|
15
12
|
"type": "object",
|
|
16
13
|
"properties": {
|
|
17
14
|
"schemaVersion": {
|
|
18
15
|
"type": "string",
|
|
19
|
-
"
|
|
16
|
+
"default": "1.0"
|
|
20
17
|
}
|
|
21
18
|
},
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
19
|
+
"additionalProperties": false,
|
|
20
|
+
"default": {}
|
|
21
|
+
},
|
|
22
|
+
"answer": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"default": ""
|
|
26
25
|
}
|
|
27
26
|
},
|
|
28
27
|
"required": [
|
|
29
|
-
"type"
|
|
30
|
-
"answer",
|
|
31
|
-
"meta"
|
|
28
|
+
"type"
|
|
32
29
|
],
|
|
33
30
|
"additionalProperties": false
|
|
34
31
|
}
|
|
@@ -31,28 +31,25 @@
|
|
|
31
31
|
"type": "string"
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
|
-
"additionalProperties": false
|
|
34
|
+
"additionalProperties": false,
|
|
35
|
+
"default": {}
|
|
35
36
|
},
|
|
36
37
|
"meta": {
|
|
37
38
|
"type": "object",
|
|
38
39
|
"properties": {
|
|
39
40
|
"schemaVersion": {
|
|
40
41
|
"type": "string",
|
|
41
|
-
"
|
|
42
|
+
"default": "1.0"
|
|
42
43
|
},
|
|
43
44
|
"title": {
|
|
44
|
-
"type": "string"
|
|
45
|
-
"const": "URL Field"
|
|
45
|
+
"type": "string"
|
|
46
46
|
},
|
|
47
47
|
"usageDescription": {
|
|
48
|
-
"type": "string"
|
|
49
|
-
"const": "For questions that require a website, DOI or other URL."
|
|
48
|
+
"type": "string"
|
|
50
49
|
}
|
|
51
50
|
},
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
],
|
|
55
|
-
"additionalProperties": false
|
|
51
|
+
"additionalProperties": false,
|
|
52
|
+
"default": {}
|
|
56
53
|
}
|
|
57
54
|
},
|
|
58
55
|
"required": [
|