@abtnode/types 1.16.27-beta-725ce3a6 → 1.16.27-beta-f109b207

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
@@ -690,7 +690,7 @@ export type TRequestAddBlockletStore = {
690
690
  export type TRequestDeleteBlockletStore = {
691
691
  teamDid: string;
692
692
  url: string;
693
- projectid: string;
693
+ projectId: string;
694
694
  };
695
695
  export type TRequestGetAuditLogs = {
696
696
  paging?: type_pb.TPaging;
@@ -828,27 +828,30 @@ export type TResponseTags = {
828
828
  export type TRequestProject = {
829
829
  did: string;
830
830
  projectid: string;
831
+ messageid: string;
832
+ };
833
+ export type TResponseGetProject = {
834
+ code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
835
+ project?: type_pb.TProject;
831
836
  };
832
837
  export type TRequestGetProjects = {
833
838
  did: string;
834
839
  paging?: type_pb.TPaging;
835
840
  componentDid: string;
841
+ tenantScope: string;
836
842
  };
837
843
  export type TResponseGetProjects = {
838
844
  code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
839
845
  projects: type_pb.TProject[];
840
846
  paging?: type_pb.TPaging;
841
847
  };
842
- export type TResponseGetProject = {
843
- code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
844
- project?: type_pb.TProject;
845
- };
846
848
  export type TRequestCreateProject = {
847
849
  did: string;
848
850
  type: enum_pb.PublishTypeMap[keyof enum_pb.PublishTypeMap];
849
851
  blockletDid: string;
850
852
  blockletTitle: string;
851
853
  componentDid: string;
854
+ tenantScope: string;
852
855
  };
853
856
  export type TResponseProject = {
854
857
  code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
@@ -910,6 +913,21 @@ export type TResponseConnectToStore = {
910
913
  code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
911
914
  url: string;
912
915
  };
916
+ export type TRequestConnectByStudio = {
917
+ did: string;
918
+ storeId: string;
919
+ storeUrl: string;
920
+ storeName: string;
921
+ blockletTitle: string;
922
+ type: string;
923
+ tenantScope: string;
924
+ componentDid: string;
925
+ messageId: string;
926
+ };
927
+ export type TResponseConnectByStudio = {
928
+ code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
929
+ url: string;
930
+ };
913
931
  export type TRequestPublishToStore = {
914
932
  did: string;
915
933
  projectId: string;
package/lib/type_pb.d.ts CHANGED
@@ -922,6 +922,7 @@ export type TProject = {
922
922
  lastReleaseId: string;
923
923
  lastReleaseFiles: string[];
924
924
  connectedStores: TConnectedStore[];
925
+ tenantScope: string;
925
926
  };
926
927
  export type TRelease = {
927
928
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/types",
3
- "version": "1.16.27-beta-725ce3a6",
3
+ "version": "1.16.27-beta-f109b207",
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": "6110607f520136996b78b8d9c05a0744016dfa21"
39
+ "gitHead": "1c1ba090d312cb41894d7c4bb7f1a1067f84c39a"
40
40
  }