@dcl/schemas 5.30.0 → 5.31.0
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/nft.d.ts +2 -2
- package/dist/schemas.d.ts +2 -2
- package/package.json +2 -2
package/dist/dapps/nft.d.ts
CHANGED
|
@@ -88,8 +88,8 @@ export declare type NFTFilters = {
|
|
|
88
88
|
network?: Network;
|
|
89
89
|
rentalStatus?: RentalsListingsFilterBy['status'];
|
|
90
90
|
ids?: string[];
|
|
91
|
-
minPrice?:
|
|
92
|
-
maxPrice?:
|
|
91
|
+
minPrice?: string;
|
|
92
|
+
maxPrice?: string;
|
|
93
93
|
} & Pick<RentalsListingsFilterBy, 'tenant'>;
|
|
94
94
|
export declare enum NFTSortBy {
|
|
95
95
|
NAME = "name",
|
package/dist/schemas.d.ts
CHANGED
|
@@ -1005,8 +1005,8 @@ export declare type NFTFilters = {
|
|
|
1005
1005
|
network?: Network;
|
|
1006
1006
|
rentalStatus?: RentalsListingsFilterBy['status'];
|
|
1007
1007
|
ids?: string[];
|
|
1008
|
-
minPrice?:
|
|
1009
|
-
maxPrice?:
|
|
1008
|
+
minPrice?: string;
|
|
1009
|
+
maxPrice?: string;
|
|
1010
1010
|
} & Pick<RentalsListingsFilterBy, 'tenant'>;
|
|
1011
1011
|
|
|
1012
1012
|
export declare enum NFTSortBy {
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "5.
|
|
2
|
+
"version": "5.31.0",
|
|
3
3
|
"name": "@dcl/schemas",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"typings": "./dist/index.d.ts",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"files": [
|
|
33
33
|
"dist"
|
|
34
34
|
],
|
|
35
|
-
"commit": "
|
|
35
|
+
"commit": "9ace781e7b84d9fb921035b817d65da052b7d908"
|
|
36
36
|
}
|