@blocklet/launcher-util 2.3.40 → 2.3.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.
- package/es/constant.js +4 -2
- package/lib/constant.js +4 -2
- package/package.json +3 -3
package/es/constant.js
CHANGED
|
@@ -29,7 +29,8 @@ const LAUNCH_STATUS = Object.freeze({
|
|
|
29
29
|
allocated: 40,
|
|
30
30
|
consuming: 46,
|
|
31
31
|
installed: 50,
|
|
32
|
-
|
|
32
|
+
pastDue: 60,
|
|
33
|
+
canceled: 65,
|
|
33
34
|
terminated: 70,
|
|
34
35
|
transferred: 90
|
|
35
36
|
});
|
|
@@ -53,7 +54,8 @@ const LAUNCH_ACTIVITY_TYPE = Object.freeze({
|
|
|
53
54
|
allocated: "allocated",
|
|
54
55
|
installed: "installed",
|
|
55
56
|
timeout: "timeout",
|
|
56
|
-
|
|
57
|
+
pastDue: "pastDue",
|
|
58
|
+
canceled: "canceled",
|
|
57
59
|
terminated: "terminated",
|
|
58
60
|
transferred: "transferred"
|
|
59
61
|
});
|
package/lib/constant.js
CHANGED
|
@@ -31,7 +31,8 @@ const LAUNCH_STATUS = Object.freeze({
|
|
|
31
31
|
allocated: 40,
|
|
32
32
|
consuming: 46,
|
|
33
33
|
installed: 50,
|
|
34
|
-
|
|
34
|
+
pastDue: 60,
|
|
35
|
+
canceled: 65,
|
|
35
36
|
terminated: 70,
|
|
36
37
|
transferred: 90
|
|
37
38
|
});
|
|
@@ -55,7 +56,8 @@ const LAUNCH_ACTIVITY_TYPE = Object.freeze({
|
|
|
55
56
|
allocated: "allocated",
|
|
56
57
|
installed: "installed",
|
|
57
58
|
timeout: "timeout",
|
|
58
|
-
|
|
59
|
+
pastDue: "pastDue",
|
|
60
|
+
canceled: "canceled",
|
|
59
61
|
terminated: "terminated",
|
|
60
62
|
transferred: "transferred"
|
|
61
63
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blocklet/launcher-util",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.42",
|
|
4
4
|
"description": "Common constants",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"constant"
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"url-join": "^4.0.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"vite": "^5.
|
|
48
|
+
"vite": "^5.4.0",
|
|
49
49
|
"vite-plugin-build": "^0.10.0"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "4e99368cb90c35abd67210f31b1ea4e0504f7842"
|
|
52
52
|
}
|