beanbagdb 0.6.8 → 0.6.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beanbagdb",
3
- "version": "0.6.8",
3
+ "version": "0.6.9",
4
4
  "description": "A JS library to introduce a schema layer to a No-SQL local database",
5
5
  "main": "src/index.js",
6
6
  "module": "src/index.js",
package/src/index.js CHANGED
@@ -739,6 +739,10 @@ export class BeanBagDB {
739
739
  })
740
740
  return schemas
741
741
  }
742
+ },
743
+ editable_meta_schema: async (criteria)=>{
744
+ let e = sys_sch.editable_metadata_schema
745
+ return e
742
746
  }
743
747
  }
744
748
  if(!input.type){throw new ValidationError("No type provided. Must be: "+Object.keys(fetch_docs).join(","))}
@@ -363,10 +363,6 @@ export const default_app = {
363
363
  text: {
364
364
  type: "string",
365
365
  },
366
- data: {
367
- type: "object",
368
- additionalProperties: true,
369
- },
370
366
  app: {
371
367
  type: "string",
372
368
  }