@ocap/sdk 1.18.78 → 1.18.80
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/index.d.ts +9 -0
- package/package.json +7 -7
package/index.d.ts
CHANGED
|
@@ -1132,6 +1132,13 @@ declare namespace GraphQLClient {
|
|
|
1132
1132
|
tx: string;
|
|
1133
1133
|
}
|
|
1134
1134
|
|
|
1135
|
+
interface RequestGetAccountStateInput {
|
|
1136
|
+
address: string;
|
|
1137
|
+
keys: string[];
|
|
1138
|
+
height: number;
|
|
1139
|
+
traceMigration: boolean;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1135
1142
|
interface RequestGetAccountTokensInput {
|
|
1136
1143
|
address: string;
|
|
1137
1144
|
token: string;
|
|
@@ -2581,6 +2588,7 @@ declare namespace GraphQLClient {
|
|
|
2581
2588
|
interface UpdateAssetTx {
|
|
2582
2589
|
address: string;
|
|
2583
2590
|
moniker: string;
|
|
2591
|
+
consumed: boolean;
|
|
2584
2592
|
data: GraphQLClient.Any;
|
|
2585
2593
|
}
|
|
2586
2594
|
|
|
@@ -2691,6 +2699,7 @@ declare namespace GraphQLClient {
|
|
|
2691
2699
|
address: string;
|
|
2692
2700
|
height: string;
|
|
2693
2701
|
keys: string[];
|
|
2702
|
+
traceMigration: boolean;
|
|
2694
2703
|
}
|
|
2695
2704
|
|
|
2696
2705
|
interface GetAssetStateParams {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ocap/sdk",
|
|
3
3
|
"description": "Forge javascript SDK packages all-in-one",
|
|
4
|
-
"version": "1.18.
|
|
4
|
+
"version": "1.18.80",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "wangshijun",
|
|
7
7
|
"email": "shijun@arcblock.io",
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@arcblock/did-util": "1.18.
|
|
22
|
-
"@ocap/client": "1.18.
|
|
23
|
-
"@ocap/message": "1.18.
|
|
24
|
-
"@ocap/util": "1.18.
|
|
25
|
-
"@ocap/wallet": "1.18.
|
|
21
|
+
"@arcblock/did-util": "1.18.80",
|
|
22
|
+
"@ocap/client": "1.18.80",
|
|
23
|
+
"@ocap/message": "1.18.80",
|
|
24
|
+
"@ocap/util": "1.18.80",
|
|
25
|
+
"@ocap/wallet": "1.18.80",
|
|
26
26
|
"buffer": "6.0.3",
|
|
27
27
|
"debug": "^4.3.4",
|
|
28
28
|
"react-app-polyfill": "^1.0.6",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"test": "jest --forceExit --detectOpenHandles",
|
|
83
83
|
"coverage": "yarn test -- --coverage"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "a8336aacf07904ff809bc3915ca44c52cfa68f6d"
|
|
86
86
|
}
|