@etsoo/react 1.6.16 → 1.6.18
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/lib/index.d.ts +0 -1
- package/lib/index.js +0 -1
- package/package.json +3 -3
- package/src/index.ts +0 -1
- package/lib/app/RefreshTokenRQ.d.ts +0 -29
- package/lib/app/RefreshTokenRQ.js +0 -1
- package/src/app/RefreshTokenRQ.ts +0 -34
package/lib/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ export * from './app/CoreConstants';
|
|
|
2
2
|
export * from './app/EventWatcher';
|
|
3
3
|
export * from './app/InputDialogProps';
|
|
4
4
|
export * from './app/ReactUtils';
|
|
5
|
-
export * from './app/RefreshTokenRQ';
|
|
6
5
|
export * from './components/DnDList';
|
|
7
6
|
export * from './components/DynamicRouter';
|
|
8
7
|
export * from './components/GridColumn';
|
package/lib/index.js
CHANGED
|
@@ -3,7 +3,6 @@ export * from './app/CoreConstants';
|
|
|
3
3
|
export * from './app/EventWatcher';
|
|
4
4
|
export * from './app/InputDialogProps';
|
|
5
5
|
export * from './app/ReactUtils';
|
|
6
|
-
export * from './app/RefreshTokenRQ';
|
|
7
6
|
// components
|
|
8
7
|
export * from './components/DnDList';
|
|
9
8
|
export * from './components/DynamicRouter';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/react",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.18",
|
|
4
4
|
"description": "TypeScript ReactJs UI Independent Framework",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"@emotion/css": "^11.10.0",
|
|
51
51
|
"@emotion/react": "^11.10.4",
|
|
52
52
|
"@emotion/styled": "^11.10.4",
|
|
53
|
-
"@etsoo/appscript": "^1.3.
|
|
53
|
+
"@etsoo/appscript": "^1.3.8",
|
|
54
54
|
"@etsoo/notificationbase": "^1.1.12",
|
|
55
|
-
"@etsoo/shared": "^1.1.
|
|
55
|
+
"@etsoo/shared": "^1.1.62",
|
|
56
56
|
"@types/react": "^18.0.21",
|
|
57
57
|
"@types/react-dom": "^18.0.6",
|
|
58
58
|
"@types/react-window": "^1.8.5",
|
package/src/index.ts
CHANGED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Refresh token request data
|
|
3
|
-
*/
|
|
4
|
-
export declare type RefreshTokenRQ = {
|
|
5
|
-
/**
|
|
6
|
-
* Device id
|
|
7
|
-
*/
|
|
8
|
-
deviceId: string;
|
|
9
|
-
/**
|
|
10
|
-
* Login password
|
|
11
|
-
*/
|
|
12
|
-
pwd?: string;
|
|
13
|
-
/**
|
|
14
|
-
* Service device id
|
|
15
|
-
*/
|
|
16
|
-
serviceDeviceId?: string;
|
|
17
|
-
/**
|
|
18
|
-
* Service id
|
|
19
|
-
*/
|
|
20
|
-
serviceId?: number;
|
|
21
|
-
/**
|
|
22
|
-
* Service Uid
|
|
23
|
-
*/
|
|
24
|
-
serviceUid?: string;
|
|
25
|
-
/**
|
|
26
|
-
* Time zone
|
|
27
|
-
*/
|
|
28
|
-
timezone?: string;
|
|
29
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Refresh token request data
|
|
3
|
-
*/
|
|
4
|
-
export type RefreshTokenRQ = {
|
|
5
|
-
/**
|
|
6
|
-
* Device id
|
|
7
|
-
*/
|
|
8
|
-
deviceId: string;
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Login password
|
|
12
|
-
*/
|
|
13
|
-
pwd?: string;
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* Service device id
|
|
17
|
-
*/
|
|
18
|
-
serviceDeviceId?: string;
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* Service id
|
|
22
|
-
*/
|
|
23
|
-
serviceId?: number;
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* Service Uid
|
|
27
|
-
*/
|
|
28
|
-
serviceUid?: string;
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* Time zone
|
|
32
|
-
*/
|
|
33
|
-
timezone?: string;
|
|
34
|
-
};
|