@abtnode/types 1.16.32-beta-20240921-020451-c46a81fe → 1.16.32-beta-20240926-084548-2c244826

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
@@ -505,6 +505,7 @@ export type TRequestCreateInvitation = {
505
505
  role: string;
506
506
  remark: string;
507
507
  sourceapppid: string;
508
+ display?: type_pb.TPassportDisplay;
508
509
  };
509
510
  export type TResponseCreateInvitation = {
510
511
  code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
@@ -539,6 +540,7 @@ export type TRequestCreatePassportIssuance = {
539
540
  teamDid: string;
540
541
  ownerDid: string;
541
542
  name: string;
543
+ display?: type_pb.TPassportDisplay;
542
544
  };
543
545
  export type TResponseCreatePassportIssuance = {
544
546
  code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
@@ -685,6 +687,8 @@ export type TRequestIssuePassportToUser = {
685
687
  teamDid: string;
686
688
  userDid: string;
687
689
  role: string;
690
+ display?: type_pb.TPassportDisplay;
691
+ notify: boolean;
688
692
  };
689
693
  export type TRequestSwitchProfile = {
690
694
  teamDid: string;
package/lib/type_pb.d.ts CHANGED
@@ -617,6 +617,7 @@ export type TInviteInfo = {
617
617
  inviter?: TUserInfo;
618
618
  teamDid: string;
619
619
  interfaceName: string;
620
+ display?: TPassportDisplay;
620
621
  };
621
622
  export type TConnectedAccountInfo = {
622
623
  name: string;
@@ -728,6 +729,10 @@ export type TPermission = {
728
729
  description: string;
729
730
  isProtected: boolean;
730
731
  };
732
+ export type TPassportDisplay = {
733
+ type: string;
734
+ content: string;
735
+ };
731
736
  export type TPassport = {
732
737
  id: string;
733
738
  name: string;
@@ -740,6 +745,7 @@ export type TPassport = {
740
745
  role: string;
741
746
  lastLoginAt: number;
742
747
  scope: string;
748
+ display?: TPassportDisplay;
743
749
  };
744
750
  export type TIssuer = {
745
751
  id: string;
@@ -753,6 +759,7 @@ export type TPassportIssuanceInfo = {
753
759
  expireDate: string;
754
760
  teamDid: string;
755
761
  ownerDid: string;
762
+ display?: TPassportDisplay;
756
763
  };
757
764
  export type TTrustedPassport = {
758
765
  issuerDid: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/types",
3
- "version": "1.16.32-beta-20240921-020451-c46a81fe",
3
+ "version": "1.16.32-beta-20240926-084548-2c244826",
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": "a1bd9a4a87cd1df28e39894c6817954b0ba7aa5c"
39
+ "gitHead": "9a95c9b802f2ee45e399363478b2e0dd7062c7e2"
40
40
  }