@abtnode/schema 1.16.21-beta-bd0e2503 → 1.16.21-beta-420f105a
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/lib/index.js +19 -6
- package/lib/schema.graphqls +18 -5
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -1015,10 +1015,8 @@ type BlockletBackupState {
|
|
|
1015
1015
|
|
|
1016
1016
|
type BlockletCapabilities {
|
|
1017
1017
|
clusterMode: Boolean
|
|
1018
|
-
component: Boolean
|
|
1019
1018
|
navigation: Boolean
|
|
1020
1019
|
didSpace: String
|
|
1021
|
-
resourceExportApi: String
|
|
1022
1020
|
}
|
|
1023
1021
|
|
|
1024
1022
|
type BlockletController {
|
|
@@ -1100,7 +1098,7 @@ type BlockletMeta {
|
|
|
1100
1098
|
bundleDid: String
|
|
1101
1099
|
bundleName: String
|
|
1102
1100
|
navigation: [Any!]
|
|
1103
|
-
|
|
1101
|
+
resource: BlockletResource
|
|
1104
1102
|
}
|
|
1105
1103
|
|
|
1106
1104
|
type BlockletMetaInterface {
|
|
@@ -1159,6 +1157,23 @@ type BlockletRepository {
|
|
|
1159
1157
|
url: String
|
|
1160
1158
|
}
|
|
1161
1159
|
|
|
1160
|
+
type BlockletResource {
|
|
1161
|
+
exportApi: String
|
|
1162
|
+
types: [BlockletResourceType!]
|
|
1163
|
+
bundles: [BlockletResourceBundle!]
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
type BlockletResourceBundle {
|
|
1167
|
+
did: String
|
|
1168
|
+
type: String
|
|
1169
|
+
public: Boolean
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
type BlockletResourceType {
|
|
1173
|
+
type: String
|
|
1174
|
+
description: String
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1162
1177
|
type BlockletSettings {
|
|
1163
1178
|
initialized: Boolean
|
|
1164
1179
|
enablePassportIssuance: Boolean
|
|
@@ -1201,7 +1216,6 @@ type BlockletState {
|
|
|
1201
1216
|
trustedPassports: [TrustedPassport!]
|
|
1202
1217
|
trustedFactories: [TrustedFactory!]
|
|
1203
1218
|
enablePassportIssuance: Boolean
|
|
1204
|
-
dynamic: Boolean
|
|
1205
1219
|
mountPoint: String
|
|
1206
1220
|
settings: BlockletSettings
|
|
1207
1221
|
appDid: String
|
|
@@ -1290,7 +1304,6 @@ type ComponentState {
|
|
|
1290
1304
|
mode: String
|
|
1291
1305
|
ports: Any
|
|
1292
1306
|
children: [ComponentState!]
|
|
1293
|
-
dynamic: Boolean
|
|
1294
1307
|
mountPoint: String
|
|
1295
1308
|
dependents: [Dependent!]
|
|
1296
1309
|
}
|
|
@@ -2448,4 +2461,4 @@ type Query {
|
|
|
2448
2461
|
getReleases(input: RequestGetReleasesInput): ResponseGetReleases
|
|
2449
2462
|
getRelease(input: RequestReleaseInput): ResponseGetRelease
|
|
2450
2463
|
getSelectedResources(input: RequestGetSelectedResourcesInput): ResponseGetSelectedResources
|
|
2451
|
-
}`;
|
|
2464
|
+
}`;
|
package/lib/schema.graphqls
CHANGED
|
@@ -1015,10 +1015,8 @@ type BlockletBackupState {
|
|
|
1015
1015
|
|
|
1016
1016
|
type BlockletCapabilities {
|
|
1017
1017
|
clusterMode: Boolean
|
|
1018
|
-
component: Boolean
|
|
1019
1018
|
navigation: Boolean
|
|
1020
1019
|
didSpace: String
|
|
1021
|
-
resourceExportApi: String
|
|
1022
1020
|
}
|
|
1023
1021
|
|
|
1024
1022
|
type BlockletController {
|
|
@@ -1100,7 +1098,7 @@ type BlockletMeta {
|
|
|
1100
1098
|
bundleDid: String
|
|
1101
1099
|
bundleName: String
|
|
1102
1100
|
navigation: [Any!]
|
|
1103
|
-
|
|
1101
|
+
resource: BlockletResource
|
|
1104
1102
|
}
|
|
1105
1103
|
|
|
1106
1104
|
type BlockletMetaInterface {
|
|
@@ -1159,6 +1157,23 @@ type BlockletRepository {
|
|
|
1159
1157
|
url: String
|
|
1160
1158
|
}
|
|
1161
1159
|
|
|
1160
|
+
type BlockletResource {
|
|
1161
|
+
exportApi: String
|
|
1162
|
+
types: [BlockletResourceType!]
|
|
1163
|
+
bundles: [BlockletResourceBundle!]
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
type BlockletResourceBundle {
|
|
1167
|
+
did: String
|
|
1168
|
+
type: String
|
|
1169
|
+
public: Boolean
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
type BlockletResourceType {
|
|
1173
|
+
type: String
|
|
1174
|
+
description: String
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1162
1177
|
type BlockletSettings {
|
|
1163
1178
|
initialized: Boolean
|
|
1164
1179
|
enablePassportIssuance: Boolean
|
|
@@ -1201,7 +1216,6 @@ type BlockletState {
|
|
|
1201
1216
|
trustedPassports: [TrustedPassport!]
|
|
1202
1217
|
trustedFactories: [TrustedFactory!]
|
|
1203
1218
|
enablePassportIssuance: Boolean
|
|
1204
|
-
dynamic: Boolean
|
|
1205
1219
|
mountPoint: String
|
|
1206
1220
|
settings: BlockletSettings
|
|
1207
1221
|
appDid: String
|
|
@@ -1290,7 +1304,6 @@ type ComponentState {
|
|
|
1290
1304
|
mode: String
|
|
1291
1305
|
ports: Any
|
|
1292
1306
|
children: [ComponentState!]
|
|
1293
|
-
dynamic: Boolean
|
|
1294
1307
|
mountPoint: String
|
|
1295
1308
|
dependents: [Dependent!]
|
|
1296
1309
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.21-beta-
|
|
6
|
+
"version": "1.16.21-beta-420f105a",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"keywords": [],
|
|
14
14
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
15
15
|
"license": "Apache-2.0",
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "f38219e9051563984543127087d6d88fc8b1be98",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|