docpouch-client 0.8.11 → 0.8.13

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/dist/index.d.ts CHANGED
@@ -106,6 +106,7 @@ export interface I_UserCreation {
106
106
  isAdmin: boolean;
107
107
  }
108
108
  export interface I_UserUpdate {
109
+ _id?: string;
109
110
  name?: string;
110
111
  password?: string;
111
112
  email?: string;
@@ -176,6 +177,7 @@ export interface I_StructureCreation {
176
177
  fields: I_StructureField[];
177
178
  }
178
179
  export interface I_StructureUpdate {
180
+ _id?: string;
179
181
  name?: string;
180
182
  description?: string;
181
183
  fields?: I_StructureField[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docpouch-client",
3
- "version": "0.8.11",
3
+ "version": "0.8.13",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "exports": {
package/src/index.ts CHANGED
@@ -407,6 +407,7 @@ export interface I_UserCreation {
407
407
  }
408
408
 
409
409
  export interface I_UserUpdate {
410
+ _id?: string;
410
411
  name?: string;
411
412
  password?: string;
412
413
  email?: string;