@abtnode/types 1.17.7-beta-20251227-001958-ea2ba3f5 → 1.17.7-beta-20251229-085620-84f09930
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 +8 -28
- package/lib/type_pb.d.ts +5 -7
- package/package.json +2 -2
package/lib/rpc_pb.d.ts
CHANGED
|
@@ -53,10 +53,15 @@ export type TRequestGetBlocklets = {
|
|
|
53
53
|
useCache: boolean;
|
|
54
54
|
query?: type_pb.TBlockletQuery;
|
|
55
55
|
includeRuntimeInfo: boolean;
|
|
56
|
+
paging?: type_pb.TPaging;
|
|
57
|
+
search: string;
|
|
58
|
+
external: boolean;
|
|
59
|
+
sort?: type_pb.TSort;
|
|
56
60
|
};
|
|
57
61
|
export type TResponseGetBlocklets = {
|
|
58
62
|
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
|
59
63
|
blocklets: type_pb.TBlockletState[];
|
|
64
|
+
paging?: type_pb.TPaging;
|
|
60
65
|
};
|
|
61
66
|
export type TResponseBlockletsFromBackup = {
|
|
62
67
|
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
|
@@ -94,7 +99,7 @@ export type TRequestConfigBlocklet = {
|
|
|
94
99
|
did: string[];
|
|
95
100
|
configs: type_pb.TConfigEntry[];
|
|
96
101
|
};
|
|
97
|
-
export type
|
|
102
|
+
export type TRequestInstallBlocklet = {
|
|
98
103
|
type: string;
|
|
99
104
|
did: string;
|
|
100
105
|
storeUrl: string;
|
|
@@ -105,6 +110,7 @@ export type TRequestVersionedBlocklet = {
|
|
|
105
110
|
title: string;
|
|
106
111
|
description: string;
|
|
107
112
|
startImmediately: boolean;
|
|
113
|
+
appSk: string;
|
|
108
114
|
downloadTokenList: type_pb.TDownloadToken[];
|
|
109
115
|
};
|
|
110
116
|
export type TRequestInstallComponent = {
|
|
@@ -150,6 +156,7 @@ export type TRequestConfigNavigations = {
|
|
|
150
156
|
export type TRequestConfigAuthentication = {
|
|
151
157
|
did: string;
|
|
152
158
|
authentication: string;
|
|
159
|
+
oauth: string;
|
|
153
160
|
};
|
|
154
161
|
export type TRequestConfigDidConnect = {
|
|
155
162
|
did: string;
|
|
@@ -328,11 +335,6 @@ export type TResponseReadNotifications = {
|
|
|
328
335
|
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
|
329
336
|
numAffected: number;
|
|
330
337
|
};
|
|
331
|
-
export type TRequestNodeRouting = {
|
|
332
|
-
provider: string;
|
|
333
|
-
snapshotHash: string;
|
|
334
|
-
forceRepopulate: boolean;
|
|
335
|
-
};
|
|
336
338
|
export type TRequestAddRoutingSite = {
|
|
337
339
|
domain: string;
|
|
338
340
|
type: string;
|
|
@@ -403,28 +405,6 @@ export type TResponseFindCertificateByDomain = {
|
|
|
403
405
|
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
|
404
406
|
cert?: type_pb.TCertificate;
|
|
405
407
|
};
|
|
406
|
-
export type TRequestTakeRoutingSnapshot = {
|
|
407
|
-
dryRun: boolean;
|
|
408
|
-
message: string;
|
|
409
|
-
};
|
|
410
|
-
export type TResponseTakeRoutingSnapshot = {
|
|
411
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
|
412
|
-
hash: string;
|
|
413
|
-
};
|
|
414
|
-
export type TRequestGetRoutingSnapshots = {
|
|
415
|
-
limit: number;
|
|
416
|
-
};
|
|
417
|
-
export type TResponseGetRoutingSnapshots = {
|
|
418
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
|
419
|
-
snapshots: type_pb.TRoutingSnapshot[];
|
|
420
|
-
};
|
|
421
|
-
export type TRequestGetSnapshotSites = {
|
|
422
|
-
hash: string;
|
|
423
|
-
};
|
|
424
|
-
export type TResponseGetSnapshotSites = {
|
|
425
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
|
426
|
-
sites: type_pb.TRoutingSite[];
|
|
427
|
-
};
|
|
428
408
|
export type TRequestGetRoutingProviders = {};
|
|
429
409
|
export type TResponseGetRoutingProviders = {
|
|
430
410
|
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
package/lib/type_pb.d.ts
CHANGED
|
@@ -423,6 +423,7 @@ export type TBlockletSettings = {
|
|
|
423
423
|
aigne?: TAigneConfig;
|
|
424
424
|
org?: TOrgSettings;
|
|
425
425
|
didConnect?: Record<string, any>;
|
|
426
|
+
oauth?: Record<string, any>;
|
|
426
427
|
};
|
|
427
428
|
export type TBlockletMetaService = {
|
|
428
429
|
name: string;
|
|
@@ -689,13 +690,6 @@ export type TRoutingRuleHeader = {
|
|
|
689
690
|
value: string;
|
|
690
691
|
type: enum_pb.HeaderMatchTypeMap[keyof enum_pb.HeaderMatchTypeMap];
|
|
691
692
|
};
|
|
692
|
-
export type TRoutingSnapshot = {
|
|
693
|
-
hash: string;
|
|
694
|
-
tree: string;
|
|
695
|
-
message: string;
|
|
696
|
-
author: string;
|
|
697
|
-
createdAt: number;
|
|
698
|
-
};
|
|
699
693
|
export type TRoutingProvider = {
|
|
700
694
|
name: string;
|
|
701
695
|
description: string;
|
|
@@ -1054,6 +1048,10 @@ export type TPaging = {
|
|
|
1054
1048
|
pageCount: number;
|
|
1055
1049
|
page: number;
|
|
1056
1050
|
};
|
|
1051
|
+
export type TSort = {
|
|
1052
|
+
field: string;
|
|
1053
|
+
direction: string;
|
|
1054
|
+
};
|
|
1057
1055
|
export type TAuditLogActor = {
|
|
1058
1056
|
did: string;
|
|
1059
1057
|
role: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abtnode/types",
|
|
3
|
-
"version": "1.17.7-beta-
|
|
3
|
+
"version": "1.17.7-beta-20251229-085620-84f09930",
|
|
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": "fe2ffc3cf431bbaa89ac802bed793aa1188da4c3"
|
|
39
39
|
}
|