mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
feat(Execute Workflow Node): Remove ignoreTypeMismatch option (no-changelog) (#12482)
This commit is contained in:
parent
30f9c033db
commit
c03fe0af38
cypress/fixtures
packages
core/src/node-execution-context/utils
editor-ui/src
workflow/src
|
@ -19,7 +19,6 @@
|
|||
"value": {},
|
||||
"matchingColumns": [],
|
||||
"schema": [],
|
||||
"ignoreTypeMismatchErrors": false,
|
||||
"attemptToConvertTypes": false,
|
||||
"convertFieldsToString": true
|
||||
},
|
||||
|
|
|
@ -61,11 +61,7 @@ const validateResourceMapperValue = (
|
|||
});
|
||||
|
||||
if (!validationResult.valid) {
|
||||
if (!resourceMapperField.ignoreTypeMismatchErrors) {
|
||||
return { ...validationResult, fieldName: key };
|
||||
} else {
|
||||
paramValues[key] = resolvedValue;
|
||||
}
|
||||
return { ...validationResult, fieldName: key };
|
||||
} else {
|
||||
// If it's valid, set the casted value
|
||||
paramValues[key] = validationResult.newValue;
|
||||
|
|
|
@ -63,7 +63,6 @@ const state = reactive({
|
|||
value: {},
|
||||
matchingColumns: [] as string[],
|
||||
schema: [] as ResourceMapperField[],
|
||||
ignoreTypeMismatchErrors: false,
|
||||
attemptToConvertTypes: false,
|
||||
// This should always be true if `showTypeConversionOptions` is provided
|
||||
// It's used to avoid accepting any value as string without casting it
|
||||
|
@ -664,23 +663,6 @@ defineExpose({
|
|||
}
|
||||
"
|
||||
/>
|
||||
<ParameterInputFull
|
||||
:parameter="{
|
||||
name: 'ignoreTypeMismatchErrors',
|
||||
type: 'boolean',
|
||||
displayName: locale.baseText('resourceMapper.ignoreTypeMismatchErrors.displayName'),
|
||||
default: false,
|
||||
description: locale.baseText('resourceMapper.ignoreTypeMismatchErrors.description'),
|
||||
}"
|
||||
:path="props.path + '.ignoreTypeMismatchErrors'"
|
||||
:value="state.paramValue.ignoreTypeMismatchErrors"
|
||||
@update="
|
||||
(x: IUpdateInformation<NodeParameterValueType>) => {
|
||||
state.paramValue.ignoreTypeMismatchErrors = x.value as boolean;
|
||||
emitValueChanged();
|
||||
}
|
||||
"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
@ -1600,8 +1600,6 @@
|
|||
"resourceMapper.staleDataWarning.notice": "Refresh to see the updated fields",
|
||||
"resourceMapper.attemptToConvertTypes.displayName": "Attempt to convert types",
|
||||
"resourceMapper.attemptToConvertTypes.description": "Attempt to convert types when mapping fields",
|
||||
"resourceMapper.ignoreTypeMismatchErrors.displayName": "Ignore type mismatch errors",
|
||||
"resourceMapper.ignoreTypeMismatchErrors.description": "Whether type mismatches should be ignored, rather than returning an Error",
|
||||
"runData.openSubExecution": "Inspect Sub-Execution {id}",
|
||||
"runData.openParentExecution": "Inspect Parent Execution {id}",
|
||||
"runData.emptyItemHint": "This is an item, but it's empty.",
|
||||
|
|
|
@ -2710,7 +2710,6 @@ export type ResourceMapperValue = {
|
|||
value: { [key: string]: string | number | boolean | null } | null;
|
||||
matchingColumns: string[];
|
||||
schema: ResourceMapperField[];
|
||||
ignoreTypeMismatchErrors: boolean;
|
||||
attemptToConvertTypes: boolean;
|
||||
convertFieldsToString: boolean;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue