@abtnode/types 1.16.11-next-069c3537 → 1.16.11-next-3d2b39f7

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
@@ -14,6 +14,10 @@ export type TBooleanResponse = {
14
14
  export type TRequestBlocklet = {
15
15
  did: string,
16
16
  }
17
+ export type TRequestComponents = {
18
+ did: string,
19
+ componentDids: string[],
20
+ }
17
21
  export type TRequestBlockletDetail = {
18
22
  did: string,
19
23
  attachRuntimeInfo: boolean,
@@ -672,3 +676,12 @@ export type TResponseGetBlockletBackups = {
672
676
  code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap],
673
677
  backups: type_pb.TBackup[],
674
678
  }
679
+ export type TRequestGetLauncherSession = {
680
+ launcherSessionId: string,
681
+ launcherUrl: string,
682
+ }
683
+ export type TResponseGetLauncherSession = {
684
+ code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap],
685
+ error: string,
686
+ launcherSession?: Record<string, any>,
687
+ }
package/lib/type_pb.d.ts CHANGED
@@ -208,6 +208,9 @@ export type TBlockletController = {
208
208
  chainHost: string,
209
209
  expireDate: number,
210
210
  consumedAt: string,
211
+ launcherUrl: string,
212
+ launcherSessionId: string,
213
+ ownerDid: string,
211
214
  }
212
215
  export type TBlockletMigrateRecord = {
213
216
  appSk: string,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/types",
3
- "version": "1.16.11-next-069c3537",
3
+ "version": "1.16.11-next-3d2b39f7",
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": "680dafcd7c2d446013abf25a370b8cfb70bfa7eb"
39
+ "gitHead": "d0142bd2d1e49b94dcb5542d78e294a7b2258faa"
40
40
  }