@dcl/schemas 11.10.1 → 11.10.2
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/dist/dapps/trade.d.ts +3 -3
- package/dist/schemas.d.ts +3 -3
- package/package.json +2 -2
package/dist/dapps/trade.d.ts
CHANGED
|
@@ -7,14 +7,14 @@ export declare enum TradeType {
|
|
|
7
7
|
export type TradeExternalCheck = {
|
|
8
8
|
contractAddress: string;
|
|
9
9
|
selector: string;
|
|
10
|
-
value:
|
|
10
|
+
value: string;
|
|
11
11
|
required: boolean;
|
|
12
12
|
};
|
|
13
13
|
export type TradeChecks = {
|
|
14
14
|
uses: number;
|
|
15
15
|
expiration: number;
|
|
16
16
|
effective: number;
|
|
17
|
-
salt:
|
|
17
|
+
salt: string;
|
|
18
18
|
contractSignatureIndex: number;
|
|
19
19
|
signerSignatureIndex: number;
|
|
20
20
|
allowedRoot: string;
|
|
@@ -30,7 +30,7 @@ export declare enum TradeAssetType {
|
|
|
30
30
|
export type TradeAsset = {
|
|
31
31
|
assetType: TradeAssetType;
|
|
32
32
|
contractAddress: string;
|
|
33
|
-
value:
|
|
33
|
+
value: string;
|
|
34
34
|
extra: string;
|
|
35
35
|
};
|
|
36
36
|
export type TradeAssetWithBeneficiary = TradeAsset & {
|
package/dist/schemas.d.ts
CHANGED
|
@@ -2223,7 +2223,7 @@ export declare type Trade = {
|
|
|
2223
2223
|
export declare type TradeAsset = {
|
|
2224
2224
|
assetType: TradeAssetType;
|
|
2225
2225
|
contractAddress: string;
|
|
2226
|
-
value:
|
|
2226
|
+
value: string;
|
|
2227
2227
|
extra: string;
|
|
2228
2228
|
};
|
|
2229
2229
|
|
|
@@ -2242,7 +2242,7 @@ export declare type TradeChecks = {
|
|
|
2242
2242
|
uses: number;
|
|
2243
2243
|
expiration: number;
|
|
2244
2244
|
effective: number;
|
|
2245
|
-
salt:
|
|
2245
|
+
salt: string;
|
|
2246
2246
|
contractSignatureIndex: number;
|
|
2247
2247
|
signerSignatureIndex: number;
|
|
2248
2248
|
allowedRoot: string;
|
|
@@ -2264,7 +2264,7 @@ export declare type TradeCreation = {
|
|
|
2264
2264
|
export declare type TradeExternalCheck = {
|
|
2265
2265
|
contractAddress: string;
|
|
2266
2266
|
selector: string;
|
|
2267
|
-
value:
|
|
2267
|
+
value: string;
|
|
2268
2268
|
required: boolean;
|
|
2269
2269
|
};
|
|
2270
2270
|
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "11.10.
|
|
2
|
+
"version": "11.10.2",
|
|
3
3
|
"name": "@dcl/schemas",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"typings": "./dist/index.d.ts",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"files": [
|
|
45
45
|
"dist"
|
|
46
46
|
],
|
|
47
|
-
"commit": "
|
|
47
|
+
"commit": "0d6db51080df07bd10155407666ac49bbe7ac68b"
|
|
48
48
|
}
|