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 +2 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
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