@veloceapps/sdk 8.0.0-163 → 8.0.0-165

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.
@@ -2346,7 +2346,7 @@ class ConfigurationStateService {
2346
2346
  const { actions } = this.configurationRuntimeService.runtimeContext?.uiDefinitionContainer ?? {};
2347
2347
  const configurationProcessor = actions?.find(action => action.apiName === processor.apiName);
2348
2348
  if (!configurationProcessor?.script) {
2349
- return request;
2349
+ throw `ConfigurationProcessor ${processor.apiName} not found`;
2350
2350
  }
2351
2351
  return this.executeProcessorScript(request, configurationProcessor, processor.inputData);
2352
2352
  }
@@ -2354,7 +2354,7 @@ class ConfigurationStateService {
2354
2354
  const { selectors } = this.configurationRuntimeService.runtimeContext?.uiDefinitionContainer ?? {};
2355
2355
  const configurationProcessor = selectors?.find(selector => selector.apiName === processor.apiName);
2356
2356
  if (!configurationProcessor?.script) {
2357
- return null;
2357
+ throw `ConfigurationProcessor ${processor.apiName} not found`;
2358
2358
  }
2359
2359
  return this.executeProcessorScript(request, configurationProcessor, processor.inputData);
2360
2360
  }