docpouch-client 0.8.16 → 0.8.17
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 +6 -6
- package/src/index.ts +2 -0
package/dist/index.d.ts
CHANGED
|
@@ -270,6 +270,7 @@ export interface I_DocumentCreation {
|
|
|
270
270
|
content: any;
|
|
271
271
|
shareWithGroup: boolean;
|
|
272
272
|
shareWithDepartment: boolean;
|
|
273
|
+
public: boolean;
|
|
273
274
|
}
|
|
274
275
|
export interface I_DocumentCreationOwned extends I_DocumentCreation {
|
|
275
276
|
owner: string;
|
|
@@ -286,6 +287,7 @@ export interface I_DocumentQuery {
|
|
|
286
287
|
subType?: number;
|
|
287
288
|
shareWithGroup?: boolean;
|
|
288
289
|
shareWithDepartment?: boolean;
|
|
290
|
+
public?: boolean;
|
|
289
291
|
}
|
|
290
292
|
export interface I_DataStructure {
|
|
291
293
|
_id?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docpouch-client",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.17",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/jest": "^30.0.0",
|
|
30
|
-
"@types/node": "^24.
|
|
31
|
-
"jest": "^30.0
|
|
32
|
-
"ts-jest": "^29.4.
|
|
33
|
-
"typescript": "^5.9.
|
|
30
|
+
"@types/node": "^24.12.0",
|
|
31
|
+
"jest": "^30.3.0",
|
|
32
|
+
"ts-jest": "^29.4.6",
|
|
33
|
+
"typescript": "^5.9.3"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"socket.io-client": "^4.8.
|
|
36
|
+
"socket.io-client": "^4.8.3"
|
|
37
37
|
}
|
|
38
38
|
}
|
package/src/index.ts
CHANGED
|
@@ -576,6 +576,7 @@ export interface I_DocumentCreation {
|
|
|
576
576
|
content: any;
|
|
577
577
|
shareWithGroup: boolean;
|
|
578
578
|
shareWithDepartment: boolean;
|
|
579
|
+
public: boolean;
|
|
579
580
|
}
|
|
580
581
|
|
|
581
582
|
|
|
@@ -596,6 +597,7 @@ export interface I_DocumentQuery {
|
|
|
596
597
|
subType?: number;
|
|
597
598
|
shareWithGroup?: boolean;
|
|
598
599
|
shareWithDepartment?: boolean;
|
|
600
|
+
public?: boolean;
|
|
599
601
|
}
|
|
600
602
|
|
|
601
603
|
|