@abtnode/schema 1.16.21-beta-bd0e2503 → 1.16.21-beta-445a8baa
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 -1
- package/lib/schema.graphqls +18 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -1101,6 +1101,7 @@ type BlockletMeta {
|
|
|
1101
1101
|
bundleName: String
|
|
1102
1102
|
navigation: [Any!]
|
|
1103
1103
|
resources: [String!]
|
|
1104
|
+
resource: BlockletResource
|
|
1104
1105
|
}
|
|
1105
1106
|
|
|
1106
1107
|
type BlockletMetaInterface {
|
|
@@ -1159,6 +1160,23 @@ type BlockletRepository {
|
|
|
1159
1160
|
url: String
|
|
1160
1161
|
}
|
|
1161
1162
|
|
|
1163
|
+
type BlockletResource {
|
|
1164
|
+
exportApi: String
|
|
1165
|
+
types: [BlockletResourceType!]
|
|
1166
|
+
bundles: [BlockletResourceBundle!]
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
type BlockletResourceBundle {
|
|
1170
|
+
did: String
|
|
1171
|
+
type: String
|
|
1172
|
+
public: Boolean
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
type BlockletResourceType {
|
|
1176
|
+
type: String
|
|
1177
|
+
description: String
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1162
1180
|
type BlockletSettings {
|
|
1163
1181
|
initialized: Boolean
|
|
1164
1182
|
enablePassportIssuance: Boolean
|
|
@@ -2448,4 +2466,4 @@ type Query {
|
|
|
2448
2466
|
getReleases(input: RequestGetReleasesInput): ResponseGetReleases
|
|
2449
2467
|
getRelease(input: RequestReleaseInput): ResponseGetRelease
|
|
2450
2468
|
getSelectedResources(input: RequestGetSelectedResourcesInput): ResponseGetSelectedResources
|
|
2451
|
-
}`;
|
|
2469
|
+
}`;
|
package/lib/schema.graphqls
CHANGED
|
@@ -1101,6 +1101,7 @@ type BlockletMeta {
|
|
|
1101
1101
|
bundleName: String
|
|
1102
1102
|
navigation: [Any!]
|
|
1103
1103
|
resources: [String!]
|
|
1104
|
+
resource: BlockletResource
|
|
1104
1105
|
}
|
|
1105
1106
|
|
|
1106
1107
|
type BlockletMetaInterface {
|
|
@@ -1159,6 +1160,23 @@ type BlockletRepository {
|
|
|
1159
1160
|
url: String
|
|
1160
1161
|
}
|
|
1161
1162
|
|
|
1163
|
+
type BlockletResource {
|
|
1164
|
+
exportApi: String
|
|
1165
|
+
types: [BlockletResourceType!]
|
|
1166
|
+
bundles: [BlockletResourceBundle!]
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
type BlockletResourceBundle {
|
|
1170
|
+
did: String
|
|
1171
|
+
type: String
|
|
1172
|
+
public: Boolean
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
type BlockletResourceType {
|
|
1176
|
+
type: String
|
|
1177
|
+
description: String
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1162
1180
|
type BlockletSettings {
|
|
1163
1181
|
initialized: Boolean
|
|
1164
1182
|
enablePassportIssuance: Boolean
|
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-445a8baa",
|
|
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": "7a7ff8be7f424775c3bde0eead773d8e6177fa1a",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|