Docs: move 'invalidValues' to correct level in the config

This commit is contained in:
Pieter Vander Vennet 2025-04-15 12:26:17 +02:00
parent 4c0c3fb7a3
commit 5544f95233

View file

@ -267,13 +267,7 @@ export interface QuestionableTagRenderingConfigJson extends TagRenderingConfigJs
* group: expert * group: expert
*/ */
default?: string default?: string
/**
* question: What tag combintations key should be interpreted as 'unknown'?
* For example, if a feature has `shop=yes`, the question 'what type of shop is this?' should still asked
* ifunset: The question will be considered answered if any value is set for the key
* group: expert
*/
invalidValues?: TagConfigJson
/** /**
* question: If this key shared and distinguished by a postfix, what is the postfix? * question: If this key shared and distinguished by a postfix, what is the postfix?
@ -335,4 +329,12 @@ export interface QuestionableTagRenderingConfigJson extends TagRenderingConfigJs
* question: What tags should be applied when the object is soft-deleted? * question: What tags should be applied when the object is soft-deleted?
*/ */
onSoftDelete?: string[] onSoftDelete?: string[]
/**
* question: What tag combintations key should be interpreted as 'unknown'?
* For example, if a feature has `shop=yes`, the question 'what type of shop is this?' should still asked
* ifunset: The question will be considered answered if any value is set for the key
* group: expert
*/
invalidValues?: TagConfigJson
} }