@marteye/studiojs 1.1.28 → 1.1.29
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/index.d.ts +14 -2
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/resources/lots.d.ts +7 -1
- package/dist/resources.d.ts +7 -1
- package/dist/studio.d.ts +7 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5042,8 +5042,8 @@ function create$7(httpClient) {
|
|
|
5042
5042
|
get: async (marketId, saleId, lotId) => {
|
|
5043
5043
|
return httpClient.get(`/${marketId}/sales/${saleId}/lots/${lotId}`);
|
|
5044
5044
|
},
|
|
5045
|
-
list: async (marketId, saleId) => {
|
|
5046
|
-
return httpClient.get(`/${marketId}/sales/${saleId}/lots
|
|
5045
|
+
list: async (marketId, saleId, filters) => {
|
|
5046
|
+
return httpClient.get(`/${marketId}/sales/${saleId}/lots`, filters);
|
|
5047
5047
|
},
|
|
5048
5048
|
create: async (marketId, saleId, data) => {
|
|
5049
5049
|
return httpClient.post(`/${marketId}/sales/${saleId}/lots`, data);
|