@veloceapps/api 11.0.0-101 → 11.0.0-103

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.
@@ -1304,7 +1304,7 @@ class UIDefinitionsAdminApiService {
1304
1304
  this.baseHttpService = baseHttpService;
1305
1305
  this.serviceUrl = '/admin/v2/uidefinitions';
1306
1306
  }
1307
- fetchAll$(params) {
1307
+ fetchAll$(params, options) {
1308
1308
  let httpParams = new HttpParams();
1309
1309
  if (params?.productId != null) {
1310
1310
  httpParams = httpParams.set('productId', params.productId);
@@ -1317,14 +1317,16 @@ class UIDefinitionsAdminApiService {
1317
1317
  method: 'get',
1318
1318
  url: this.serviceUrl,
1319
1319
  params: httpParams,
1320
+ ...options,
1320
1321
  })
1321
1322
  .pipe(map$1(containers => containers.map(uiDefinitionFromDTO)));
1322
1323
  }
1323
- fetch$(id) {
1324
+ fetch$(id, options) {
1324
1325
  return this.baseHttpService
1325
1326
  .api({
1326
1327
  method: 'get',
1327
1328
  url: `${this.serviceUrl}/${id}`,
1329
+ ...options,
1328
1330
  })
1329
1331
  .pipe(map$1(container => uiDefinitionFromDTO({ ...container, id })));
1330
1332
  }