@evergis/api 3.0.104 → 3.0.108
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/LICENSE +20 -20
- package/README.md +21 -21
- package/dist/__generated__/data-contracts.d.ts +146 -146
- package/dist/api.cjs.development.js +19 -11
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +166 -157
- package/dist/api.esm.js.map +1 -1
- package/dist/constants.d.ts +1 -0
- package/dist/services/Account.d.ts +0 -1
- package/dist/services/ClientSettings.d.ts +1 -0
- package/dist/services/Notification.d.ts +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const API_USER_INFO_KEY = "@evergis/user-info";
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { AccountService } from '../__generated__/AccountService';
|
|
2
2
|
import { LoginDc, UserInfoDc } from '../__generated__/data-contracts';
|
|
3
|
-
export declare const API_USER_INFO_KEY = "@evergis/user-info";
|
|
4
3
|
export declare type DecodedAuthToken = {
|
|
5
4
|
/** емайл */
|
|
6
5
|
email: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IHttpClient } from '../__generated__/HttpClient';
|
|
2
2
|
import { NotificationService } from '../__generated__/NotificationService';
|
|
3
|
-
import { Api } from
|
|
3
|
+
import { Api } from '../Api';
|
|
4
4
|
declare type NotificationHandler<Data, Result> = (event: NotificationEvent<Data>) => Result;
|
|
5
5
|
export declare enum ConnectionStatus {
|
|
6
6
|
Initialized = "Initialized",
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "3.0.
|
|
2
|
+
"version": "3.0.108",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"nanoid": "^3.1.23",
|
|
44
44
|
"query-string": "^6.7.0"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "969da8a3dcefebde64eea042ea5bc0835a24a65e"
|
|
47
47
|
}
|