@abtnode/types 1.16.25 → 1.16.26-beta-a18a668e
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 +11 -0
- package/package.json +3 -3
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;
|
@@ -919,6 +929,7 @@ export type TRelease = {
|
|
919
929
|
createdAt: string;
|
920
930
|
updatedAt: string;
|
921
931
|
blockletComponents: TReleaseComponent[];
|
932
|
+
publishedStoreIds: string[];
|
922
933
|
};
|
923
934
|
export type TBlockletResource = {
|
924
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-a18a668e",
|
4
4
|
"description": "Typescript definitions generated from protobuf",
|
5
5
|
"keywords": [
|
6
6
|
"abtnode",
|
@@ -13,7 +13,7 @@
|
|
13
13
|
"devDependencies": {
|
14
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": "837064f7169e099bdcedfd1c8cb636a575e771de"
|
40
40
|
}
|