@nomalism-com/api 0.40.32 → 0.40.34
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.js +3 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -301,7 +301,9 @@ var Repository4 = class {
|
|
|
301
301
|
await this.api.put(`${this.route}mark_all_as_unread/${params.owner_id}`);
|
|
302
302
|
}
|
|
303
303
|
async publicMarkAllClientReadUnread(params) {
|
|
304
|
-
await this.api.put(
|
|
304
|
+
await this.api.put(
|
|
305
|
+
`${this.publicRoute}mark_all_client_read_unread/${params.owner_id}/${params.client_read}`
|
|
306
|
+
);
|
|
305
307
|
}
|
|
306
308
|
};
|
|
307
309
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nomalism-com/api",
|
|
3
3
|
"description": "A nomalism API package for performing HTTP requests on API endpoints",
|
|
4
|
-
"version": "0.40.
|
|
4
|
+
"version": "0.40.34",
|
|
5
5
|
"author": "Nomalism <it.nomalism@gmail.com> (https://https://nomalism.com/)",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"type": "module",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"prepack": "npm run lint && npm run build"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@nomalism-com/types": "^0.40.
|
|
26
|
+
"@nomalism-com/types": "^0.40.34",
|
|
27
27
|
"axios": "^1.9.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|