@abtnode/types 1.16.39 → 1.16.40-beta-20250227-092112-1815be0a

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/rpc_pb.d.ts CHANGED
@@ -1134,3 +1134,12 @@ export type TRequestRotateSessionKey = {
1134
1134
  teamDid: string;
1135
1135
  sessionId: string;
1136
1136
  };
1137
+ export type TRequestConfigVault = {
1138
+ teamDid: string;
1139
+ vaultDid: string;
1140
+ sessionId: string;
1141
+ };
1142
+ export type TResponseConfigVault = {
1143
+ code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
1144
+ sessionId: string;
1145
+ };
package/lib/type_pb.d.ts CHANGED
@@ -287,6 +287,12 @@ export type TBlockletMigrateRecord = {
287
287
  appDid: string;
288
288
  at: string;
289
289
  };
290
+ export type TBlockletVaultRecord = {
291
+ pk: string;
292
+ did: string;
293
+ at: number;
294
+ sig: string;
295
+ };
290
296
  export type TBlockletState = {
291
297
  meta?: TBlockletMeta;
292
298
  status: enum_pb.BlockletStatusMap[keyof enum_pb.BlockletStatusMap];
@@ -326,6 +332,7 @@ export type TBlockletState = {
326
332
  structVersion: string;
327
333
  enableDocker: boolean;
328
334
  enableDockerNetwork: boolean;
335
+ vaults: TBlockletVaultRecord[];
329
336
  };
330
337
  export type TBlockletExtra = {
331
338
  did: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/types",
3
- "version": "1.16.39",
3
+ "version": "1.16.40-beta-20250227-092112-1815be0a",
4
4
  "description": "Typescript definitions generated from protobuf",
5
5
  "keywords": [
6
6
  "abtnode",
@@ -36,5 +36,5 @@
36
36
  "bugs": {
37
37
  "url": "https://github.com/ArcBlock/abt-node/issues"
38
38
  },
39
- "gitHead": "e3a614757b32dba71dcc187f20060932df31eab6"
39
+ "gitHead": "e33d791e24236a10ed3d196618aba989a0eee8ad"
40
40
  }