@nomalism-com/api 0.44.17 → 0.44.19
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
CHANGED
|
@@ -455,9 +455,6 @@ var Repository7 = class {
|
|
|
455
455
|
async transferClientOwnership(data) {
|
|
456
456
|
await this.api.put(`${this.route}transfer_client_ownership`, data);
|
|
457
457
|
}
|
|
458
|
-
async updateManyWithPersona(data) {
|
|
459
|
-
await this.api.put(`${this.route}update_many_with_persona`, data);
|
|
460
|
-
}
|
|
461
458
|
async sendClientNotification({ id }, data) {
|
|
462
459
|
await this.api.post(`${this.route}${id}/send_client_notification`, data);
|
|
463
460
|
}
|
|
@@ -15,7 +15,6 @@ export default class Repository implements Nomalism.DocumentHeader.IRepository {
|
|
|
15
15
|
deleteOne(selector: Nomalism.shared.IFindByIdRequest): Promise<void>;
|
|
16
16
|
getActions(selector: Nomalism.shared.IFindByIdRequest): Promise<Nomalism.DocumentHeader.IGetActionsResponse[]>;
|
|
17
17
|
transferClientOwnership(data: Nomalism.DocumentHeader.ITransferOwnershipRequest): Promise<void>;
|
|
18
|
-
updateManyWithPersona(data: Nomalism.DocumentHeader.IUpdateManyWithPersona): Promise<void>;
|
|
19
18
|
sendClientNotification({ id }: Nomalism.shared.IFindByIdRequest, data: Nomalism.DocumentHeader.ISendClientNotificationRequest): Promise<void>;
|
|
20
19
|
markUnsentClientNotification({ id }: Nomalism.shared.IFindByIdRequest): Promise<void>;
|
|
21
20
|
documentPdf({ id }: Nomalism.shared.IFindByIdRequest): Promise<string>;
|
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.44.
|
|
4
|
+
"version": "0.44.19",
|
|
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.44.
|
|
26
|
+
"@nomalism-com/types": "^0.44.20",
|
|
27
27
|
"axios": "^1.16.1"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|