@abtnode/schema 1.7.17 → 1.7.20
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 +10 -5
- package/lib/schema.graphqls +10 -5
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -165,8 +165,7 @@ input RequestCheckDomainsInput {
|
|
|
165
165
|
}
|
|
166
166
|
|
|
167
167
|
input RequestConfigBlockletInput {
|
|
168
|
-
did: String
|
|
169
|
-
childDid: String
|
|
168
|
+
did: [String!]
|
|
170
169
|
configs: [ConfigEntryInput!]
|
|
171
170
|
}
|
|
172
171
|
|
|
@@ -225,6 +224,7 @@ input RequestDeleteBlockletInput {
|
|
|
225
224
|
input RequestDeleteComponentInput {
|
|
226
225
|
did: String
|
|
227
226
|
rootDid: String
|
|
227
|
+
keepData: Boolean
|
|
228
228
|
}
|
|
229
229
|
|
|
230
230
|
input RequestDeleteDomainAliasInput {
|
|
@@ -520,7 +520,7 @@ input RoutingRuleToInput {
|
|
|
520
520
|
url: String
|
|
521
521
|
redirectCode: Int32
|
|
522
522
|
interfaceName: String
|
|
523
|
-
|
|
523
|
+
componentId: String
|
|
524
524
|
}
|
|
525
525
|
|
|
526
526
|
input TeamInput {
|
|
@@ -701,7 +701,7 @@ type BlockletPaymentShare {
|
|
|
701
701
|
|
|
702
702
|
type BlockletPreUpdateInfo {
|
|
703
703
|
updateId: String
|
|
704
|
-
updateList: [
|
|
704
|
+
updateList: [UpdateList!]
|
|
705
705
|
}
|
|
706
706
|
|
|
707
707
|
type BlockletRegistry {
|
|
@@ -1373,7 +1373,7 @@ type RoutingRuleTo {
|
|
|
1373
1373
|
url: String
|
|
1374
1374
|
redirectCode: Int32
|
|
1375
1375
|
interfaceName: String
|
|
1376
|
-
|
|
1376
|
+
componentId: String
|
|
1377
1377
|
}
|
|
1378
1378
|
|
|
1379
1379
|
type RoutingSite {
|
|
@@ -1420,6 +1420,11 @@ type TrustedPassportMappingTo {
|
|
|
1420
1420
|
role: String
|
|
1421
1421
|
}
|
|
1422
1422
|
|
|
1423
|
+
type UpdateList {
|
|
1424
|
+
id: String
|
|
1425
|
+
meta: BlockletMeta
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1423
1428
|
type WalletInfo {
|
|
1424
1429
|
did: String
|
|
1425
1430
|
pk: String
|
package/lib/schema.graphqls
CHANGED
|
@@ -165,8 +165,7 @@ input RequestCheckDomainsInput {
|
|
|
165
165
|
}
|
|
166
166
|
|
|
167
167
|
input RequestConfigBlockletInput {
|
|
168
|
-
did: String
|
|
169
|
-
childDid: String
|
|
168
|
+
did: [String!]
|
|
170
169
|
configs: [ConfigEntryInput!]
|
|
171
170
|
}
|
|
172
171
|
|
|
@@ -225,6 +224,7 @@ input RequestDeleteBlockletInput {
|
|
|
225
224
|
input RequestDeleteComponentInput {
|
|
226
225
|
did: String
|
|
227
226
|
rootDid: String
|
|
227
|
+
keepData: Boolean
|
|
228
228
|
}
|
|
229
229
|
|
|
230
230
|
input RequestDeleteDomainAliasInput {
|
|
@@ -520,7 +520,7 @@ input RoutingRuleToInput {
|
|
|
520
520
|
url: String
|
|
521
521
|
redirectCode: Int32
|
|
522
522
|
interfaceName: String
|
|
523
|
-
|
|
523
|
+
componentId: String
|
|
524
524
|
}
|
|
525
525
|
|
|
526
526
|
input TeamInput {
|
|
@@ -701,7 +701,7 @@ type BlockletPaymentShare {
|
|
|
701
701
|
|
|
702
702
|
type BlockletPreUpdateInfo {
|
|
703
703
|
updateId: String
|
|
704
|
-
updateList: [
|
|
704
|
+
updateList: [UpdateList!]
|
|
705
705
|
}
|
|
706
706
|
|
|
707
707
|
type BlockletRegistry {
|
|
@@ -1373,7 +1373,7 @@ type RoutingRuleTo {
|
|
|
1373
1373
|
url: String
|
|
1374
1374
|
redirectCode: Int32
|
|
1375
1375
|
interfaceName: String
|
|
1376
|
-
|
|
1376
|
+
componentId: String
|
|
1377
1377
|
}
|
|
1378
1378
|
|
|
1379
1379
|
type RoutingSite {
|
|
@@ -1420,6 +1420,11 @@ type TrustedPassportMappingTo {
|
|
|
1420
1420
|
role: String
|
|
1421
1421
|
}
|
|
1422
1422
|
|
|
1423
|
+
type UpdateList {
|
|
1424
|
+
id: String
|
|
1425
|
+
meta: BlockletMeta
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1423
1428
|
type WalletInfo {
|
|
1424
1429
|
did: String
|
|
1425
1430
|
pk: String
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.7.
|
|
6
|
+
"version": "1.7.20",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -13,5 +13,5 @@
|
|
|
13
13
|
"keywords": [],
|
|
14
14
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
15
15
|
"license": "MIT",
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "7e579415aa56cc422f3e26d902cf029fbc92e47a"
|
|
17
17
|
}
|