@veloceapps/api 10.0.0-25 → 10.0.0-26

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.
@@ -3467,9 +3467,13 @@ class RlmApiService {
3467
3467
  }));
3468
3468
  }
3469
3469
  fetchRlmProcedures(contextDefinitionId) {
3470
+ const params = {};
3471
+ if (contextDefinitionId) {
3472
+ params['contextDefinitionId'] = contextDefinitionId;
3473
+ }
3470
3474
  return this.baseHttpService.api({
3471
3475
  url: `${this.serviceUrl}/procedures`,
3472
- params: { contextDefinitionId },
3476
+ params,
3473
3477
  });
3474
3478
  }
3475
3479
  }