@abtnode/types 1.16.41-beta-20250318-012955-51b0ae39 → 1.16.41-beta-20250319-034744-5c62f533

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
@@ -792,9 +792,13 @@ export type TResponseNodeRuntimeHistory = {
792
792
  export type TRequestNodeRuntimeHistory = {
793
793
  hours: number;
794
794
  };
795
+ export type TBlockletHistoryItemList = {
796
+ key: string;
797
+ value: type_pb.TBlockletHistoryItem[];
798
+ };
795
799
  export type TResponseBlockletRuntimeHistory = {
796
800
  code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
797
- history: type_pb.TBlockletHistoryItem[];
801
+ historyList: TBlockletHistoryItemList[];
798
802
  };
799
803
  export type TRequestMigrateApplicationToStructV2 = {
800
804
  did: string;
@@ -845,6 +849,21 @@ export type TResponseGetLauncherSession = {
845
849
  error: string;
846
850
  launcherSession?: Record<string, any>;
847
851
  };
852
+ export type TRequestLaunchBlockletByLauncher = {
853
+ blockletMetaUrl: string;
854
+ title: string;
855
+ description: string;
856
+ chainHost: string;
857
+ launcherSessionId: string;
858
+ launcherUrl: string;
859
+ onlyRequired: boolean;
860
+ type: string;
861
+ storeUrl: string;
862
+ };
863
+ export type TResponseLaunchBlockletByLauncher = {
864
+ code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
865
+ data?: Record<string, any>;
866
+ };
848
867
  export type TRequestUpdateAppSessionConfig = {
849
868
  did: string;
850
869
  config?: type_pb.TSessionConfig;
package/lib/type_pb.d.ts CHANGED
@@ -373,6 +373,7 @@ export type TComponentState = {
373
373
  mountPoint: string;
374
374
  dependents: TDependent[];
375
375
  required: boolean;
376
+ appRuntimeInfo?: TRuntimeInfo;
376
377
  };
377
378
  export type TSimpleBlockletState = {
378
379
  meta?: TSimpleBlockletMeta;
@@ -486,6 +487,7 @@ export type TRuntimeInfo = {
486
487
  memoryUsage: number;
487
488
  cpuUsage: number;
488
489
  runningDocker: boolean;
490
+ cpus?: Record<string, any>;
489
491
  };
490
492
  export type THashFile = {
491
493
  file: string;
@@ -780,6 +782,14 @@ export type TUserMetadata = {
780
782
  status?: TUserMetadataStatus;
781
783
  phone?: TUserPhoneInfo;
782
784
  };
785
+ export type TUserAddress = {
786
+ country: string;
787
+ province: string;
788
+ city: string;
789
+ postalCode: string;
790
+ line1: string;
791
+ line2: string;
792
+ };
783
793
  export type TUserInfo = {
784
794
  did: string;
785
795
  pk: string;
@@ -810,6 +820,7 @@ export type TUserInfo = {
810
820
  emailVerified: boolean;
811
821
  phoneVerified: boolean;
812
822
  metadata?: TUserMetadata;
823
+ address?: TUserAddress;
813
824
  };
814
825
  export type TUserProfile = {
815
826
  did: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/types",
3
- "version": "1.16.41-beta-20250318-012955-51b0ae39",
3
+ "version": "1.16.41-beta-20250319-034744-5c62f533",
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": "0b5929ecb20ee929ad5f3bd3444d6aea2674de1a"
39
+ "gitHead": "c7d75c3c1dc4d29bef4f08c553cdfe7cf36e9492"
40
40
  }