@nomalism-com/api 0.40.32 → 0.40.33

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -1
  2. package/package.json +1 -1
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(`${this.publicRoute}mark_all_client_read_unread`, params);
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.32",
4
+ "version": "0.40.33",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",