@abtnode/types 1.16.26-beta-818ea1c5 → 1.16.26-beta-cca12425

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
@@ -683,10 +683,15 @@ export type TRequestRevokeUserPassport = {
683
683
  userDid: string;
684
684
  passportId: string;
685
685
  };
686
- export type TRequestChangeBlockletStore = {
686
+ export type TRequestAddBlockletStore = {
687
687
  teamDid: string;
688
688
  url: string;
689
689
  };
690
+ export type TRequestDeleteBlockletStore = {
691
+ teamDid: string;
692
+ url: string;
693
+ projectid: string;
694
+ };
690
695
  export type TRequestGetAuditLogs = {
691
696
  paging?: type_pb.TPaging;
692
697
  scope: string;
@@ -899,6 +904,7 @@ export type TRequestConnectToStore = {
899
904
  storeId: string;
900
905
  storeUrl: string;
901
906
  storeName: string;
907
+ projectId: string;
902
908
  };
903
909
  export type TResponseConnectToStore = {
904
910
  code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
package/lib/type_pb.d.ts CHANGED
@@ -350,7 +350,6 @@ export type TBlockletSettings = {
350
350
  notification?: Record<string, any>;
351
351
  session?: TSessionConfig;
352
352
  federated?: TFederatedConfig;
353
- connectedStores: TConnectedStore[];
354
353
  };
355
354
  export type TBlockletMetaService = {
356
355
  name: string;
@@ -599,12 +598,22 @@ export type TInviteInfo = {
599
598
  teamDid: string;
600
599
  interfaceName: string;
601
600
  };
601
+ export type TConnectedAccountInfo = {
602
+ name: string;
603
+ picture: string;
604
+ email: string;
605
+ emailVerified: boolean;
606
+ sub: string;
607
+ extraData?: Record<string, any>;
608
+ };
602
609
  export type TConnectedAccount = {
603
610
  provider: string;
604
611
  did: string;
605
612
  pk: string;
606
613
  id: string;
607
614
  lastLoginAt: number;
615
+ userInfo?: TConnectedAccountInfo;
616
+ extra?: Record<string, any>;
608
617
  };
609
618
  export type TUserInfo = {
610
619
  did: string;
@@ -912,6 +921,7 @@ export type TProject = {
912
921
  componentdid: string;
913
922
  lastReleaseId: string;
914
923
  lastReleaseFiles: string[];
924
+ connectedStores: TConnectedStore[];
915
925
  };
916
926
  export type TRelease = {
917
927
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/types",
3
- "version": "1.16.26-beta-818ea1c5",
3
+ "version": "1.16.26-beta-cca12425",
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": "94aded9a2c0f4b5a57f0ca0fa2493ec417ef3339"
39
+ "gitHead": "fc2804fa8010d4311f1c74e65fb98d117598df2a"
40
40
  }