This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch 3.20.x in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit b9d63e2292bbe6e56401b74673c8d825b4276e94 Author: Andrea Cosentino <[email protected]> AuthorDate: Thu Feb 9 13:59:32 2023 +0100 Convert all the parameters with multiple possible values to enum - Salesforce Source Signed-off-by: Andrea Cosentino <[email protected]> --- kamelets/salesforce-source.kamelet.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kamelets/salesforce-source.kamelet.yaml b/kamelets/salesforce-source.kamelet.yaml index 44c319ca..446b5eb6 100644 --- a/kamelets/salesforce-source.kamelet.yaml +++ b/kamelets/salesforce-source.kamelet.yaml @@ -57,9 +57,10 @@ spec: default: https://login.salesforce.com notifyForFields: title: Notify For Fields - description: Notify for fields. Possible values are ALL, REFERENCED, SELECT, or WHERE. + description: Notify for fields. type: string default: ALL + enum: [ "ALL", "REFERENCED", "SELECT", "WHERE"] clientId: title: Consumer Key description: The Salesforce application consumer key.
