@beseif-solutions/prow-core 0.3.5 → 0.3.7

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.
package/dist/index.d.ts CHANGED
@@ -4,7 +4,7 @@ export { Credentials, credentialsSchema, OAuthCredentials, oauthCredentialsSchem
4
4
  export { Action, actionOutputSchema, actionSchema, AsyncAction, Event, eventSchema, ImmediateTrigger, immediateTriggerSchema, Request, ScheduledTrigger, scheduledTriggerSchema, SyncAction, syncActionSchema, Trigger, triggerOutputSchema, triggerSchema } from './entities/events';
5
5
  export { Provider, providerSchema } from './entities/provider';
6
6
  export { Source } from './entities/source';
7
- export { alter, extract, Field, fieldSchema, fieldsSchema, File, SelectFieldChoice, validate, ValidationResult } from './minified-utils/fields';
7
+ export { alter, Condition, extract, Field, fieldSchema, fieldsSchema, File, SelectFieldChoice, validate, ValidationResult } from './minified-utils/fields';
8
8
  export { i18n, LocalizedField, LocalizedProperties, localizeFields, localizeGroup, localizeInputs, localizeOutputs, localizeProperties } from './minified-utils/locales';
9
9
  export { Properties } from './minified-utils/properties';
10
10
  export { Protocol } from './minified-utils/protocol';
@@ -558,6 +558,7 @@ const validate_internal = async (fields, data, options) => {
558
558
  };
559
559
  }
560
560
  else {
561
+ lodash_1.default.set(data, field.key, validation);
561
562
  extended = {
562
563
  valid: true,
563
564
  original: value,
@@ -173,7 +173,7 @@ class Protocol {
173
173
  if (!func || typeof func !== `function`) {
174
174
  throw new Error(`Invalid function ${req.params.function}`);
175
175
  }
176
- const invokeInstance = (0, core_1.core)({
176
+ const invokeInstance = await (0, core_1.core)({
177
177
  env: req.context.environment,
178
178
  localization: req.context.localization,
179
179
  sources: API_SOURCES(this.provider, this.configuration.sources, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beseif-solutions/prow-core",
3
- "version": "0.3.5",
3
+ "version": "0.3.7",
4
4
  "description": "Prow core functionalities and classes",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -23,12 +23,12 @@
23
23
  "i18n": "^0.15.1",
24
24
  "joi": "^17.13.3",
25
25
  "lodash": "^4.17.21",
26
+ "@types/lodash": "^4.14.168",
26
27
  "moment-timezone": "^0.5.46",
27
28
  "ts-node": "^8.10.2"
28
29
  },
29
30
  "devDependencies": {
30
31
  "@types/i18n": "^0.13.12",
31
- "@types/lodash": "^4.14.168",
32
32
  "@types/node": "^22.8.4",
33
33
  "@typescript-eslint/eslint-plugin": "^5.38.0",
34
34
  "@typescript-eslint/parser": "^5.38.0",
package/src/index.ts CHANGED
@@ -4,7 +4,7 @@ export { Credentials, credentialsSchema, OAuthCredentials, oauthCredentialsSchem
4
4
  export { Action, actionOutputSchema, actionSchema, AsyncAction, Event, eventSchema, ImmediateTrigger, immediateTriggerSchema, Request, ScheduledTrigger, scheduledTriggerSchema, SyncAction, syncActionSchema, Trigger, triggerOutputSchema, triggerSchema } from './entities/events';
5
5
  export { Provider, providerSchema } from './entities/provider';
6
6
  export { Source } from './entities/source';
7
- export { alter, extract, Field, fieldSchema, fieldsSchema, File, SelectFieldChoice, validate, ValidationResult } from './minified-utils/fields';
7
+ export { alter, Condition, extract, Field, fieldSchema, fieldsSchema, File, SelectFieldChoice, validate, ValidationResult } from './minified-utils/fields';
8
8
  export { i18n, LocalizedField, LocalizedProperties, localizeFields, localizeGroup, localizeInputs, localizeOutputs, localizeProperties } from './minified-utils/locales';
9
9
  export { Properties } from './minified-utils/properties';
10
10
  export { Protocol } from './minified-utils/protocol';
@@ -761,6 +761,7 @@ const validate_internal = async (fields: Field[], data: Record<string, any>, opt
761
761
  value: null,
762
762
  };
763
763
  } else {
764
+ _.set(data, field.key, validation);
764
765
  extended = {
765
766
  valid: true,
766
767
  original: value,
@@ -181,7 +181,7 @@ export class Protocol {
181
181
  const func = _.get(elem, req.params.function);
182
182
  if (!func || typeof func !== `function`) { throw new Error(`Invalid function ${req.params.function}`); }
183
183
 
184
- const invokeInstance = core({
184
+ const invokeInstance = await core({
185
185
  env: req.context.environment,
186
186
  localization: req.context.localization,
187
187
  sources: API_SOURCES(this.provider, this.configuration.sources, {