@abtnode/types 1.16.25-next-bc2f4c63 → 1.16.26-beta-e0056285
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 +21 -0
- package/lib/type_pb.d.ts +13 -0
- package/package.json +4 -4
package/lib/rpc_pb.d.ts
CHANGED
@@ -894,6 +894,27 @@ export type TResponseRelease = {
|
|
894
894
|
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
895
895
|
release?: type_pb.TRelease;
|
896
896
|
};
|
897
|
+
export type TRequestConnectToStore = {
|
898
|
+
did: string;
|
899
|
+
storeId: string;
|
900
|
+
storeUrl: string;
|
901
|
+
storeName: string;
|
902
|
+
};
|
903
|
+
export type TResponseConnectToStore = {
|
904
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
905
|
+
url: string;
|
906
|
+
};
|
907
|
+
export type TRequestPublishToStore = {
|
908
|
+
did: string;
|
909
|
+
projectId: string;
|
910
|
+
releaseId: string;
|
911
|
+
type: string;
|
912
|
+
storeId: string;
|
913
|
+
};
|
914
|
+
export type TResponsePublishToStore = {
|
915
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
916
|
+
url: string;
|
917
|
+
};
|
897
918
|
export type TRequestGetSelectedResources = {
|
898
919
|
did: string;
|
899
920
|
projectId: string;
|
package/lib/type_pb.d.ts
CHANGED
@@ -62,6 +62,15 @@ export type TNodeInfo = {
|
|
62
62
|
enableBetaRelease: boolean;
|
63
63
|
nftDomainUrl: string;
|
64
64
|
};
|
65
|
+
export type TConnectedStore = {
|
66
|
+
storeId: string;
|
67
|
+
storeName: string;
|
68
|
+
storeUrl: string;
|
69
|
+
accessToken: string;
|
70
|
+
developerDid: string;
|
71
|
+
developerEmail: string;
|
72
|
+
developerName: string;
|
73
|
+
};
|
65
74
|
export type TBlockletStore = {
|
66
75
|
name: string;
|
67
76
|
description: string;
|
@@ -341,6 +350,7 @@ export type TBlockletSettings = {
|
|
341
350
|
notification?: Record<string, any>;
|
342
351
|
session?: TSessionConfig;
|
343
352
|
federated?: TFederatedConfig;
|
353
|
+
connectedStores: TConnectedStore[];
|
344
354
|
};
|
345
355
|
export type TBlockletMetaService = {
|
346
356
|
name: string;
|
@@ -900,6 +910,8 @@ export type TProject = {
|
|
900
910
|
createdAt: string;
|
901
911
|
updatedAt: string;
|
902
912
|
componentdid: string;
|
913
|
+
lastReleaseId: string;
|
914
|
+
lastReleaseFiles: string[];
|
903
915
|
};
|
904
916
|
export type TRelease = {
|
905
917
|
id: string;
|
@@ -917,6 +929,7 @@ export type TRelease = {
|
|
917
929
|
createdAt: string;
|
918
930
|
updatedAt: string;
|
919
931
|
blockletComponents: TReleaseComponent[];
|
932
|
+
publishedStoreIds: string[];
|
920
933
|
};
|
921
934
|
export type TBlockletResource = {
|
922
935
|
exportApi: string;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abtnode/types",
|
3
|
-
"version": "1.16.
|
3
|
+
"version": "1.16.26-beta-e0056285",
|
4
4
|
"description": "Typescript definitions generated from protobuf",
|
5
5
|
"keywords": [
|
6
6
|
"abtnode",
|
@@ -11,9 +11,9 @@
|
|
11
11
|
},
|
12
12
|
"resolutions": {},
|
13
13
|
"devDependencies": {
|
14
|
-
"@arcblock/eslint-config-ts": "0.
|
14
|
+
"@arcblock/eslint-config-ts": "0.3.0",
|
15
15
|
"@types/jest": "^29.5.11",
|
16
|
-
"@types/node": "^
|
16
|
+
"@types/node": "^20.12.2",
|
17
17
|
"eslint": "^8.25.0",
|
18
18
|
"typescript": "^5.0.4"
|
19
19
|
},
|
@@ -36,5 +36,5 @@
|
|
36
36
|
"bugs": {
|
37
37
|
"url": "https://github.com/ArcBlock/abt-node/issues"
|
38
38
|
},
|
39
|
-
"gitHead": "
|
39
|
+
"gitHead": "a79b8637ad50d136e7c5d91bfb41dc7a7c337485"
|
40
40
|
}
|