@abtnode/types 1.16.45-beta-20250610-112229-2eb0face → 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 CHANGED
@@ -899,9 +899,11 @@ export type TRequestUpdateAutoCheckUpdate = {
899
899
  did: string;
900
900
  autoCheckUpdate?: type_pb.TAutoCheckUpdate;
901
901
  };
902
- export type TRequestUpdateInviteSettings = {
902
+ export type TRequestBlockletSettings = {
903
903
  did: string;
904
+ enableSessionHardening: boolean;
904
905
  invite?: type_pb.TInviteSettings;
906
+ gateway?: type_pb.TBlockletGateway;
905
907
  };
906
908
  export type TRequestGetLauncherSession = {
907
909
  launcherSessionId: string;
@@ -927,6 +929,18 @@ export type TResponseLaunchBlockletByLauncher = {
927
929
  code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
928
930
  data?: Record<string, any>;
929
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
+ };
930
944
  export type TRequestUpdateAppSessionConfig = {
931
945
  did: string;
932
946
  config?: type_pb.TSessionConfig;
package/lib/type_pb.d.ts CHANGED
@@ -415,6 +415,7 @@ export type TBlockletSettings = {
415
415
  theme?: Record<string, any>;
416
416
  endpointList: TConnectEndpoint[];
417
417
  gateway?: TGateway;
418
+ enableSessionHardening: boolean;
418
419
  };
419
420
  export type TBlockletMetaService = {
420
421
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/types",
3
- "version": "1.16.45-beta-20250610-112229-2eb0face",
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": "d35fb6c907c29f4466fa965c079e1662dc77e582"
39
+ "gitHead": "5fb4c294b2754d660fa946ac85c962edb2deaad2"
40
40
  }