@imbricate/core 3.6.1 → 3.6.2

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.
@@ -27,11 +27,11 @@ export interface IImbricateDatabase {
27
27
  * @param schema schema of the database
28
28
  * @param auditOptions audit options of the database
29
29
  *
30
- * @returns a promise of the updated schema
30
+ * @returns a promise of the edit records of the database
31
31
  * Note: if the origin supports Document Edit Record, the edit record will be added by default
32
32
  * If you do not want to add the edit record, set `noEditRecord` to true
33
33
  */
34
- putSchema(schema: ImbricateDatabaseSchema, auditOptions?: ImbricateDatabaseAuditOptions): PromiseLike<void>;
34
+ putSchema(schema: ImbricateDatabaseSchema, auditOptions?: ImbricateDatabaseAuditOptions): PromiseLike<DatabaseEditRecord[]>;
35
35
  /**
36
36
  * Create a new document in the database
37
37
  * If origin supports Document Edit Record, the edit record will be added by default
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imbricate/core",
3
3
  "main": "index.js",
4
- "version": "3.6.1",
4
+ "version": "3.6.2",
5
5
  "description": "Imbricate Core, Notebook for Engineers",
6
6
  "repository": {
7
7
  "type": "git",