@abtnode/schema 1.16.39 → 1.16.40-beta-20250227-095906-fc9de90b

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
@@ -440,6 +440,12 @@ input RequestConfigTrustedPassportsInput {
440
440
  trustedPassports: [TrustedPassportInput!]
441
441
  }
442
442
 
443
+ input RequestConfigVaultInput {
444
+ teamDid: String
445
+ vaultDid: String
446
+ sessionId: String
447
+ }
448
+
443
449
  input RequestConnectByStudioInput {
444
450
  did: String
445
451
  storeId: String
@@ -1734,6 +1740,7 @@ type BlockletState {
1734
1740
  structVersion: String
1735
1741
  enableDocker: Boolean
1736
1742
  enableDockerNetwork: Boolean
1743
+ vaults: [BlockletVaultRecord!]
1737
1744
  }
1738
1745
 
1739
1746
  type BlockletStats {
@@ -1754,6 +1761,13 @@ type BlockletStore {
1754
1761
  scope: String
1755
1762
  }
1756
1763
 
1764
+ type BlockletVaultRecord {
1765
+ pk: String
1766
+ did: String
1767
+ at: Uint32
1768
+ sig: String
1769
+ }
1770
+
1757
1771
  type BooleanResponse {
1758
1772
  code: StatusCode
1759
1773
  result: Boolean
@@ -2449,6 +2463,11 @@ type ResponseClearCache {
2449
2463
  removed: [String!]
2450
2464
  }
2451
2465
 
2466
+ type ResponseConfigVault {
2467
+ code: StatusCode
2468
+ sessionId: String
2469
+ }
2470
+
2452
2471
  type ResponseConnectByStudio {
2453
2472
  code: StatusCode
2454
2473
  url: String
@@ -3196,6 +3215,7 @@ type Mutation {
3196
3215
  configNavigations(input: RequestConfigNavigationsInput): ResponseBlocklet
3197
3216
  configOAuth(input: RequestConfigOAuthInput): ResponseBlocklet
3198
3217
  configNotification(input: RequestConfigNotificationInput): ResponseBlocklet
3218
+ configVault(input: RequestConfigVaultInput): ResponseConfigVault
3199
3219
  sendEmail(input: RequestSendEmailInput): GeneralResponse
3200
3220
  sendPush(input: RequestSendPushInput): GeneralResponse
3201
3221
  joinFederatedLogin(input: RequestJoinFederatedLoginInput): ResponseBlocklet
@@ -440,6 +440,12 @@ input RequestConfigTrustedPassportsInput {
440
440
  trustedPassports: [TrustedPassportInput!]
441
441
  }
442
442
 
443
+ input RequestConfigVaultInput {
444
+ teamDid: String
445
+ vaultDid: String
446
+ sessionId: String
447
+ }
448
+
443
449
  input RequestConnectByStudioInput {
444
450
  did: String
445
451
  storeId: String
@@ -1734,6 +1740,7 @@ type BlockletState {
1734
1740
  structVersion: String
1735
1741
  enableDocker: Boolean
1736
1742
  enableDockerNetwork: Boolean
1743
+ vaults: [BlockletVaultRecord!]
1737
1744
  }
1738
1745
 
1739
1746
  type BlockletStats {
@@ -1754,6 +1761,13 @@ type BlockletStore {
1754
1761
  scope: String
1755
1762
  }
1756
1763
 
1764
+ type BlockletVaultRecord {
1765
+ pk: String
1766
+ did: String
1767
+ at: Uint32
1768
+ sig: String
1769
+ }
1770
+
1757
1771
  type BooleanResponse {
1758
1772
  code: StatusCode
1759
1773
  result: Boolean
@@ -2449,6 +2463,11 @@ type ResponseClearCache {
2449
2463
  removed: [String!]
2450
2464
  }
2451
2465
 
2466
+ type ResponseConfigVault {
2467
+ code: StatusCode
2468
+ sessionId: String
2469
+ }
2470
+
2452
2471
  type ResponseConnectByStudio {
2453
2472
  code: StatusCode
2454
2473
  url: String
@@ -3198,6 +3217,7 @@ type Mutation {
3198
3217
  configNavigations(input: RequestConfigNavigationsInput): ResponseBlocklet
3199
3218
  configOAuth(input: RequestConfigOAuthInput): ResponseBlocklet
3200
3219
  configNotification(input: RequestConfigNotificationInput): ResponseBlocklet
3220
+ configVault(input: RequestConfigVaultInput): ResponseConfigVault
3201
3221
  sendEmail(input: RequestSendEmailInput): GeneralResponse
3202
3222
  sendPush(input: RequestSendPushInput): GeneralResponse
3203
3223
  joinFederatedLogin(input: RequestJoinFederatedLoginInput): ResponseBlocklet
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.39",
6
+ "version": "1.16.40-beta-20250227-095906-fc9de90b",
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": "e3a614757b32dba71dcc187f20060932df31eab6",
16
+ "gitHead": "c5f6a14ce5435a615c75c4a0033415fcf51fae89",
17
17
  "devDependencies": {
18
18
  "@wangshijun/ts-protoc-gen": "^0.16.2"
19
19
  }