@etsoo/appscript 1.2.60 → 1.2.63
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/cjs/index.d.ts +2 -0
- package/lib/cjs/index.js +3 -0
- package/lib/cjs/rq/LoginIdRQ.d.ts +17 -0
- package/lib/cjs/rq/LoginIdRQ.js +2 -0
- package/lib/cjs/rq/LoginRQ.d.ts +22 -0
- package/lib/cjs/rq/LoginRQ.js +2 -0
- package/lib/mjs/index.d.ts +2 -0
- package/lib/mjs/index.js +3 -0
- package/lib/mjs/rq/LoginIdRQ.d.ts +17 -0
- package/lib/mjs/rq/LoginIdRQ.js +1 -0
- package/lib/mjs/rq/LoginRQ.d.ts +22 -0
- package/lib/mjs/rq/LoginRQ.js +1 -0
- package/package.json +17 -17
- package/src/index.ts +4 -0
- package/src/rq/LoginIdRQ.ts +19 -0
- package/src/rq/LoginRQ.ts +26 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -26,6 +26,8 @@ export * from './result/ActionResult';
|
|
|
26
26
|
export * from './result/ActionResultError';
|
|
27
27
|
export * from './result/IActionResult';
|
|
28
28
|
export * from './result/InitCallResult';
|
|
29
|
+
export * from './rq/LoginIdRQ';
|
|
30
|
+
export * from './rq/LoginRQ';
|
|
29
31
|
export * from './state/Culture';
|
|
30
32
|
export * from './state/State';
|
|
31
33
|
export * from './state/User';
|
package/lib/cjs/index.js
CHANGED
|
@@ -53,6 +53,9 @@ __exportStar(require("./result/ActionResult"), exports);
|
|
|
53
53
|
__exportStar(require("./result/ActionResultError"), exports);
|
|
54
54
|
__exportStar(require("./result/IActionResult"), exports);
|
|
55
55
|
__exportStar(require("./result/InitCallResult"), exports);
|
|
56
|
+
// rq
|
|
57
|
+
__exportStar(require("./rq/LoginIdRQ"), exports);
|
|
58
|
+
__exportStar(require("./rq/LoginRQ"), exports);
|
|
56
59
|
// state
|
|
57
60
|
__exportStar(require("./state/Culture"), exports);
|
|
58
61
|
__exportStar(require("./state/State"), exports);
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { LoginIdRQ } from './LoginIdRQ';
|
|
2
|
+
/**
|
|
3
|
+
* Login request data
|
|
4
|
+
*/
|
|
5
|
+
export declare type LoginRQ = LoginIdRQ & {
|
|
6
|
+
/**
|
|
7
|
+
* Password
|
|
8
|
+
*/
|
|
9
|
+
pwd: string;
|
|
10
|
+
/**
|
|
11
|
+
* Organization
|
|
12
|
+
*/
|
|
13
|
+
org?: number;
|
|
14
|
+
/**
|
|
15
|
+
* Time zone
|
|
16
|
+
*/
|
|
17
|
+
timezone?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Service id or uid
|
|
20
|
+
*/
|
|
21
|
+
serviceId?: string;
|
|
22
|
+
};
|
package/lib/mjs/index.d.ts
CHANGED
|
@@ -26,6 +26,8 @@ export * from './result/ActionResult';
|
|
|
26
26
|
export * from './result/ActionResultError';
|
|
27
27
|
export * from './result/IActionResult';
|
|
28
28
|
export * from './result/InitCallResult';
|
|
29
|
+
export * from './rq/LoginIdRQ';
|
|
30
|
+
export * from './rq/LoginRQ';
|
|
29
31
|
export * from './state/Culture';
|
|
30
32
|
export * from './state/State';
|
|
31
33
|
export * from './state/User';
|
package/lib/mjs/index.js
CHANGED
|
@@ -34,6 +34,9 @@ export * from './result/ActionResult';
|
|
|
34
34
|
export * from './result/ActionResultError';
|
|
35
35
|
export * from './result/IActionResult';
|
|
36
36
|
export * from './result/InitCallResult';
|
|
37
|
+
// rq
|
|
38
|
+
export * from './rq/LoginIdRQ';
|
|
39
|
+
export * from './rq/LoginRQ';
|
|
37
40
|
// state
|
|
38
41
|
export * from './state/Culture';
|
|
39
42
|
export * from './state/State';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { LoginIdRQ } from './LoginIdRQ';
|
|
2
|
+
/**
|
|
3
|
+
* Login request data
|
|
4
|
+
*/
|
|
5
|
+
export declare type LoginRQ = LoginIdRQ & {
|
|
6
|
+
/**
|
|
7
|
+
* Password
|
|
8
|
+
*/
|
|
9
|
+
pwd: string;
|
|
10
|
+
/**
|
|
11
|
+
* Organization
|
|
12
|
+
*/
|
|
13
|
+
org?: number;
|
|
14
|
+
/**
|
|
15
|
+
* Time zone
|
|
16
|
+
*/
|
|
17
|
+
timezone?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Service id or uid
|
|
20
|
+
*/
|
|
21
|
+
serviceId?: string;
|
|
22
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/appscript",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.63",
|
|
4
4
|
"description": "Applications shared TypeScript framework",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -52,27 +52,27 @@
|
|
|
52
52
|
},
|
|
53
53
|
"homepage": "https://github.com/ETSOO/AppScript#readme",
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@etsoo/notificationbase": "^1.1.
|
|
56
|
-
"@etsoo/restclient": "^1.0.
|
|
57
|
-
"@etsoo/shared": "^1.1.
|
|
55
|
+
"@etsoo/notificationbase": "^1.1.4",
|
|
56
|
+
"@etsoo/restclient": "^1.0.69",
|
|
57
|
+
"@etsoo/shared": "^1.1.40",
|
|
58
58
|
"@types/crypto-js": "^4.1.1",
|
|
59
59
|
"crypto-js": "^4.1.1"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@babel/cli": "^7.
|
|
63
|
-
"@babel/core": "^7.18.
|
|
64
|
-
"@babel/plugin-transform-runtime": "^7.18.
|
|
65
|
-
"@babel/preset-env": "^7.18.
|
|
66
|
-
"@babel/runtime-corejs3": "^7.18.
|
|
67
|
-
"@types/jest": "^
|
|
68
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
69
|
-
"@typescript-eslint/parser": "^5.
|
|
70
|
-
"eslint": "^8.
|
|
62
|
+
"@babel/cli": "^7.18.9",
|
|
63
|
+
"@babel/core": "^7.18.9",
|
|
64
|
+
"@babel/plugin-transform-runtime": "^7.18.9",
|
|
65
|
+
"@babel/preset-env": "^7.18.9",
|
|
66
|
+
"@babel/runtime-corejs3": "^7.18.9",
|
|
67
|
+
"@types/jest": "^28.1.6",
|
|
68
|
+
"@typescript-eslint/eslint-plugin": "^5.31.0",
|
|
69
|
+
"@typescript-eslint/parser": "^5.31.0",
|
|
70
|
+
"eslint": "^8.20.0",
|
|
71
71
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
72
72
|
"eslint-plugin-import": "^2.26.0",
|
|
73
|
-
"jest": "^28.1.
|
|
74
|
-
"jest-environment-jsdom": "^28.1.
|
|
75
|
-
"ts-jest": "^28.0.
|
|
76
|
-
"typescript": "^4.
|
|
73
|
+
"jest": "^28.1.3",
|
|
74
|
+
"jest-environment-jsdom": "^28.1.3",
|
|
75
|
+
"ts-jest": "^28.0.7",
|
|
76
|
+
"typescript": "^4.7.4"
|
|
77
77
|
}
|
|
78
78
|
}
|
package/src/index.ts
CHANGED
|
@@ -44,6 +44,10 @@ export * from './result/ActionResultError';
|
|
|
44
44
|
export * from './result/IActionResult';
|
|
45
45
|
export * from './result/InitCallResult';
|
|
46
46
|
|
|
47
|
+
// rq
|
|
48
|
+
export * from './rq/LoginIdRQ';
|
|
49
|
+
export * from './rq/LoginRQ';
|
|
50
|
+
|
|
47
51
|
// state
|
|
48
52
|
export * from './state/Culture';
|
|
49
53
|
export * from './state/State';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { LoginIdRQ } from './LoginIdRQ';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Login request data
|
|
5
|
+
*/
|
|
6
|
+
export type LoginRQ = LoginIdRQ & {
|
|
7
|
+
/**
|
|
8
|
+
* Password
|
|
9
|
+
*/
|
|
10
|
+
pwd: string;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Organization
|
|
14
|
+
*/
|
|
15
|
+
org?: number;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Time zone
|
|
19
|
+
*/
|
|
20
|
+
timezone?: string;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Service id or uid
|
|
24
|
+
*/
|
|
25
|
+
serviceId?: string;
|
|
26
|
+
};
|