|
1 | 1 | import { Type } from '@openmrs/esm-framework'; |
2 | 2 |
|
3 | | -/** |
4 | | - * This is the config schema. It expects a configuration object which |
5 | | - * looks like this: |
6 | | - * |
7 | | - * ```json |
8 | | - * { "casualGreeting": true, "whoToGreet": ["Mom"] } |
9 | | - * ``` |
10 | | - * |
11 | | - * In OpenMRS Microfrontends, all config parameters are optional. Thus, |
12 | | - * all elements must have a reasonable default. A good default is one |
13 | | - * that works well with the reference application. |
14 | | - * |
15 | | - * To understand the schema below, please read the configuration system |
16 | | - * documentation: |
17 | | - * https://openmrs.github.io/openmrs-esm-core/#/main/config |
18 | | - * Note especially the section "How do I make my module configurable?" |
19 | | - * https://openmrs.github.io/openmrs-esm-core/#/main/config?id=im-developing-an-esm-module-how-do-i-make-it-configurable |
20 | | - * and the Schema Reference |
21 | | - * https://openmrs.github.io/openmrs-esm-core/#/main/config?id=schema-reference |
22 | | - */ |
23 | 3 | export const configSchema = { |
24 | 4 | appName: { |
25 | 5 | _type: Type.String, |
@@ -99,23 +79,23 @@ export const configSchema = { |
99 | 79 | _type: Type.UUID, |
100 | 80 | _description: |
101 | 81 | "UUID for the Value Set of valid answers to the 'Reason for Pause' question. Defaults to CIEL value set: https://app.openconceptlab.org/#/orgs/CIEL/sources/CIEL/concepts/168099/", |
102 | | - _default: '2dd3e5c0-3d3f-4f3d-9860-19b3f9ab26ff', |
| 82 | + _default: '2462a9d7-61fb-4bf5-9359-aedecb8d03cb', |
103 | 83 | }, |
104 | 84 | }, |
105 | 85 | reasonForClose: { |
106 | 86 | uuid: { |
107 | 87 | _type: Type.UUID, |
108 | 88 | _description: |
109 | 89 | "UUID for the Value Set of valid answers to the 'Reason for Close' question. Defaults to CIEL value set: https://app.openconceptlab.org/#/orgs/CIEL/sources/CIEL/concepts/168099/", |
110 | | - _default: 'bd6c1fc2-7cfc-4562-94a0-e4765e5e977e', |
| 90 | + _default: '2462a9d7-61fb-4bf5-9359-aedecb8d03cb', |
111 | 91 | }, |
112 | 92 | }, |
113 | 93 | substitutionReason: { |
114 | 94 | uuid: { |
115 | 95 | _type: Type.UUID, |
116 | 96 | _description: |
117 | 97 | "UUID for the Value Set of valid answers to the 'Reason for Substitution' question. Defaults to CIEL value set: https://app.openconceptlab.org/#/orgs/CIEL/sources/CIEL/concepts/167862/", |
118 | | - _default: 'de8671b8-ed2e-4f7e-a9f8-dcd00878f2eb', |
| 98 | + _default: '2de6e1be-f2dd-4ba0-9516-8a611aa2af9b', |
119 | 99 | }, |
120 | 100 | }, |
121 | 101 | substitutionType: { |
|
0 commit comments