@abtnode/schema 1.16.15-beta-58d50c9a → 1.16.15-beta-e143b1cf

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
@@ -202,6 +202,11 @@ input RequestCheckDomainsInput {
202
202
  did: String
203
203
  }
204
204
 
205
+ input RequestClearCacheInput {
206
+ teamDid: String
207
+ pattern: String
208
+ }
209
+
205
210
  input RequestComponentsInput {
206
211
  did: String
207
212
  componentDids: [String!]
@@ -1503,6 +1508,11 @@ type ResponseCheckNodeVersion {
1503
1508
  version: String
1504
1509
  }
1505
1510
 
1511
+ type ResponseClearCache {
1512
+ code: StatusCode
1513
+ removed: [String!]
1514
+ }
1515
+
1506
1516
  type ResponseCreateAccessKey {
1507
1517
  code: StatusCode
1508
1518
  data: CreateAccessKey
@@ -2044,6 +2054,7 @@ type Mutation {
2044
2054
  restartServer: ResponseRestartServer
2045
2055
  resetNode(input: RequestResetNodeInput): ResponseResetNode
2046
2056
  updateGateway(input: RequestGatewayInput): ResponseGateway
2057
+ clearCache(input: RequestClearCacheInput): ResponseClearCache
2047
2058
  createMemberInvitation(input: RequestCreateInvitationInput): ResponseCreateInvitation
2048
2059
  createTransferInvitation(input: RequestCreateTransferNodeInvitationInput): ResponseCreateTransferNodeInvitation
2049
2060
  deleteInvitation(input: RequestDeleteInvitationInput): GeneralResponse
@@ -202,6 +202,11 @@ input RequestCheckDomainsInput {
202
202
  did: String
203
203
  }
204
204
 
205
+ input RequestClearCacheInput {
206
+ teamDid: String
207
+ pattern: String
208
+ }
209
+
205
210
  input RequestComponentsInput {
206
211
  did: String
207
212
  componentDids: [String!]
@@ -1503,6 +1508,11 @@ type ResponseCheckNodeVersion {
1503
1508
  version: String
1504
1509
  }
1505
1510
 
1511
+ type ResponseClearCache {
1512
+ code: StatusCode
1513
+ removed: [String!]
1514
+ }
1515
+
1506
1516
  type ResponseCreateAccessKey {
1507
1517
  code: StatusCode
1508
1518
  data: CreateAccessKey
@@ -2046,6 +2056,7 @@ type Mutation {
2046
2056
  restartServer: ResponseRestartServer
2047
2057
  resetNode(input: RequestResetNodeInput): ResponseResetNode
2048
2058
  updateGateway(input: RequestGatewayInput): ResponseGateway
2059
+ clearCache(input: RequestClearCacheInput): ResponseClearCache
2049
2060
  createMemberInvitation(input: RequestCreateInvitationInput): ResponseCreateInvitation
2050
2061
  createTransferInvitation(input: RequestCreateTransferNodeInvitationInput): ResponseCreateTransferNodeInvitation
2051
2062
  deleteInvitation(input: RequestDeleteInvitationInput): GeneralResponse
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.15-beta-58d50c9a",
6
+ "version": "1.16.15-beta-e143b1cf",
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": "c54236c1daace6451db561fa6b3eea21ba07bb4d",
16
+ "gitHead": "86dcc908f3cb7259d1ca92b9ae75160a6e43509a",
17
17
  "devDependencies": {
18
18
  "@wangshijun/ts-protoc-gen": "^0.16.2"
19
19
  }