@veloceapps/api 7.0.2-4 → 7.0.2-41

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.
@@ -1394,6 +1394,13 @@ class ProceduresApiService {
1394
1394
  body,
1395
1395
  });
1396
1396
  }
1397
+ catalogExecute$(body) {
1398
+ return this.baseHttpService.api({
1399
+ url: `${this.SERVICE_URL}/catalog/execute`,
1400
+ method: 'post',
1401
+ body,
1402
+ });
1403
+ }
1397
1404
  /**
1398
1405
  * Run active procedure against QuoteDraft
1399
1406
  * @param body
@@ -1791,13 +1798,6 @@ class QuoteApiService {
1791
1798
  constructor(httpService) {
1792
1799
  this.httpService = httpService;
1793
1800
  this.SERVICE_URL = '/quotes';
1794
- /**
1795
- * @deprecated
1796
- * Will be removed in next major release
1797
- * Use `getQuoteDraft` instead
1798
- */
1799
- // eslint-disable-next-line @typescript-eslint/member-ordering
1800
- this.getQuote = this.getQuoteDraft;
1801
1801
  }
1802
1802
  // request quoteId | accountId | opportunityId | orderId
1803
1803
  getQuoteDraft(objectId, params, errorHandler) {