@veloceapps/api 9.0.0-4 → 9.0.0-5

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.
@@ -41,10 +41,7 @@ class AccountApiService {
41
41
  getAssetsState(accountId, options) {
42
42
  return this.httpService.api({
43
43
  method: 'get',
44
- url: `/quotes/${accountId}`,
45
- params: {
46
- asset: 'true',
47
- },
44
+ url: `/v2${this.SERVICE_URL}/${accountId}/assets`,
48
45
  ...options,
49
46
  });
50
47
  }
@@ -2372,7 +2369,7 @@ class QuoteApiService {
2372
2369
  getQuoteState(objectId, params, options) {
2373
2370
  return this.httpService.api({
2374
2371
  method: 'get',
2375
- url: `${this.SERVICE_URL}/${objectId}`,
2372
+ url: `/v2${this.SERVICE_URL}/${objectId}`,
2376
2373
  params,
2377
2374
  ...options,
2378
2375
  });