@nomalism-com/api 0.44.20 → 0.45.1
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 +429 -358
- package/dist/main.d.ts +0 -3
- package/dist/modules/user/sessions.d.ts +1 -0
- package/package.json +4 -4
- package/dist/modules/user/logout.d.ts +0 -7
package/dist/main.d.ts
CHANGED
|
@@ -22,7 +22,6 @@ import FileClass from './modules/stock/file';
|
|
|
22
22
|
import GoogleSheetsClass from './modules/integration/googleSheets';
|
|
23
23
|
import LanguageClass from './modules/user/language';
|
|
24
24
|
import LocationClass from './modules/stock/location';
|
|
25
|
-
import LogoutClass from './modules/user/logout';
|
|
26
25
|
import MultimediaClass from './modules/documentManagement/multimedia';
|
|
27
26
|
import ObservationClass from './modules/integration/observation';
|
|
28
27
|
import ObservationTypeClass from './modules/integration/observationType';
|
|
@@ -138,7 +137,6 @@ export * as File from './modules/stock/file';
|
|
|
138
137
|
export * as GoogleSheets from './modules/integration/googleSheets';
|
|
139
138
|
export * as Language from './modules/user/language';
|
|
140
139
|
export * as Location from './modules/stock/location';
|
|
141
|
-
export * as Logout from './modules/user/logout';
|
|
142
140
|
export * as Multimedia from './modules/documentManagement/multimedia';
|
|
143
141
|
export * as Observation from './modules/integration/observation';
|
|
144
142
|
export * as ObservationType from './modules/integration/observationType';
|
|
@@ -279,7 +277,6 @@ export declare class API {
|
|
|
279
277
|
GoogleSheets: GoogleSheetsClass;
|
|
280
278
|
Language: LanguageClass;
|
|
281
279
|
Location: LocationClass;
|
|
282
|
-
Logout: LogoutClass;
|
|
283
280
|
Multimedia: MultimediaClass;
|
|
284
281
|
Observation: ObservationClass;
|
|
285
282
|
ObservationType: ObservationTypeClass;
|
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.45.1",
|
|
5
5
|
"author": "Nomalism <it.nomalism@gmail.com> (https://https://nomalism.com/)",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"type": "module",
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"prepack": "npm run lint && npm run build"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@nomalism-com/types": "^0.
|
|
26
|
+
"@nomalism-com/types": "^0.45.1",
|
|
27
27
|
"axios": "^1.16.1"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@swc/core": "^1.15.33",
|
|
31
31
|
"@types/node": "^24.12.4",
|
|
32
|
-
"@typescript-eslint/eslint-plugin": "^8.59.
|
|
33
|
-
"@typescript-eslint/parser": "^8.59.
|
|
32
|
+
"@typescript-eslint/eslint-plugin": "^8.59.4",
|
|
33
|
+
"@typescript-eslint/parser": "^8.59.4",
|
|
34
34
|
"eslint": "^9.39.4",
|
|
35
35
|
"eslint-config-prettier": "^10.1.8",
|
|
36
36
|
"eslint-import-resolver-typescript": "^4.4.4",
|