@abtnode/schema 1.5.17 → 1.5.21
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/README.md +2 -0
- package/lib/index.js +21 -20
- package/lib/schema.graphqls +20 -19
- package/package.json +2 -2
package/README.md
CHANGED
package/lib/index.js
CHANGED
|
@@ -74,6 +74,7 @@ input MemberInfoInput {
|
|
|
74
74
|
passports: [PassportInput!]
|
|
75
75
|
firstLoginAt: String
|
|
76
76
|
lastLoginAt: String
|
|
77
|
+
remark: String
|
|
77
78
|
}
|
|
78
79
|
|
|
79
80
|
input NodeInfoInput {
|
|
@@ -525,24 +526,6 @@ type BlockletCapabilities {
|
|
|
525
526
|
clusterMode: Boolean
|
|
526
527
|
}
|
|
527
528
|
|
|
528
|
-
type BlockletCharging {
|
|
529
|
-
price: String
|
|
530
|
-
shares: [BlockletChargingShare!]
|
|
531
|
-
tokens: [BlockletChargingToken!]
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
type BlockletChargingShare {
|
|
535
|
-
address: String
|
|
536
|
-
name: String
|
|
537
|
-
price: String
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
type BlockletChargingToken {
|
|
541
|
-
address: String
|
|
542
|
-
price: String
|
|
543
|
-
symbol: String
|
|
544
|
-
}
|
|
545
|
-
|
|
546
529
|
type BlockletDiff {
|
|
547
530
|
hasBlocklet: Boolean
|
|
548
531
|
version: String
|
|
@@ -589,7 +572,7 @@ type BlockletMeta {
|
|
|
589
572
|
maintainers: [BlockletMetaPerson!]
|
|
590
573
|
contributors: [BlockletMetaPerson!]
|
|
591
574
|
repository: BlockletRepository
|
|
592
|
-
|
|
575
|
+
payment: BlockletPayment
|
|
593
576
|
nftFactory: String
|
|
594
577
|
lastPublishedAt: String
|
|
595
578
|
capabilities: BlockletCapabilities
|
|
@@ -617,6 +600,23 @@ type BlockletMetaService {
|
|
|
617
600
|
config: Any
|
|
618
601
|
}
|
|
619
602
|
|
|
603
|
+
type BlockletPayment {
|
|
604
|
+
price: [BlockletPaymentPrice!]
|
|
605
|
+
share: [BlockletPaymentShare!]
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
type BlockletPaymentPrice {
|
|
609
|
+
address: String
|
|
610
|
+
value: String
|
|
611
|
+
symbol: String
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
type BlockletPaymentShare {
|
|
615
|
+
address: String
|
|
616
|
+
name: String
|
|
617
|
+
value: String
|
|
618
|
+
}
|
|
619
|
+
|
|
620
620
|
type BlockletPreUpdateInfo {
|
|
621
621
|
updateId: String
|
|
622
622
|
updateList: [BlockletMeta!]
|
|
@@ -799,6 +799,7 @@ type MemberInfo {
|
|
|
799
799
|
passports: [Passport!]
|
|
800
800
|
firstLoginAt: String
|
|
801
801
|
lastLoginAt: String
|
|
802
|
+
remark: String
|
|
802
803
|
}
|
|
803
804
|
|
|
804
805
|
type NodeEnvInfo {
|
|
@@ -1409,4 +1410,4 @@ type Query {
|
|
|
1409
1410
|
getUser(input: RequestTeamUserInput): ResponseUser
|
|
1410
1411
|
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
1411
1412
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
1412
|
-
}`;
|
|
1413
|
+
}`;
|
package/lib/schema.graphqls
CHANGED
|
@@ -74,6 +74,7 @@ input MemberInfoInput {
|
|
|
74
74
|
passports: [PassportInput!]
|
|
75
75
|
firstLoginAt: String
|
|
76
76
|
lastLoginAt: String
|
|
77
|
+
remark: String
|
|
77
78
|
}
|
|
78
79
|
|
|
79
80
|
input NodeInfoInput {
|
|
@@ -525,24 +526,6 @@ type BlockletCapabilities {
|
|
|
525
526
|
clusterMode: Boolean
|
|
526
527
|
}
|
|
527
528
|
|
|
528
|
-
type BlockletCharging {
|
|
529
|
-
price: String
|
|
530
|
-
shares: [BlockletChargingShare!]
|
|
531
|
-
tokens: [BlockletChargingToken!]
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
type BlockletChargingShare {
|
|
535
|
-
address: String
|
|
536
|
-
name: String
|
|
537
|
-
price: String
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
type BlockletChargingToken {
|
|
541
|
-
address: String
|
|
542
|
-
price: String
|
|
543
|
-
symbol: String
|
|
544
|
-
}
|
|
545
|
-
|
|
546
529
|
type BlockletDiff {
|
|
547
530
|
hasBlocklet: Boolean
|
|
548
531
|
version: String
|
|
@@ -589,7 +572,7 @@ type BlockletMeta {
|
|
|
589
572
|
maintainers: [BlockletMetaPerson!]
|
|
590
573
|
contributors: [BlockletMetaPerson!]
|
|
591
574
|
repository: BlockletRepository
|
|
592
|
-
|
|
575
|
+
payment: BlockletPayment
|
|
593
576
|
nftFactory: String
|
|
594
577
|
lastPublishedAt: String
|
|
595
578
|
capabilities: BlockletCapabilities
|
|
@@ -617,6 +600,23 @@ type BlockletMetaService {
|
|
|
617
600
|
config: Any
|
|
618
601
|
}
|
|
619
602
|
|
|
603
|
+
type BlockletPayment {
|
|
604
|
+
price: [BlockletPaymentPrice!]
|
|
605
|
+
share: [BlockletPaymentShare!]
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
type BlockletPaymentPrice {
|
|
609
|
+
address: String
|
|
610
|
+
value: String
|
|
611
|
+
symbol: String
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
type BlockletPaymentShare {
|
|
615
|
+
address: String
|
|
616
|
+
name: String
|
|
617
|
+
value: String
|
|
618
|
+
}
|
|
619
|
+
|
|
620
620
|
type BlockletPreUpdateInfo {
|
|
621
621
|
updateId: String
|
|
622
622
|
updateList: [BlockletMeta!]
|
|
@@ -799,6 +799,7 @@ type MemberInfo {
|
|
|
799
799
|
passports: [Passport!]
|
|
800
800
|
firstLoginAt: String
|
|
801
801
|
lastLoginAt: String
|
|
802
|
+
remark: String
|
|
802
803
|
}
|
|
803
804
|
|
|
804
805
|
type NodeEnvInfo {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.5.
|
|
6
|
+
"version": "1.5.21",
|
|
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": "db219f519704e8c7ebe60f8448ec6c447ac4e059"
|
|
17
17
|
}
|