@nomalism-com/api 0.42.8 → 0.43.14
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 +8 -8
- package/dist/index.js +11 -11
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -59,15 +59,15 @@ declare class Repository$1R implements Nomalism$1.Chat.IRepository {
|
|
|
59
59
|
route: string;
|
|
60
60
|
private api;
|
|
61
61
|
constructor({ api, route }: IModuleConstructor);
|
|
62
|
-
findActiveByOwnerId(params: Nomalism$1.shared.
|
|
63
|
-
clientWebAppFindActiveByOwnerId(params: Nomalism$1.shared.
|
|
64
|
-
findActiveBySubscriberId(params: Nomalism$1.shared.
|
|
62
|
+
findActiveByOwnerId(params: Nomalism$1.shared.IFindByIdRequest): Promise<Nomalism$1.Chat.IPublicFindActiveByOwnerIdResponse>;
|
|
63
|
+
clientWebAppFindActiveByOwnerId(params: Nomalism$1.shared.IFindByIdRequest): Promise<Nomalism$1.Chat.IPublicClientWebAppFindActiveByOwnerIdResponse>;
|
|
64
|
+
findActiveBySubscriberId(params: Nomalism$1.shared.IFindByIdRequest): Promise<Nomalism$1.Chat.IPublicFindBySubscriberId>;
|
|
65
65
|
create(body: Nomalism$1.Chat.ICreateRequest): Promise<Nomalism$1.Chat.Entity>;
|
|
66
|
-
update(
|
|
67
|
-
deleteOne(
|
|
68
|
-
resendLast({
|
|
69
|
-
markAllAsRead(
|
|
70
|
-
markAllAsUnread(
|
|
66
|
+
update({ id }: Nomalism$1.shared.IFindByIdRequest, body: Nomalism$1.Chat.IUpdateRequest): Promise<void>;
|
|
67
|
+
deleteOne({ id }: Nomalism$1.shared.IFindByIdRequest): Promise<void>;
|
|
68
|
+
resendLast({ id }: Nomalism$1.shared.IFindByIdRequest): Promise<void>;
|
|
69
|
+
markAllAsRead({ id }: Nomalism$1.shared.IFindByIdRequest): Promise<void>;
|
|
70
|
+
markAllAsUnread({ id }: Nomalism$1.shared.IFindByIdRequest): Promise<void>;
|
|
71
71
|
publicMarkAllClientReadUnread(params: Nomalism$1.Chat.IMarkAllClientReadUnreadRequest): Promise<void>;
|
|
72
72
|
}
|
|
73
73
|
|
package/dist/index.js
CHANGED
|
@@ -288,24 +288,24 @@ var Repository4 = class {
|
|
|
288
288
|
const response = await this.api.post(`${this.route}`, body);
|
|
289
289
|
return response.data;
|
|
290
290
|
}
|
|
291
|
-
async update(
|
|
292
|
-
await this.api.put(`${this.route}${
|
|
291
|
+
async update({ id }, body) {
|
|
292
|
+
await this.api.put(`${this.route}${id}`, body);
|
|
293
293
|
}
|
|
294
|
-
async deleteOne(
|
|
295
|
-
await this.api.delete(`${this.route}${
|
|
294
|
+
async deleteOne({ id }) {
|
|
295
|
+
await this.api.delete(`${this.route}${id}`);
|
|
296
296
|
}
|
|
297
|
-
async resendLast({
|
|
298
|
-
await this.api.post(`${this.route}resend_last/${
|
|
297
|
+
async resendLast({ id }) {
|
|
298
|
+
await this.api.post(`${this.route}resend_last/${id}`);
|
|
299
299
|
}
|
|
300
|
-
async markAllAsRead(
|
|
301
|
-
await this.api.put(`${this.route}mark_all_as_read/${
|
|
300
|
+
async markAllAsRead({ id }) {
|
|
301
|
+
await this.api.put(`${this.route}mark_all_as_read/${id}`);
|
|
302
302
|
}
|
|
303
|
-
async markAllAsUnread(
|
|
304
|
-
await this.api.put(`${this.route}mark_all_as_unread/${
|
|
303
|
+
async markAllAsUnread({ id }) {
|
|
304
|
+
await this.api.put(`${this.route}mark_all_as_unread/${id}`);
|
|
305
305
|
}
|
|
306
306
|
async publicMarkAllClientReadUnread(params) {
|
|
307
307
|
await this.api.put(
|
|
308
|
-
`${this.route}mark_all_client_read_unread/${params.
|
|
308
|
+
`${this.route}mark_all_client_read_unread/${params.chat_document_header_id}/${params.client_read}`
|
|
309
309
|
);
|
|
310
310
|
}
|
|
311
311
|
};
|
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.
|
|
4
|
+
"version": "0.43.14",
|
|
5
5
|
"author": "Nomalism <it.nomalism@gmail.com> (https://https://nomalism.com/)",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"type": "module",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"prepack": "npm run lint && npm run build"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@nomalism-com/types": "^0.
|
|
27
|
-
"axios": "^1.13.
|
|
26
|
+
"@nomalism-com/types": "^0.43.14",
|
|
27
|
+
"axios": "^1.13.5"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@swc/core": "^1.15.11",
|
|
31
|
-
"@types/node": "^24.10.
|
|
31
|
+
"@types/node": "^24.10.12",
|
|
32
32
|
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
33
33
|
"@typescript-eslint/parser": "^8.54.0",
|
|
34
34
|
"eslint": "^9.39.2",
|