attlaz-client 1.19.7 → 1.19.9
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/Client.d.ts +1 -0
- package/dist/Client.js +4 -0
- package/package.json +2 -2
package/dist/Client.d.ts
CHANGED
package/dist/Client.js
CHANGED
|
@@ -32,6 +32,7 @@ import { SearchEndpoint } from './Service/SearchEndpoint.js';
|
|
|
32
32
|
import { UserActionEndpoint } from './Service/UserActionEndpoint.js';
|
|
33
33
|
import { AccessTokenEndpoint } from './Service/AccessTokenEndpoint.js';
|
|
34
34
|
import { AdapterConnectionEndpoint } from './Service/AdapterConnectionEndpoint.js';
|
|
35
|
+
import { VERSION } from './version.js';
|
|
35
36
|
export class Client {
|
|
36
37
|
endpoints;
|
|
37
38
|
httpClient;
|
|
@@ -232,4 +233,7 @@ export class Client {
|
|
|
232
233
|
}
|
|
233
234
|
return this.endpoints.get(key);
|
|
234
235
|
}
|
|
236
|
+
getVersion() {
|
|
237
|
+
return VERSION;
|
|
238
|
+
}
|
|
235
239
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "attlaz-client",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.9",
|
|
4
4
|
"description": "Javascript Client to access Attlaz API",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"rollup-plugin-node-resolve": "^5.2.0",
|
|
64
64
|
"rollup-plugin-typescript": "^1.0.1",
|
|
65
65
|
"ts-jest": "^29.1.0",
|
|
66
|
-
"typescript": "^5.
|
|
66
|
+
"typescript": "^5.6.3"
|
|
67
67
|
},
|
|
68
68
|
"directories": {
|
|
69
69
|
"test": "test"
|