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.
@@ -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
  }