@abtnode/types
Advanced tools
Comparing version 1.16.34-beta-20241129-100152-679bd732 to 1.16.34-beta-20241204-140321-4d75ca21
@@ -482,2 +482,7 @@ // package: abt_node | ||
}; | ||
export type TRequestRestartAllContainers = {}; | ||
export type TResponseRestartAllContainers = { | ||
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]; | ||
sessionId: string; | ||
}; | ||
export type TRequestGetSession = { | ||
@@ -722,10 +727,5 @@ id: string; | ||
}; | ||
export type TRequestGateway = { | ||
requestLimit?: type_pb.TRequestLimit; | ||
cacheEnabled: boolean; | ||
}; | ||
export type TResponseGateway = { | ||
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]; | ||
gateway?: type_pb.TGateway; | ||
cacheEnabled: boolean; | ||
}; | ||
@@ -876,2 +876,5 @@ export type TRequestBlockletRuntimeHistory = { | ||
possibleSameStore: boolean; | ||
blockletSupport: string; | ||
blockletCommunity: string; | ||
blockletHomepage: string; | ||
}; | ||
@@ -913,2 +916,5 @@ export type TRequestRelease = { | ||
blockletResourceType: string; | ||
blockletSupport: string; | ||
blockletCommunity: string; | ||
blockletHomepage: string; | ||
}; | ||
@@ -915,0 +921,0 @@ export type TResponseRelease = { |
@@ -56,2 +56,4 @@ // package: abt_node | ||
cacheEnabled: boolean; | ||
blockPolicy?: TBlockPolicy; | ||
proxyPolicy?: TProxyPolicy; | ||
}; | ||
@@ -840,6 +842,17 @@ export type TNodeInfo = { | ||
rate: number; | ||
ipHeader: string; | ||
}; | ||
export type TBlockPolicy = { | ||
enabled: boolean; | ||
blacklist: string[]; | ||
}; | ||
export type TProxyPolicy = { | ||
enabled: boolean; | ||
trustRecursive: boolean; | ||
trustedProxies: string[]; | ||
realIpHeader: string; | ||
}; | ||
export type TGateway = { | ||
requestLimit?: TRequestLimit; | ||
blockPolicy?: TBlockPolicy; | ||
proxyPolicy?: TProxyPolicy; | ||
cacheEnabled: boolean; | ||
@@ -1017,2 +1030,5 @@ }; | ||
blockletResourceType: string; | ||
blockletSupport: string; | ||
blockletCommunity: string; | ||
blockletHomepage: string; | ||
}; | ||
@@ -1019,0 +1035,0 @@ export type TBlockletResource = { |
{ | ||
"name": "@abtnode/types", | ||
"version": "1.16.34-beta-20241129-100152-679bd732", | ||
"version": "1.16.34-beta-20241204-140321-4d75ca21", | ||
"description": "Typescript definitions generated from protobuf", | ||
@@ -39,3 +39,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "eb4b66b66af715559402fea679fe15b2a19cce2f" | ||
"gitHead": "85435dd99298c727eb7bb6c361f9dee6ef11cf08" | ||
} |
55371
2249