@blocklet/constant 1.16.32 → 1.16.33-beta-20240929-110332-9d5dfdc4
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/index.d.ts +1 -0
- package/index.js +5 -1
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -846,6 +846,7 @@ export declare const BLOCKLET_FACTORY_SHARES: {
|
|
|
846
846
|
};
|
|
847
847
|
export declare const BLOCKLET_INTERFACE_TYPE_WEB = "web";
|
|
848
848
|
export declare const BLOCKLET_INTERFACE_TYPE_SERVICE = "service";
|
|
849
|
+
export declare const BLOCKLET_INTERFACE_TYPE_DOCKER = "docker";
|
|
849
850
|
export declare const BLOCKLET_INTERFACE_TYPE_WELLKNOWN = "wellknown";
|
|
850
851
|
export declare const BLOCKLET_INTERFACE_TYPES: string[];
|
|
851
852
|
export declare const BLOCKLET_INTERFACE_PUBLIC = "publicUrl";
|
package/index.js
CHANGED
|
@@ -42,6 +42,7 @@ __export(lib_exports, {
|
|
|
42
42
|
BLOCKLET_INTERFACE_PROTOCOL_UDP: () => BLOCKLET_INTERFACE_PROTOCOL_UDP,
|
|
43
43
|
BLOCKLET_INTERFACE_PUBLIC: () => BLOCKLET_INTERFACE_PUBLIC,
|
|
44
44
|
BLOCKLET_INTERFACE_TYPES: () => BLOCKLET_INTERFACE_TYPES,
|
|
45
|
+
BLOCKLET_INTERFACE_TYPE_DOCKER: () => BLOCKLET_INTERFACE_TYPE_DOCKER,
|
|
45
46
|
BLOCKLET_INTERFACE_TYPE_SERVICE: () => BLOCKLET_INTERFACE_TYPE_SERVICE,
|
|
46
47
|
BLOCKLET_INTERFACE_TYPE_WEB: () => BLOCKLET_INTERFACE_TYPE_WEB,
|
|
47
48
|
BLOCKLET_INTERFACE_TYPE_WELLKNOWN: () => BLOCKLET_INTERFACE_TYPE_WELLKNOWN,
|
|
@@ -976,11 +977,13 @@ var BLOCKLET_TENANT_MODES = Object.freeze({
|
|
|
976
977
|
var BLOCKLET_FACTORY_SHARES = { developer: 0.7, store: 0.3 };
|
|
977
978
|
var BLOCKLET_INTERFACE_TYPE_WEB = "web";
|
|
978
979
|
var BLOCKLET_INTERFACE_TYPE_SERVICE = "service";
|
|
980
|
+
var BLOCKLET_INTERFACE_TYPE_DOCKER = "docker";
|
|
979
981
|
var BLOCKLET_INTERFACE_TYPE_WELLKNOWN = "wellknown";
|
|
980
982
|
var BLOCKLET_INTERFACE_TYPES = [
|
|
981
983
|
BLOCKLET_INTERFACE_TYPE_WEB,
|
|
982
984
|
BLOCKLET_INTERFACE_TYPE_SERVICE,
|
|
983
|
-
BLOCKLET_INTERFACE_TYPE_WELLKNOWN
|
|
985
|
+
BLOCKLET_INTERFACE_TYPE_WELLKNOWN,
|
|
986
|
+
BLOCKLET_INTERFACE_TYPE_DOCKER
|
|
984
987
|
];
|
|
985
988
|
var BLOCKLET_INTERFACE_PUBLIC = "publicUrl";
|
|
986
989
|
var BLOCKLET_INTERFACE_WELLKNOWN = "wellknownUrl";
|
|
@@ -1147,6 +1150,7 @@ var BLOCKLET_OPENEMBED_PREFIX = "/.well-known/blocklet/openembed";
|
|
|
1147
1150
|
BLOCKLET_INTERFACE_PROTOCOL_UDP,
|
|
1148
1151
|
BLOCKLET_INTERFACE_PUBLIC,
|
|
1149
1152
|
BLOCKLET_INTERFACE_TYPES,
|
|
1153
|
+
BLOCKLET_INTERFACE_TYPE_DOCKER,
|
|
1150
1154
|
BLOCKLET_INTERFACE_TYPE_SERVICE,
|
|
1151
1155
|
BLOCKLET_INTERFACE_TYPE_WEB,
|
|
1152
1156
|
BLOCKLET_INTERFACE_TYPE_WELLKNOWN,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.
|
|
6
|
+
"version": "1.16.33-beta-20240929-110332-9d5dfdc4",
|
|
7
7
|
"description": "Blocklet constants",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"type": "commonjs",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"ts-jest": "^29.1.1",
|
|
37
37
|
"typescript": "^5.0.4"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "315517d60ab74ae086b6ff07e4871a3723c4dde4"
|
|
40
40
|
}
|