@abtnode/types 1.16.42-beta-20250402-131159-7647e64d → 1.16.42-beta-20250407-220350-e3782a91
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 +14 -0
- package/lib/type_pb.d.ts +17 -3
- package/package.json +2 -2
package/lib/rpc_pb.d.ts
CHANGED
@@ -50,6 +50,7 @@ export type TResponseBlockletDiff = {
|
|
50
50
|
export type TRequestGetBlocklets = {
|
51
51
|
useCache: boolean;
|
52
52
|
query?: type_pb.TBlockletQuery;
|
53
|
+
includeRuntimeInfo: boolean;
|
53
54
|
};
|
54
55
|
export type TResponseGetBlocklets = {
|
55
56
|
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
@@ -1268,3 +1269,16 @@ export type TRequestRelatedPassports = {
|
|
1268
1269
|
passportId: string;
|
1269
1270
|
paging?: type_pb.TPaging;
|
1270
1271
|
};
|
1272
|
+
export type TBlockletUsers = {
|
1273
|
+
users: number;
|
1274
|
+
approvedUsers: number;
|
1275
|
+
};
|
1276
|
+
export type TBlockletPassport = {
|
1277
|
+
passports: number;
|
1278
|
+
activePassports: number;
|
1279
|
+
};
|
1280
|
+
export type TResponseBlockletInfo = {
|
1281
|
+
user?: TBlockletUsers;
|
1282
|
+
passport?: TBlockletPassport;
|
1283
|
+
backup?: type_pb.TBackup;
|
1284
|
+
};
|
package/lib/type_pb.d.ts
CHANGED
@@ -385,6 +385,22 @@ export type TSimpleBlockletState = {
|
|
385
385
|
mountPoint: string;
|
386
386
|
deletedAt: number;
|
387
387
|
};
|
388
|
+
export type TPaletteColor = {
|
389
|
+
main: string;
|
390
|
+
light: string;
|
391
|
+
dark: string;
|
392
|
+
contrastText: string;
|
393
|
+
};
|
394
|
+
export type TPalette = {
|
395
|
+
primary?: TPaletteColor;
|
396
|
+
};
|
397
|
+
export type TThemeOptions = {
|
398
|
+
palette?: TPalette;
|
399
|
+
};
|
400
|
+
export type TTheme = {
|
401
|
+
light?: TThemeOptions;
|
402
|
+
dark?: TThemeOptions;
|
403
|
+
};
|
388
404
|
export type TBlockletSettings = {
|
389
405
|
initialized: boolean;
|
390
406
|
enablePassportIssuance: boolean;
|
@@ -403,6 +419,7 @@ export type TBlockletSettings = {
|
|
403
419
|
autoCheckUpdate?: TAutoCheckUpdate;
|
404
420
|
autoBackup?: TAutoBackup;
|
405
421
|
invite?: TInviteSettings;
|
422
|
+
theme?: TTheme;
|
406
423
|
};
|
407
424
|
export type TBlockletMetaService = {
|
408
425
|
name: string;
|
@@ -446,9 +463,6 @@ export type TConfigNavigation = {
|
|
446
463
|
role: string;
|
447
464
|
visible: boolean;
|
448
465
|
from: string;
|
449
|
-
activeIcon: string;
|
450
|
-
color: string;
|
451
|
-
activeColor: string;
|
452
466
|
description: string;
|
453
467
|
};
|
454
468
|
export type TEnvironment = {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abtnode/types",
|
3
|
-
"version": "1.16.42-beta-
|
3
|
+
"version": "1.16.42-beta-20250407-220350-e3782a91",
|
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": "e897c72af748f25cccde2e595410d1a2fb672289"
|
40
40
|
}
|