@abtnode/types 1.16.45-beta-20250612-231219-481217be → 1.16.45-beta-20250614-101901-d1700f8d
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 +12 -0
- package/package.json +2 -2
package/lib/rpc_pb.d.ts
CHANGED
@@ -929,6 +929,18 @@ export type TResponseLaunchBlockletByLauncher = {
|
|
929
929
|
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
930
930
|
data?: Record<string, any>;
|
931
931
|
};
|
932
|
+
export type TRequestLaunchBlockletWithoutWallet = {
|
933
|
+
blockletMetaUrl: string;
|
934
|
+
title: string;
|
935
|
+
description: string;
|
936
|
+
onlyRequired: boolean;
|
937
|
+
type: string;
|
938
|
+
storeUrl: string;
|
939
|
+
};
|
940
|
+
export type TResponseLaunchBlockletWithoutWallet = {
|
941
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
942
|
+
data?: Record<string, any>;
|
943
|
+
};
|
932
944
|
export type TRequestUpdateAppSessionConfig = {
|
933
945
|
did: string;
|
934
946
|
config?: type_pb.TSessionConfig;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abtnode/types",
|
3
|
-
"version": "1.16.45-beta-
|
3
|
+
"version": "1.16.45-beta-20250614-101901-d1700f8d",
|
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": "5fb4c294b2754d660fa946ac85c962edb2deaad2"
|
40
40
|
}
|