@abtnode/types 1.16.42-beta-20250403-230303-c167c6a1 → 1.16.42-beta-20250407-225010-b71aee89

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 CHANGED
@@ -1269,7 +1269,16 @@ export type TRequestRelatedPassports = {
1269
1269
  passportId: string;
1270
1270
  paging?: type_pb.TPaging;
1271
1271
  };
1272
- export type TResponseBlockletInfo = {
1272
+ export type TBlockletUsers = {
1273
1273
  users: number;
1274
+ approvedUsers: number;
1275
+ };
1276
+ export type TBlockletPassport = {
1274
1277
  passports: number;
1278
+ activePassports: number;
1279
+ };
1280
+ export type TResponseBlockletInfo = {
1281
+ user?: TBlockletUsers;
1282
+ passport?: TBlockletPassport;
1283
+ backup?: type_pb.TBackup;
1275
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-20250403-230303-c167c6a1",
3
+ "version": "1.16.42-beta-20250407-225010-b71aee89",
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": "34d6d981bb270af1d0ca59704715bfa82949a9fe"
39
+ "gitHead": "8c91236aa3147b1750939e24eef2f230d2b9055f"
40
40
  }