@veloceapps/api 9.0.0-2 → 9.0.0-3
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/esm2020/lib/services/account-api.service.mjs +5 -2
- package/esm2020/lib/services/quote-api.service.mjs +2 -2
- package/fesm2015/veloceapps-api.mjs +4 -2
- package/fesm2015/veloceapps-api.mjs.map +1 -1
- package/fesm2020/veloceapps-api.mjs +5 -2
- package/fesm2020/veloceapps-api.mjs.map +1 -1
- package/package.json +1 -1
@@ -41,7 +41,10 @@ class AccountApiService {
|
|
41
41
|
getAssetsState(accountId, options) {
|
42
42
|
return this.httpService.api({
|
43
43
|
method: 'get',
|
44
|
-
url: `/
|
44
|
+
url: `/quotes/${accountId}`,
|
45
|
+
params: {
|
46
|
+
asset: 'true',
|
47
|
+
},
|
45
48
|
...options,
|
46
49
|
});
|
47
50
|
}
|
@@ -2369,7 +2372,7 @@ class QuoteApiService {
|
|
2369
2372
|
getQuoteState(objectId, params, options) {
|
2370
2373
|
return this.httpService.api({
|
2371
2374
|
method: 'get',
|
2372
|
-
url:
|
2375
|
+
url: `${this.SERVICE_URL}/${objectId}`,
|
2373
2376
|
params,
|
2374
2377
|
...options,
|
2375
2378
|
});
|