@abtnode/types 1.16.41-beta-20250318-012955-51b0ae39 → 1.16.41-beta-20250318-123609-b48bb2d7
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 +20 -1
- package/lib/type_pb.d.ts +11 -0
- package/package.json +2 -2
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
|
-
|
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-
|
3
|
+
"version": "1.16.41-beta-20250318-123609-b48bb2d7",
|
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": "
|
39
|
+
"gitHead": "bb26547e22d71d208582b6254c355598a42f363b"
|
40
40
|
}
|