@etsoo/appscript 1.6.22 → 1.6.24

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.
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Token authentication request data for API calls.
3
+ */
4
+ export type TokenAuthRQ = {
5
+ /**
6
+ * The access token to be used for authentication.
7
+ */
8
+ accessToken: string;
9
+ /**
10
+ * The scheme of the token, e.g., "Bearer".
11
+ */
12
+ tokenScheme?: string;
13
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -33,6 +33,7 @@ export * from "./api/rq/ResetPasswordRQ";
33
33
  export * from "./api/rq/SignoutRQ";
34
34
  export * from "./api/rq/StatusQueryRQ";
35
35
  export * from "./api/rq/SwitchOrgRQ";
36
+ export * from "./api/rq/TokenAuthRQ";
36
37
  export * from "./api/rq/TokenRQ";
37
38
  export * from "./api/rq/UpdateModel";
38
39
  export * from "./api/rq/UpdateStatusRQ";
package/lib/cjs/index.js CHANGED
@@ -52,6 +52,7 @@ __exportStar(require("./api/rq/ResetPasswordRQ"), exports);
52
52
  __exportStar(require("./api/rq/SignoutRQ"), exports);
53
53
  __exportStar(require("./api/rq/StatusQueryRQ"), exports);
54
54
  __exportStar(require("./api/rq/SwitchOrgRQ"), exports);
55
+ __exportStar(require("./api/rq/TokenAuthRQ"), exports);
55
56
  __exportStar(require("./api/rq/TokenRQ"), exports);
56
57
  __exportStar(require("./api/rq/UpdateModel"), exports);
57
58
  __exportStar(require("./api/rq/UpdateStatusRQ"), exports);
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Token authentication request data for API calls.
3
+ */
4
+ export type TokenAuthRQ = {
5
+ /**
6
+ * The access token to be used for authentication.
7
+ */
8
+ accessToken: string;
9
+ /**
10
+ * The scheme of the token, e.g., "Bearer".
11
+ */
12
+ tokenScheme?: string;
13
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -33,6 +33,7 @@ export * from "./api/rq/ResetPasswordRQ";
33
33
  export * from "./api/rq/SignoutRQ";
34
34
  export * from "./api/rq/StatusQueryRQ";
35
35
  export * from "./api/rq/SwitchOrgRQ";
36
+ export * from "./api/rq/TokenAuthRQ";
36
37
  export * from "./api/rq/TokenRQ";
37
38
  export * from "./api/rq/UpdateModel";
38
39
  export * from "./api/rq/UpdateStatusRQ";
package/lib/mjs/index.js CHANGED
@@ -35,6 +35,7 @@ export * from "./api/rq/ResetPasswordRQ";
35
35
  export * from "./api/rq/SignoutRQ";
36
36
  export * from "./api/rq/StatusQueryRQ";
37
37
  export * from "./api/rq/SwitchOrgRQ";
38
+ export * from "./api/rq/TokenAuthRQ";
38
39
  export * from "./api/rq/TokenRQ";
39
40
  export * from "./api/rq/UpdateModel";
40
41
  export * from "./api/rq/UpdateStatusRQ";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.6.22",
3
+ "version": "1.6.24",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -36,8 +36,8 @@
36
36
  "homepage": "https://github.com/ETSOO/AppScript#readme",
37
37
  "dependencies": {
38
38
  "@etsoo/notificationbase": "^1.1.60",
39
- "@etsoo/restclient": "^1.1.26",
40
- "@etsoo/shared": "^1.2.66",
39
+ "@etsoo/restclient": "^1.1.27",
40
+ "@etsoo/shared": "^1.2.68",
41
41
  "crypto-js": "^4.2.0"
42
42
  },
43
43
  "devDependencies": {
@@ -47,8 +47,8 @@
47
47
  "@babel/preset-env": "^7.26.9",
48
48
  "@babel/runtime-corejs3": "^7.27.0",
49
49
  "@types/crypto-js": "^4.2.2",
50
- "@vitejs/plugin-react": "^4.3.4",
51
- "jsdom": "^26.0.0",
50
+ "@vitejs/plugin-react": "^4.4.0",
51
+ "jsdom": "^26.1.0",
52
52
  "typescript": "^5.8.3",
53
53
  "vitest": "^3.1.1"
54
54
  }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Token authentication request data for API calls.
3
+ */
4
+ export type TokenAuthRQ = {
5
+ /**
6
+ * The access token to be used for authentication.
7
+ */
8
+ accessToken: string;
9
+
10
+ /**
11
+ * The scheme of the token, e.g., "Bearer".
12
+ */
13
+ tokenScheme?: string;
14
+ };
package/src/index.ts CHANGED
@@ -37,6 +37,7 @@ export * from "./api/rq/ResetPasswordRQ";
37
37
  export * from "./api/rq/SignoutRQ";
38
38
  export * from "./api/rq/StatusQueryRQ";
39
39
  export * from "./api/rq/SwitchOrgRQ";
40
+ export * from "./api/rq/TokenAuthRQ";
40
41
  export * from "./api/rq/TokenRQ";
41
42
  export * from "./api/rq/UpdateModel";
42
43
  export * from "./api/rq/UpdateStatusRQ";