tpmkms_4wp 8.0.0-beta.3 → 8.0.0-beta.31

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. package/common/animals.instance.json +2542 -1375
  2. package/common/animals.js +2 -2
  3. package/common/avatar.js +2 -2
  4. package/common/characters.js +9 -11
  5. package/common/colors.instance.json +6646 -3529
  6. package/common/colors.js +2 -2
  7. package/common/colors.test.json +345 -780
  8. package/common/comparable.js +2 -15
  9. package/common/concept.js +17 -11
  10. package/common/countable.js +5 -5
  11. package/common/crew.instance.json +12534 -6597
  12. package/common/crew.js +4 -4
  13. package/common/crew.test.json +714 -452
  14. package/common/currency.js +7 -7
  15. package/common/dialogues.js +53 -138
  16. package/common/dimension.instance.json +246 -265
  17. package/common/dimension.js +12 -12
  18. package/common/dimension.test.json +446 -1640
  19. package/common/edible.instance.json +19308 -10008
  20. package/common/edible.js +2 -2
  21. package/common/emotions.instance.json +122 -129
  22. package/common/emotions.js +4 -4
  23. package/common/events.js +6 -6
  24. package/common/fastfood.instance.json +219409 -111252
  25. package/common/fastfood.js +24 -24
  26. package/common/formulas.instance.json +222 -256
  27. package/common/formulas.js +14 -14
  28. package/common/gdefaults.js +13 -13
  29. package/common/help.js +4 -4
  30. package/common/help.test.json +10 -22
  31. package/common/helpers/concept.js +9 -6
  32. package/common/helpers/dialogues.js +2 -3
  33. package/common/helpers/properties.js +48 -58
  34. package/common/hierarchy.js +12 -16
  35. package/common/javascript.js +8 -8
  36. package/common/kirk.instance.json +564 -290
  37. package/common/kirk.js +2 -2
  38. package/common/length.instance.json +5153 -4677
  39. package/common/length.js +2 -2
  40. package/common/math.instance.json +152 -1169
  41. package/common/math.js +11 -11
  42. package/common/meta.js +22 -29
  43. package/common/negation.instance.json +2 -0
  44. package/common/negation.js +38 -0
  45. package/common/negation.test.json +308 -0
  46. package/common/numbers.js +3 -3
  47. package/common/ordering.instance.json +292 -230
  48. package/common/ordering.js +5 -5
  49. package/common/people.instance.json +1902 -1015
  50. package/common/people.js +4 -5
  51. package/common/percentages.instance.json +2 -0
  52. package/common/percentages.js +57 -0
  53. package/common/percentages.test.json +751 -0
  54. package/common/pipboy.instance.json +7720 -6386
  55. package/common/pipboy.js +29 -32
  56. package/common/pokemon.instance.json +3954 -2081
  57. package/common/pokemon.js +4 -4
  58. package/common/pos.js +1 -1
  59. package/common/pressure.instance.json +1265 -1193
  60. package/common/pressure.js +2 -2
  61. package/common/properties.instance.json +106 -61
  62. package/common/properties.js +54 -125
  63. package/common/punctuation.js +2 -2
  64. package/common/reports.instance.json +557 -559
  65. package/common/reports.js +54 -74
  66. package/common/scorekeeper.js +13 -21
  67. package/common/sdefaults.js +13 -3
  68. package/common/sizeable.js +2 -2
  69. package/common/spock.instance.json +564 -290
  70. package/common/spock.js +2 -2
  71. package/common/stgame.js +13 -9
  72. package/common/stm.js +4 -4
  73. package/common/tell.js +10 -10
  74. package/common/temperature.instance.json +1297 -1209
  75. package/common/temperature.js +2 -2
  76. package/common/tester.js +2 -2
  77. package/common/testing.js +5 -5
  78. package/common/time.js +7 -7
  79. package/common/tokenize.js +1 -1
  80. package/common/ui.instance.json +238 -259
  81. package/common/ui.js +9 -9
  82. package/common/weight.instance.json +4905 -4166
  83. package/common/weight.js +2 -2
  84. package/common/yesno.js +1 -1
  85. package/main.js +51 -46
  86. package/package.json +13 -6
package/common/math.js CHANGED
@@ -33,22 +33,22 @@ const mathematicalOperator = (name, words, apply, before = []) => [
33
33
  id: `${name}Operator`, level: 0,
34
34
  bridge: `{ ...next(operator), marker: next(operator('${name}Expression')), types: lub(append(['mathematicalExpression'], operator.types, before[0].types, after[0].types)), value: null, x: before[0], y: after[0], number: 'one', isResponse: true, evaluate: true }` ,
35
35
  // bridge: `{ ...next(operator), marker: next(operator('${name}Expression')), value: null, x: before[0], y: after[0], number: 'one', isResponse: true, evaluate: true }` ,
36
- isA: ['mathematicalOperator'],
36
+ isA: ['mathematical_operator'],
37
37
  before,
38
38
  localHierarchy: [ ['unknown', 'number'] ],
39
39
  // levelSpecificHierarchy: [[1, 'mathematicalExpression']],
40
40
  words,
41
- generatorp: ({gp, context}) => context.word,
41
+ generatorp: ({context}) => context.word,
42
42
  },
43
43
  {
44
44
  where: where(),
45
45
  id: `${name}Expression`, level: 0,
46
46
  bridge: "{ ...next(operator) }" ,
47
47
  isA: ['mathematicalExpression'],
48
- generatorp: ({gp, context}) => `${gp(context.x)} ${context.word} ${gp(context.y)}`,
49
- evaluator: ({e, context}) => {
50
- const x = toValue(e(context.x))
51
- const y = toValue(e(context.y))
48
+ generatorp: async ({gp, context}) => `${await gp(context.x)} ${context.word} ${await gp(context.y)}`,
49
+ evaluator: async ({e, context}) => {
50
+ const x = toValue(await e(context.x))
51
+ const y = toValue(await e(context.y))
52
52
  if (!x || !y) {
53
53
  // context.evalue = { ...context, paraphrase: true, x: { ...context.x, value: x }, y: { ...context.y, value: y } }
54
54
  context.isResponse = false
@@ -73,7 +73,7 @@ let configStruct = {
73
73
  name: 'math',
74
74
  operators: [
75
75
  "([mathematicalExpression])",
76
- "([mathematicalOperator])",
76
+ "([mathematical_operator])",
77
77
  "(([number|]) [plusOperator] ([number|]))",
78
78
  "(([number|]) [minusOperator] ([number|]))",
79
79
  "(([number|]) [timesOperator] ([number|]))",
@@ -92,7 +92,7 @@ let configStruct = {
92
92
  isA: ['concept', 'number'],
93
93
  },
94
94
  {
95
- id: "mathematicalOperator",
95
+ id: "mathematical_operator",
96
96
  before: ['verby'],
97
97
  after: ['adjective'],
98
98
  },
@@ -108,14 +108,14 @@ let configStruct = {
108
108
  const template = {
109
109
  configs: [
110
110
  "mathematical modifies operator",
111
- "* + / and - are mathematical operators",
112
111
  configStruct,
112
+ // "* + / and - are mathematical operators",
113
113
  ]
114
114
  }
115
115
 
116
- const createConfig = () => {
116
+ const createConfig = async () => {
117
117
  const config = new Config({ name: 'math' }, module)
118
- config.add(numbers(), dialogues(), punctuation(), countable(), comparable())
118
+ await config.add(numbers, dialogues, punctuation, countable, comparable)
119
119
  return config
120
120
  }
121
121
 
package/common/meta.js CHANGED
@@ -130,8 +130,8 @@ let configStruct = {
130
130
  {
131
131
  where: where(),
132
132
  match: ({context}) => context.marker == 'orList' && context.paraphrase,
133
- apply: ({context, gs}) => {
134
- return gs(context.value, ', ', ' or ')
133
+ apply: async ({context, gs}) => {
134
+ return await gs(context.value, ', ', ' or ')
135
135
  },
136
136
  priority: -1,
137
137
  },
@@ -139,10 +139,8 @@ let configStruct = {
139
139
  priority: -1,
140
140
  where: where(),
141
141
  match: ({context}) => context.marker == 'means' && context.paraphrase,
142
- apply: ({context, g}) => {
143
- // const before = g({ ...context.from, paraphrase: true, debug: true})
144
- const before = g({ ...context.from, paraphrase: true})
145
- return `${g({ ...context.from, paraphrase: true})} means ${g(context.to)}`
142
+ apply: async ({context, g}) => {
143
+ return `${await g({ ...context.from, paraphrase: true})} means ${await g(context.to)}`
146
144
  }
147
145
  },
148
146
  {
@@ -160,8 +158,8 @@ let configStruct = {
160
158
  {
161
159
  where: where(),
162
160
  match: ({context}) => context.marker === 'if',
163
- apply: ({context, g}) => {
164
- return `if ${g(context.antecedant)} then ${g(context.consequence)}`
161
+ apply: async ({context, g}) => {
162
+ return `if ${await g(context.antecedant)} then ${await g(context.consequence)}`
165
163
  },
166
164
  priority: -1,
167
165
  },
@@ -182,10 +180,10 @@ let configStruct = {
182
180
  {
183
181
  where: where(),
184
182
  match: ({context}) => context.marker == 'orList',
185
- apply: ({context, s}) => {
183
+ apply: async ({context, s}) => {
186
184
  const response = []
187
185
  for (const value of context.value) {
188
- response.push(s(value))
186
+ response.push(await s(value))
189
187
  }
190
188
  context.evalue = {
191
189
  marker: 'orList',
@@ -205,7 +203,7 @@ let configStruct = {
205
203
  const apply = (DEFINITIONs, DERIVED) => {
206
204
  const mappingss = translationMappings(DEFINITIONs, DERIVED)
207
205
  const invertMappings = (mappings) => mappings.map( ({ from, to }) => { return { to: from, from: to } } )
208
- return ({context, s, g, config}) => {
206
+ return async ({context, s, config}) => {
209
207
  DEFINITIONs = _.cloneDeep(DEFINITIONs)
210
208
  //const mappings = mappingss[0]
211
209
  let toPrimes = []
@@ -215,8 +213,7 @@ let configStruct = {
215
213
  }
216
214
  // next move add debug arg to s and g
217
215
  TO.query = true
218
- toPrimes.push([s(TO), mappings])
219
- // toPrime = s(TO, { debug: { apply: true } })
216
+ toPrimes.push([await s(TO), mappings])
220
217
  }
221
218
 
222
219
  let hasResponse = false
@@ -271,7 +268,7 @@ let configStruct = {
271
268
  // match: match(context),
272
269
  where: where(),
273
270
  match: match(context),
274
- apply: apply(antecedants, _.cloneDeep(context.consequence)) ,
271
+ apply: apply(antecedants, _.cloneDeep(context.consequence)),
275
272
  }
276
273
  config.addSemantic(semantic)
277
274
  }
@@ -280,17 +277,14 @@ let configStruct = {
280
277
  notes: 'from means to where from is unknown',
281
278
  where: where(),
282
279
  match: ({context}) => context.marker == 'means' && context.from.marker == 'unknown',
283
- apply: ({config, context, kms, e, isTest}) => {
280
+ apply: async ({config, context, kms, e, isTest}) => {
284
281
  if (false && isTest) {
285
282
  return
286
283
  } else if (kms.dialogues) {
287
284
  if (context.to.value) {
288
285
  kms.stm.api.setVariable(context.from.value, context.to.value)
289
286
  } else {
290
- // config.addWord(context.from.word,
291
287
  kms.dialogues.api.makeObject({ context: context.from, types: context.to.types || [], config });
292
- // kms.dialogues.api.makeObject({ context: context.from, types: [], config });
293
- // const r = e(context.to)
294
288
  kms.stm.api.setVariable(context.from.value, context.to)
295
289
  }
296
290
  }
@@ -300,17 +294,17 @@ let configStruct = {
300
294
  notes: 'x means y where x and y have known markers',
301
295
  where: where(),
302
296
  match: ({context}) => context.marker == 'means',
303
- apply: ({config, context, g}) => {
297
+ apply: async ({config, context, g}) => {
304
298
  // setup the write semantic
305
299
  {
306
300
  const matchByMarker = (defContext) => ({context}) => context.marker == defContext.from.marker && !context.query && !context.objects
307
301
  const matchByValue = (defContext) => ({context}) => context.evalue == defContext.from.value && !context.query && !context.objects
308
- const apply = (mappings, TO) => ({context, s}) => {
302
+ const apply = (mappings, TO) => async ({context, s}) => {
309
303
  TO = _.cloneDeep(TO)
310
304
  for (let { from, to } of mappings) {
311
305
  hashIndexesSet(TO, to, hashIndexesGet(context, from))
312
306
  }
313
- toPrime = s(TO)
307
+ toPrime = await s(TO)
314
308
  context.result = toPrime.result
315
309
  }
316
310
  const mappings = translationMapping(context.from, context.to)
@@ -332,7 +326,7 @@ let configStruct = {
332
326
  {
333
327
  const matchByMarker = (defContext) => ({context, uuid}) => context.marker == defContext.from.marker && (context.query || context.evaluate) && !context[`disable${uuid}`]
334
328
  const matchByValue = (defContext) => ({context, uuid}) => context.value == defContext.from.value && (context.query || context.evaluate) && !context[`disable${uuid}`]
335
- const apply = (mappings, TO) => ({uuid, context, s, g, config}) => {
329
+ const apply = (mappings, TO) => async ({uuid, context, s, g, config}) => {
336
330
  TO = _.cloneDeep(TO)
337
331
  for (let { from, to } of mappings) {
338
332
  hashIndexesSet(TO, to, hashIndexesGet(context, from))
@@ -345,8 +339,7 @@ let configStruct = {
345
339
  TO.evaluate = context.evaluate
346
340
  }
347
341
  TO[`disable${uuid}`] = true
348
- // toPrime = s(TO, { debug: { apply: true } })
349
- toPrime = s(TO)
342
+ toPrime = await s(TO)
350
343
  if (context.query) {
351
344
  if (toPrime.evalue) {
352
345
  context.evalue = toPrime.evalue
@@ -359,7 +352,7 @@ let configStruct = {
359
352
  }
360
353
  const mappings = translationMapping(context.from, context.to)
361
354
  let match = matchByMarker(context)
362
- context.metaInfo = `The mapping from from the expression being defined "${g({...context.from, paraphrase: true})}" to the definition phrase "${g({...context.to, paraphrase: true})}" is ${JSON.stringify(mappings)}`
355
+ context.metaInfo = `The mapping from from the expression being defined "${await g({...context.from, paraphrase: true})}" to the definition phrase "${await g({...context.to, paraphrase: true})}" is ${JSON.stringify(mappings)}`
363
356
  if (context.from.value) {
364
357
  match = matchByValue(context)
365
358
  }
@@ -378,12 +371,12 @@ let configStruct = {
378
371
  ],
379
372
  };
380
373
 
381
- const createConfig = () => {
374
+ const createConfig = async () => {
382
375
  const config = new Config(configStruct, module)
383
376
  config.stop_auto_rebuild()
384
- config.add(gdefaults())
377
+ await config.add(gdefaults)
385
378
 
386
- config.initializer( ({config, addGenerator, isModule}) => {
379
+ await config.initializer( ({config, addGenerator, isModule}) => {
387
380
  if (!isModule) {
388
381
  addGenerator({
389
382
  where: where(),
@@ -393,7 +386,7 @@ const createConfig = () => {
393
386
  }
394
387
  })
395
388
 
396
- config.restart_auto_rebuild()
389
+ await config.restart_auto_rebuild()
397
390
  return config
398
391
  }
399
392
 
@@ -0,0 +1,2 @@
1
+ {
2
+ }
@@ -0,0 +1,38 @@
1
+ const { Config, knowledgeModule, where } = require('./runtime').theprogrammablemind
2
+ const { words, defaultContextCheck } = require('./helpers')
3
+ const gdefaults = require('./gdefaults')
4
+ const pos = require('./pos')
5
+ const negation_tests = require('./negation.test.json')
6
+
7
+ let configStruct = {
8
+ name: 'negation',
9
+ operators: [
10
+ "([negatable])",
11
+ "([not] (negatable/*))",
12
+ ],
13
+ bridges: [
14
+ {
15
+ id: 'not',
16
+ bridge: '{ ...after[0], negated: operator, modifiers: append(["negated"], after[0].modifiers) }',
17
+ before: ['verby'],
18
+ localHierarchy: [['unknown', 'negatable']],
19
+ },
20
+ { id: 'negatable', words: words('negatable') },
21
+ ],
22
+ };
23
+
24
+ const createConfig = async () => new Config(configStruct, module).add(gdefaults, pos)
25
+
26
+ knowledgeModule( {
27
+ module,
28
+ createConfig,
29
+ description: 'negation',
30
+ test: {
31
+ name: './negation.test.json',
32
+ contents: negation_tests,
33
+ checks: {
34
+ context: defaultContextCheck,
35
+ },
36
+ },
37
+ })
38
+
@@ -0,0 +1,308 @@
1
+ [
2
+ {
3
+ "associations": [
4
+ [
5
+ [
6
+ "negatable",
7
+ 0
8
+ ],
9
+ [
10
+ "not",
11
+ 0
12
+ ]
13
+ ]
14
+ ],
15
+ "config": {
16
+ },
17
+ "contexts": [
18
+ {
19
+ "dead": true,
20
+ "level": 1,
21
+ "marker": "negatable",
22
+ "modifiers": [
23
+ "negated"
24
+ ],
25
+ "negated": {
26
+ "default": true,
27
+ "level": 0,
28
+ "marker": "not",
29
+ "range": {
30
+ "end": 2,
31
+ "start": 0
32
+ },
33
+ "text": "not",
34
+ "value": "not",
35
+ "word": "not"
36
+ },
37
+ "number": "one",
38
+ "range": {
39
+ "end": 12,
40
+ "start": 0
41
+ },
42
+ "text": "not negatable",
43
+ "topLevel": true,
44
+ "types": [
45
+ "negatable"
46
+ ],
47
+ "word": "negatable"
48
+ }
49
+ ],
50
+ "developerTest": false,
51
+ "generatedParenthesized": [
52
+ ""
53
+ ],
54
+ "metadata": {
55
+ "opChoices": [
56
+ {
57
+ "counter": 1,
58
+ "op": [
59
+ "negatable",
60
+ 0
61
+ ],
62
+ "ops": [
63
+ [
64
+ "negatable",
65
+ 0
66
+ ],
67
+ [
68
+ "not",
69
+ 0
70
+ ]
71
+ ]
72
+ },
73
+ {
74
+ "counter": 2,
75
+ "op": [
76
+ "not",
77
+ 0
78
+ ],
79
+ "ops": [
80
+ [
81
+ "not",
82
+ 0
83
+ ]
84
+ ]
85
+ }
86
+ ]
87
+ },
88
+ "objects": {
89
+ "nameToUUID": {
90
+ "gdefaults": "gdefaults2",
91
+ "negation": "negation1",
92
+ "tokenize": "tokenize2"
93
+ },
94
+ "namespaced": {
95
+ "gdefaults2": {
96
+ },
97
+ "negation1": {
98
+ },
99
+ "tokenize2": {
100
+ }
101
+ },
102
+ "processed": [
103
+ {
104
+ "context": {
105
+ "dead": true,
106
+ "level": 1,
107
+ "marker": "negatable",
108
+ "modifiers": [
109
+ "negated"
110
+ ],
111
+ "negated": {
112
+ "default": true,
113
+ "level": 0,
114
+ "marker": "not",
115
+ "range": {
116
+ "end": 2,
117
+ "start": 0
118
+ },
119
+ "text": "not",
120
+ "value": "not",
121
+ "word": "not"
122
+ },
123
+ "number": "one",
124
+ "range": {
125
+ "end": 12,
126
+ "start": 0
127
+ },
128
+ "text": "not negatable",
129
+ "topLevel": true,
130
+ "types": [
131
+ "negatable"
132
+ ],
133
+ "word": "negatable"
134
+ },
135
+ "generatedParenthesized": "",
136
+ "paraphrases": "not negatable",
137
+ "paraphrasesParenthesized": "((not) (negatable))",
138
+ "responses": [
139
+ ""
140
+ ]
141
+ }
142
+ ]
143
+ },
144
+ "paraphrases": [
145
+ "not negatable"
146
+ ],
147
+ "paraphrasesParenthesized": [
148
+ "((not) (negatable))"
149
+ ],
150
+ "query": "not negatable",
151
+ "responses": [
152
+ ""
153
+ ]
154
+ },
155
+ {
156
+ "associations": [
157
+ [
158
+ [
159
+ "negatable",
160
+ 0
161
+ ],
162
+ [
163
+ "not",
164
+ 0
165
+ ]
166
+ ]
167
+ ],
168
+ "config": {
169
+ },
170
+ "contexts": [
171
+ {
172
+ "dead": true,
173
+ "level": 1,
174
+ "marker": "negatable",
175
+ "modifiers": [
176
+ "negated"
177
+ ],
178
+ "negated": {
179
+ "default": true,
180
+ "level": 0,
181
+ "marker": "not",
182
+ "range": {
183
+ "end": 2,
184
+ "start": 0
185
+ },
186
+ "text": "not",
187
+ "value": "not",
188
+ "word": "not"
189
+ },
190
+ "number": "many",
191
+ "range": {
192
+ "end": 13,
193
+ "start": 0
194
+ },
195
+ "text": "not negatables",
196
+ "topLevel": true,
197
+ "types": [
198
+ "negatable"
199
+ ],
200
+ "word": "negatables"
201
+ }
202
+ ],
203
+ "developerTest": false,
204
+ "generatedParenthesized": [
205
+ ""
206
+ ],
207
+ "metadata": {
208
+ "opChoices": [
209
+ {
210
+ "counter": 1,
211
+ "op": [
212
+ "negatable",
213
+ 0
214
+ ],
215
+ "ops": [
216
+ [
217
+ "negatable",
218
+ 0
219
+ ],
220
+ [
221
+ "not",
222
+ 0
223
+ ]
224
+ ]
225
+ },
226
+ {
227
+ "counter": 2,
228
+ "op": [
229
+ "not",
230
+ 0
231
+ ],
232
+ "ops": [
233
+ [
234
+ "not",
235
+ 0
236
+ ]
237
+ ]
238
+ }
239
+ ]
240
+ },
241
+ "objects": {
242
+ "nameToUUID": {
243
+ "gdefaults": "gdefaults2",
244
+ "negation": "negation1",
245
+ "tokenize": "tokenize2"
246
+ },
247
+ "namespaced": {
248
+ "gdefaults2": {
249
+ },
250
+ "negation1": {
251
+ },
252
+ "tokenize2": {
253
+ }
254
+ },
255
+ "processed": [
256
+ {
257
+ "context": {
258
+ "dead": true,
259
+ "level": 1,
260
+ "marker": "negatable",
261
+ "modifiers": [
262
+ "negated"
263
+ ],
264
+ "negated": {
265
+ "default": true,
266
+ "level": 0,
267
+ "marker": "not",
268
+ "range": {
269
+ "end": 2,
270
+ "start": 0
271
+ },
272
+ "text": "not",
273
+ "value": "not",
274
+ "word": "not"
275
+ },
276
+ "number": "many",
277
+ "range": {
278
+ "end": 13,
279
+ "start": 0
280
+ },
281
+ "text": "not negatables",
282
+ "topLevel": true,
283
+ "types": [
284
+ "negatable"
285
+ ],
286
+ "word": "negatables"
287
+ },
288
+ "generatedParenthesized": "",
289
+ "paraphrases": "not negatables",
290
+ "paraphrasesParenthesized": "((not) (negatables))",
291
+ "responses": [
292
+ ""
293
+ ]
294
+ }
295
+ ]
296
+ },
297
+ "paraphrases": [
298
+ "not negatables"
299
+ ],
300
+ "paraphrasesParenthesized": [
301
+ "((not) (negatables))"
302
+ ],
303
+ "query": "not negatables",
304
+ "responses": [
305
+ ""
306
+ ]
307
+ }
308
+ ]
package/common/numbers.js CHANGED
@@ -2,6 +2,7 @@ const { Config, knowledgeModule, where } = require('./runtime').theprogrammablem
2
2
  const { defaultContextCheck } = require('./helpers')
3
3
  const numbers_tests = require('./numbers.test.json')
4
4
  const gdefaults = require('./gdefaults')
5
+ const sdefaults = require('./sdefaults')
5
6
 
6
7
  /*
7
8
  TODO
@@ -21,7 +22,6 @@ let configStruct = {
21
22
  version: '3',
22
23
  words: {
23
24
  "literals": {
24
- // start with a space for regular expressions
25
25
  "one": [{"id": "number", "initial": "{ value: 1, instance:true }" }],
26
26
  "ones": [{"id": "number", "initial": "{ value: 1, number: 'many', instance:true }" }],
27
27
  "two": [{"id": "number", "initial": "{ value: 2 , instance:true}" }],
@@ -83,9 +83,9 @@ let configStruct = {
83
83
  ],
84
84
  };
85
85
 
86
- const createConfig = () => {
86
+ const createConfig = async () => {
87
87
  const config = new Config(configStruct, module)
88
- config.add(gdefaults())
88
+ await config.add(gdefaults, sdefaults)
89
89
  return config
90
90
  }
91
91