@blocklet/constant 1.16.20-beta-e363262e → 1.16.20-beta-bb1cd034

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.
Files changed (2) hide show
  1. package/index.d.ts +17 -1
  2. package/package.json +2 -2
package/index.d.ts CHANGED
@@ -1,7 +1,23 @@
1
1
  type StringNumberObject = {
2
2
  [key: string]: number;
3
3
  };
4
- export declare const BlockletStatus: StringNumberObject;
4
+ export declare const BlockletStatus: Readonly<{
5
+ added: 0;
6
+ downloading: 1;
7
+ downloaded: 2;
8
+ installing: 3;
9
+ installed: 4;
10
+ starting: 5;
11
+ running: 6;
12
+ stopping: 7;
13
+ stopped: 8;
14
+ error: 9;
15
+ upgrading: 10;
16
+ restarting: 11;
17
+ corrupted: 12;
18
+ waiting: 13;
19
+ deleted: 14;
20
+ }>;
5
21
  export declare const BLOCKLET_CONTROLLER_STATUS: {
6
22
  normal: number;
7
23
  suspended: number;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.20-beta-e363262e",
6
+ "version": "1.16.20-beta-bb1cd034",
7
7
  "description": "Blocklet constants",
8
8
  "main": "index.js",
9
9
  "files": [
@@ -32,5 +32,5 @@
32
32
  "ts-jest": "^27.1.5",
33
33
  "typescript": "^5.0.4"
34
34
  },
35
- "gitHead": "479cea04dd620d8194d6221b2594b6a0f390ba76"
35
+ "gitHead": "b000d880478911fbad7f5b197daf8a9065463ca8"
36
36
  }