@etsoo/appscript 1.6.24 → 1.6.25
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.
|
@@ -16,6 +16,10 @@ export type StringIdResultPayload = IApiPayload<IdActionResult<string>>;
|
|
|
16
16
|
* Id and message action result payload
|
|
17
17
|
*/
|
|
18
18
|
export type IdMsgResultPayload = IApiPayload<IdMsgActionResult>;
|
|
19
|
+
/**
|
|
20
|
+
* String id and message action result payload
|
|
21
|
+
*/
|
|
22
|
+
export type StringIdMsgResultPayload = IApiPayload<IdMsgActionResult<string>>;
|
|
19
23
|
/**
|
|
20
24
|
* Message action result payload
|
|
21
25
|
*/
|
|
@@ -16,6 +16,10 @@ export type StringIdResultPayload = IApiPayload<IdActionResult<string>>;
|
|
|
16
16
|
* Id and message action result payload
|
|
17
17
|
*/
|
|
18
18
|
export type IdMsgResultPayload = IApiPayload<IdMsgActionResult>;
|
|
19
|
+
/**
|
|
20
|
+
* String id and message action result payload
|
|
21
|
+
*/
|
|
22
|
+
export type StringIdMsgResultPayload = IApiPayload<IdMsgActionResult<string>>;
|
|
19
23
|
/**
|
|
20
24
|
* Message action result payload
|
|
21
25
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/appscript",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.25",
|
|
4
4
|
"description": "Applications shared TypeScript framework",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@etsoo/notificationbase": "^1.1.60",
|
|
39
39
|
"@etsoo/restclient": "^1.1.27",
|
|
40
|
-
"@etsoo/shared": "^1.2.
|
|
40
|
+
"@etsoo/shared": "^1.2.69",
|
|
41
41
|
"crypto-js": "^4.2.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
@@ -26,6 +26,11 @@ export type StringIdResultPayload = IApiPayload<IdActionResult<string>>;
|
|
|
26
26
|
*/
|
|
27
27
|
export type IdMsgResultPayload = IApiPayload<IdMsgActionResult>;
|
|
28
28
|
|
|
29
|
+
/**
|
|
30
|
+
* String id and message action result payload
|
|
31
|
+
*/
|
|
32
|
+
export type StringIdMsgResultPayload = IApiPayload<IdMsgActionResult<string>>;
|
|
33
|
+
|
|
29
34
|
/**
|
|
30
35
|
* Message action result payload
|
|
31
36
|
*/
|