@abtnode/types 1.16.15-beta-324519fc → 1.16.15-beta-58d50c9a

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
@@ -621,6 +621,11 @@ export type TRequestIssuePassportToUser = {
621
621
  userDid: string,
622
622
  role: string,
623
623
  }
624
+ export type TRequestSwitchProfile = {
625
+ teamDid: string,
626
+ userDid: string,
627
+ profile?: type_pb.TUserProfile,
628
+ }
624
629
  export type TRequestRevokeUserPassport = {
625
630
  teamDid: string,
626
631
  userDid: string,
package/lib/type_pb.d.ts CHANGED
@@ -34,6 +34,7 @@ export type TNodeState = {
34
34
  status: number,
35
35
  trustedFactories: TTrustedFactory[],
36
36
  enableBetaRelease: boolean,
37
+ runtimeconfig?: TNodeRuntimeConfig,
37
38
  }
38
39
  export type TOwnerNft = {
39
40
  did: string,
@@ -583,6 +584,12 @@ export type TUserInfo = {
583
584
  source: string,
584
585
  extraConfigs?: Record<string, any>,
585
586
  }
587
+ export type TUserProfile = {
588
+ did: string,
589
+ avatar: string,
590
+ fullName: string,
591
+ email: string,
592
+ }
586
593
  export type TUserQuery = {
587
594
  role: string,
588
595
  approved: boolean,
@@ -804,3 +811,8 @@ export type TTrafficInsight = {
804
811
  logSize: number,
805
812
  bandwidth: number,
806
813
  }
814
+ export type TNodeRuntimeConfig = {
815
+ blockletMaxMemoryLimit: number,
816
+ daemonMaxMemoryLimit: number,
817
+ proxyMaxMemoryLimit: number,
818
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/types",
3
- "version": "1.16.15-beta-324519fc",
3
+ "version": "1.16.15-beta-58d50c9a",
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": "b1a9384dc9985e590bee01548ed4f38cba470a6b"
39
+ "gitHead": "c54236c1daace6451db561fa6b3eea21ba07bb4d"
40
40
  }