@abtnode/types 1.17.8-beta-20260119-102944-6ba93a16 → 1.17.8-beta-20260121-102603-f9d0176f
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 +1 -0
- package/lib/type_pb.d.ts +6 -0
- package/package.json +2 -2
package/lib/rpc_pb.d.ts
CHANGED
|
@@ -961,6 +961,7 @@ export type TRequestBlockletSettings = {
|
|
|
961
961
|
gateway?: type_pb.TBlockletGateway;
|
|
962
962
|
aigne?: type_pb.TAigneConfig;
|
|
963
963
|
org?: type_pb.TOrgSettings;
|
|
964
|
+
subService?: type_pb.TSubServiceConfig;
|
|
964
965
|
};
|
|
965
966
|
export type TRequestGetLauncherSession = {
|
|
966
967
|
launcherSessionId: string;
|
package/lib/type_pb.d.ts
CHANGED
|
@@ -425,6 +425,7 @@ export type TBlockletSettings = {
|
|
|
425
425
|
didConnect?: Record<string, any>;
|
|
426
426
|
oauth?: Record<string, any>;
|
|
427
427
|
actionConfig?: Record<string, any>;
|
|
428
|
+
subService?: TSubServiceConfig;
|
|
428
429
|
};
|
|
429
430
|
export type TBlockletMetaService = {
|
|
430
431
|
name: string;
|
|
@@ -1196,6 +1197,11 @@ export type TOrgSettings = {
|
|
|
1196
1197
|
maxMemberPerOrg: number;
|
|
1197
1198
|
maxOrgPerUser: number;
|
|
1198
1199
|
};
|
|
1200
|
+
export type TSubServiceConfig = {
|
|
1201
|
+
enabled: boolean;
|
|
1202
|
+
domain: string;
|
|
1203
|
+
staticRoot: string;
|
|
1204
|
+
};
|
|
1199
1205
|
export type TLoginEmailSettings = {
|
|
1200
1206
|
enabled: boolean;
|
|
1201
1207
|
requireVerified: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abtnode/types",
|
|
3
|
-
"version": "1.17.8-beta-
|
|
3
|
+
"version": "1.17.8-beta-20260121-102603-f9d0176f",
|
|
4
4
|
"description": "Typescript definitions generated from protobuf",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"abtnode",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"bugs": {
|
|
36
36
|
"url": "https://github.com/ArcBlock/abt-node/issues"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "7ae816f51ed511037e5b7ac0008012ebf4afc987"
|
|
39
39
|
}
|