tpmkms_4wp 9.3.0-beta.50 → 9.3.0-beta.52
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/common/dateTimeSelectors.instance.json +42 -5
- package/common/dateTimeSelectors.js +17 -9
- package/common/dateTimeSelectors.test.json +5966 -0
- package/common/dates.instance.json +110 -7
- package/common/dates.js +72 -13
- package/common/dates.test.json +2064 -53
- package/common/dialogues.js +3 -3
- package/common/fastfood.instance.json +154 -594
- package/common/helpers/dateTimeSelectors.js +32 -17
- package/common/helpers/dialogues.js +10 -3
- package/common/helpers/properties.js +2 -2
- package/common/helpers.js +36 -28
- package/common/hierarchy.js +9 -9
- package/common/meta.js +2 -2
- package/common/people.instance.json +36 -0
- package/common/properties.js +4 -4
- package/common/reminders.instance.json +1 -1
- package/common/reminders.js +6 -4
- package/common/reminders.test.json +11119 -0
- package/common/reports.instance.json +1 -1
- package/common/temperature.instance.json +112 -0
- package/common/time.js +2 -2
- package/package.json +2 -2
package/common/dialogues.js
CHANGED
@@ -156,8 +156,8 @@ const config = {
|
|
156
156
|
id: 'makeObject',
|
157
157
|
bridge: "{ ...next(operator), object: after[0] }",
|
158
158
|
generatorp: async ({context, gp}) => `${context.word} ${await gp(context.object)}`,
|
159
|
-
semantic: ({config, context, api}) => {
|
160
|
-
api.makeObject({ context: context.object, config, types: [] })
|
159
|
+
semantic: async ({config, context, api}) => {
|
160
|
+
await api.makeObject({ context: context.object, config, types: [] })
|
161
161
|
}
|
162
162
|
},
|
163
163
|
{
|
@@ -762,7 +762,7 @@ const config = {
|
|
762
762
|
// if not isA add to stm
|
763
763
|
if (!onePrime.sameWasProcessed && !twoPrime.sameWasProcessed) {
|
764
764
|
for (const child of propertyToArray(one)) {
|
765
|
-
api.makeObject({ context: child, config, types: context.two.types || [] })
|
765
|
+
await api.makeObject({ context: child, config, types: context.two.types || [] })
|
766
766
|
kms.stm.api.setVariable(child.value, two)
|
767
767
|
kms.stm.api.mentioned({ context: child, value: two })
|
768
768
|
}
|