@etsoo/appscript 1.5.10 → 1.5.12

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.
@@ -6,6 +6,10 @@ export type RefreshTokenRQ = {
6
6
  * Device id
7
7
  */
8
8
  deviceId: string;
9
+ /**
10
+ * Country or region
11
+ */
12
+ region: string;
9
13
  /**
10
14
  * Login password
11
15
  */
@@ -6,6 +6,10 @@ export type RefreshTokenRQ = {
6
6
  * Device id
7
7
  */
8
8
  deviceId: string;
9
+ /**
10
+ * Country or region
11
+ */
12
+ region: string;
9
13
  /**
10
14
  * Login password
11
15
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.5.10",
3
+ "version": "1.5.12",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -58,16 +58,16 @@
58
58
  "crypto-js": "^4.2.0"
59
59
  },
60
60
  "devDependencies": {
61
- "@babel/cli": "^7.24.8",
61
+ "@babel/cli": "^7.25.6",
62
62
  "@babel/core": "^7.25.2",
63
- "@babel/plugin-transform-runtime": "^7.24.7",
64
- "@babel/preset-env": "^7.25.3",
65
- "@babel/runtime-corejs3": "^7.25.0",
63
+ "@babel/plugin-transform-runtime": "^7.25.4",
64
+ "@babel/preset-env": "^7.25.4",
65
+ "@babel/runtime-corejs3": "^7.25.6",
66
66
  "@types/crypto-js": "^4.2.2",
67
67
  "@types/jest": "^29.5.12",
68
68
  "jest": "^29.7.0",
69
69
  "jest-environment-jsdom": "^29.7.0",
70
- "ts-jest": "^29.2.4",
70
+ "ts-jest": "^29.2.5",
71
71
  "typescript": "^5.5.4"
72
72
  }
73
73
  }
@@ -7,6 +7,11 @@ export type RefreshTokenRQ = {
7
7
  */
8
8
  deviceId: string;
9
9
 
10
+ /**
11
+ * Country or region
12
+ */
13
+ region: string;
14
+
10
15
  /**
11
16
  * Login password
12
17
  */