@etsoo/appscript 1.2.62 → 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.
@@ -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,17 @@
1
+ /**
2
+ * Login id request data
3
+ */
4
+ export declare type LoginIdRQ = {
5
+ /**
6
+ * Device id
7
+ */
8
+ deviceId: string;
9
+ /**
10
+ * Username, Email or mobile
11
+ */
12
+ id: string;
13
+ /**
14
+ * Country or region
15
+ */
16
+ region: string;
17
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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,17 @@
1
+ /**
2
+ * Login id request data
3
+ */
4
+ export declare type LoginIdRQ = {
5
+ /**
6
+ * Device id
7
+ */
8
+ deviceId: string;
9
+ /**
10
+ * Username, Email or mobile
11
+ */
12
+ id: string;
13
+ /**
14
+ * Country or region
15
+ */
16
+ region: string;
17
+ };
@@ -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.62",
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",
@@ -65,8 +65,8 @@
65
65
  "@babel/preset-env": "^7.18.9",
66
66
  "@babel/runtime-corejs3": "^7.18.9",
67
67
  "@types/jest": "^28.1.6",
68
- "@typescript-eslint/eslint-plugin": "^5.30.7",
69
- "@typescript-eslint/parser": "^5.30.7",
68
+ "@typescript-eslint/eslint-plugin": "^5.31.0",
69
+ "@typescript-eslint/parser": "^5.31.0",
70
70
  "eslint": "^8.20.0",
71
71
  "eslint-config-airbnb-base": "^15.0.0",
72
72
  "eslint-plugin-import": "^2.26.0",
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,19 @@
1
+ /**
2
+ * Login id request data
3
+ */
4
+ export type LoginIdRQ = {
5
+ /**
6
+ * Device id
7
+ */
8
+ deviceId: string;
9
+
10
+ /**
11
+ * Username, Email or mobile
12
+ */
13
+ id: string;
14
+
15
+ /**
16
+ * Country or region
17
+ */
18
+ region: string;
19
+ };
@@ -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
+ };