@nomalism-com/api 0.40.111 → 0.40.113
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 +0 -2
- package/dist/index.js +0 -13
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1647,8 +1647,6 @@ declare class Repository$9 implements Nomalism$1.Gmails.IRepository {
|
|
|
1647
1647
|
constructor({ api, route }: IModuleConstructor);
|
|
1648
1648
|
auth(): Promise<string>;
|
|
1649
1649
|
emails(): Promise<Nomalism$1.Gmails.IGmailsResponse[]>;
|
|
1650
|
-
executeGmailCommand(selector: Nomalism$1.shared.IFindByIdRequest): Promise<Nomalism$1.Gmails.IGmailsResponse | null>;
|
|
1651
|
-
editPreviewChatMessage(selector: Nomalism$1.shared.IFindByIdRequest, data: Nomalism$1.Gmails.IEditPreviewChatMessageRequest): Promise<Nomalism$1.Gmails.IEditPreviewChatMessageResponse | null>;
|
|
1652
1650
|
}
|
|
1653
1651
|
|
|
1654
1652
|
declare namespace gmails {
|
package/dist/index.js
CHANGED
|
@@ -3835,19 +3835,6 @@ var Repository112 = class {
|
|
|
3835
3835
|
const response = await this.api.get(`${this.route}emails`);
|
|
3836
3836
|
return response.data;
|
|
3837
3837
|
}
|
|
3838
|
-
async executeGmailCommand(selector) {
|
|
3839
|
-
const response = await this.api.post(
|
|
3840
|
-
`${this.route}execute_gmail_command/${selector.id}`
|
|
3841
|
-
);
|
|
3842
|
-
return response.data;
|
|
3843
|
-
}
|
|
3844
|
-
async editPreviewChatMessage(selector, data) {
|
|
3845
|
-
const response = await this.api.post(
|
|
3846
|
-
`${this.route}edit_preview_chat_message/${selector.id}`,
|
|
3847
|
-
data
|
|
3848
|
-
);
|
|
3849
|
-
return response.data;
|
|
3850
|
-
}
|
|
3851
3838
|
};
|
|
3852
3839
|
|
|
3853
3840
|
// src/modules/document/NPF.ts
|
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.113",
|
|
5
5
|
"author": "Nomalism <it.nomalism@gmail.com> (https://https://nomalism.com/)",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"type": "module",
|
|
@@ -23,19 +23,19 @@
|
|
|
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.119",
|
|
27
27
|
"axios": "^1.13.2"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@swc/core": "^1.15.8",
|
|
31
|
-
"@types/node": "^24.10.
|
|
31
|
+
"@types/node": "^24.10.9",
|
|
32
32
|
"@typescript-eslint/eslint-plugin": "^8.53.0",
|
|
33
33
|
"@typescript-eslint/parser": "^8.53.0",
|
|
34
34
|
"eslint": "^9.39.2",
|
|
35
35
|
"eslint-config-prettier": "^10.1.8",
|
|
36
36
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
37
37
|
"eslint-plugin-prettier": "^5.5.5",
|
|
38
|
-
"prettier": "^3.
|
|
38
|
+
"prettier": "^3.8.0",
|
|
39
39
|
"tsup": "^8.5.1"
|
|
40
40
|
},
|
|
41
41
|
"repository": {
|