docpouch-client 0.8.9 → 0.8.10
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 +0 -3
- package/package.json +5 -5
- package/src/index.ts +0 -3
package/dist/index.d.ts
CHANGED
|
@@ -106,7 +106,6 @@ export interface I_UserCreation {
|
|
|
106
106
|
isAdmin: boolean;
|
|
107
107
|
}
|
|
108
108
|
export interface I_UserUpdate {
|
|
109
|
-
_id: string;
|
|
110
109
|
name?: string;
|
|
111
110
|
password?: string;
|
|
112
111
|
email?: string;
|
|
@@ -142,7 +141,6 @@ export interface I_DocumentCreationOwned extends I_DocumentCreation {
|
|
|
142
141
|
owner: string;
|
|
143
142
|
}
|
|
144
143
|
export interface I_DocumentUpdate extends I_DocumentQuery {
|
|
145
|
-
_id: string;
|
|
146
144
|
content?: any;
|
|
147
145
|
description?: string;
|
|
148
146
|
}
|
|
@@ -178,7 +176,6 @@ export interface I_StructureCreation {
|
|
|
178
176
|
fields: I_StructureField[];
|
|
179
177
|
}
|
|
180
178
|
export interface I_StructureUpdate {
|
|
181
|
-
_id?: string;
|
|
182
179
|
name?: string;
|
|
183
180
|
description?: string;
|
|
184
181
|
fields?: I_StructureField[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docpouch-client",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.10",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/jest": "^30.0.0",
|
|
30
|
-
"@types/node": "^24.0
|
|
31
|
-
"jest": "^30.0.
|
|
32
|
-
"ts-jest": "^29.4.
|
|
33
|
-
"typescript": "^5.
|
|
30
|
+
"@types/node": "^24.3.0",
|
|
31
|
+
"jest": "^30.0.5",
|
|
32
|
+
"ts-jest": "^29.4.1",
|
|
33
|
+
"typescript": "^5.9.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"socket.io-client": "^4.8.1"
|
package/src/index.ts
CHANGED
|
@@ -407,7 +407,6 @@ export interface I_UserCreation {
|
|
|
407
407
|
}
|
|
408
408
|
|
|
409
409
|
export interface I_UserUpdate {
|
|
410
|
-
_id: string;
|
|
411
410
|
name?: string;
|
|
412
411
|
password?: string;
|
|
413
412
|
email?: string;
|
|
@@ -451,7 +450,6 @@ export interface I_DocumentCreationOwned extends I_DocumentCreation {
|
|
|
451
450
|
}
|
|
452
451
|
|
|
453
452
|
export interface I_DocumentUpdate extends I_DocumentQuery {
|
|
454
|
-
_id: string;
|
|
455
453
|
content?: any;
|
|
456
454
|
description?: string;
|
|
457
455
|
}
|
|
@@ -496,7 +494,6 @@ export interface I_StructureCreation {
|
|
|
496
494
|
}
|
|
497
495
|
|
|
498
496
|
export interface I_StructureUpdate {
|
|
499
|
-
_id?: string;
|
|
500
497
|
name?: string;
|
|
501
498
|
description?: string;
|
|
502
499
|
fields?: I_StructureField[];
|