ekms 9.6.1-beta.6 → 9.6.1-beta.8

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/drone.js CHANGED
@@ -1235,8 +1235,32 @@ knowledgeModule( {
1235
1235
  contents: drone_tests,
1236
1236
  checks: {
1237
1237
  context: [
1238
- defaultContextCheck({ marker: 'path', exported: true, extra: ['points', { property: 'stm', check: ['id', 'names'] }] }),
1239
- defaultContextCheck({ marker: 'point', exported: true, extra: ['ordinal', { property: 'point', check: ['x', 'y'] }, 'description', { property: 'stm', check: ['id', 'names'] }] }),
1238
+ defaultContextCheck({ marker: 'path', exported: true,
1239
+ extra: [
1240
+ 'points',
1241
+ {
1242
+ property: 'namespaced',
1243
+ check: [
1244
+ { property: 'stm', check: ['id'] },
1245
+ { property: 'nameable', check: ['names'] },
1246
+ ]
1247
+ }
1248
+ ]
1249
+ }),
1250
+ defaultContextCheck({ marker: 'point', exported: true,
1251
+ extra: [
1252
+ 'ordinal',
1253
+ { property: 'point', check: ['x', 'y'] },
1254
+ 'description',
1255
+ {
1256
+ property: 'namespaced',
1257
+ check: [
1258
+ { property: 'stm', check: ['id'] },
1259
+ { property: 'nameable', check: ['names'] },
1260
+ ]
1261
+ },
1262
+ ]
1263
+ }),
1240
1264
  defaultContextCheck({ marker: 'turn', exported: true, extra: ['direction', 'repeats'] }),
1241
1265
  defaultContextCheck({ marker: 'history', exported: true, extra: ['debug', 'pause', 'direction', 'speed', 'turn', 'time', 'sonic', 'batched', 'repeats', 'armAction', 'clawAction'] }),
1242
1266
  defaultContextCheck(),