@abtnode/types 1.16.11-beta-0ae58a71 → 1.16.11-beta-f9719c31

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,
@@ -52,7 +56,7 @@ export type TResponseBlockletDiff = {
52
56
  blockletDiff?: type_pb.TBlockletDiff,
53
57
  }
54
58
  export type TRequestGetBlocklets = {
55
- usecache: boolean,
59
+ useCache: boolean,
56
60
  query?: type_pb.TBlockletQuery,
57
61
  }
58
62
  export type TResponseGetBlocklets = {
@@ -145,7 +149,7 @@ export type TRequestConfigOAuth = {
145
149
  did: string,
146
150
  oauth: string,
147
151
  }
148
- export type TRequestConfigNotifiaction = {
152
+ export type TRequestConfigNotification = {
149
153
  did: string,
150
154
  notification: string,
151
155
  }
@@ -654,7 +658,7 @@ export type TRequestAddBlockletSpaceGateway = {
654
658
  }
655
659
  export type TRequestDeleteBlockletSpaceGateway = {
656
660
  did: string,
657
- url: string,
661
+ spacegatewaydid: string,
658
662
  }
659
663
  export type TRequestUpdateBlockletSpaceGateway = {
660
664
  did: string,
@@ -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
@@ -212,6 +212,9 @@ export type TBlockletController = {
212
212
  chainHost: string,
213
213
  expireDate: number,
214
214
  consumedAt: string,
215
+ launcherUrl: string,
216
+ launcherSessionId: string,
217
+ ownerDid: string,
215
218
  status?: TBlockletControllerStatus,
216
219
  }
217
220
  export type TBlockletMigrateRecord = {
@@ -585,7 +588,6 @@ export type TUserSort = {
585
588
  lastLoginAt: number,
586
589
  }
587
590
  export type TBlockletQuery = {
588
- controller?: TBlockletController,
589
591
  }
590
592
  export type TRole = {
591
593
  name: string,
@@ -729,6 +731,7 @@ export type TSpaceGateway = {
729
731
  url: string,
730
732
  pb_protected: string,
731
733
  endpoint: string,
734
+ did: string,
732
735
  }
733
736
  export type TBackup = {
734
737
  appPid: string,
@@ -736,6 +739,7 @@ export type TBackup = {
736
739
  strategy: number,
737
740
  sourceUrl: string,
738
741
  target: string,
742
+ targetName: string,
739
743
  targetUrl: string,
740
744
  createdAt: number,
741
745
  updatedAt: number,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/types",
3
- "version": "1.16.11-beta-0ae58a71",
3
+ "version": "1.16.11-beta-f9719c31",
4
4
  "description": "Typescript definitions generated from protobuf",
5
5
  "keywords": [
6
6
  "abtnode",
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "resolutions": {},
13
13
  "devDependencies": {
14
- "@arcblock/eslint-config-ts": "0.2.3",
14
+ "@arcblock/eslint-config-ts": "0.2.4",
15
15
  "@types/jest": "^28.1.8",
16
16
  "@types/node": "^17.0.45",
17
17
  "eslint": "^8.25.0",
@@ -36,5 +36,5 @@
36
36
  "bugs": {
37
37
  "url": "https://github.com/ArcBlock/abt-node/issues"
38
38
  },
39
- "gitHead": "5d044a08b4399eb855563e670af7cbd0d3851e94"
39
+ "gitHead": "2d88c5df1a414e5b6a8d575984e1940de7573976"
40
40
  }