@abtnode/schema 1.7.20 → 1.7.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/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
@@ -840,6 +845,10 @@ type CreateAccessKey {
840
845
  lastUsedAt: String
841
846
  }
842
847
 
848
+ type DelegationState {
849
+ delegated: Boolean
850
+ }
851
+
843
852
  type DeletedBlockletMeta {
844
853
  did: String
845
854
  name: String
@@ -1018,6 +1027,7 @@ type Notification {
1018
1027
  }
1019
1028
 
1020
1029
  type OwnerNft {
1030
+ did: String
1021
1031
  holder: String
1022
1032
  issuer: String
1023
1033
  }
@@ -1139,11 +1149,21 @@ type ResponseCreatePassportIssuance {
1139
1149
  info: PassportIssuanceInfo
1140
1150
  }
1141
1151
 
1152
+ type ResponseCreateTransferNodeInvitation {
1153
+ code: StatusCode
1154
+ inviteInfo: InviteInfo
1155
+ }
1156
+
1142
1157
  type ResponseCreateWebHook {
1143
1158
  code: StatusCode
1144
1159
  webhook: WebHookSender
1145
1160
  }
1146
1161
 
1162
+ type ResponseDelegationState {
1163
+ code: StatusCode
1164
+ state: DelegationState
1165
+ }
1166
+
1147
1167
  type ResponseDeleteAccessKey {
1148
1168
  code: StatusCode
1149
1169
  }
@@ -1534,7 +1554,8 @@ type Mutation {
1534
1554
  selectBlockletStore(input: RequestChangeBlockletStoreInput): GeneralResponse
1535
1555
  resetNode(input: RequestResetNodeInput): ResponseResetNode
1536
1556
  updateGateway(input: RequestGatewayInput): ResponseGateway
1537
- createInvitation(input: RequsetCreateInvitationInput): ResponseCreateInvitation
1557
+ createMemberInvitation(input: RequsetCreateInvitationInput): ResponseCreateInvitation
1558
+ createTransferInvitation(input: RequsetCreateTransferNodeInvitationInput): ResponseCreateTransferNodeInvitation
1538
1559
  deleteInvitation(input: RequsetDeleteInvitationInput): GeneralResponse
1539
1560
  createPassportIssuance(input: RequestCreatePassportIssuanceInput): ResponseCreatePassportIssuance
1540
1561
  deletePassportIssuance(input: RequestDeleteTeamSessionInput): GeneralResponse
@@ -1589,6 +1610,7 @@ type Query {
1589
1610
  getNodeInfo: ResponseGetNodeInfo
1590
1611
  getNodeEnv: ResponseGetNodeEnv
1591
1612
  checkNodeVersion: ResponseCheckNodeVersion
1613
+ getDelegationState: ResponseDelegationState
1592
1614
  listBlocklets(input: RequestListBlockletsInput): ResponseListBlocklets
1593
1615
  getBlockletMeta(input: RequestBlockletInput): ResponseBlockletMeta
1594
1616
  getNotifications(input: RequestGetNotificationsInput): ResponseGetNotifications
@@ -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
@@ -840,6 +845,10 @@ type CreateAccessKey {
840
845
  lastUsedAt: String
841
846
  }
842
847
 
848
+ type DelegationState {
849
+ delegated: Boolean
850
+ }
851
+
843
852
  type DeletedBlockletMeta {
844
853
  did: String
845
854
  name: String
@@ -1018,6 +1027,7 @@ type Notification {
1018
1027
  }
1019
1028
 
1020
1029
  type OwnerNft {
1030
+ did: String
1021
1031
  holder: String
1022
1032
  issuer: String
1023
1033
  }
@@ -1139,11 +1149,21 @@ type ResponseCreatePassportIssuance {
1139
1149
  info: PassportIssuanceInfo
1140
1150
  }
1141
1151
 
1152
+ type ResponseCreateTransferNodeInvitation {
1153
+ code: StatusCode
1154
+ inviteInfo: InviteInfo
1155
+ }
1156
+
1142
1157
  type ResponseCreateWebHook {
1143
1158
  code: StatusCode
1144
1159
  webhook: WebHookSender
1145
1160
  }
1146
1161
 
1162
+ type ResponseDelegationState {
1163
+ code: StatusCode
1164
+ state: DelegationState
1165
+ }
1166
+
1147
1167
  type ResponseDeleteAccessKey {
1148
1168
  code: StatusCode
1149
1169
  }
@@ -1536,7 +1556,8 @@ type Mutation {
1536
1556
  selectBlockletStore(input: RequestChangeBlockletStoreInput): GeneralResponse
1537
1557
  resetNode(input: RequestResetNodeInput): ResponseResetNode
1538
1558
  updateGateway(input: RequestGatewayInput): ResponseGateway
1539
- createInvitation(input: RequsetCreateInvitationInput): ResponseCreateInvitation
1559
+ createMemberInvitation(input: RequsetCreateInvitationInput): ResponseCreateInvitation
1560
+ createTransferInvitation(input: RequsetCreateTransferNodeInvitationInput): ResponseCreateTransferNodeInvitation
1540
1561
  deleteInvitation(input: RequsetDeleteInvitationInput): GeneralResponse
1541
1562
  createPassportIssuance(input: RequestCreatePassportIssuanceInput): ResponseCreatePassportIssuance
1542
1563
  deletePassportIssuance(input: RequestDeleteTeamSessionInput): GeneralResponse
@@ -1591,6 +1612,7 @@ type Query {
1591
1612
  getNodeInfo: ResponseGetNodeInfo
1592
1613
  getNodeEnv: ResponseGetNodeEnv
1593
1614
  checkNodeVersion: ResponseCheckNodeVersion
1615
+ getDelegationState: ResponseDelegationState
1594
1616
  listBlocklets(input: RequestListBlockletsInput): ResponseListBlocklets
1595
1617
  getBlockletMeta(input: RequestBlockletInput): ResponseBlockletMeta
1596
1618
  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.20",
6
+ "version": "1.7.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": "7e579415aa56cc422f3e26d902cf029fbc92e47a"
16
+ "gitHead": "e7b99d9b3f878cc47e54ddfead2ac5284145b6ae"
17
17
  }