@abtnode/schema 1.8.14 → 1.8.17

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
@@ -46,6 +46,7 @@ input ConfigEntryInput {
46
46
  validation: String
47
47
  secure: Boolean
48
48
  custom: Boolean
49
+ shared: Boolean
49
50
  }
50
51
 
51
52
  input HashFileInput {
@@ -329,7 +330,7 @@ input RequestInstallComponentInput {
329
330
  name: String
330
331
  title: String
331
332
  configs: [ConfigEntryInput!]
332
- downloadToken: String
333
+ downloadTokenList: [DownloadTokenInput!]
333
334
  }
334
335
 
335
336
  input RequestInstallFromVcInput {
@@ -337,6 +338,12 @@ input RequestInstallFromVcInput {
337
338
  vcPresentation: Any
338
339
  }
339
340
 
341
+ input RequestIssuePassportToUserInput {
342
+ teamDid: String
343
+ userDid: String
344
+ role: String
345
+ }
346
+
340
347
  input RequestLatestBlockletVersionInput {
341
348
  did: String
342
349
  version: String
@@ -477,7 +484,7 @@ input RequestVersionedBlockletInput {
477
484
  title: String
478
485
  description: String
479
486
  startImmediately: Boolean
480
- downloadToken: String
487
+ downloadTokenList: [DownloadTokenInput!]
481
488
  }
482
489
 
483
490
  input RequsetCreateInvitationInput {
@@ -595,6 +602,11 @@ input WebHookParamInput {
595
602
  type: String
596
603
  }
597
604
 
605
+ input DownloadTokenInput {
606
+ did: String
607
+ token: String
608
+ }
609
+
598
610
  type AccessKey {
599
611
  accessKeyId: String
600
612
  remark: String
@@ -864,6 +876,7 @@ type ConfigEntry {
864
876
  validation: String
865
877
  secure: Boolean
866
878
  custom: Boolean
879
+ shared: Boolean
867
880
  }
868
881
 
869
882
  type CreateAccessKey {
@@ -1598,6 +1611,7 @@ type Mutation {
1598
1611
  removeUser(input: RequestTeamUserInput): ResponseUser
1599
1612
  updateUserApproval(input: RequestTeamUserInput): ResponseUser
1600
1613
  updateUserRole(input: RequestTeamUserInput): ResponseUser
1614
+ issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
1601
1615
  revokeUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
1602
1616
  enableUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
1603
1617
  createRole(input: RequestCreateRoleInput): ResponseRole
@@ -46,6 +46,7 @@ input ConfigEntryInput {
46
46
  validation: String
47
47
  secure: Boolean
48
48
  custom: Boolean
49
+ shared: Boolean
49
50
  }
50
51
 
51
52
  input HashFileInput {
@@ -329,7 +330,7 @@ input RequestInstallComponentInput {
329
330
  name: String
330
331
  title: String
331
332
  configs: [ConfigEntryInput!]
332
- downloadToken: String
333
+ downloadTokenList: [DownloadTokenInput!]
333
334
  }
334
335
 
335
336
  input RequestInstallFromVcInput {
@@ -337,6 +338,12 @@ input RequestInstallFromVcInput {
337
338
  vcPresentation: Any
338
339
  }
339
340
 
341
+ input RequestIssuePassportToUserInput {
342
+ teamDid: String
343
+ userDid: String
344
+ role: String
345
+ }
346
+
340
347
  input RequestLatestBlockletVersionInput {
341
348
  did: String
342
349
  version: String
@@ -477,7 +484,7 @@ input RequestVersionedBlockletInput {
477
484
  title: String
478
485
  description: String
479
486
  startImmediately: Boolean
480
- downloadToken: String
487
+ downloadTokenList: [DownloadTokenInput!]
481
488
  }
482
489
 
483
490
  input RequsetCreateInvitationInput {
@@ -595,6 +602,11 @@ input WebHookParamInput {
595
602
  type: String
596
603
  }
597
604
 
605
+ input DownloadTokenInput {
606
+ did: String
607
+ token: String
608
+ }
609
+
598
610
  type AccessKey {
599
611
  accessKeyId: String
600
612
  remark: String
@@ -864,6 +876,7 @@ type ConfigEntry {
864
876
  validation: String
865
877
  secure: Boolean
866
878
  custom: Boolean
879
+ shared: Boolean
867
880
  }
868
881
 
869
882
  type CreateAccessKey {
@@ -1600,6 +1613,7 @@ type Mutation {
1600
1613
  removeUser(input: RequestTeamUserInput): ResponseUser
1601
1614
  updateUserApproval(input: RequestTeamUserInput): ResponseUser
1602
1615
  updateUserRole(input: RequestTeamUserInput): ResponseUser
1616
+ issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
1603
1617
  revokeUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
1604
1618
  enableUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
1605
1619
  createRole(input: RequestCreateRoleInput): ResponseRole
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.8.14",
6
+ "version": "1.8.17",
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": "MIT",
16
- "gitHead": "4b0cee41fd03d09301e2c35af46dd9e513473ef8",
16
+ "gitHead": "aa1854b3b71a6250182bfcad794235099f38a514",
17
17
  "devDependencies": {
18
18
  "@wangshijun/ts-protoc-gen": "^0.16.2"
19
19
  }