@etsoo/appscript 1.6.41 → 1.6.42

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,26 @@
1
+ /**
2
+ * Application action data
3
+ * 程序动作数据
4
+ */
5
+ export type AppActionData = {
6
+ /**
7
+ * Application ID
8
+ * 应用编号
9
+ */
10
+ appId: number;
11
+ /**
12
+ * Application key
13
+ * 应用键值
14
+ */
15
+ appKey: string;
16
+ /**
17
+ * Timestamp, long big number may cause JSON serialization issue
18
+ * 时间戳,长整数可能导致JSON序列化问题
19
+ */
20
+ timestamp: string;
21
+ /**
22
+ * Signature
23
+ * 签名
24
+ */
25
+ sign: string;
26
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -10,6 +10,7 @@ export * from "./address/AddressState";
10
10
  export * from "./address/AddressUtils";
11
11
  export * from "./api/dto/AntiforgeryRequestToken";
12
12
  export * from "./api/dto/ApiRefreshTokenDto";
13
+ export * from "./api/dto/AppActionData";
13
14
  export * from "./api/dto/AuditLineDto";
14
15
  export * from "./api/dto/IdLabelDto";
15
16
  export * from "./api/dto/IdLabelPrimaryDto";
package/lib/cjs/index.js CHANGED
@@ -29,6 +29,7 @@ __exportStar(require("./address/AddressUtils"), exports);
29
29
  // api
30
30
  __exportStar(require("./api/dto/AntiforgeryRequestToken"), exports);
31
31
  __exportStar(require("./api/dto/ApiRefreshTokenDto"), exports);
32
+ __exportStar(require("./api/dto/AppActionData"), exports);
32
33
  __exportStar(require("./api/dto/AuditLineDto"), exports);
33
34
  __exportStar(require("./api/dto/IdLabelDto"), exports);
34
35
  __exportStar(require("./api/dto/IdLabelPrimaryDto"), exports);
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Application action data
3
+ * 程序动作数据
4
+ */
5
+ export type AppActionData = {
6
+ /**
7
+ * Application ID
8
+ * 应用编号
9
+ */
10
+ appId: number;
11
+ /**
12
+ * Application key
13
+ * 应用键值
14
+ */
15
+ appKey: string;
16
+ /**
17
+ * Timestamp, long big number may cause JSON serialization issue
18
+ * 时间戳,长整数可能导致JSON序列化问题
19
+ */
20
+ timestamp: string;
21
+ /**
22
+ * Signature
23
+ * 签名
24
+ */
25
+ sign: string;
26
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -10,6 +10,7 @@ export * from "./address/AddressState";
10
10
  export * from "./address/AddressUtils";
11
11
  export * from "./api/dto/AntiforgeryRequestToken";
12
12
  export * from "./api/dto/ApiRefreshTokenDto";
13
+ export * from "./api/dto/AppActionData";
13
14
  export * from "./api/dto/AuditLineDto";
14
15
  export * from "./api/dto/IdLabelDto";
15
16
  export * from "./api/dto/IdLabelPrimaryDto";
package/lib/mjs/index.js CHANGED
@@ -12,6 +12,7 @@ export * from "./address/AddressUtils";
12
12
  // api
13
13
  export * from "./api/dto/AntiforgeryRequestToken";
14
14
  export * from "./api/dto/ApiRefreshTokenDto";
15
+ export * from "./api/dto/AppActionData";
15
16
  export * from "./api/dto/AuditLineDto";
16
17
  export * from "./api/dto/IdLabelDto";
17
18
  export * from "./api/dto/IdLabelPrimaryDto";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.6.41",
3
+ "version": "1.6.42",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -41,13 +41,13 @@
41
41
  "crypto-js": "^4.2.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@babel/cli": "^7.27.2",
45
- "@babel/core": "^7.27.4",
46
- "@babel/plugin-transform-runtime": "^7.27.4",
47
- "@babel/preset-env": "^7.27.2",
48
- "@babel/runtime-corejs3": "^7.27.6",
44
+ "@babel/cli": "^7.28.0",
45
+ "@babel/core": "^7.28.0",
46
+ "@babel/plugin-transform-runtime": "^7.28.0",
47
+ "@babel/preset-env": "^7.28.0",
48
+ "@babel/runtime-corejs3": "^7.28.0",
49
49
  "@types/crypto-js": "^4.2.2",
50
- "@vitejs/plugin-react": "^4.5.2",
50
+ "@vitejs/plugin-react": "^4.6.0",
51
51
  "jsdom": "^26.1.0",
52
52
  "typescript": "^5.8.3",
53
53
  "vitest": "^3.2.4"
@@ -0,0 +1,29 @@
1
+ /**
2
+ * Application action data
3
+ * 程序动作数据
4
+ */
5
+ export type AppActionData = {
6
+ /**
7
+ * Application ID
8
+ * 应用编号
9
+ */
10
+ appId: number;
11
+
12
+ /**
13
+ * Application key
14
+ * 应用键值
15
+ */
16
+ appKey: string;
17
+
18
+ /**
19
+ * Timestamp, long big number may cause JSON serialization issue
20
+ * 时间戳,长整数可能导致JSON序列化问题
21
+ */
22
+ timestamp: string;
23
+
24
+ /**
25
+ * Signature
26
+ * 签名
27
+ */
28
+ sign: string;
29
+ };
package/src/index.ts CHANGED
@@ -13,6 +13,7 @@ export * from "./address/AddressUtils";
13
13
  // api
14
14
  export * from "./api/dto/AntiforgeryRequestToken";
15
15
  export * from "./api/dto/ApiRefreshTokenDto";
16
+ export * from "./api/dto/AppActionData";
16
17
  export * from "./api/dto/AuditLineDto";
17
18
  export * from "./api/dto/IdLabelDto";
18
19
  export * from "./api/dto/IdLabelPrimaryDto";