@abtnode/types 1.16.34-beta-20241129-100152-679bd732 → 1.16.34-beta-20241205-145120-3a7aa096
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 +16 -7
- package/lib/type_pb.d.ts +17 -1
- package/package.json +2 -2
package/lib/rpc_pb.d.ts
CHANGED
@@ -153,6 +153,7 @@ export type TRequestJoinFederatedLogin = {
|
|
153
153
|
};
|
154
154
|
export type TRequestQuitFederatedLogin = {
|
155
155
|
did: string;
|
156
|
+
targetDid: string;
|
156
157
|
};
|
157
158
|
export type TRequestDisbandFederatedLogin = {
|
158
159
|
did: string;
|
@@ -162,9 +163,11 @@ export type TRequestAuditFederatedLogin = {
|
|
162
163
|
memberPid: string;
|
163
164
|
status: string;
|
164
165
|
};
|
165
|
-
export type
|
166
|
+
export type TRequestSyncMasterAuthorization = {
|
167
|
+
did: string;
|
168
|
+
};
|
169
|
+
export type TRequestSyncFederated = {
|
166
170
|
did: string;
|
167
|
-
autoLogin: boolean;
|
168
171
|
};
|
169
172
|
export type TRequestConfigNotification = {
|
170
173
|
did: string;
|
@@ -479,6 +482,11 @@ export type TResponseRestartServer = {
|
|
479
482
|
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
480
483
|
sessionId: string;
|
481
484
|
};
|
485
|
+
export type TRequestRestartAllContainers = {};
|
486
|
+
export type TResponseRestartAllContainers = {
|
487
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
488
|
+
sessionId: string;
|
489
|
+
};
|
482
490
|
export type TRequestGetSession = {
|
483
491
|
id: string;
|
484
492
|
};
|
@@ -718,14 +726,9 @@ export type TResponseGetAuditLogs = {
|
|
718
726
|
list: type_pb.TAuditLog[];
|
719
727
|
paging?: type_pb.TPaging;
|
720
728
|
};
|
721
|
-
export type TRequestGateway = {
|
722
|
-
requestLimit?: type_pb.TRequestLimit;
|
723
|
-
cacheEnabled: boolean;
|
724
|
-
};
|
725
729
|
export type TResponseGateway = {
|
726
730
|
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
727
731
|
gateway?: type_pb.TGateway;
|
728
|
-
cacheEnabled: boolean;
|
729
732
|
};
|
730
733
|
export type TRequestBlockletRuntimeHistory = {
|
731
734
|
did: string;
|
@@ -871,6 +874,9 @@ export type TRequestUpdateProject = {
|
|
871
874
|
blockletIntroduction: string;
|
872
875
|
autoUpload: boolean;
|
873
876
|
possibleSameStore: boolean;
|
877
|
+
blockletSupport: string;
|
878
|
+
blockletCommunity: string;
|
879
|
+
blockletHomepage: string;
|
874
880
|
};
|
875
881
|
export type TRequestRelease = {
|
876
882
|
did: string;
|
@@ -907,6 +913,9 @@ export type TRequestCreateRelease = {
|
|
907
913
|
blockletComponents: string[];
|
908
914
|
uploadedResource: string;
|
909
915
|
blockletResourceType: string;
|
916
|
+
blockletSupport: string;
|
917
|
+
blockletCommunity: string;
|
918
|
+
blockletHomepage: string;
|
910
919
|
};
|
911
920
|
export type TResponseRelease = {
|
912
921
|
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
package/lib/type_pb.d.ts
CHANGED
@@ -53,6 +53,8 @@ export type TNodeRouting = {
|
|
53
53
|
adminPath: string;
|
54
54
|
requestLimit?: TRequestLimit;
|
55
55
|
cacheEnabled: boolean;
|
56
|
+
blockPolicy?: TBlockPolicy;
|
57
|
+
proxyPolicy?: TProxyPolicy;
|
56
58
|
};
|
57
59
|
export type TNodeInfo = {
|
58
60
|
name: string;
|
@@ -836,10 +838,21 @@ export type TAuditLog = {
|
|
836
838
|
export type TRequestLimit = {
|
837
839
|
enabled: boolean;
|
838
840
|
rate: number;
|
839
|
-
|
841
|
+
};
|
842
|
+
export type TBlockPolicy = {
|
843
|
+
enabled: boolean;
|
844
|
+
blacklist: string[];
|
845
|
+
};
|
846
|
+
export type TProxyPolicy = {
|
847
|
+
enabled: boolean;
|
848
|
+
trustRecursive: boolean;
|
849
|
+
trustedProxies: string[];
|
850
|
+
realIpHeader: string;
|
840
851
|
};
|
841
852
|
export type TGateway = {
|
842
853
|
requestLimit?: TRequestLimit;
|
854
|
+
blockPolicy?: TBlockPolicy;
|
855
|
+
proxyPolicy?: TProxyPolicy;
|
843
856
|
cacheEnabled: boolean;
|
844
857
|
};
|
845
858
|
export type TDelegationState = {
|
@@ -1012,6 +1025,9 @@ export type TRelease = {
|
|
1012
1025
|
publishedStoreIds: string[];
|
1013
1026
|
uploadedResource: string;
|
1014
1027
|
blockletResourceType: string;
|
1028
|
+
blockletSupport: string;
|
1029
|
+
blockletCommunity: string;
|
1030
|
+
blockletHomepage: string;
|
1015
1031
|
};
|
1016
1032
|
export type TBlockletResource = {
|
1017
1033
|
exportApi: string;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abtnode/types",
|
3
|
-
"version": "1.16.34-beta-
|
3
|
+
"version": "1.16.34-beta-20241205-145120-3a7aa096",
|
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": "1162a42e8d2c5ed0330a51724685b2d554c50160"
|
40
40
|
}
|