@abtnode/schema 1.7.20 → 1.7.23
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 +23 -7
- package/lib/schema.graphqls +23 -7
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -480,6 +480,11 @@ input RequsetCreateInvitationInput {
|
|
|
480
480
|
remark: String
|
|
481
481
|
}
|
|
482
482
|
|
|
483
|
+
input RequsetCreateTransferNodeInvitationInput {
|
|
484
|
+
teamDid: String
|
|
485
|
+
remark: String
|
|
486
|
+
}
|
|
487
|
+
|
|
483
488
|
input RequsetDeleteInvitationInput {
|
|
484
489
|
teamDid: String
|
|
485
490
|
inviteId: String
|
|
@@ -573,7 +578,6 @@ type AuditLog {
|
|
|
573
578
|
content: String
|
|
574
579
|
actor: AuditLogActor
|
|
575
580
|
env: AuditLogEnv
|
|
576
|
-
geo: AuditLogGeo
|
|
577
581
|
createdAt: String
|
|
578
582
|
ip: String
|
|
579
583
|
}
|
|
@@ -594,11 +598,6 @@ type AuditLogEnvItem {
|
|
|
594
598
|
version: String
|
|
595
599
|
}
|
|
596
600
|
|
|
597
|
-
type AuditLogGeo {
|
|
598
|
-
country: String
|
|
599
|
-
city: String
|
|
600
|
-
}
|
|
601
|
-
|
|
602
601
|
type BlockletCapabilities {
|
|
603
602
|
clusterMode: Boolean
|
|
604
603
|
component: Boolean
|
|
@@ -840,6 +839,10 @@ type CreateAccessKey {
|
|
|
840
839
|
lastUsedAt: String
|
|
841
840
|
}
|
|
842
841
|
|
|
842
|
+
type DelegationState {
|
|
843
|
+
delegated: Boolean
|
|
844
|
+
}
|
|
845
|
+
|
|
843
846
|
type DeletedBlockletMeta {
|
|
844
847
|
did: String
|
|
845
848
|
name: String
|
|
@@ -1018,6 +1021,7 @@ type Notification {
|
|
|
1018
1021
|
}
|
|
1019
1022
|
|
|
1020
1023
|
type OwnerNft {
|
|
1024
|
+
did: String
|
|
1021
1025
|
holder: String
|
|
1022
1026
|
issuer: String
|
|
1023
1027
|
}
|
|
@@ -1139,11 +1143,21 @@ type ResponseCreatePassportIssuance {
|
|
|
1139
1143
|
info: PassportIssuanceInfo
|
|
1140
1144
|
}
|
|
1141
1145
|
|
|
1146
|
+
type ResponseCreateTransferNodeInvitation {
|
|
1147
|
+
code: StatusCode
|
|
1148
|
+
inviteInfo: InviteInfo
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1142
1151
|
type ResponseCreateWebHook {
|
|
1143
1152
|
code: StatusCode
|
|
1144
1153
|
webhook: WebHookSender
|
|
1145
1154
|
}
|
|
1146
1155
|
|
|
1156
|
+
type ResponseDelegationState {
|
|
1157
|
+
code: StatusCode
|
|
1158
|
+
state: DelegationState
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1147
1161
|
type ResponseDeleteAccessKey {
|
|
1148
1162
|
code: StatusCode
|
|
1149
1163
|
}
|
|
@@ -1534,7 +1548,8 @@ type Mutation {
|
|
|
1534
1548
|
selectBlockletStore(input: RequestChangeBlockletStoreInput): GeneralResponse
|
|
1535
1549
|
resetNode(input: RequestResetNodeInput): ResponseResetNode
|
|
1536
1550
|
updateGateway(input: RequestGatewayInput): ResponseGateway
|
|
1537
|
-
|
|
1551
|
+
createMemberInvitation(input: RequsetCreateInvitationInput): ResponseCreateInvitation
|
|
1552
|
+
createTransferInvitation(input: RequsetCreateTransferNodeInvitationInput): ResponseCreateTransferNodeInvitation
|
|
1538
1553
|
deleteInvitation(input: RequsetDeleteInvitationInput): GeneralResponse
|
|
1539
1554
|
createPassportIssuance(input: RequestCreatePassportIssuanceInput): ResponseCreatePassportIssuance
|
|
1540
1555
|
deletePassportIssuance(input: RequestDeleteTeamSessionInput): GeneralResponse
|
|
@@ -1589,6 +1604,7 @@ type Query {
|
|
|
1589
1604
|
getNodeInfo: ResponseGetNodeInfo
|
|
1590
1605
|
getNodeEnv: ResponseGetNodeEnv
|
|
1591
1606
|
checkNodeVersion: ResponseCheckNodeVersion
|
|
1607
|
+
getDelegationState: ResponseDelegationState
|
|
1592
1608
|
listBlocklets(input: RequestListBlockletsInput): ResponseListBlocklets
|
|
1593
1609
|
getBlockletMeta(input: RequestBlockletInput): ResponseBlockletMeta
|
|
1594
1610
|
getNotifications(input: RequestGetNotificationsInput): ResponseGetNotifications
|
package/lib/schema.graphqls
CHANGED
|
@@ -480,6 +480,11 @@ input RequsetCreateInvitationInput {
|
|
|
480
480
|
remark: String
|
|
481
481
|
}
|
|
482
482
|
|
|
483
|
+
input RequsetCreateTransferNodeInvitationInput {
|
|
484
|
+
teamDid: String
|
|
485
|
+
remark: String
|
|
486
|
+
}
|
|
487
|
+
|
|
483
488
|
input RequsetDeleteInvitationInput {
|
|
484
489
|
teamDid: String
|
|
485
490
|
inviteId: String
|
|
@@ -573,7 +578,6 @@ type AuditLog {
|
|
|
573
578
|
content: String
|
|
574
579
|
actor: AuditLogActor
|
|
575
580
|
env: AuditLogEnv
|
|
576
|
-
geo: AuditLogGeo
|
|
577
581
|
createdAt: String
|
|
578
582
|
ip: String
|
|
579
583
|
}
|
|
@@ -594,11 +598,6 @@ type AuditLogEnvItem {
|
|
|
594
598
|
version: String
|
|
595
599
|
}
|
|
596
600
|
|
|
597
|
-
type AuditLogGeo {
|
|
598
|
-
country: String
|
|
599
|
-
city: String
|
|
600
|
-
}
|
|
601
|
-
|
|
602
601
|
type BlockletCapabilities {
|
|
603
602
|
clusterMode: Boolean
|
|
604
603
|
component: Boolean
|
|
@@ -840,6 +839,10 @@ type CreateAccessKey {
|
|
|
840
839
|
lastUsedAt: String
|
|
841
840
|
}
|
|
842
841
|
|
|
842
|
+
type DelegationState {
|
|
843
|
+
delegated: Boolean
|
|
844
|
+
}
|
|
845
|
+
|
|
843
846
|
type DeletedBlockletMeta {
|
|
844
847
|
did: String
|
|
845
848
|
name: String
|
|
@@ -1018,6 +1021,7 @@ type Notification {
|
|
|
1018
1021
|
}
|
|
1019
1022
|
|
|
1020
1023
|
type OwnerNft {
|
|
1024
|
+
did: String
|
|
1021
1025
|
holder: String
|
|
1022
1026
|
issuer: String
|
|
1023
1027
|
}
|
|
@@ -1139,11 +1143,21 @@ type ResponseCreatePassportIssuance {
|
|
|
1139
1143
|
info: PassportIssuanceInfo
|
|
1140
1144
|
}
|
|
1141
1145
|
|
|
1146
|
+
type ResponseCreateTransferNodeInvitation {
|
|
1147
|
+
code: StatusCode
|
|
1148
|
+
inviteInfo: InviteInfo
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1142
1151
|
type ResponseCreateWebHook {
|
|
1143
1152
|
code: StatusCode
|
|
1144
1153
|
webhook: WebHookSender
|
|
1145
1154
|
}
|
|
1146
1155
|
|
|
1156
|
+
type ResponseDelegationState {
|
|
1157
|
+
code: StatusCode
|
|
1158
|
+
state: DelegationState
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1147
1161
|
type ResponseDeleteAccessKey {
|
|
1148
1162
|
code: StatusCode
|
|
1149
1163
|
}
|
|
@@ -1536,7 +1550,8 @@ type Mutation {
|
|
|
1536
1550
|
selectBlockletStore(input: RequestChangeBlockletStoreInput): GeneralResponse
|
|
1537
1551
|
resetNode(input: RequestResetNodeInput): ResponseResetNode
|
|
1538
1552
|
updateGateway(input: RequestGatewayInput): ResponseGateway
|
|
1539
|
-
|
|
1553
|
+
createMemberInvitation(input: RequsetCreateInvitationInput): ResponseCreateInvitation
|
|
1554
|
+
createTransferInvitation(input: RequsetCreateTransferNodeInvitationInput): ResponseCreateTransferNodeInvitation
|
|
1540
1555
|
deleteInvitation(input: RequsetDeleteInvitationInput): GeneralResponse
|
|
1541
1556
|
createPassportIssuance(input: RequestCreatePassportIssuanceInput): ResponseCreatePassportIssuance
|
|
1542
1557
|
deletePassportIssuance(input: RequestDeleteTeamSessionInput): GeneralResponse
|
|
@@ -1591,6 +1606,7 @@ type Query {
|
|
|
1591
1606
|
getNodeInfo: ResponseGetNodeInfo
|
|
1592
1607
|
getNodeEnv: ResponseGetNodeEnv
|
|
1593
1608
|
checkNodeVersion: ResponseCheckNodeVersion
|
|
1609
|
+
getDelegationState: ResponseDelegationState
|
|
1594
1610
|
listBlocklets(input: RequestListBlockletsInput): ResponseListBlocklets
|
|
1595
1611
|
getBlockletMeta(input: RequestBlockletInput): ResponseBlockletMeta
|
|
1596
1612
|
getNotifications(input: RequestGetNotificationsInput): ResponseGetNotifications
|
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.23",
|
|
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": "aa13838b7597bce11851d0b902575f861aa1ab34"
|
|
17
17
|
}
|