Skip to content

Commit

Permalink
fix: upgrade Apache Camel model to 4.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tadayosi committed Jul 2, 2024
1 parent 321e331 commit 304ff4e
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 36 deletions.
80 changes: 45 additions & 35 deletions src/components-camel-model.json
Original file line number Diff line number Diff line change
Expand Up @@ -18559,23 +18559,6 @@
"required": false,
"deprecated": false
},
"loggingFeatureEnabled": {
"kind": "parameter",
"type": "boolean",
"defaultValue": "false",
"description": "This option enables CXF Logging Feature which writes inbound and outbound REST messages to log.",
"title": "Logging Feature Enabled",
"required": false,
"deprecated": false
},
"loggingSizeLimit": {
"kind": "parameter",
"type": "integer",
"description": "To limit the total size of number of bytes the logger will output when logging feature has been enabled.",
"title": "Logging Size Limit",
"required": false,
"deprecated": false
},
"modelRef": {
"kind": "parameter",
"type": "string",
Expand Down Expand Up @@ -18821,6 +18804,24 @@
"title": "Propagate Contexts",
"required": false,
"deprecated": false
},
"loggingFeatureEnabled": {
"kind": "parameter",
"type": "boolean",
"defaultValue": "false",
"description": "This option enables CXF Logging Feature which writes inbound and outbound REST messages to log.",
"title": "Logging Feature Enabled",
"required": false,
"deprecated": false
},
"loggingSizeLimit": {
"kind": "parameter",
"type": "integer",
"defaultValue": "49152",
"description": "To limit the total size of number of bytes the logger will output when logging feature has been enabled and -1 for no limit.",
"title": "Logging Size Limit",
"required": false,
"deprecated": false
}
}
},
Expand Down Expand Up @@ -46660,6 +46661,15 @@
"required": false,
"deprecated": false
},
"useIterator": {
"kind": "parameter",
"type": "boolean",
"defaultValue": "true",
"description": "Sets whether sending to kafka should send the message body as a single record, or use a java.util.Iterator to send multiple records to kafka (if the message body can be iterated).",
"title": "Use Iterator",
"required": false,
"deprecated": false
},
"valueSerializer": {
"kind": "parameter",
"type": "string",
Expand Down Expand Up @@ -55725,15 +55735,6 @@
"required": false,
"deprecated": false
},
"hostnameVerification": {
"kind": "parameter",
"type": "boolean",
"defaultValue": "false",
"description": "To enable/disable hostname verification on SSLEngine",
"title": "Hostname Verification",
"required": false,
"deprecated": false
},
"allowSerializedHeaders": {
"kind": "parameter",
"type": "boolean",
Expand Down Expand Up @@ -55927,6 +55928,15 @@
"required": false,
"deprecated": false
},
"hostnameVerification": {
"kind": "parameter",
"type": "boolean",
"defaultValue": "false",
"description": "To enable/disable hostname verification on SSLEngine",
"title": "Hostname Verification",
"required": false,
"deprecated": false
},
"keyStoreFile": {
"kind": "parameter",
"type": "string",
Expand Down Expand Up @@ -56537,15 +56547,6 @@
"required": false,
"deprecated": false
},
"hostnameVerification": {
"kind": "parameter",
"type": "boolean",
"defaultValue": "false",
"description": "To enable/disable hostname verification on SSLEngine",
"title": "Hostname Verification",
"required": false,
"deprecated": false
},
"allowSerializedHeaders": {
"kind": "parameter",
"type": "boolean",
Expand Down Expand Up @@ -56715,6 +56716,15 @@
"required": false,
"deprecated": false
},
"hostnameVerification": {
"kind": "parameter",
"type": "boolean",
"defaultValue": "false",
"description": "To enable/disable hostname verification on SSLEngine",
"title": "Hostname Verification",
"required": false,
"deprecated": false
},
"keyStoreFile": {
"kind": "parameter",
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ import { dataformats } from './dataformats-camel-model.json'
import { languages } from './languages-camel-model.json'
import { components } from './components-camel-model.json'

const apacheCamelModelVersion = '4.4.2'
const apacheCamelModelVersion = '4.4.3'

export { definitions, rests, dataformats, languages, components, apacheCamelModelVersion }

0 comments on commit 304ff4e

Please sign in to comment.