@kaoto/camel-catalog 0.2.7 → 0.2.8

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.
@@ -44,7 +44,7 @@ export type ScriptLanguage = string;
44
44
  /**
45
45
  * Whether the script should support using Camel property placeholder syntax {{ }}.
46
46
  */
47
- export type ScriptPropertyPlaceholders = boolean & string;
47
+ export type ScriptPropertyPlaceholders = boolean;
48
48
  /**
49
49
  * The class name (fully qualified) of the bean
50
50
  */
@@ -71,7 +71,7 @@ export type UnmarshalType = string;
71
71
  /**
72
72
  * If the asn1 file has more than one entry, the setting this option to true, allows working with the splitter EIP, to split the data using an iterator in a streaming mode.
73
73
  */
74
- export type UsingIterator = boolean & string;
74
+ export type UsingIterator = boolean;
75
75
  /**
76
76
  * Serialize and deserialize messages using Apache Avro binary data format.
77
77
  */
@@ -103,19 +103,19 @@ export type Avro =
103
103
  /**
104
104
  * Used for JMS users to allow the JMSType header from the JMS spec to specify a FQN classname to use to unmarshal to.
105
105
  */
106
- export type AllowJmsType = boolean & string;
106
+ export type AllowJmsType = boolean;
107
107
  /**
108
108
  * If enabled then Jackson is allowed to attempt to use the CamelJacksonUnmarshalType header during the unmarshalling. This should only be enabled when desired to be used.
109
109
  */
110
- export type AllowUnmarshallType = boolean & string;
110
+ export type AllowUnmarshallType = boolean;
111
111
  /**
112
112
  * If set to true then Jackson will lookup for an objectMapper into the registry
113
113
  */
114
- export type AutoDiscoverObjectMapper = boolean & string;
114
+ export type AutoDiscoverObjectMapper = boolean;
115
115
  /**
116
116
  * When not disabled, the SchemaResolver will be looked up into the registry
117
117
  */
118
- export type AutoDiscoverSchemaResolver = boolean & string;
118
+ export type AutoDiscoverSchemaResolver = boolean;
119
119
  /**
120
120
  * Refers to a custom collection type to lookup in the registry to use. This option should rarely be used, but allows to use different collection types than java.util.Collection based as default.
121
121
  */
@@ -123,7 +123,7 @@ export type CollectionType = string;
123
123
  /**
124
124
  * Whether the data format should set the Content-Type header with the type from the data format. For example application/xml for data formats marshalling to XML, or application/json for data formats marshalling to JSON
125
125
  */
126
- export type ContentTypeHeader = boolean & string;
126
+ export type ContentTypeHeader = boolean;
127
127
  /**
128
128
  * Set of features to disable on the Jackson com.fasterxml.jackson.databind.ObjectMapper. The features should be a name that matches a enum from com.fasterxml.jackson.databind.SerializationFeature, com.fasterxml.jackson.databind.DeserializationFeature, or com.fasterxml.jackson.databind.MapperFeature Multiple features can be separated by comma
129
129
  */
@@ -179,11 +179,11 @@ export type UnmarshalType1 = string;
179
179
  /**
180
180
  * Whether to lookup and use default Jackson ObjectMapper from the registry.
181
181
  */
182
- export type UseDefaultObjectMapper = boolean & string;
182
+ export type UseDefaultObjectMapper = boolean;
183
183
  /**
184
184
  * To unmarshal to a List of Map or a List of Pojo.
185
185
  */
186
- export type UseList = boolean & string;
186
+ export type UseList = boolean;
187
187
  /**
188
188
  * Barcode format such as QR-Code
189
189
  */
@@ -208,7 +208,7 @@ export type BarcodeFormat =
208
208
  /**
209
209
  * Height of the barcode
210
210
  */
211
- export type Height = number & string;
211
+ export type Height = number;
212
212
  /**
213
213
  * The id of this node
214
214
  */
@@ -220,7 +220,7 @@ export type ImageType = "JPG" | "GIF" | "PNG";
220
220
  /**
221
221
  * Width of the barcode
222
222
  */
223
- export type Width = number & string;
223
+ export type Width = number;
224
224
  /**
225
225
  * The id of this node
226
226
  */
@@ -228,7 +228,7 @@ export type Id3 = string;
228
228
  /**
229
229
  * To specific a maximum line length for the encoded data. By default 76 is used.
230
230
  */
231
- export type LineLength = number & string;
231
+ export type LineLength = number;
232
232
  /**
233
233
  * The line separators to use. Uses new line characters (CRLF) by default.
234
234
  */
@@ -236,7 +236,7 @@ export type LineSeparator = string;
236
236
  /**
237
237
  * Instead of emitting '' and '/' we emit '-' and '_' respectively. urlSafe is only applied to encode operations. Decoding seamlessly handles both modes. Is by default false.
238
238
  */
239
- export type UrlSafe = boolean & string;
239
+ export type UrlSafe = boolean;
240
240
  /**
241
241
  * To use a custom org.apache.camel.dataformat.beanio.BeanIOErrorHandler as error handler while parsing. Configure the fully qualified class name of the error handler. Notice the options ignoreUnidentifiedRecords, ignoreUnexpectedRecords, and ignoreInvalidRecords may not be in use when you use a custom error handler.
242
242
  */
@@ -252,15 +252,15 @@ export type Id4 = string;
252
252
  /**
253
253
  * Whether to ignore invalid records.
254
254
  */
255
- export type IgnoreInvalidRecords = boolean & string;
255
+ export type IgnoreInvalidRecords = boolean;
256
256
  /**
257
257
  * Whether to ignore unexpected records.
258
258
  */
259
- export type IgnoreUnexpectedRecords = boolean & string;
259
+ export type IgnoreUnexpectedRecords = boolean;
260
260
  /**
261
261
  * Whether to ignore unidentified records.
262
262
  */
263
- export type IgnoreUnidentifiedRecords = boolean & string;
263
+ export type IgnoreUnidentifiedRecords = boolean;
264
264
  /**
265
265
  * The BeanIO mapping file. Is by default loaded from the classpath. You can prefix with file:, http:, or classpath: to denote from where to load the mapping file.
266
266
  */
@@ -272,11 +272,11 @@ export type StreamName = string;
272
272
  /**
273
273
  * This options controls whether to unmarshal as a list of objects or as a single object only. The former is the default mode, and the latter is only intended in special use-cases where beanio maps the Camel message to a single POJO bean.
274
274
  */
275
- export type UnmarshalSingleObject = boolean & string;
275
+ export type UnmarshalSingleObject = boolean;
276
276
  /**
277
277
  * Whether to allow empty streams in the unmarshal process. If true, no exception will be thrown when a body without records is provided.
278
278
  */
279
- export type AllowEmptyStream = boolean & string;
279
+ export type AllowEmptyStream = boolean;
280
280
  /**
281
281
  * Name of model class to use.
282
282
  */
@@ -296,15 +296,15 @@ export type Type1 = "Csv" | "Fixed" | "KeyValue";
296
296
  /**
297
297
  * When unmarshalling should a single instance be unwrapped and returned instead of wrapped in a java.util.List.
298
298
  */
299
- export type UnwrapSingleInstance = boolean & string;
299
+ export type UnwrapSingleInstance = boolean;
300
300
  /**
301
301
  * Used for JMS users to allow the JMSType header from the JMS spec to specify a FQN classname to use to unmarshal to.
302
302
  */
303
- export type AllowJmsType1 = boolean & string;
303
+ export type AllowJmsType1 = boolean;
304
304
  /**
305
305
  * If enabled then Jackson CBOR is allowed to attempt to use the CamelCBORUnmarshalType header during the unmarshalling. This should only be enabled when desired to be used.
306
306
  */
307
- export type AllowUnmarshallType1 = boolean & string;
307
+ export type AllowUnmarshallType1 = boolean;
308
308
  /**
309
309
  * Refers to a custom collection type to lookup in the registry to use. This option should rarely be used, but allows to use different collection types than java.util.Collection based as default.
310
310
  */
@@ -328,7 +328,7 @@ export type ObjectMapper1 = string;
328
328
  /**
329
329
  * To enable pretty printing output nicely formatted. Is by default false.
330
330
  */
331
- export type PrettyPrint = boolean & string;
331
+ export type PrettyPrint = boolean;
332
332
  /**
333
333
  * Class name of the java type to use when unmarshalling
334
334
  */
@@ -336,11 +336,11 @@ export type UnmarshalType2 = string;
336
336
  /**
337
337
  * Whether to lookup and use default Jackson CBOR ObjectMapper from the registry.
338
338
  */
339
- export type UseDefaultObjectMapper1 = boolean & string;
339
+ export type UseDefaultObjectMapper1 = boolean;
340
340
  /**
341
341
  * To unmarshal to a List of Map or a List of Pojo.
342
342
  */
343
- export type UseList1 = boolean & string;
343
+ export type UseList1 = boolean;
344
344
  /**
345
345
  * The JCE algorithm name indicating the cryptographic algorithm that will be used.
346
346
  */
@@ -352,7 +352,7 @@ export type AlgorithmParameterSpec = string;
352
352
  /**
353
353
  * The size of the buffer used in the signature process.
354
354
  */
355
- export type BufferSize = number & string;
355
+ export type BufferSize = number;
356
356
  /**
357
357
  * The name of the JCE Security Provider that should be used.
358
358
  */
@@ -368,7 +368,7 @@ export type InitVector = string;
368
368
  /**
369
369
  * Flag indicating that the configured IV should be inlined into the encrypted data stream. Is by default false.
370
370
  */
371
- export type Inline = boolean & string;
371
+ export type Inline = boolean;
372
372
  /**
373
373
  * Refers to the secret key to lookup from the register to use.
374
374
  */
@@ -380,7 +380,7 @@ export type MacAlgorithm = string;
380
380
  /**
381
381
  * Flag indicating that a Message Authentication Code should be calculated and appended to the encrypted data.
382
382
  */
383
- export type ShouldAppendHMAC = boolean & string;
383
+ export type ShouldAppendHMAC = boolean;
384
384
  /**
385
385
  * Handle CSV (Comma Separated Values) payloads.
386
386
  */
@@ -420,11 +420,11 @@ export type CSV =
420
420
  /**
421
421
  * Whether to allow missing column names.
422
422
  */
423
- export type AllowMissingColumnNames = boolean & string;
423
+ export type AllowMissingColumnNames = boolean;
424
424
  /**
425
425
  * Whether the unmarshalling should capture the header record and store it in the message header
426
426
  */
427
- export type CaptureHeaderRecord = boolean & string;
427
+ export type CaptureHeaderRecord = boolean;
428
428
  /**
429
429
  * Sets the comment marker of the reference format.
430
430
  */
@@ -432,7 +432,7 @@ export type CommentMarker = string;
432
432
  /**
433
433
  * Disables the comment marker of the reference format.
434
434
  */
435
- export type CommentMarkerDisabled = boolean & string;
435
+ export type CommentMarkerDisabled = boolean;
436
436
  /**
437
437
  * Sets the delimiter to use. The default value is , (comma)
438
438
  */
@@ -444,7 +444,7 @@ export type Escape = string;
444
444
  /**
445
445
  * Use for disabling using escape character
446
446
  */
447
- export type EscapeDisabled = boolean & string;
447
+ export type EscapeDisabled = boolean;
448
448
  /**
449
449
  * The format to use.
450
450
  */
@@ -467,7 +467,7 @@ export type Header = string;
467
467
  /**
468
468
  * Use for disabling headers
469
469
  */
470
- export type HeaderDisabled = boolean & string;
470
+ export type HeaderDisabled = boolean;
471
471
  /**
472
472
  * The id of this node
473
473
  */
@@ -475,19 +475,19 @@ export type Id8 = string;
475
475
  /**
476
476
  * Whether to ignore empty lines.
477
477
  */
478
- export type IgnoreEmptyLines = boolean & string;
478
+ export type IgnoreEmptyLines = boolean;
479
479
  /**
480
480
  * Sets whether or not to ignore case when accessing header names.
481
481
  */
482
- export type IgnoreHeaderCase = boolean & string;
482
+ export type IgnoreHeaderCase = boolean;
483
483
  /**
484
484
  * Whether to ignore surrounding spaces
485
485
  */
486
- export type IgnoreSurroundingSpaces = boolean & string;
486
+ export type IgnoreSurroundingSpaces = boolean;
487
487
  /**
488
488
  * Whether the unmarshalling should produce an iterator that reads the lines on the fly or if all the lines must be read at one.
489
489
  */
490
- export type LazyLoad = boolean & string;
490
+ export type LazyLoad = boolean;
491
491
  /**
492
492
  * Sets the implementation of the CsvMarshallerFactory interface which is able to customize marshalling/unmarshalling behavior by extending CsvMarshaller or creating it from scratch.
493
493
  */
@@ -499,7 +499,7 @@ export type NullString = string;
499
499
  /**
500
500
  * Used to disable null strings
501
501
  */
502
- export type NullStringDisabled = boolean & string;
502
+ export type NullStringDisabled = boolean;
503
503
  /**
504
504
  * Sets the quote to use which by default is double-quote character
505
505
  */
@@ -507,7 +507,7 @@ export type Quote = string;
507
507
  /**
508
508
  * Used to disable quotes
509
509
  */
510
- export type QuoteDisabled = boolean & string;
510
+ export type QuoteDisabled = boolean;
511
511
  /**
512
512
  * Sets the quote mode
513
513
  */
@@ -527,23 +527,23 @@ export type RecordSeparatorDisabled = string;
527
527
  /**
528
528
  * Whether to skip the header record in the output
529
529
  */
530
- export type SkipHeaderRecord = boolean & string;
530
+ export type SkipHeaderRecord = boolean;
531
531
  /**
532
532
  * Sets whether or not to add a trailing delimiter.
533
533
  */
534
- export type TrailingDelimiter = boolean & string;
534
+ export type TrailingDelimiter = boolean;
535
535
  /**
536
536
  * Sets whether or not to trim leading and trailing blanks.
537
537
  */
538
- export type Trim = boolean & string;
538
+ export type Trim = boolean;
539
539
  /**
540
540
  * Whether the unmarshalling should produce maps (HashMap)for the lines values instead of lists. It requires to have header (either defined or collected).
541
541
  */
542
- export type UseMaps = boolean & string;
542
+ export type UseMaps = boolean;
543
543
  /**
544
544
  * Whether the unmarshalling should produce ordered maps (LinkedHashMap) for the lines values instead of lists. It requires to have header (either defined or collected).
545
545
  */
546
- export type UseOrderedMaps = boolean & string;
546
+ export type UseOrderedMaps = boolean;
547
547
  /**
548
548
  * Delegate to a custom org.apache.camel.spi.DataFormat implementation via Camel registry.
549
549
  */
@@ -564,7 +564,7 @@ export type Ref = string;
564
564
  /**
565
565
  * Whether the data format should set the Content-Type header with the type from the data format. For example application/xml for data formats marshalling to XML, or application/json for data formats marshalling to JSON
566
566
  */
567
- export type ContentTypeHeader1 = boolean & string;
567
+ export type ContentTypeHeader1 = boolean;
568
568
  /**
569
569
  * If provided, specifies the elements which should NOT be encoded. Multiple elements can be separated by comma when using String parameter. Valid values for this field would include: Patient - Don't encode patient and all its children Patient.name - Don't encode the patient's name Patient.name.family - Don't encode the patient's family name .text - Don't encode the text element on any resource (only the very first position may contain a wildcard) DSTU2 note: Note that values including meta, such as Patient.meta will work for DSTU2 parsers, but values with subelements on meta such as Patient.meta.lastUpdated will only work in DSTU3 mode.
570
570
  */
@@ -580,7 +580,7 @@ export type EncodeElements = string;
580
580
  /**
581
581
  * If set to true (default is false), the values supplied to setEncodeElements(Set) will not be applied to the root resource (typically a Bundle), but will be applied to any sub-resources contained within it (i.e. search result resources in that bundle)
582
582
  */
583
- export type EncodeElementsAppliesToChildResourcesOnly = boolean & string;
583
+ export type EncodeElementsAppliesToChildResourcesOnly = boolean;
584
584
  /**
585
585
  * To use a custom fhir context. Reference to object of type ca.uhn.fhir.context.FhirContext
586
586
  */
@@ -600,11 +600,11 @@ export type Id10 = string;
600
600
  /**
601
601
  * If set to true (default is false) the ID of any resources being encoded will not be included in the output. Note that this does not apply to contained resources, only to root resources. In other words, if this is set to true, contained resources will still have local IDs but the outer/containing ID will not have an ID.
602
602
  */
603
- export type OmitResourceId = boolean & string;
603
+ export type OmitResourceId = boolean;
604
604
  /**
605
605
  * If set to true (which is the default), the Bundle.entry.fullUrl will override the Bundle.entry.resource's resource id if the fullUrl is defined. This behavior happens when parsing the source data into a Bundle object. Set this to false if this is not the desired behavior (e.g. the client code wishes to perform additional validation checks between the fullUrl and the resource id).
606
606
  */
607
- export type OverrideResourceIdWithBundleEntryFullUrl = boolean & string;
607
+ export type OverrideResourceIdWithBundleEntryFullUrl = boolean;
608
608
  /**
609
609
  * Registers an error handler which will be invoked when any parse errors are found. Reference to object of type ca.uhn.fhir.parser.IParserErrorHandler
610
610
  */
@@ -620,7 +620,7 @@ export type PreferTypes = string;
620
620
  /**
621
621
  * Sets the pretty print flag, meaning that the parser will encode resources with human-readable spacing and newlines between elements instead of condensing output as much as possible.
622
622
  */
623
- export type PrettyPrint1 = boolean & string;
623
+ export type PrettyPrint1 = boolean;
624
624
  /**
625
625
  * Sets the server's base URL used by this parser. If a value is set, resource references will be turned into relative references if they are provided as absolute URLs but have a base matching the given base.
626
626
  */
@@ -628,19 +628,19 @@ export type ServerBaseUrl = string;
628
628
  /**
629
629
  * If set to true (which is the default), resource references containing a version will have the version removed when the resource is encoded. This is generally good behaviour because in most situations, references from one resource to another should be to the resource by ID, not by ID and version. In some cases though, it may be desirable to preserve the version in resource links. In that case, this value should be set to false. This method provides the ability to globally disable reference encoding. If finer-grained control is needed, use setDontStripVersionsFromReferencesAtPaths(List)
630
630
  */
631
- export type StripVersionsFromReferences = boolean & string;
631
+ export type StripVersionsFromReferences = boolean;
632
632
  /**
633
633
  * If set to true (default is false) only elements marked by the FHIR specification as being summary elements will be included.
634
634
  */
635
- export type SummaryMode = boolean & string;
635
+ export type SummaryMode = boolean;
636
636
  /**
637
637
  * If set to true (default is false), narratives will not be included in the encoded values.
638
638
  */
639
- export type SuppressNarratives = boolean & string;
639
+ export type SuppressNarratives = boolean;
640
640
  /**
641
641
  * Whether the data format should set the Content-Type header with the type from the data format. For example application/xml for data formats marshalling to XML, or application/json for data formats marshalling to JSON
642
642
  */
643
- export type ContentTypeHeader2 = boolean & string;
643
+ export type ContentTypeHeader2 = boolean;
644
644
  /**
645
645
  * If provided, specifies the elements which should NOT be encoded. Multiple elements can be separated by comma when using String parameter. Valid values for this field would include: Patient - Don't encode patient and all its children Patient.name - Don't encode the patient's name Patient.name.family - Don't encode the patient's family name .text - Don't encode the text element on any resource (only the very first position may contain a wildcard) DSTU2 note: Note that values including meta, such as Patient.meta will work for DSTU2 parsers, but values with subelements on meta such as Patient.meta.lastUpdated will only work in DSTU3 mode.
646
646
  */
@@ -656,7 +656,7 @@ export type EncodeElements1 = string;
656
656
  /**
657
657
  * If set to true (default is false), the values supplied to setEncodeElements(Set) will not be applied to the root resource (typically a Bundle), but will be applied to any sub-resources contained within it (i.e. search result resources in that bundle)
658
658
  */
659
- export type EncodeElementsAppliesToChildResourcesOnly1 = boolean & string;
659
+ export type EncodeElementsAppliesToChildResourcesOnly1 = boolean;
660
660
  /**
661
661
  * To use a custom fhir context. Reference to object of type ca.uhn.fhir.context.FhirContext
662
662
  */
@@ -676,11 +676,11 @@ export type Id11 = string;
676
676
  /**
677
677
  * If set to true (default is false) the ID of any resources being encoded will not be included in the output. Note that this does not apply to contained resources, only to root resources. In other words, if this is set to true, contained resources will still have local IDs but the outer/containing ID will not have an ID.
678
678
  */
679
- export type OmitResourceId1 = boolean & string;
679
+ export type OmitResourceId1 = boolean;
680
680
  /**
681
681
  * If set to true (which is the default), the Bundle.entry.fullUrl will override the Bundle.entry.resource's resource id if the fullUrl is defined. This behavior happens when parsing the source data into a Bundle object. Set this to false if this is not the desired behavior (e.g. the client code wishes to perform additional validation checks between the fullUrl and the resource id).
682
682
  */
683
- export type OverrideResourceIdWithBundleEntryFullUrl1 = boolean & string;
683
+ export type OverrideResourceIdWithBundleEntryFullUrl1 = boolean;
684
684
  /**
685
685
  * Registers an error handler which will be invoked when any parse errors are found. Reference to object of type ca.uhn.fhir.parser.IParserErrorHandler
686
686
  */
@@ -696,7 +696,7 @@ export type PreferTypes1 = string;
696
696
  /**
697
697
  * Sets the pretty print flag, meaning that the parser will encode resources with human-readable spacing and newlines between elements instead of condensing output as much as possible.
698
698
  */
699
- export type PrettyPrint2 = boolean & string;
699
+ export type PrettyPrint2 = boolean;
700
700
  /**
701
701
  * Sets the server's base URL used by this parser. If a value is set, resource references will be turned into relative references if they are provided as absolute URLs but have a base matching the given base.
702
702
  */
@@ -704,19 +704,19 @@ export type ServerBaseUrl1 = string;
704
704
  /**
705
705
  * If set to true (which is the default), resource references containing a version will have the version removed when the resource is encoded. This is generally good behaviour because in most situations, references from one resource to another should be to the resource by ID, not by ID and version. In some cases though, it may be desirable to preserve the version in resource links. In that case, this value should be set to false. This method provides the ability to globally disable reference encoding. If finer-grained control is needed, use setDontStripVersionsFromReferencesAtPaths(List)
706
706
  */
707
- export type StripVersionsFromReferences1 = boolean & string;
707
+ export type StripVersionsFromReferences1 = boolean;
708
708
  /**
709
709
  * If set to true (default is false) only elements marked by the FHIR specification as being summary elements will be included.
710
710
  */
711
- export type SummaryMode1 = boolean & string;
711
+ export type SummaryMode1 = boolean;
712
712
  /**
713
713
  * If set to true (default is false), narratives will not be included in the encoded values.
714
714
  */
715
- export type SuppressNarratives1 = boolean & string;
715
+ export type SuppressNarratives1 = boolean;
716
716
  /**
717
717
  * Allows for lines to be shorter than expected and ignores the extra characters
718
718
  */
719
- export type AllowShortLines = boolean & string;
719
+ export type AllowShortLines = boolean;
720
720
  /**
721
721
  * The flatpack pzmap configuration file. Can be omitted in simpler situations, but its preferred to use the pzmap.
722
722
  */
@@ -728,7 +728,7 @@ export type Delimiter1 = string;
728
728
  /**
729
729
  * Delimited or fixed. Is by default false = delimited
730
730
  */
731
- export type Fixed = boolean & string;
731
+ export type Fixed = boolean;
732
732
  /**
733
733
  * The id of this node
734
734
  */
@@ -736,11 +736,11 @@ export type Id12 = string;
736
736
  /**
737
737
  * Allows for lines to be longer than expected and ignores the extra characters.
738
738
  */
739
- export type IgnoreExtraColumns = boolean & string;
739
+ export type IgnoreExtraColumns = boolean;
740
740
  /**
741
741
  * Whether the first line is ignored for delimited files (for the column headers). Is by default true.
742
742
  */
743
- export type IgnoreFirstRecord = boolean & string;
743
+ export type IgnoreFirstRecord = boolean;
744
744
  /**
745
745
  * References to a custom parser factory to lookup in the registry
746
746
  */
@@ -752,7 +752,7 @@ export type TextQualifier = string;
752
752
  /**
753
753
  * Whether to auto-discover Fory from the registry
754
754
  */
755
- export type AllowAutoWiredFory = boolean & string;
755
+ export type AllowAutoWiredFory = boolean;
756
756
  /**
757
757
  * The id of this node
758
758
  */
@@ -760,11 +760,11 @@ export type Id13 = string;
760
760
  /**
761
761
  * Whether to require register classes
762
762
  */
763
- export type RequireClassRegistration = boolean & string;
763
+ export type RequireClassRegistration = boolean;
764
764
  /**
765
765
  * Whether to use the threadsafe Fory
766
766
  */
767
- export type ThreadSafe = boolean & string;
767
+ export type ThreadSafe = boolean;
768
768
  /**
769
769
  * Class of the java type to use when unmarshalling
770
770
  */
@@ -772,11 +772,11 @@ export type UnmarshalType3 = string;
772
772
  /**
773
773
  * If false, every line of input is matched for pattern only once. Otherwise the line can be scanned multiple times when non-terminal pattern is used.
774
774
  */
775
- export type AllowMultipleMatchesPerLine = boolean & string;
775
+ export type AllowMultipleMatchesPerLine = boolean;
776
776
  /**
777
777
  * Turns on flattened mode. In flattened mode the exception is thrown when there are multiple pattern matches with same key.
778
778
  */
779
- export type Flattened = boolean & string;
779
+ export type Flattened = boolean;
780
780
  /**
781
781
  * The id of this node
782
782
  */
@@ -784,7 +784,7 @@ export type Id14 = string;
784
784
  /**
785
785
  * Whether to capture named expressions only or not (i.e. %{IP:ip} but not ${IP})
786
786
  */
787
- export type NamedOnly = boolean & string;
787
+ export type NamedOnly = boolean;
788
788
  /**
789
789
  * The grok pattern to match lines of input
790
790
  */
@@ -792,7 +792,7 @@ export type Pattern = string;
792
792
  /**
793
793
  * To turn on or off attribute mapping. When enabled then keys that start with _ or character will be mapped to an XML attribute, and vise versa. This rule is what Jackson and other XML or JSon libraries uses.
794
794
  */
795
- export type AttributeMapping = boolean & string;
795
+ export type AttributeMapping = boolean;
796
796
  /**
797
797
  * The id of this node
798
798
  */
@@ -812,7 +812,7 @@ export type Parser = string;
812
812
  /**
813
813
  * Whether to validate the HL7 message Is by default true.
814
814
  */
815
- export type Validate = boolean & string;
815
+ export type Validate = boolean;
816
816
  /**
817
817
  * The id of this node
818
818
  */
@@ -820,11 +820,11 @@ export type Id18 = string;
820
820
  /**
821
821
  * Whether to validate.
822
822
  */
823
- export type Validating = boolean & string;
823
+ export type Validating = boolean;
824
824
  /**
825
825
  * Whether to auto-discover com.solab.iso8583.MessageFactory from the registry
826
826
  */
827
- export type AllowAutoWiredMessageFormat = boolean & string;
827
+ export type AllowAutoWiredMessageFormat = boolean;
828
828
  /**
829
829
  * The j8583 configuration file to load from classpath
830
830
  */
@@ -840,11 +840,11 @@ export type IsoType = string;
840
840
  /**
841
841
  * Used for JMS users to allow the JMSType header from the JMS spec to specify a FQN classname to use to unmarshal to.
842
842
  */
843
- export type AllowJmsType2 = boolean & string;
843
+ export type AllowJmsType2 = boolean;
844
844
  /**
845
845
  * If enabled then Jackson is allowed to attempt to use the CamelJacksonUnmarshalType header during the unmarshalling. This should only be enabled when desired to be used.
846
846
  */
847
- export type AllowUnmarshallType2 = boolean & string;
847
+ export type AllowUnmarshallType2 = boolean;
848
848
  /**
849
849
  * Refers to a custom collection type to lookup in the registry to use. This option should rarely be used, but allows to use different collection types than java.util.Collection based as default.
850
850
  */
@@ -852,7 +852,7 @@ export type CollectionType2 = string;
852
852
  /**
853
853
  * Whether the data format should set the Content-Type header with the type from the data format. For example application/xml for data formats marshalling to XML, or application/json for data formats marshalling to JSON
854
854
  */
855
- export type ContentTypeHeader3 = boolean & string;
855
+ export type ContentTypeHeader3 = boolean;
856
856
  /**
857
857
  * Set of features to disable on the Jackson com.fasterxml.jackson.databind.ObjectMapper. The features should be a name that matches a enum from com.fasterxml.jackson.databind.SerializationFeature, com.fasterxml.jackson.databind.DeserializationFeature, or com.fasterxml.jackson.databind.MapperFeature Multiple features can be separated by comma
858
858
  */
@@ -864,7 +864,7 @@ export type EnableFeatures2 = string;
864
864
  /**
865
865
  * Whether to enable the JAXB annotations module when using jackson. When enabled then JAXB annotations can be used by Jackson.
866
866
  */
867
- export type EnableJaxbAnnotationModule = boolean & string;
867
+ export type EnableJaxbAnnotationModule = boolean;
868
868
  /**
869
869
  * The id of this node
870
870
  */
@@ -892,7 +892,7 @@ export type ModuleRefs1 = string;
892
892
  /**
893
893
  * To enable pretty printing output nicely formatted. Is by default false.
894
894
  */
895
- export type PrettyPrint3 = boolean & string;
895
+ export type PrettyPrint3 = boolean;
896
896
  /**
897
897
  * If set then Jackson will use the Timezone when marshalling/unmarshalling.
898
898
  */
@@ -904,7 +904,7 @@ export type UnmarshalType4 = string;
904
904
  /**
905
905
  * To unmarshal to a List of Map or a List of Pojo.
906
906
  */
907
- export type UseList2 = boolean & string;
907
+ export type UseList2 = boolean;
908
908
  /**
909
909
  * Lookup and use the existing XmlMapper with the given id.
910
910
  */
@@ -916,7 +916,7 @@ export type AccessExternalSchemaProtocols = string;
916
916
  /**
917
917
  * Whether the data format should set the Content-Type header with the type from the data format. For example application/xml for data formats marshalling to XML, or application/json for data formats marshalling to JSON
918
918
  */
919
- export type ContentTypeHeader4 = boolean & string;
919
+ export type ContentTypeHeader4 = boolean;
920
920
  /**
921
921
  * Package name where your JAXB classes are located.
922
922
  */
@@ -924,7 +924,7 @@ export type ContextPath = string;
924
924
  /**
925
925
  * This can be set to true to mark that the contextPath is referring to a classname and not a package name.
926
926
  */
927
- export type ContextPathIsClassName = boolean & string;
927
+ export type ContextPathIsClassName = boolean;
928
928
  /**
929
929
  * To overrule and use a specific encoding
930
930
  */
@@ -932,11 +932,11 @@ export type Encoding1 = string;
932
932
  /**
933
933
  * To ignore non xml characheters and replace them with an empty space.
934
934
  */
935
- export type FilterNonXmlChars = boolean & string;
935
+ export type FilterNonXmlChars = boolean;
936
936
  /**
937
937
  * To turn on marshalling XML fragment trees. By default JAXB looks for XmlRootElement annotation on given class to operate on whole XML tree. This is useful but not always - sometimes generated code does not have XmlRootElement annotation, sometimes you need unmarshall only part of tree. In that case you can use partial unmarshalling. To enable this behaviours you need set property partClass. Camel will pass this class to JAXB's unmarshaler.
938
938
  */
939
- export type Fragment = boolean & string;
939
+ export type Fragment = boolean;
940
940
  /**
941
941
  * The id of this node
942
942
  */
@@ -944,7 +944,7 @@ export type Id21 = string;
944
944
  /**
945
945
  * Whether to ignore JAXBElement elements - only needed to be set to false in very special use-cases.
946
946
  */
947
- export type IgnoreJAXBElement = boolean & string;
947
+ export type IgnoreJAXBElement = boolean;
948
948
  /**
949
949
  * Refers to a custom java.util.Map to lookup in the registry containing custom JAXB provider properties to be used with the JAXB marshaller.
950
950
  */
@@ -952,7 +952,7 @@ export type JaxbProviderProperties = string;
952
952
  /**
953
953
  * Whether marhsalling must be java objects with JAXB annotations. And if not then it fails. This option can be set to false to relax that, such as when the data is already in XML format.
954
954
  */
955
- export type MustBeJAXBElement = boolean & string;
955
+ export type MustBeJAXBElement = boolean;
956
956
  /**
957
957
  * When marshalling using JAXB or SOAP then the JAXB implementation will automatically assign namespace prefixes, such as ns2, ns3, ns4 etc. To control this mapping, Camel allows you to refer to a map which contains the desired mapping.
958
958
  */
@@ -964,7 +964,7 @@ export type NoNamespaceSchemaLocation = string;
964
964
  /**
965
965
  * Whether to allow using ObjectFactory classes to create the POJO classes during marshalling. This only applies to POJO classes that has not been annotated with JAXB and providing jaxb.index descriptor files.
966
966
  */
967
- export type ObjectFactory = boolean & string;
967
+ export type ObjectFactory = boolean;
968
968
  /**
969
969
  * Name of class used for fragment parsing. See more details at the fragment option.
970
970
  */
@@ -976,7 +976,7 @@ export type PartNamespace = string;
976
976
  /**
977
977
  * To enable pretty printing output nicely formatted. Is by default false.
978
978
  */
979
- export type PrettyPrint4 = boolean & string;
979
+ export type PrettyPrint4 = boolean;
980
980
  /**
981
981
  * To validate against an existing schema. Your can use the prefix classpath:, file: or http: to specify how the resource should be resolved. You can separate multiple schema files by using the ',' character.
982
982
  */
@@ -996,19 +996,19 @@ export type XmlStreamWriterWrapper = string;
996
996
  /**
997
997
  * Used for JMS users to allow the JMSType header from the JMS spec to specify a FQN classname to use to unmarshal to.
998
998
  */
999
- export type AllowJmsType3 = boolean & string;
999
+ export type AllowJmsType3 = boolean;
1000
1000
  /**
1001
1001
  * If enabled then Jackson is allowed to attempt to use the CamelJacksonUnmarshalType header during the unmarshalling. This should only be enabled when desired to be used.
1002
1002
  */
1003
- export type AllowUnmarshallType3 = boolean & string;
1003
+ export type AllowUnmarshallType3 = boolean;
1004
1004
  /**
1005
1005
  * If set to true then Jackson will look for an objectMapper to use from the registry
1006
1006
  */
1007
- export type AutoDiscoverObjectMapper1 = boolean & string;
1007
+ export type AutoDiscoverObjectMapper1 = boolean;
1008
1008
  /**
1009
1009
  * When not disabled, the SchemaResolver will be looked up into the registry
1010
1010
  */
1011
- export type AutoDiscoverSchemaResolver1 = boolean & string;
1011
+ export type AutoDiscoverSchemaResolver1 = boolean;
1012
1012
  /**
1013
1013
  * Refers to a custom collection type to lookup in the registry to use. This option should rarely be used, but allows using different collection types than java.util.Collection based as default.
1014
1014
  */
@@ -1016,11 +1016,11 @@ export type CollectionType3 = string;
1016
1016
  /**
1017
1017
  * Force generator that outputs JSON content to combine surrogate pairs (if any) into 4-byte characters. This should be preferred when using 4-byte characters such as Japanese.
1018
1018
  */
1019
- export type CombineUnicodeSurrogates = boolean & string;
1019
+ export type CombineUnicodeSurrogates = boolean;
1020
1020
  /**
1021
1021
  * Whether the data format should set the Content-Type header with the type from the data format. For example application/xml for data formats marshalling to XML, or application/json for data formats marshalling to JSON
1022
1022
  */
1023
- export type ContentTypeHeader5 = boolean & string;
1023
+ export type ContentTypeHeader5 = boolean;
1024
1024
  /**
1025
1025
  * To configure the date format while marshall or unmarshall Date fields in JSON using Gson
1026
1026
  */
@@ -1072,7 +1072,7 @@ export type ObjectMapper2 = string;
1072
1072
  /**
1073
1073
  * To enable pretty printing output nicely formatted. Is by default false.
1074
1074
  */
1075
- export type PrettyPrint5 = boolean & string;
1075
+ export type PrettyPrint5 = boolean;
1076
1076
  /**
1077
1077
  * Optional schema resolver used to lookup schemas for the data in transit.
1078
1078
  */
@@ -1088,11 +1088,11 @@ export type UnmarshalType5 = string;
1088
1088
  /**
1089
1089
  * Whether to lookup and use default Jackson ObjectMapper from the registry.
1090
1090
  */
1091
- export type UseDefaultObjectMapper2 = boolean & string;
1091
+ export type UseDefaultObjectMapper2 = boolean;
1092
1092
  /**
1093
1093
  * To unmarshal to a List of Map or a List of Pojo.
1094
1094
  */
1095
- export type UseList3 = boolean & string;
1095
+ export type UseList3 = boolean;
1096
1096
  /**
1097
1097
  * The classes to take into account for the marshalling. Multiple classes can be separated by comma.
1098
1098
  */
@@ -1112,15 +1112,15 @@ export type Id24 = string;
1112
1112
  /**
1113
1113
  * Enable encoding (compress) using multiple processing cores.
1114
1114
  */
1115
- export type UsingParallelCompression = boolean & string;
1115
+ export type UsingParallelCompression = boolean;
1116
1116
  /**
1117
1117
  * Defines whether the content of binary parts in the MIME multipart is binary (true) or Base-64 encoded (false) Default is false.
1118
1118
  */
1119
- export type BinaryContent = boolean & string;
1119
+ export type BinaryContent = boolean;
1120
1120
  /**
1121
1121
  * Defines whether the MIME-Multipart headers are part of the message body (true) or are set as Camel headers (false). Default is false.
1122
1122
  */
1123
- export type HeadersInline = boolean & string;
1123
+ export type HeadersInline = boolean;
1124
1124
  /**
1125
1125
  * The id of this node
1126
1126
  */
@@ -1136,7 +1136,7 @@ export type MultipartSubType = string;
1136
1136
  /**
1137
1137
  * Defines whether a message without attachment is also marshaled into a MIME Multipart (with only one body part). Default is false.
1138
1138
  */
1139
- export type MultipartWithoutAttachment = boolean & string;
1139
+ export type MultipartWithoutAttachment = boolean;
1140
1140
  /**
1141
1141
  * Parquet Avro serialization and de-serialization.
1142
1142
  */
@@ -1159,7 +1159,7 @@ export type Id26 = string;
1159
1159
  /**
1160
1160
  * Whether the unmarshalling should produce an iterator of records or read all the records at once.
1161
1161
  */
1162
- export type LazyLoad1 = boolean & string;
1162
+ export type LazyLoad1 = boolean;
1163
1163
  /**
1164
1164
  * Class to use when (un)marshalling. If omitted, parquet files are converted into Avro's GenericRecords for unmarshalling and input objects are assumed as GenericRecords for marshalling.
1165
1165
  */
@@ -1171,7 +1171,7 @@ export type Algorithm1 = number;
1171
1171
  /**
1172
1172
  * This option will cause PGP to base64 encode the encrypted text, making it available for copy/paste, etc.
1173
1173
  */
1174
- export type Armored = boolean & string;
1174
+ export type Armored = boolean;
1175
1175
  /**
1176
1176
  * Compression algorithm; possible values are defined in org.bouncycastle.bcpg.CompressionAlgorithmTags; for example 0 (= UNCOMPRESSED), 1 (= ZIP), 2 (= ZLIB), 3 (= BZIP2). Only relevant for encrypting.
1177
1177
  */
@@ -1187,7 +1187,7 @@ export type Id27 = string;
1187
1187
  /**
1188
1188
  * Adds an integrity check/sign into the encryption file. The default value is true.
1189
1189
  */
1190
- export type Integrity = boolean & string;
1190
+ export type Integrity = boolean;
1191
1191
  /**
1192
1192
  * Filename of the keyring; must be accessible as a classpath resource (but you can specify a location in the file system by using the file: prefix).
1193
1193
  */
@@ -1256,19 +1256,19 @@ export type Protobuf =
1256
1256
  /**
1257
1257
  * Used for JMS users to allow the JMSType header from the JMS spec to specify a FQN classname to use to unmarshal to.
1258
1258
  */
1259
- export type AllowJmsType4 = boolean & string;
1259
+ export type AllowJmsType4 = boolean;
1260
1260
  /**
1261
1261
  * If enabled then Jackson is allowed to attempt to use the CamelJacksonUnmarshalType header during the unmarshalling. This should only be enabled when desired to be used.
1262
1262
  */
1263
- export type AllowUnmarshallType4 = boolean & string;
1263
+ export type AllowUnmarshallType4 = boolean;
1264
1264
  /**
1265
1265
  * If set to true then Jackson will lookup for an objectMapper into the registry
1266
1266
  */
1267
- export type AutoDiscoverObjectMapper2 = boolean & string;
1267
+ export type AutoDiscoverObjectMapper2 = boolean;
1268
1268
  /**
1269
1269
  * When not disabled, the SchemaResolver will be looked up into the registry
1270
1270
  */
1271
- export type AutoDiscoverSchemaResolver2 = boolean & string;
1271
+ export type AutoDiscoverSchemaResolver2 = boolean;
1272
1272
  /**
1273
1273
  * Refers to a custom collection type to lookup in the registry to use. This option should rarely be used, but allows to use different collection types than java.util.Collection based as default.
1274
1274
  */
@@ -1280,7 +1280,7 @@ export type ContentTypeFormat = "native" | "json";
1280
1280
  /**
1281
1281
  * Whether the data format should set the Content-Type header with the type from the data format. For example application/xml for data formats marshalling to XML, or application/json for data formats marshalling to JSON
1282
1282
  */
1283
- export type ContentTypeHeader6 = boolean & string;
1283
+ export type ContentTypeHeader6 = boolean;
1284
1284
  /**
1285
1285
  * Set of features to disable on the Jackson com.fasterxml.jackson.databind.ObjectMapper. The features should be a name that matches a enum from com.fasterxml.jackson.databind.SerializationFeature, com.fasterxml.jackson.databind.DeserializationFeature, or com.fasterxml.jackson.databind.MapperFeature Multiple features can be separated by comma
1286
1286
  */
@@ -1336,11 +1336,11 @@ export type UnmarshalType7 = string;
1336
1336
  /**
1337
1337
  * Whether to lookup and use default Jackson ObjectMapper from the registry.
1338
1338
  */
1339
- export type UseDefaultObjectMapper3 = boolean & string;
1339
+ export type UseDefaultObjectMapper3 = boolean;
1340
1340
  /**
1341
1341
  * To unmarshal to a List of Map or a List of Pojo.
1342
1342
  */
1343
- export type UseList4 = boolean & string;
1343
+ export type UseList4 = boolean;
1344
1344
  /**
1345
1345
  * The id of this node
1346
1346
  */
@@ -1387,7 +1387,7 @@ export type Id31 = string;
1387
1387
  /**
1388
1388
  * Whether to ignore headers that was not unmarshalled. By default, headers which could not be unmarshalled is recorded in the org.apache.camel.dataformat.soap.UNMARSHALLED_HEADER_LIST header which allows to inspect any problematic header.
1389
1389
  */
1390
- export type IgnoreUnmarshalledHeaders = boolean & string;
1390
+ export type IgnoreUnmarshalledHeaders = boolean;
1391
1391
  /**
1392
1392
  * When marshalling using JAXB or SOAP then the JAXB implementation will automatic assign namespace prefixes, such as ns2, ns3, ns4 etc. To control this mapping, Camel allows you to refer to a map which contains the desired mapping.
1393
1393
  */
@@ -1416,7 +1416,7 @@ export type Id32 = string;
1416
1416
  /**
1417
1417
  * The flag indicating that messages must be marshalled in a JSON format.
1418
1418
  */
1419
- export type WriteInJson = boolean & string;
1419
+ export type WriteInJson = boolean;
1420
1420
  /**
1421
1421
  * The id of this node
1422
1422
  */
@@ -1436,7 +1436,7 @@ export type WriteConfig = string;
1436
1436
  /**
1437
1437
  * The flag indicating that messages must be marshalled in a JSON format.
1438
1438
  */
1439
- export type WriteInJson1 = boolean & string;
1439
+ export type WriteInJson1 = boolean;
1440
1440
  /**
1441
1441
  * The id of this node
1442
1442
  */
@@ -1444,7 +1444,7 @@ export type Id34 = string;
1444
1444
  /**
1445
1445
  * If the tar file has more than one entry, setting this option to true, allows to get the iterator even if the directory is empty
1446
1446
  */
1447
- export type AllowEmptyDirectory = boolean & string;
1447
+ export type AllowEmptyDirectory = boolean;
1448
1448
  /**
1449
1449
  * The id of this node
1450
1450
  */
@@ -1452,15 +1452,15 @@ export type Id35 = string;
1452
1452
  /**
1453
1453
  * Set the maximum decompressed size of a tar file (in bytes). The default value if not specified corresponds to 1 gigabyte. An IOException will be thrown if the decompressed size exceeds this amount. Set to -1 to disable setting a maximum decompressed size.
1454
1454
  */
1455
- export type MaxDecompressedSize = number & string;
1455
+ export type MaxDecompressedSize = number;
1456
1456
  /**
1457
1457
  * If the file name contains path elements, setting this option to true, allows the path to be maintained in the tar file.
1458
1458
  */
1459
- export type PreservePathElements = boolean & string;
1459
+ export type PreservePathElements = boolean;
1460
1460
  /**
1461
1461
  * If the tar file has more than one entry, the setting this option to true, allows working with the splitter EIP, to split the data using an iterator in a streaming mode.
1462
1462
  */
1463
- export type UsingIterator1 = boolean & string;
1463
+ export type UsingIterator1 = boolean;
1464
1464
  /**
1465
1465
  * Serialize and deserialize messages using Apache Thrift binary data format.
1466
1466
  */
@@ -1479,7 +1479,7 @@ export type ContentTypeFormat1 = "binary" | "json" | "sjson";
1479
1479
  /**
1480
1480
  * Whether the data format should set the Content-Type header with the type from the data format. For example application/xml for data formats marshalling to XML, or application/json for data formats marshalling to JSON
1481
1481
  */
1482
- export type ContentTypeHeader7 = boolean & string;
1482
+ export type ContentTypeHeader7 = boolean;
1483
1483
  /**
1484
1484
  * The id of this node
1485
1485
  */
@@ -1491,7 +1491,7 @@ export type InstanceClass1 = string;
1491
1491
  /**
1492
1492
  * Whether the unmarshalling should produce maps for the lines values instead of lists. It requires to have header (either defined or collected). The default value is false
1493
1493
  */
1494
- export type AsMap = boolean & string;
1494
+ export type AsMap = boolean;
1495
1495
  /**
1496
1496
  * The comment symbol. The default value is #
1497
1497
  */
@@ -1507,11 +1507,11 @@ export type EmptyValue = string;
1507
1507
  /**
1508
1508
  * Whether or not the header must be read in the first line of the test document. The default value is false
1509
1509
  */
1510
- export type HeaderExtractionEnabled = boolean & string;
1510
+ export type HeaderExtractionEnabled = boolean;
1511
1511
  /**
1512
1512
  * Whether or not the headers are disabled. When defined, this option explicitly sets the headers as null which indicates that there is no header. The default value is false
1513
1513
  */
1514
- export type HeadersDisabled = boolean & string;
1514
+ export type HeadersDisabled = boolean;
1515
1515
  /**
1516
1516
  * The id of this node
1517
1517
  */
@@ -1519,15 +1519,15 @@ export type Id37 = string;
1519
1519
  /**
1520
1520
  * Whether or not the leading white spaces must be ignored. The default value is true
1521
1521
  */
1522
- export type IgnoreLeadingWhitespaces = boolean & string;
1522
+ export type IgnoreLeadingWhitespaces = boolean;
1523
1523
  /**
1524
1524
  * Whether or not the trailing white spaces must be ignored. The default value is true
1525
1525
  */
1526
- export type IgnoreTrailingWhitespaces = boolean & string;
1526
+ export type IgnoreTrailingWhitespaces = boolean;
1527
1527
  /**
1528
1528
  * Whether the unmarshalling should produce an iterator that reads the lines on the fly or if all the lines must be read at once. The default value is false
1529
1529
  */
1530
- export type LazyLoad2 = boolean & string;
1530
+ export type LazyLoad2 = boolean;
1531
1531
  /**
1532
1532
  * The line separator of the files. The default value is to use the JVM platform line separator
1533
1533
  */
@@ -1551,7 +1551,7 @@ export type Quote1 = string;
1551
1551
  /**
1552
1552
  * Whether or not all values must be quoted when writing them.
1553
1553
  */
1554
- export type QuoteAllFields = boolean & string;
1554
+ export type QuoteAllFields = boolean;
1555
1555
  /**
1556
1556
  * The quote escape symbol
1557
1557
  */
@@ -1559,7 +1559,7 @@ export type QuoteEscape = string;
1559
1559
  /**
1560
1560
  * Whether or not the empty lines must be ignored. The default value is true
1561
1561
  */
1562
- export type SkipEmptyLines = boolean & string;
1562
+ export type SkipEmptyLines = boolean;
1563
1563
  /**
1564
1564
  * Header length
1565
1565
  */
@@ -1571,7 +1571,7 @@ export type Name1 = string;
1571
1571
  /**
1572
1572
  * Whether the unmarshalling should produce maps for the lines values instead of lists. It requires to have header (either defined or collected). The default value is false
1573
1573
  */
1574
- export type AsMap1 = boolean & string;
1574
+ export type AsMap1 = boolean;
1575
1575
  /**
1576
1576
  * The comment symbol. The default value is #
1577
1577
  */
@@ -1583,11 +1583,11 @@ export type EmptyValue1 = string;
1583
1583
  /**
1584
1584
  * Whether or not the header must be read in the first line of the test document. The default value is false
1585
1585
  */
1586
- export type HeaderExtractionEnabled1 = boolean & string;
1586
+ export type HeaderExtractionEnabled1 = boolean;
1587
1587
  /**
1588
1588
  * Whether or not the headers are disabled. When defined, this option explicitly sets the headers as null which indicates that there is no header. The default value is false
1589
1589
  */
1590
- export type HeadersDisabled1 = boolean & string;
1590
+ export type HeadersDisabled1 = boolean;
1591
1591
  /**
1592
1592
  * The id of this node
1593
1593
  */
@@ -1595,15 +1595,15 @@ export type Id38 = string;
1595
1595
  /**
1596
1596
  * Whether or not the leading white spaces must be ignored. The default value is true
1597
1597
  */
1598
- export type IgnoreLeadingWhitespaces1 = boolean & string;
1598
+ export type IgnoreLeadingWhitespaces1 = boolean;
1599
1599
  /**
1600
1600
  * Whether or not the trailing white spaces must be ignored. The default value is true
1601
1601
  */
1602
- export type IgnoreTrailingWhitespaces1 = boolean & string;
1602
+ export type IgnoreTrailingWhitespaces1 = boolean;
1603
1603
  /**
1604
1604
  * Whether the unmarshalling should produce an iterator that reads the lines on the fly or if all the lines must be read at once. The default value is false
1605
1605
  */
1606
- export type LazyLoad3 = boolean & string;
1606
+ export type LazyLoad3 = boolean;
1607
1607
  /**
1608
1608
  * The line separator of the files. The default value is to use the JVM platform line separator
1609
1609
  */
@@ -1627,19 +1627,19 @@ export type Padding = string;
1627
1627
  /**
1628
1628
  * Whether or not the record ends on new line. The default value is false
1629
1629
  */
1630
- export type RecordEndsOnNewline = boolean & string;
1630
+ export type RecordEndsOnNewline = boolean;
1631
1631
  /**
1632
1632
  * Whether or not the empty lines must be ignored. The default value is true
1633
1633
  */
1634
- export type SkipEmptyLines1 = boolean & string;
1634
+ export type SkipEmptyLines1 = boolean;
1635
1635
  /**
1636
1636
  * Whether or not the trailing characters until new line must be ignored. The default value is false
1637
1637
  */
1638
- export type SkipTrailingCharsUntilNewline = boolean & string;
1638
+ export type SkipTrailingCharsUntilNewline = boolean;
1639
1639
  /**
1640
1640
  * Whether the unmarshalling should produce maps for the lines values instead of lists. It requires to have header (either defined or collected). The default value is false
1641
1641
  */
1642
- export type AsMap2 = boolean & string;
1642
+ export type AsMap2 = boolean;
1643
1643
  /**
1644
1644
  * The comment symbol. The default value is #
1645
1645
  */
@@ -1655,11 +1655,11 @@ export type EscapeChar = string;
1655
1655
  /**
1656
1656
  * Whether or not the header must be read in the first line of the test document. The default value is false
1657
1657
  */
1658
- export type HeaderExtractionEnabled2 = boolean & string;
1658
+ export type HeaderExtractionEnabled2 = boolean;
1659
1659
  /**
1660
1660
  * Whether or not the headers are disabled. When defined, this option explicitly sets the headers as null which indicates that there is no header. The default value is false
1661
1661
  */
1662
- export type HeadersDisabled2 = boolean & string;
1662
+ export type HeadersDisabled2 = boolean;
1663
1663
  /**
1664
1664
  * The id of this node
1665
1665
  */
@@ -1667,15 +1667,15 @@ export type Id39 = string;
1667
1667
  /**
1668
1668
  * Whether or not the leading white spaces must be ignored. The default value is true
1669
1669
  */
1670
- export type IgnoreLeadingWhitespaces2 = boolean & string;
1670
+ export type IgnoreLeadingWhitespaces2 = boolean;
1671
1671
  /**
1672
1672
  * Whether or not the trailing white spaces must be ignored. The default value is true
1673
1673
  */
1674
- export type IgnoreTrailingWhitespaces2 = boolean & string;
1674
+ export type IgnoreTrailingWhitespaces2 = boolean;
1675
1675
  /**
1676
1676
  * Whether the unmarshalling should produce an iterator that reads the lines on the fly or if all the lines must be read at once. The default value is false
1677
1677
  */
1678
- export type LazyLoad4 = boolean & string;
1678
+ export type LazyLoad4 = boolean;
1679
1679
  /**
1680
1680
  * The line separator of the files. The default value is to use the JVM platform line separator
1681
1681
  */
@@ -1695,11 +1695,11 @@ export type NumberOfRecordsToRead2 = number;
1695
1695
  /**
1696
1696
  * Whether or not the empty lines must be ignored. The default value is true
1697
1697
  */
1698
- export type SkipEmptyLines2 = boolean & string;
1698
+ export type SkipEmptyLines2 = boolean;
1699
1699
  /**
1700
1700
  * Whether to add the public key used to encrypt the session key as a KeyValue in the EncryptedKey structure or not.
1701
1701
  */
1702
- export type AddKeyValueForEncryptedKey = boolean & string;
1702
+ export type AddKeyValueForEncryptedKey = boolean;
1703
1703
  /**
1704
1704
  * The digest algorithm to use with the RSA OAEP algorithm. The available choices are: XMLCipher.SHA1 XMLCipher.SHA256 XMLCipher.SHA512 The default value is XMLCipher.SHA1
1705
1705
  */
@@ -1747,7 +1747,7 @@ export type SecureTag = string;
1747
1747
  /**
1748
1748
  * A boolean value to specify whether the XML Element is to be encrypted or the contents of the XML Element. false = Element Level. true = Element Content Level.
1749
1749
  */
1750
- export type SecureTagContents = boolean & string;
1750
+ export type SecureTagContents = boolean;
1751
1751
  /**
1752
1752
  * The cipher algorithm to be used for encryption/decryption of the XML message content. The available choices are: XMLCipher.TRIPLEDES XMLCipher.AES_128 XMLCipher.AES_128_GCM XMLCipher.AES_192 XMLCipher.AES_192_GCM XMLCipher.AES_256 XMLCipher.AES_256_GCM XMLCipher.SEED_128 XMLCipher.CAMELLIA_128 XMLCipher.CAMELLIA_192 XMLCipher.CAMELLIA_256 The default value is XMLCipher.AES_256_GCM
1753
1753
  */
@@ -1766,11 +1766,11 @@ export type XmlCipherAlgorithm =
1766
1766
  /**
1767
1767
  * Allow any class to be un-marshaled
1768
1768
  */
1769
- export type AllowAnyType = boolean & string;
1769
+ export type AllowAnyType = boolean;
1770
1770
  /**
1771
1771
  * Set whether recursive keys are allowed.
1772
1772
  */
1773
- export type AllowRecursiveKeys = boolean & string;
1773
+ export type AllowRecursiveKeys = boolean;
1774
1774
  /**
1775
1775
  * BaseConstructor to construct incoming documents.
1776
1776
  */
@@ -1790,11 +1790,11 @@ export type Library3 = "SnakeYAML";
1790
1790
  /**
1791
1791
  * Set the maximum amount of aliases allowed for collections.
1792
1792
  */
1793
- export type MaxAliasesForCollections = number & string;
1793
+ export type MaxAliasesForCollections = number;
1794
1794
  /**
1795
1795
  * Force the emitter to produce a pretty YAML document when using the flow style.
1796
1796
  */
1797
- export type PrettyFlow = boolean & string;
1797
+ export type PrettyFlow = boolean;
1798
1798
  /**
1799
1799
  * Representer to emit outgoing objects.
1800
1800
  */
@@ -1814,7 +1814,7 @@ export type UnmarshalType8 = string;
1814
1814
  /**
1815
1815
  * Use ApplicationContextClassLoader as custom ClassLoader
1816
1816
  */
1817
- export type UseApplicationContextClassLoader = boolean & string;
1817
+ export type UseApplicationContextClassLoader = boolean;
1818
1818
  /**
1819
1819
  * To specify a specific compression between 0-9. -1 is default compression, 0 is no compression, and 9 is the best compression.
1820
1820
  */
@@ -1826,7 +1826,7 @@ export type Id42 = string;
1826
1826
  /**
1827
1827
  * If the zip file has more than one entry, setting this option to true, allows to get the iterator even if the directory is empty
1828
1828
  */
1829
- export type AllowEmptyDirectory1 = boolean & string;
1829
+ export type AllowEmptyDirectory1 = boolean;
1830
1830
  /**
1831
1831
  * The id of this node
1832
1832
  */
@@ -1834,15 +1834,15 @@ export type Id43 = string;
1834
1834
  /**
1835
1835
  * Set the maximum decompressed size of a zip file (in bytes). The default value if not specified corresponds to 1 gigabyte. An IOException will be thrown if the decompressed size exceeds this amount. Set to -1 to disable setting a maximum decompressed size.
1836
1836
  */
1837
- export type MaxDecompressedSize1 = number & string;
1837
+ export type MaxDecompressedSize1 = number;
1838
1838
  /**
1839
1839
  * If the file name contains path elements, setting this option to true, allows the path to be maintained in the zip file.
1840
1840
  */
1841
- export type PreservePathElements1 = boolean & string;
1841
+ export type PreservePathElements1 = boolean;
1842
1842
  /**
1843
1843
  * If the zip file has more than one entry, the setting this option to true, allows working with the splitter EIP, to split the data using an iterator in a streaming mode.
1844
1844
  */
1845
- export type UsingIterator2 = boolean & string;
1845
+ export type UsingIterator2 = boolean;
1846
1846
  export type DataFormatsDefinitionDeserializer = DataFormats[];
1847
1847
  export type ErrorHandlerDeserializer =
1848
1848
  | {
@@ -1875,7 +1875,7 @@ export type ErrorHandlerDeserializer =
1875
1875
  /**
1876
1876
  * Whether the dead letter channel should handle (and ignore) any new exception that may been thrown during sending the message to the dead letter endpoint. The default value is true which means any such kind of exception is handled and ignored. Set this to false to let the exception be propagated back on the org.apache.camel.Exchange . This can be used in situations where you use transactions, and want to use Camel's dead letter channel to deal with exceptions during routing, but if the dead letter channel itself fails because of a new exception being thrown, then by setting this to false the new exceptions is propagated back and set on the org.apache.camel.Exchange , which allows the transaction to detect the exception, and rollback.
1877
1877
  */
1878
- export type DeadLetterHandleNewException = boolean & string;
1878
+ export type DeadLetterHandleNewException = boolean;
1879
1879
  /**
1880
1880
  * The dead letter endpoint uri for the Dead Letter error handler.
1881
1881
  */
@@ -1915,19 +1915,19 @@ export type OnRedeliveryRef = string;
1915
1915
  /**
1916
1916
  * Controls whether to allow redelivery while stopping/shutting down a route that uses error handling.
1917
1917
  */
1918
- export type AllowRedeliveryWhileStopping = boolean & string;
1918
+ export type AllowRedeliveryWhileStopping = boolean;
1919
1919
  /**
1920
1920
  * Allow asynchronous delayed redelivery. The route, in particular the consumer's component, must support the Asynchronous Routing Engine (e.g. seda).
1921
1921
  */
1922
- export type AsyncDelayedRedelivery = boolean & string;
1922
+ export type AsyncDelayedRedelivery = boolean;
1923
1923
  /**
1924
1924
  * Sets the back off multiplier
1925
1925
  */
1926
- export type BackOffMultiplier = number & string;
1926
+ export type BackOffMultiplier = number;
1927
1927
  /**
1928
1928
  * Sets the collision avoidance factor
1929
1929
  */
1930
- export type CollisionAvoidanceFactor = number & string;
1930
+ export type CollisionAvoidanceFactor = number;
1931
1931
  /**
1932
1932
  * Sets the delay pattern with delay intervals.
1933
1933
  */
@@ -1935,7 +1935,7 @@ export type DelayPattern = string;
1935
1935
  /**
1936
1936
  * Disables redelivery (same as setting maximum redeliveries to 0)
1937
1937
  */
1938
- export type DisableRedelivery = boolean & string;
1938
+ export type DisableRedelivery = boolean;
1939
1939
  /**
1940
1940
  * Sets the reference of the instance of org.apache.camel.spi.ExchangeFormatter to generate the log message from exchange.
1941
1941
  */
@@ -1947,39 +1947,39 @@ export type Id45 = string;
1947
1947
  /**
1948
1948
  * Sets whether continued exceptions should be logged or not. Can be used to include or reduce verbose.
1949
1949
  */
1950
- export type LogContinued = boolean & string;
1950
+ export type LogContinued = boolean;
1951
1951
  /**
1952
1952
  * Sets whether exhausted exceptions should be logged or not. Can be used to include or reduce verbose.
1953
1953
  */
1954
- export type LogExhausted = boolean & string;
1954
+ export type LogExhausted = boolean;
1955
1955
  /**
1956
1956
  * Sets whether exhausted message body should be logged including message history or not (supports property placeholders). Can be used to include or reduce verbose. Requires logExhaustedMessageHistory to be enabled.
1957
1957
  */
1958
- export type LogExhaustedMessageBody = boolean & string;
1958
+ export type LogExhaustedMessageBody = boolean;
1959
1959
  /**
1960
1960
  * Sets whether exhausted exceptions should be logged including message history or not (supports property placeholders). Can be used to include or reduce verbose.
1961
1961
  */
1962
- export type LogExhaustedMessageHistory = boolean & string;
1962
+ export type LogExhaustedMessageHistory = boolean;
1963
1963
  /**
1964
1964
  * Sets whether handled exceptions should be logged or not. Can be used to include or reduce verbose.
1965
1965
  */
1966
- export type LogHandled = boolean & string;
1966
+ export type LogHandled = boolean;
1967
1967
  /**
1968
1968
  * Sets whether new exceptions should be logged or not. Can be used to include or reduce verbose. A new exception is an exception that was thrown while handling a previous exception.
1969
1969
  */
1970
- export type LogNewException = boolean & string;
1970
+ export type LogNewException = boolean;
1971
1971
  /**
1972
1972
  * Sets whether retry attempts should be logged or not. Can be used to include or reduce verbose.
1973
1973
  */
1974
- export type LogRetryAttempted = boolean & string;
1974
+ export type LogRetryAttempted = boolean;
1975
1975
  /**
1976
1976
  * Sets whether stack traces should be logged when an retry attempt failed. Can be used to include or reduce verbose.
1977
1977
  */
1978
- export type LogRetryStackTrace = boolean & string;
1978
+ export type LogRetryStackTrace = boolean;
1979
1979
  /**
1980
1980
  * Sets whether stack traces should be logged. Can be used to include or reduce verbose.
1981
1981
  */
1982
- export type LogStackTrace = boolean & string;
1982
+ export type LogStackTrace = boolean;
1983
1983
  /**
1984
1984
  * Sets the maximum redeliveries x = redeliver at most x times 0 = no redeliveries -1 = redeliver forever
1985
1985
  */
@@ -1999,7 +1999,7 @@ export type RetriesExhaustedLogLevel = "TRACE" | "DEBUG" | "INFO" | "WARN" | "ER
1999
1999
  /**
2000
2000
  * Sets the interval to use for logging retry attempts
2001
2001
  */
2002
- export type RetryAttemptedLogInterval = number & string;
2002
+ export type RetryAttemptedLogInterval = number;
2003
2003
  /**
2004
2004
  * Sets the logging level to use for logging retry attempts
2005
2005
  */
@@ -2007,11 +2007,11 @@ export type RetryAttemptedLogLevel = "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERRO
2007
2007
  /**
2008
2008
  * Turn on collision avoidance.
2009
2009
  */
2010
- export type UseCollisionAvoidance = boolean & string;
2010
+ export type UseCollisionAvoidance = boolean;
2011
2011
  /**
2012
2012
  * Turn on exponential back off
2013
2013
  */
2014
- export type UseExponentialBackOff = boolean & string;
2014
+ export type UseExponentialBackOff = boolean;
2015
2015
  /**
2016
2016
  * Sets a reference to a RedeliveryPolicy to be used for redelivery settings.
2017
2017
  */
@@ -2023,11 +2023,11 @@ export type RetryWhileRef = string;
2023
2023
  /**
2024
2024
  * Will use the original input org.apache.camel.Message body (original body only) when an org.apache.camel.Exchange is moved to the dead letter queue. Notice: this only applies when all redeliveries attempt have failed and the org.apache.camel.Exchange is doomed for failure. Instead of using the current inprogress org.apache.camel.Exchange IN message we use the original IN message instead. This allows you to store the original input in the dead letter queue instead of the inprogress snapshot of the IN message. For instance if you route transform the IN body during routing and then failed. With the original exchange store in the dead letter queue it might be easier to manually re submit the org.apache.camel.Exchange again as the IN message is the same as when Camel received it. So you should be able to send the org.apache.camel.Exchange to the same input. The difference between useOriginalMessage and useOriginalBody is that the former includes both the original body and headers, where as the latter only includes the original body. You can use the latter to enrich the message with custom headers and include the original message body. The former wont let you do this, as its using the original message body and headers as they are. You cannot enable both useOriginalMessage and useOriginalBody. The original input message is defensively copied, and the copied message body is converted to org.apache.camel.StreamCache if possible (stream caching is enabled, can be disabled globally or on the original route), to ensure the body can be read when the original message is being used later. If the body is converted to org.apache.camel.StreamCache then the message body on the current org.apache.camel.Exchange is replaced with the org.apache.camel.StreamCache body. If the body is not converted to org.apache.camel.StreamCache then the body will not be able to re-read when accessed later. Important: The original input means the input message that are bounded by the current org.apache.camel.spi.UnitOfWork . An unit of work typically spans one route, or multiple routes if they are connected using internal endpoints such as direct or seda. When messages is passed via external endpoints such as JMS or HTTP then the consumer will create a new unit of work, with the message it received as input as the original input. Also some EIP patterns such as splitter, multicast, will create a new unit of work boundary for the messages in their sub-route (eg the splitted message); however these EIPs have an option named shareUnitOfWork which allows to combine with the parent unit of work in regard to error handling and therefore use the parent original message. By default this feature is off.
2025
2025
  */
2026
- export type UseOriginalBody = boolean & string;
2026
+ export type UseOriginalBody = boolean;
2027
2027
  /**
2028
2028
  * Will use the original input org.apache.camel.Message (original body and headers) when an org.apache.camel.Exchange is moved to the dead letter queue. Notice: this only applies when all redeliveries attempt have failed and the org.apache.camel.Exchange is doomed for failure. Instead of using the current inprogress org.apache.camel.Exchange IN message we use the original IN message instead. This allows you to store the original input in the dead letter queue instead of the inprogress snapshot of the IN message. For instance if you route transform the IN body during routing and then failed. With the original exchange store in the dead letter queue it might be easier to manually re submit the org.apache.camel.Exchange again as the IN message is the same as when Camel received it. So you should be able to send the org.apache.camel.Exchange to the same input. The difference between useOriginalMessage and useOriginalBody is that the former includes both the original body and headers, where as the latter only includes the original body. You can use the latter to enrich the message with custom headers and include the original message body. The former wont let you do this, as its using the original message body and headers as they are. You cannot enable both useOriginalMessage and useOriginalBody. The original input message is defensively copied, and the copied message body is converted to org.apache.camel.StreamCache if possible (stream caching is enabled, can be disabled globally or on the original route), to ensure the body can be read when the original message is being used later. If the body is converted to org.apache.camel.StreamCache then the message body on the current org.apache.camel.Exchange is replaced with the org.apache.camel.StreamCache body. If the body is not converted to org.apache.camel.StreamCache then the body will not be able to re-read when accessed later. Important: The original input means the input message that are bounded by the current org.apache.camel.spi.UnitOfWork . An unit of work typically spans one route, or multiple routes if they are connected using internal endpoints such as direct or seda. When messages is passed via external endpoints such as JMS or HTTP then the consumer will create a new unit of work, with the message it received as input as the original input. Also some EIP patterns such as splitter, multicast, will create a new unit of work boundary for the messages in their sub-route (eg the splitted message); however these EIPs have an option named shareUnitOfWork which allows to combine with the parent unit of work in regard to error handling and therefore use the parent original message. By default this feature is off.
2029
2029
  */
2030
- export type UseOriginalMessage = boolean & string;
2030
+ export type UseOriginalMessage = boolean;
2031
2031
  /**
2032
2032
  * Sets a reference to a thread pool to be used by the error handler
2033
2033
  */
@@ -2071,11 +2071,11 @@ export type RetryWhileRef1 = string;
2071
2071
  /**
2072
2072
  * Will use the original input org.apache.camel.Message body (original body only) when an org.apache.camel.Exchange is moved to the dead letter queue. Notice: this only applies when all redeliveries attempt have failed and the org.apache.camel.Exchange is doomed for failure. Instead of using the current inprogress org.apache.camel.Exchange IN message we use the original IN message instead. This allows you to store the original input in the dead letter queue instead of the inprogress snapshot of the IN message. For instance if you route transform the IN body during routing and then failed. With the original exchange store in the dead letter queue it might be easier to manually re submit the org.apache.camel.Exchange again as the IN message is the same as when Camel received it. So you should be able to send the org.apache.camel.Exchange to the same input. The difference between useOriginalMessage and useOriginalBody is that the former includes both the original body and headers, where as the latter only includes the original body. You can use the latter to enrich the message with custom headers and include the original message body. The former wont let you do this, as its using the original message body and headers as they are. You cannot enable both useOriginalMessage and useOriginalBody. The original input message is defensively copied, and the copied message body is converted to org.apache.camel.StreamCache if possible (stream caching is enabled, can be disabled globally or on the original route), to ensure the body can be read when the original message is being used later. If the body is converted to org.apache.camel.StreamCache then the message body on the current org.apache.camel.Exchange is replaced with the org.apache.camel.StreamCache body. If the body is not converted to org.apache.camel.StreamCache then the body will not be able to re-read when accessed later. Important: The original input means the input message that are bounded by the current org.apache.camel.spi.UnitOfWork . An unit of work typically spans one route, or multiple routes if they are connected using internal endpoints such as direct or seda. When messages is passed via external endpoints such as JMS or HTTP then the consumer will create a new unit of work, with the message it received as input as the original input. Also some EIP patterns such as splitter, multicast, will create a new unit of work boundary for the messages in their sub-route (eg the splitted message); however these EIPs have an option named shareUnitOfWork which allows to combine with the parent unit of work in regard to error handling and therefore use the parent original message. By default this feature is off.
2073
2073
  */
2074
- export type UseOriginalBody1 = boolean & string;
2074
+ export type UseOriginalBody1 = boolean;
2075
2075
  /**
2076
2076
  * Will use the original input org.apache.camel.Message (original body and headers) when an org.apache.camel.Exchange is moved to the dead letter queue. Notice: this only applies when all redeliveries attempt have failed and the org.apache.camel.Exchange is doomed for failure. Instead of using the current inprogress org.apache.camel.Exchange IN message we use the original IN message instead. This allows you to store the original input in the dead letter queue instead of the inprogress snapshot of the IN message. For instance if you route transform the IN body during routing and then failed. With the original exchange store in the dead letter queue it might be easier to manually re submit the org.apache.camel.Exchange again as the IN message is the same as when Camel received it. So you should be able to send the org.apache.camel.Exchange to the same input. The difference between useOriginalMessage and useOriginalBody is that the former includes both the original body and headers, where as the latter only includes the original body. You can use the latter to enrich the message with custom headers and include the original message body. The former wont let you do this, as its using the original message body and headers as they are. You cannot enable both useOriginalMessage and useOriginalBody. The original input message is defensively copied, and the copied message body is converted to org.apache.camel.StreamCache if possible (stream caching is enabled, can be disabled globally or on the original route), to ensure the body can be read when the original message is being used later. If the body is converted to org.apache.camel.StreamCache then the message body on the current org.apache.camel.Exchange is replaced with the org.apache.camel.StreamCache body. If the body is not converted to org.apache.camel.StreamCache then the body will not be able to re-read when accessed later. Important: The original input means the input message that are bounded by the current org.apache.camel.spi.UnitOfWork . An unit of work typically spans one route, or multiple routes if they are connected using internal endpoints such as direct or seda. When messages is passed via external endpoints such as JMS or HTTP then the consumer will create a new unit of work, with the message it received as input as the original input. Also some EIP patterns such as splitter, multicast, will create a new unit of work boundary for the messages in their sub-route (eg the splitted message); however these EIPs have an option named shareUnitOfWork which allows to combine with the parent unit of work in regard to error handling and therefore use the parent original message. By default this feature is off.
2077
2077
  */
2078
- export type UseOriginalMessage1 = boolean & string;
2078
+ export type UseOriginalMessage1 = boolean;
2079
2079
  /**
2080
2080
  * Sets a reference to a thread pool to be used by the error handler
2081
2081
  */
@@ -2127,11 +2127,11 @@ export type TransactedPolicyRef = string;
2127
2127
  /**
2128
2128
  * Will use the original input org.apache.camel.Message body (original body only) when an org.apache.camel.Exchange is moved to the dead letter queue. Notice: this only applies when all redeliveries attempt have failed and the org.apache.camel.Exchange is doomed for failure. Instead of using the current inprogress org.apache.camel.Exchange IN message we use the original IN message instead. This allows you to store the original input in the dead letter queue instead of the inprogress snapshot of the IN message. For instance if you route transform the IN body during routing and then failed. With the original exchange store in the dead letter queue it might be easier to manually re submit the org.apache.camel.Exchange again as the IN message is the same as when Camel received it. So you should be able to send the org.apache.camel.Exchange to the same input. The difference between useOriginalMessage and useOriginalBody is that the former includes both the original body and headers, where as the latter only includes the original body. You can use the latter to enrich the message with custom headers and include the original message body. The former wont let you do this, as its using the original message body and headers as they are. You cannot enable both useOriginalMessage and useOriginalBody. The original input message is defensively copied, and the copied message body is converted to org.apache.camel.StreamCache if possible (stream caching is enabled, can be disabled globally or on the original route), to ensure the body can be read when the original message is being used later. If the body is converted to org.apache.camel.StreamCache then the message body on the current org.apache.camel.Exchange is replaced with the org.apache.camel.StreamCache body. If the body is not converted to org.apache.camel.StreamCache then the body will not be able to re-read when accessed later. Important: The original input means the input message that are bounded by the current org.apache.camel.spi.UnitOfWork . An unit of work typically spans one route, or multiple routes if they are connected using internal endpoints such as direct or seda. When messages is passed via external endpoints such as JMS or HTTP then the consumer will create a new unit of work, with the message it received as input as the original input. Also some EIP patterns such as splitter, multicast, will create a new unit of work boundary for the messages in their sub-route (eg the splitted message); however these EIPs have an option named shareUnitOfWork which allows to combine with the parent unit of work in regard to error handling and therefore use the parent original message. By default this feature is off.
2129
2129
  */
2130
- export type UseOriginalBody2 = boolean & string;
2130
+ export type UseOriginalBody2 = boolean;
2131
2131
  /**
2132
2132
  * Will use the original input org.apache.camel.Message (original body and headers) when an org.apache.camel.Exchange is moved to the dead letter queue. Notice: this only applies when all redeliveries attempt have failed and the org.apache.camel.Exchange is doomed for failure. Instead of using the current inprogress org.apache.camel.Exchange IN message we use the original IN message instead. This allows you to store the original input in the dead letter queue instead of the inprogress snapshot of the IN message. For instance if you route transform the IN body during routing and then failed. With the original exchange store in the dead letter queue it might be easier to manually re submit the org.apache.camel.Exchange again as the IN message is the same as when Camel received it. So you should be able to send the org.apache.camel.Exchange to the same input. The difference between useOriginalMessage and useOriginalBody is that the former includes both the original body and headers, where as the latter only includes the original body. You can use the latter to enrich the message with custom headers and include the original message body. The former wont let you do this, as its using the original message body and headers as they are. You cannot enable both useOriginalMessage and useOriginalBody. The original input message is defensively copied, and the copied message body is converted to org.apache.camel.StreamCache if possible (stream caching is enabled, can be disabled globally or on the original route), to ensure the body can be read when the original message is being used later. If the body is converted to org.apache.camel.StreamCache then the message body on the current org.apache.camel.Exchange is replaced with the org.apache.camel.StreamCache body. If the body is not converted to org.apache.camel.StreamCache then the body will not be able to re-read when accessed later. Important: The original input means the input message that are bounded by the current org.apache.camel.spi.UnitOfWork . An unit of work typically spans one route, or multiple routes if they are connected using internal endpoints such as direct or seda. When messages is passed via external endpoints such as JMS or HTTP then the consumer will create a new unit of work, with the message it received as input as the original input. Also some EIP patterns such as splitter, multicast, will create a new unit of work boundary for the messages in their sub-route (eg the splitted message); however these EIPs have an option named shareUnitOfWork which allows to combine with the parent unit of work in regard to error handling and therefore use the parent original message. By default this feature is off.
2133
2133
  */
2134
- export type UseOriginalMessage2 = boolean & string;
2134
+ export type UseOriginalMessage2 = boolean;
2135
2135
  /**
2136
2136
  * The id of this node
2137
2137
  */
@@ -2204,11 +2204,11 @@ export type TransactedPolicyRef1 = string;
2204
2204
  /**
2205
2205
  * Will use the original input org.apache.camel.Message body (original body only) when an org.apache.camel.Exchange is moved to the dead letter queue. Notice: this only applies when all redeliveries attempt have failed and the org.apache.camel.Exchange is doomed for failure. Instead of using the current inprogress org.apache.camel.Exchange IN message we use the original IN message instead. This allows you to store the original input in the dead letter queue instead of the inprogress snapshot of the IN message. For instance if you route transform the IN body during routing and then failed. With the original exchange store in the dead letter queue it might be easier to manually re submit the org.apache.camel.Exchange again as the IN message is the same as when Camel received it. So you should be able to send the org.apache.camel.Exchange to the same input. The difference between useOriginalMessage and useOriginalBody is that the former includes both the original body and headers, where as the latter only includes the original body. You can use the latter to enrich the message with custom headers and include the original message body. The former wont let you do this, as its using the original message body and headers as they are. You cannot enable both useOriginalMessage and useOriginalBody. The original input message is defensively copied, and the copied message body is converted to org.apache.camel.StreamCache if possible (stream caching is enabled, can be disabled globally or on the original route), to ensure the body can be read when the original message is being used later. If the body is converted to org.apache.camel.StreamCache then the message body on the current org.apache.camel.Exchange is replaced with the org.apache.camel.StreamCache body. If the body is not converted to org.apache.camel.StreamCache then the body will not be able to re-read when accessed later. Important: The original input means the input message that are bounded by the current org.apache.camel.spi.UnitOfWork . An unit of work typically spans one route, or multiple routes if they are connected using internal endpoints such as direct or seda. When messages is passed via external endpoints such as JMS or HTTP then the consumer will create a new unit of work, with the message it received as input as the original input. Also some EIP patterns such as splitter, multicast, will create a new unit of work boundary for the messages in their sub-route (eg the splitted message); however these EIPs have an option named shareUnitOfWork which allows to combine with the parent unit of work in regard to error handling and therefore use the parent original message. By default this feature is off.
2206
2206
  */
2207
- export type UseOriginalBody3 = boolean & string;
2207
+ export type UseOriginalBody3 = boolean;
2208
2208
  /**
2209
2209
  * Will use the original input org.apache.camel.Message (original body and headers) when an org.apache.camel.Exchange is moved to the dead letter queue. Notice: this only applies when all redeliveries attempt have failed and the org.apache.camel.Exchange is doomed for failure. Instead of using the current inprogress org.apache.camel.Exchange IN message we use the original IN message instead. This allows you to store the original input in the dead letter queue instead of the inprogress snapshot of the IN message. For instance if you route transform the IN body during routing and then failed. With the original exchange store in the dead letter queue it might be easier to manually re submit the org.apache.camel.Exchange again as the IN message is the same as when Camel received it. So you should be able to send the org.apache.camel.Exchange to the same input. The difference between useOriginalMessage and useOriginalBody is that the former includes both the original body and headers, where as the latter only includes the original body. You can use the latter to enrich the message with custom headers and include the original message body. The former wont let you do this, as its using the original message body and headers as they are. You cannot enable both useOriginalMessage and useOriginalBody. The original input message is defensively copied, and the copied message body is converted to org.apache.camel.StreamCache if possible (stream caching is enabled, can be disabled globally or on the original route), to ensure the body can be read when the original message is being used later. If the body is converted to org.apache.camel.StreamCache then the message body on the current org.apache.camel.Exchange is replaced with the org.apache.camel.StreamCache body. If the body is not converted to org.apache.camel.StreamCache then the body will not be able to re-read when accessed later. Important: The original input means the input message that are bounded by the current org.apache.camel.spi.UnitOfWork . An unit of work typically spans one route, or multiple routes if they are connected using internal endpoints such as direct or seda. When messages is passed via external endpoints such as JMS or HTTP then the consumer will create a new unit of work, with the message it received as input as the original input. Also some EIP patterns such as splitter, multicast, will create a new unit of work boundary for the messages in their sub-route (eg the splitted message); however these EIPs have an option named shareUnitOfWork which allows to combine with the parent unit of work in regard to error handling and therefore use the parent original message. By default this feature is off.
2210
2210
  */
2211
- export type UseOriginalMessage3 = boolean & string;
2211
+ export type UseOriginalMessage3 = boolean;
2212
2212
  /**
2213
2213
  * To use a org.apache.camel.processor.aggregate.AggregateController to allow external sources to control this aggregator.
2214
2214
  */
@@ -2224,7 +2224,7 @@ export type AggregationStrategy = string;
2224
2224
  /**
2225
2225
  * If this option is false then the aggregate method is not used for the very first aggregation. If this option is true then null values is used as the oldExchange (at the very first aggregation), when using beans as the AggregationStrategy.
2226
2226
  */
2227
- export type AggregationStrategyMethodAllowNull = boolean & string;
2227
+ export type AggregationStrategyMethodAllowNull = boolean;
2228
2228
  /**
2229
2229
  * This option can be used to explicit declare the method name to use, when using beans as the AggregationStrategy.
2230
2230
  */
@@ -2236,11 +2236,11 @@ export type CloseCorrelationKeyOnCompletion = number;
2236
2236
  /**
2237
2237
  * Indicates to wait to complete all current and partial (pending) aggregated exchanges when the context is stopped. This also means that we will wait for all pending exchanges which are stored in the aggregation repository to complete so the repository is empty before we can stop. You may want to enable this when using the memory based aggregation repository that is memory based only, and do not store data on disk. When this option is enabled, then the aggregator is waiting to complete all those exchanges before its stopped, when stopping CamelContext or the route using it.
2238
2238
  */
2239
- export type CompleteAllOnStop = boolean & string;
2239
+ export type CompleteAllOnStop = boolean;
2240
2240
  /**
2241
2241
  * Enables the batch completion mode where we aggregate from a org.apache.camel.BatchConsumer and aggregate the total number of exchanges the org.apache.camel.BatchConsumer has reported as total by checking the exchange property org.apache.camel.Exchange#BATCH_COMPLETE when its complete. This option cannot be used together with discardOnAggregationFailure.
2242
2242
  */
2243
- export type CompletionFromBatchConsumer = boolean & string;
2243
+ export type CompletionFromBatchConsumer = boolean;
2244
2244
  /**
2245
2245
  * A repeating period in millis by which the aggregator will complete all current aggregated exchanges. Camel has a background task which is triggered every period. You cannot use this option together with completionTimeout, only one of them can be used.
2246
2246
  */
@@ -2248,7 +2248,7 @@ export type CompletionInterval = string;
2248
2248
  /**
2249
2249
  * Enables completion on all previous groups when a new incoming correlation group. This can for example be used to complete groups with same correlation keys when they are in consecutive order. Notice when this is enabled then only 1 correlation group can be in progress as when a new correlation group starts, then the previous groups is forced completed.
2250
2250
  */
2251
- export type CompletionOnNewCorrelationGroup = boolean & string;
2251
+ export type CompletionOnNewCorrelationGroup = boolean;
2252
2252
  /**
2253
2253
  * A Predicate to indicate when an aggregated exchange is complete. If this is not specified and the AggregationStrategy object implements Predicate, the aggregationStrategy object will be used as the completionPredicate.
2254
2254
  */
@@ -2386,7 +2386,7 @@ export type ResultType = string;
2386
2386
  /**
2387
2387
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2388
2388
  */
2389
- export type Trim1 = boolean & string;
2389
+ export type Trim1 = boolean;
2390
2390
  /**
2391
2391
  * Evaluate a compiled simple expression.
2392
2392
  */
@@ -2413,7 +2413,7 @@ export type ResultType1 = string;
2413
2413
  /**
2414
2414
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2415
2415
  */
2416
- export type Trim2 = boolean & string;
2416
+ export type Trim2 = boolean;
2417
2417
  /**
2418
2418
  * To use DataSonnet scripts for message transformations.
2419
2419
  */
@@ -2455,7 +2455,7 @@ export type Source = string;
2455
2455
  /**
2456
2456
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2457
2457
  */
2458
- export type Trim3 = boolean & string;
2458
+ export type Trim3 = boolean;
2459
2459
  /**
2460
2460
  * Gets a property from the Exchange.
2461
2461
  */
@@ -2477,7 +2477,7 @@ export type Id54 = string;
2477
2477
  /**
2478
2478
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2479
2479
  */
2480
- export type Trim4 = boolean & string;
2480
+ export type Trim4 = boolean;
2481
2481
  /**
2482
2482
  * Evaluates a Groovy script.
2483
2483
  */
@@ -2504,7 +2504,7 @@ export type ResultType3 = string;
2504
2504
  /**
2505
2505
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2506
2506
  */
2507
- export type Trim5 = boolean & string;
2507
+ export type Trim5 = boolean;
2508
2508
  /**
2509
2509
  * Gets a header from the Exchange.
2510
2510
  */
@@ -2526,7 +2526,7 @@ export type Id56 = string;
2526
2526
  /**
2527
2527
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2528
2528
  */
2529
- export type Trim6 = boolean & string;
2529
+ export type Trim6 = boolean;
2530
2530
  /**
2531
2531
  * Get the value of a HL7 message field specified by terse location specification syntax.
2532
2532
  */
@@ -2558,7 +2558,7 @@ export type Source1 = string;
2558
2558
  /**
2559
2559
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2560
2560
  */
2561
- export type Trim7 = boolean & string;
2561
+ export type Trim7 = boolean;
2562
2562
  /**
2563
2563
  * Evaluates a Java (Java compiled once at runtime) expression.
2564
2564
  */
@@ -2583,7 +2583,7 @@ export type Id58 = string;
2583
2583
  /**
2584
2584
  * Whether the expression should be pre compiled once during initialization phase. If this is turned off, then the expression is reloaded and compiled on each evaluation.
2585
2585
  */
2586
- export type PreCompile = boolean & string;
2586
+ export type PreCompile = boolean;
2587
2587
  /**
2588
2588
  * Sets the class of the result type (type from output)
2589
2589
  */
@@ -2591,11 +2591,11 @@ export type ResultType5 = string;
2591
2591
  /**
2592
2592
  * Whether single quotes can be used as replacement for double quotes. This is convenient when you need to work with strings inside strings.
2593
2593
  */
2594
- export type SingleQuotes = boolean & string;
2594
+ export type SingleQuotes = boolean;
2595
2595
  /**
2596
2596
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2597
2597
  */
2598
- export type Trim8 = boolean & string;
2598
+ export type Trim8 = boolean;
2599
2599
  /**
2600
2600
  * Evaluates a jOOR (Java compiled once at runtime) expression.
2601
2601
  */
@@ -2620,7 +2620,7 @@ export type Id59 = string;
2620
2620
  /**
2621
2621
  * Whether the expression should be pre compiled once during initialization phase. If this is turned off, then the expression is reloaded and compiled on each evaluation.
2622
2622
  */
2623
- export type PreCompile1 = boolean & string;
2623
+ export type PreCompile1 = boolean;
2624
2624
  /**
2625
2625
  * Sets the class of the result type (type from output)
2626
2626
  */
@@ -2628,11 +2628,11 @@ export type ResultType6 = string;
2628
2628
  /**
2629
2629
  * Whether single quotes can be used as replacement for double quotes. This is convenient when you need to work with strings inside strings.
2630
2630
  */
2631
- export type SingleQuotes1 = boolean & string;
2631
+ export type SingleQuotes1 = boolean;
2632
2632
  /**
2633
2633
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2634
2634
  */
2635
- export type Trim9 = boolean & string;
2635
+ export type Trim9 = boolean;
2636
2636
  /**
2637
2637
  * Evaluates a JQ expression against a JSON message body.
2638
2638
  */
@@ -2664,7 +2664,7 @@ export type Source2 = string;
2664
2664
  /**
2665
2665
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2666
2666
  */
2667
- export type Trim10 = boolean & string;
2667
+ export type Trim10 = boolean;
2668
2668
  /**
2669
2669
  * Evaluates a JavaScript expression.
2670
2670
  */
@@ -2691,7 +2691,7 @@ export type ResultType8 = string;
2691
2691
  /**
2692
2692
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2693
2693
  */
2694
- export type Trim11 = boolean & string;
2694
+ export type Trim11 = boolean;
2695
2695
  /**
2696
2696
  * Evaluates a JSONPath expression against a JSON message body.
2697
2697
  */
@@ -2713,11 +2713,11 @@ export type JSONPath =
2713
2713
  /**
2714
2714
  * Whether to allow using the easy predicate parser to pre-parse predicates.
2715
2715
  */
2716
- export type AllowEasyPredicate = boolean & string;
2716
+ export type AllowEasyPredicate = boolean;
2717
2717
  /**
2718
2718
  * Whether to allow in inlined Simple exceptions in the JSONPath expression
2719
2719
  */
2720
- export type AllowSimple = boolean & string;
2720
+ export type AllowSimple = boolean;
2721
2721
  /**
2722
2722
  * The expression value in your chosen language syntax
2723
2723
  */
@@ -2746,19 +2746,19 @@ export type Source3 = string;
2746
2746
  /**
2747
2747
  * Whether to suppress exceptions such as PathNotFoundException.
2748
2748
  */
2749
- export type SuppressExceptions = boolean & string;
2749
+ export type SuppressExceptions = boolean;
2750
2750
  /**
2751
2751
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2752
2752
  */
2753
- export type Trim12 = boolean & string;
2753
+ export type Trim12 = boolean;
2754
2754
  /**
2755
2755
  * Whether to unpack a single element json-array into an object.
2756
2756
  */
2757
- export type UnpackArray = boolean & string;
2757
+ export type UnpackArray = boolean;
2758
2758
  /**
2759
2759
  * Whether to write the output of each row/element as a JSON String value instead of a Map/POJO value.
2760
2760
  */
2761
- export type WriteAsString = boolean & string;
2761
+ export type WriteAsString = boolean;
2762
2762
  /**
2763
2763
  * The expression value in your chosen language syntax
2764
2764
  */
@@ -2774,7 +2774,7 @@ export type Language1 = string;
2774
2774
  /**
2775
2775
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2776
2776
  */
2777
- export type Trim13 = boolean & string;
2777
+ export type Trim13 = boolean;
2778
2778
  /**
2779
2779
  * Calls a Java bean method.
2780
2780
  */
@@ -2817,11 +2817,11 @@ export type Scope = "Singleton" | "Request" | "Prototype";
2817
2817
  /**
2818
2818
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2819
2819
  */
2820
- export type Trim14 = boolean & string;
2820
+ export type Trim14 = boolean;
2821
2821
  /**
2822
2822
  * Whether to validate the bean has the configured method.
2823
2823
  */
2824
- export type Validate1 = boolean & string;
2824
+ export type Validate1 = boolean;
2825
2825
  /**
2826
2826
  * Evaluates a MVEL template.
2827
2827
  */
@@ -2848,7 +2848,7 @@ export type ResultType11 = string;
2848
2848
  /**
2849
2849
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2850
2850
  */
2851
- export type Trim15 = boolean & string;
2851
+ export type Trim15 = boolean;
2852
2852
  /**
2853
2853
  * Evaluates an OGNL expression (Apache Commons OGNL).
2854
2854
  */
@@ -2875,7 +2875,7 @@ export type ResultType12 = string;
2875
2875
  /**
2876
2876
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2877
2877
  */
2878
- export type Trim16 = boolean & string;
2878
+ export type Trim16 = boolean;
2879
2879
  /**
2880
2880
  * Evaluates a Python expression.
2881
2881
  */
@@ -2902,7 +2902,7 @@ export type ResultType13 = string;
2902
2902
  /**
2903
2903
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2904
2904
  */
2905
- export type Trim17 = boolean & string;
2905
+ export type Trim17 = boolean;
2906
2906
  /**
2907
2907
  * Uses an existing expression from the registry.
2908
2908
  */
@@ -2929,7 +2929,7 @@ export type ResultType14 = string;
2929
2929
  /**
2930
2930
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2931
2931
  */
2932
- export type Trim18 = boolean & string;
2932
+ export type Trim18 = boolean;
2933
2933
  /**
2934
2934
  * Evaluates a Camel simple expression.
2935
2935
  */
@@ -2956,7 +2956,7 @@ export type ResultType15 = string;
2956
2956
  /**
2957
2957
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2958
2958
  */
2959
- export type Trim19 = boolean & string;
2959
+ export type Trim19 = boolean;
2960
2960
  /**
2961
2961
  * Evaluates a Spring expression (SpEL).
2962
2962
  */
@@ -2983,7 +2983,7 @@ export type ResultType16 = string;
2983
2983
  /**
2984
2984
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
2985
2985
  */
2986
- export type Trim20 = boolean & string;
2986
+ export type Trim20 = boolean;
2987
2987
  /**
2988
2988
  * Tokenize text payloads using delimiter patterns.
2989
2989
  */
@@ -3023,7 +3023,7 @@ export type Id71 = string;
3023
3023
  /**
3024
3024
  * Whether to include the tokens in the parts when using pairs. When including tokens then the endToken property must also be configured (to use pair mode). The default value is false
3025
3025
  */
3026
- export type IncludeTokens = boolean & string;
3026
+ export type IncludeTokens = boolean;
3027
3027
  /**
3028
3028
  * To inherit namespaces from a root/parent tag name when using XML You can use simple language as the tag name to support dynamic names.
3029
3029
  */
@@ -3031,7 +3031,7 @@ export type InheritNamespaceTagName = string;
3031
3031
  /**
3032
3032
  * If the token is a regular expression pattern. The default value is false
3033
3033
  */
3034
- export type Regex = boolean & string;
3034
+ export type Regex = boolean;
3035
3035
  /**
3036
3036
  * Sets the class of the result type (type from output)
3037
3037
  */
@@ -3039,7 +3039,7 @@ export type ResultType17 = string;
3039
3039
  /**
3040
3040
  * To skip the very first element
3041
3041
  */
3042
- export type SkipFirst = boolean & string;
3042
+ export type SkipFirst = boolean;
3043
3043
  /**
3044
3044
  * Source to use, instead of message body. You can prefix with variable:, header:, or property: to specify kind of source. Otherwise, the source is assumed to be a variable. Use empty or null to use default source, which is the message body.
3045
3045
  */
@@ -3051,11 +3051,11 @@ export type Token = string;
3051
3051
  /**
3052
3052
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
3053
3053
  */
3054
- export type Trim21 = boolean & string;
3054
+ export type Trim21 = boolean;
3055
3055
  /**
3056
3056
  * Whether the input is XML messages. This option must be set to true if working with XML payloads.
3057
3057
  */
3058
- export type Xml = boolean & string;
3058
+ export type Xml = boolean;
3059
3059
  /**
3060
3060
  * Gets a variable
3061
3061
  */
@@ -3077,7 +3077,7 @@ export type Id72 = string;
3077
3077
  /**
3078
3078
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
3079
3079
  */
3080
- export type Trim22 = boolean & string;
3080
+ export type Trim22 = boolean;
3081
3081
  /**
3082
3082
  * Call a wasm (web assembly) function.
3083
3083
  */
@@ -3109,7 +3109,7 @@ export type ResultType18 = string;
3109
3109
  /**
3110
3110
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
3111
3111
  */
3112
- export type Trim23 = boolean & string;
3112
+ export type Trim23 = boolean;
3113
3113
  /**
3114
3114
  * Evaluates an XPath expression against an XML payload.
3115
3115
  */
@@ -3150,7 +3150,7 @@ export type Id74 = string;
3150
3150
  /**
3151
3151
  * Whether to log namespaces which can assist during troubleshooting
3152
3152
  */
3153
- export type LogNamespaces = boolean & string;
3153
+ export type LogNamespaces = boolean;
3154
3154
  /**
3155
3155
  * The name of the property
3156
3156
  */
@@ -3170,7 +3170,7 @@ export type ObjectModel = string;
3170
3170
  /**
3171
3171
  * Whether to enable pre-compiling the xpath expression during initialization phase. pre-compile is enabled by default. This can be used to turn off, for example in cases the compilation phase is desired at the starting phase, such as if the application is ahead of time compiled (for example with camel-quarkus) which would then load the xpath factory of the built operating system, and not a JVM runtime.
3172
3172
  */
3173
- export type PreCompile2 = boolean & string;
3173
+ export type PreCompile2 = boolean;
3174
3174
  /**
3175
3175
  * Sets the output type supported by XPath.
3176
3176
  */
@@ -3182,7 +3182,7 @@ export type ResultType19 = string;
3182
3182
  /**
3183
3183
  * Whether to use Saxon.
3184
3184
  */
3185
- export type Saxon = boolean & string;
3185
+ export type Saxon = boolean;
3186
3186
  /**
3187
3187
  * Source to use, instead of message body. You can prefix with variable:, header:, or property: to specify kind of source. Otherwise, the source is assumed to be a variable. Use empty or null to use default source, which is the message body.
3188
3188
  */
@@ -3190,11 +3190,11 @@ export type Source5 = string;
3190
3190
  /**
3191
3191
  * Whether to enable thread-safety for the returned result of the xpath expression. This applies to when using NODESET as the result type, and the returned set has multiple elements. In this situation there can be thread-safety issues if you process the NODESET concurrently such as from a Camel Splitter EIP in parallel processing mode. This option prevents concurrency issues by doing defensive copies of the nodes. It is recommended to turn this option on if you are using camel-saxon or Saxon in your application. Saxon has thread-safety issues which can be prevented by turning this option on.
3192
3192
  */
3193
- export type ThreadSafety = boolean & string;
3193
+ export type ThreadSafety = boolean;
3194
3194
  /**
3195
3195
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
3196
3196
  */
3197
- export type Trim24 = boolean & string;
3197
+ export type Trim24 = boolean;
3198
3198
  /**
3199
3199
  * Evaluates an XQuery expressions against an XML payload.
3200
3200
  */
@@ -3236,7 +3236,7 @@ export type Source6 = string;
3236
3236
  /**
3237
3237
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
3238
3238
  */
3239
- export type Trim25 = boolean & string;
3239
+ export type Trim25 = boolean;
3240
3240
  /**
3241
3241
  * Tokenize XML payloads.
3242
3242
  */
@@ -3283,7 +3283,7 @@ export type Source7 = string;
3283
3283
  /**
3284
3284
  * Whether to trim the value to remove leading and trailing whitespaces and line breaks
3285
3285
  */
3286
- export type Trim26 = boolean & string;
3286
+ export type Trim26 = boolean;
3287
3287
  /**
3288
3288
  * Number of messages aggregated before the aggregation is complete. This option can be set as either a fixed value or using an Expression which allows you to evaluate a size dynamically - will use Integer as result. If both are set Camel will fallback to use the fixed value if the Expression result was null or 0.
3289
3289
  */
@@ -3636,19 +3636,19 @@ export type Description = string;
3636
3636
  /**
3637
3637
  * Disables this EIP from the route.
3638
3638
  */
3639
- export type Disabled = boolean & string;
3639
+ export type Disabled = boolean;
3640
3640
  /**
3641
3641
  * Discards the aggregated message when aggregation failed (an exception was thrown from AggregationStrategy . This means the partly aggregated message is dropped and not sent out of the aggregator. This option cannot be used together with completionFromBatchConsumer.
3642
3642
  */
3643
- export type DiscardOnAggregationFailure = boolean & string;
3643
+ export type DiscardOnAggregationFailure = boolean;
3644
3644
  /**
3645
3645
  * Discards the aggregated message on completion timeout. This means on timeout the aggregated message is dropped and not sent out of the aggregator.
3646
3646
  */
3647
- export type DiscardOnCompletionTimeout = boolean & string;
3647
+ export type DiscardOnCompletionTimeout = boolean;
3648
3648
  /**
3649
3649
  * Use eager completion checking which means that the completionPredicate will use the incoming Exchange. As opposed to without eager completion checking the completionPredicate will use the aggregated Exchange.
3650
3650
  */
3651
- export type EagerCheckCompletion = boolean & string;
3651
+ export type EagerCheckCompletion = boolean;
3652
3652
  /**
3653
3653
  * If using parallelProcessing you can specify a custom thread pool to be used. In fact also if you are not using parallelProcessing this custom thread pool is used to send out aggregated exchanges as well.
3654
3654
  */
@@ -3656,7 +3656,7 @@ export type ExecutorService = string;
3656
3656
  /**
3657
3657
  * Indicates to complete all current aggregated exchanges when the context is stopped
3658
3658
  */
3659
- export type ForceCompletionOnStop = boolean & string;
3659
+ export type ForceCompletionOnStop = boolean;
3660
3660
  /**
3661
3661
  * Sets the id of this node
3662
3662
  */
@@ -3664,11 +3664,11 @@ export type Id77 = string;
3664
3664
  /**
3665
3665
  * If a correlation key cannot be successfully evaluated it will be ignored by logging a DEBUG and then just ignore the incoming Exchange.
3666
3666
  */
3667
- export type IgnoreInvalidCorrelationKeys = boolean & string;
3667
+ export type IgnoreInvalidCorrelationKeys = boolean;
3668
3668
  /**
3669
3669
  * Enable exponential backoff
3670
3670
  */
3671
- export type ExponentialBackOff = boolean & string;
3671
+ export type ExponentialBackOff = boolean;
3672
3672
  /**
3673
3673
  * Sets the maximum number of retries
3674
3674
  */
@@ -3680,7 +3680,7 @@ export type MaximumRetryDelay = string;
3680
3680
  /**
3681
3681
  * Enables random backoff
3682
3682
  */
3683
- export type RandomBackOff = boolean & string;
3683
+ export type RandomBackOff = boolean;
3684
3684
  /**
3685
3685
  * Sets the delay in millis between retries
3686
3686
  */
@@ -3688,11 +3688,11 @@ export type RetryDelay = string;
3688
3688
  /**
3689
3689
  * Turns on using optimistic locking, which requires the aggregationRepository being used, is supporting this by implementing org.apache.camel.spi.OptimisticLockingAggregationRepository .
3690
3690
  */
3691
- export type OptimisticLocking = boolean & string;
3691
+ export type OptimisticLocking = boolean;
3692
3692
  /**
3693
3693
  * When aggregated are completed they are being send out of the aggregator. This option indicates whether or not Camel should use a thread pool with multiple threads for concurrency. If no custom thread pool has been specified then Camel creates a default pool with 10 concurrent threads.
3694
3694
  */
3695
- export type ParallelProcessing = boolean & string;
3695
+ export type ParallelProcessing = boolean;
3696
3696
  /**
3697
3697
  * If using either of the completionTimeout, completionTimeoutExpression, or completionInterval options a background thread is created to check for the completion for every aggregator. Set this option to provide a custom thread pool to be used rather than creating a new thread for every aggregator.
3698
3698
  */
@@ -3722,7 +3722,7 @@ export type Description1 = string;
3722
3722
  /**
3723
3723
  * Disables this EIP from the route.
3724
3724
  */
3725
- export type Disabled1 = boolean & string;
3725
+ export type Disabled1 = boolean;
3726
3726
  /**
3727
3727
  * Sets the id of this node
3728
3728
  */
@@ -3746,7 +3746,7 @@ export type Description2 = string;
3746
3746
  /**
3747
3747
  * Disables this EIP from the route.
3748
3748
  */
3749
- export type Disabled2 = boolean & string;
3749
+ export type Disabled2 = boolean;
3750
3750
  /**
3751
3751
  * The exception(s) to catch.
3752
3752
  */
@@ -3984,7 +3984,7 @@ export type Description3 = string;
3984
3984
  /**
3985
3985
  * Disables this EIP from the route.
3986
3986
  */
3987
- export type Disabled3 = boolean & string;
3987
+ export type Disabled3 = boolean;
3988
3988
  /**
3989
3989
  * Sets the id of this node
3990
3990
  */
@@ -3996,7 +3996,7 @@ export type Description4 = string;
3996
3996
  /**
3997
3997
  * Disables this EIP from the route.
3998
3998
  */
3999
- export type Disabled4 = boolean & string;
3999
+ export type Disabled4 = boolean;
4000
4000
  /**
4001
4001
  * Sets the id of this node
4002
4002
  */
@@ -4004,7 +4004,7 @@ export type Id81 = string;
4004
4004
  /**
4005
4005
  * Indicates whether this Choice EIP is in precondition mode or not. If so its branches (when/otherwise) are evaluated during startup to keep at runtime only the branch that matched.
4006
4006
  */
4007
- export type Precondition = boolean & string;
4007
+ export type Precondition = boolean;
4008
4008
  /**
4009
4009
  * Triggers a route when the expression evaluates to true
4010
4010
  */
@@ -4140,19 +4140,19 @@ export type Description5 = string;
4140
4140
  /**
4141
4141
  * Disables this EIP from the route.
4142
4142
  */
4143
- export type Disabled5 = boolean & string;
4143
+ export type Disabled5 = boolean;
4144
4144
  /**
4145
4145
  * Whether bulkhead is enabled or not on the circuit breaker. Default is false.
4146
4146
  */
4147
- export type BulkheadEnabled = boolean & string;
4147
+ export type BulkheadEnabled = boolean;
4148
4148
  /**
4149
4149
  * Configures the max amount of concurrent calls the bulkhead will support.
4150
4150
  */
4151
- export type BulkheadMaxConcurrentCalls = number & string;
4151
+ export type BulkheadMaxConcurrentCalls = number;
4152
4152
  /**
4153
4153
  * Configures the task queue size for holding waiting tasks to be processed by the bulkhead.
4154
4154
  */
4155
- export type BulkheadWaitingTaskQueue = number & string;
4155
+ export type BulkheadWaitingTaskQueue = number;
4156
4156
  /**
4157
4157
  * Control how long the circuit breaker stays open. The default is 5 seconds.
4158
4158
  */
@@ -4160,7 +4160,7 @@ export type Delay = string;
4160
4160
  /**
4161
4161
  * Configures the failure rate threshold in percentage. If the failure rate is equal or greater than the threshold the CircuitBreaker transitions to open and starts short-circuiting calls. The threshold must be greater than 0 and not greater than 100. Default value is 50 percentage.
4162
4162
  */
4163
- export type FailureRatio = number & string;
4163
+ export type FailureRatio = number;
4164
4164
  /**
4165
4165
  * The id of this node
4166
4166
  */
@@ -4168,11 +4168,11 @@ export type Id82 = string;
4168
4168
  /**
4169
4169
  * Controls the size of the rolling window used when the circuit breaker is closed
4170
4170
  */
4171
- export type RequestVolumeThreshold = number & string;
4171
+ export type RequestVolumeThreshold = number;
4172
4172
  /**
4173
4173
  * Controls the number of trial calls which are allowed when the circuit breaker is half-open
4174
4174
  */
4175
- export type SuccessThreshold = number & string;
4175
+ export type SuccessThreshold = number;
4176
4176
  /**
4177
4177
  * References a custom thread pool to use when offloading a guarded action to another thread.
4178
4178
  */
@@ -4184,11 +4184,11 @@ export type TimeoutDuration = string;
4184
4184
  /**
4185
4185
  * Whether timeout is enabled or not on the circuit breaker. Default is false.
4186
4186
  */
4187
- export type TimeoutEnabled = boolean & string;
4187
+ export type TimeoutEnabled = boolean;
4188
4188
  /**
4189
4189
  * Configures the pool size of the thread pool when timeout is enabled. Default value is 10.
4190
4190
  */
4191
- export type TimeoutPoolSize = number & string;
4191
+ export type TimeoutPoolSize = number;
4192
4192
  /**
4193
4193
  * Refers to an existing io.smallrye.faulttolerance.api.TypedGuard instance to lookup and use from the registry. When using this, then any other TypedGuard circuit breaker options are not in use.
4194
4194
  */
@@ -4204,7 +4204,7 @@ export type Description6 = string;
4204
4204
  /**
4205
4205
  * Whether the fallback goes over the network. If the fallback will go over the network it is another possible point of failure. It is important to execute the fallback command on a separate thread-pool, otherwise if the main command were to become latent and fill the thread-pool this would prevent the fallback from running if the two commands share the same pool.
4206
4206
  */
4207
- export type FallbackViaNetwork = boolean & string;
4207
+ export type FallbackViaNetwork = boolean;
4208
4208
  /**
4209
4209
  * Sets the id of this node
4210
4210
  */
@@ -4212,19 +4212,19 @@ export type Id84 = string;
4212
4212
  /**
4213
4213
  * Enables automatic transition from OPEN to HALF_OPEN state once the waitDurationInOpenState has passed.
4214
4214
  */
4215
- export type AutomaticTransitionFromOpenToHalfOpenEnabled = boolean & string;
4215
+ export type AutomaticTransitionFromOpenToHalfOpenEnabled = boolean;
4216
4216
  /**
4217
4217
  * Whether bulkhead is enabled or not on the circuit breaker. Default is false.
4218
4218
  */
4219
- export type BulkheadEnabled1 = boolean & string;
4219
+ export type BulkheadEnabled1 = boolean;
4220
4220
  /**
4221
4221
  * Configures the max amount of concurrent calls the bulkhead will support.
4222
4222
  */
4223
- export type BulkheadMaxConcurrentCalls1 = number & string;
4223
+ export type BulkheadMaxConcurrentCalls1 = number;
4224
4224
  /**
4225
4225
  * Configures a maximum amount of time which the calling thread will wait to enter the bulkhead. If bulkhead has space available, entry is guaranteed and immediate. If bulkhead is full, calling threads will contest for space, if it becomes available. maxWaitDuration can be set to 0. Note: for threads running on an event-loop or equivalent (rx computation pool, etc), setting maxWaitDuration to 0 is highly recommended. Blocking an event-loop thread will most likely have a negative effect on application throughput.
4226
4226
  */
4227
- export type BulkheadMaxWaitDuration = number & string;
4227
+ export type BulkheadMaxWaitDuration = number;
4228
4228
  /**
4229
4229
  * Refers to an existing io.github.resilience4j.circuitbreaker.CircuitBreaker instance to lookup and use from the registry. When using this, then any other circuit breaker options are not in use.
4230
4230
  */
@@ -4236,7 +4236,7 @@ export type Config = string;
4236
4236
  /**
4237
4237
  * Configures the failure rate threshold in percentage. If the failure rate is equal or greater than the threshold the CircuitBreaker transitions to open and starts short-circuiting calls. The threshold must be greater than 0 and not greater than 100. Default value is 50 percentage.
4238
4238
  */
4239
- export type FailureRateThreshold = number & string;
4239
+ export type FailureRateThreshold = number;
4240
4240
  /**
4241
4241
  * The id of this node
4242
4242
  */
@@ -4248,15 +4248,15 @@ export type IgnoreException = string[];
4248
4248
  /**
4249
4249
  * Whether to enable collecting statistics using Micrometer. This requires adding camel-resilience4j-micrometer JAR to the classpath.
4250
4250
  */
4251
- export type MicrometerEnabled = boolean & string;
4251
+ export type MicrometerEnabled = boolean;
4252
4252
  /**
4253
4253
  * Configures the minimum number of calls which are required (per sliding window period) before the CircuitBreaker can calculate the error rate. For example, if minimumNumberOfCalls is 10, then at least 10 calls must be recorded, before the failure rate can be calculated. If only 9 calls have been recorded the CircuitBreaker will not transition to open even if all 9 calls have failed. Default minimumNumberOfCalls is 100
4254
4254
  */
4255
- export type MinimumNumberOfCalls = number & string;
4255
+ export type MinimumNumberOfCalls = number;
4256
4256
  /**
4257
4257
  * Configures the number of permitted calls when the CircuitBreaker is half open. The size must be greater than 0. Default size is 10.
4258
4258
  */
4259
- export type PermittedNumberOfCallsInHalfOpenState = number & string;
4259
+ export type PermittedNumberOfCallsInHalfOpenState = number;
4260
4260
  /**
4261
4261
  * Configure a list of exceptions that are recorded as a failure and thus increase the failure rate. Any exception matching or inheriting from one of the list counts as a failure, unless explicitly ignored via ignoreExceptions.
4262
4262
  */
@@ -4264,7 +4264,7 @@ export type RecordException = string[];
4264
4264
  /**
4265
4265
  * Configures the size of the sliding window which is used to record the outcome of calls when the CircuitBreaker is closed. slidingWindowSize configures the size of the sliding window. Sliding window can either be count-based or time-based. If slidingWindowType is COUNT_BASED, the last slidingWindowSize calls are recorded and aggregated. If slidingWindowType is TIME_BASED, the calls of the last slidingWindowSize seconds are recorded and aggregated. The slidingWindowSize must be greater than 0. The minimumNumberOfCalls must be greater than 0. If the slidingWindowType is COUNT_BASED, the minimumNumberOfCalls cannot be greater than slidingWindowSize . If the slidingWindowType is TIME_BASED, you can pick whatever you want. Default slidingWindowSize is 100.
4266
4266
  */
4267
- export type SlidingWindowSize = number & string;
4267
+ export type SlidingWindowSize = number;
4268
4268
  /**
4269
4269
  * Configures the type of the sliding window which is used to record the outcome of calls when the CircuitBreaker is closed. Sliding window can either be count-based or time-based. If slidingWindowType is COUNT_BASED, the last slidingWindowSize calls are recorded and aggregated. If slidingWindowType is TIME_BASED, the calls of the last slidingWindowSize seconds are recorded and aggregated. Default slidingWindowType is COUNT_BASED.
4270
4270
  */
@@ -4272,27 +4272,27 @@ export type SlidingWindowType = "TIME_BASED" | "COUNT_BASED";
4272
4272
  /**
4273
4273
  * Configures the duration threshold (seconds) above which calls are considered as slow and increase the slow calls percentage. Default value is 60 seconds.
4274
4274
  */
4275
- export type SlowCallDurationThreshold = number & string;
4275
+ export type SlowCallDurationThreshold = number;
4276
4276
  /**
4277
4277
  * Configures a threshold in percentage. The CircuitBreaker considers a call as slow when the call duration is greater than slowCallDurationThreshold Duration. When the percentage of slow calls is equal or greater the threshold, the CircuitBreaker transitions to open and starts short-circuiting calls. The threshold must be greater than 0 and not greater than 100. Default value is 100 percentage which means that all recorded calls must be slower than slowCallDurationThreshold.
4278
4278
  */
4279
- export type SlowCallRateThreshold = number & string;
4279
+ export type SlowCallRateThreshold = number;
4280
4280
  /**
4281
4281
  * Whether to throw io.github.resilience4j.circuitbreaker.CallNotPermittedException when the call is rejected due circuit breaker is half open (and was not attempted but rejected immediately) or open (always rejected). This option is only in use when there is NOT a fallback configured on the circuit breaker. When there is a fallback then the fallback is always executed and CallNotPermittedException is not thrown.
4282
4282
  */
4283
- export type ThrowExceptionWhenHalfOpenOrOpenState = boolean & string;
4283
+ export type ThrowExceptionWhenHalfOpenOrOpenState = boolean;
4284
4284
  /**
4285
4285
  * Configures whether cancel is called on the running future. Defaults to true.
4286
4286
  */
4287
- export type TimeoutCancelRunningFuture = boolean & string;
4287
+ export type TimeoutCancelRunningFuture = boolean;
4288
4288
  /**
4289
4289
  * Configures the thread execution timeout. Default value is 1 second.
4290
4290
  */
4291
- export type TimeoutDuration1 = number & string;
4291
+ export type TimeoutDuration1 = number;
4292
4292
  /**
4293
4293
  * Whether timeout is enabled or not on the circuit breaker. Default is false.
4294
4294
  */
4295
- export type TimeoutEnabled1 = boolean & string;
4295
+ export type TimeoutEnabled1 = boolean;
4296
4296
  /**
4297
4297
  * References to a custom thread pool to use when timeout is enabled (uses ForkJoinPool#commonPool() by default)
4298
4298
  */
@@ -4300,11 +4300,11 @@ export type TimeoutExecutorService = string;
4300
4300
  /**
4301
4301
  * Configures the wait duration (in seconds) which specifies how long the CircuitBreaker should stay open, before it switches to half open. Default value is 60 seconds.
4302
4302
  */
4303
- export type WaitDurationInOpenState = number & string;
4303
+ export type WaitDurationInOpenState = number;
4304
4304
  /**
4305
4305
  * Enables writable stack traces. When set to false, Exception.getStackTrace returns a zero length array. This may be used to reduce log spam when the circuit breaker is open as the cause of the exceptions is already known (the circuit breaker is short-circuiting calls).
4306
4306
  */
4307
- export type WritableStackTraceEnabled = boolean & string;
4307
+ export type WritableStackTraceEnabled = boolean;
4308
4308
  /**
4309
4309
  * To use a custom AggregationStrategy instead of the default implementation. Notice you cannot use both custom aggregation strategy and configure data at the same time.
4310
4310
  */
@@ -4320,7 +4320,7 @@ export type Description7 = string;
4320
4320
  /**
4321
4321
  * Disables this EIP from the route.
4322
4322
  */
4323
- export type Disabled6 = boolean & string;
4323
+ export type Disabled6 = boolean;
4324
4324
  /**
4325
4325
  * Specify a filter to control what data gets merged data back from the claim check repository. The following syntax is supported: body - to aggregate the message body attachments - to aggregate all the message attachments headers - to aggregate all the message headers header:pattern - to aggregate all the message headers that matches the pattern. The following pattern rules are applied in this order: exact match, returns true wildcard match (pattern ends with a and the name starts with the pattern), returns true regular expression match, returns true otherwise returns false You can specify multiple rules separated by comma. For example, the following includes the message body and all headers starting with foo: body,header:foo. The syntax supports the following prefixes which can be used to specify include,exclude, or remove - to include (which is the default mode) - - to exclude (exclude takes precedence over include) -- - to remove (remove takes precedence) For example to exclude a header name foo, and remove all headers starting with bar, -header:foo,--headers:bar Note you cannot have both include and exclude header:pattern at the same time.
4326
4326
  */
@@ -4361,7 +4361,7 @@ export type Description8 = string;
4361
4361
  /**
4362
4362
  * Disables this EIP from the route.
4363
4363
  */
4364
- export type Disabled7 = boolean & string;
4364
+ export type Disabled7 = boolean;
4365
4365
  /**
4366
4366
  * Sets the id of this node
4367
4367
  */
@@ -4369,7 +4369,7 @@ export type Id87 = string;
4369
4369
  /**
4370
4370
  * When mandatory then the conversion must return a value (cannot be null), if this is not possible then NoTypeConversionAvailableException is thrown. Setting this to false could mean conversion is not possible and the value is null.
4371
4371
  */
4372
- export type Mandatory = boolean & string;
4372
+ export type Mandatory = boolean;
4373
4373
  /**
4374
4374
  * The java type to convert to
4375
4375
  */
@@ -4385,7 +4385,7 @@ export type Description9 = string;
4385
4385
  /**
4386
4386
  * Disables this EIP from the route.
4387
4387
  */
4388
- export type Disabled8 = boolean & string;
4388
+ export type Disabled8 = boolean;
4389
4389
  /**
4390
4390
  * Sets the id of this node
4391
4391
  */
@@ -4393,7 +4393,7 @@ export type Id88 = string;
4393
4393
  /**
4394
4394
  * When mandatory then the conversion must return a value (cannot be null), if this is not possible then NoTypeConversionAvailableException is thrown. Setting this to false could mean conversion is not possible and the value is null.
4395
4395
  */
4396
- export type Mandatory1 = boolean & string;
4396
+ export type Mandatory1 = boolean;
4397
4397
  /**
4398
4398
  * Name of message header to convert its value The simple language can be used to define a dynamic evaluated header name to be used. Otherwise a constant name will be used.
4399
4399
  */
@@ -4417,7 +4417,7 @@ export type Description10 = string;
4417
4417
  /**
4418
4418
  * Disables this EIP from the route.
4419
4419
  */
4420
- export type Disabled9 = boolean & string;
4420
+ export type Disabled9 = boolean;
4421
4421
  /**
4422
4422
  * Sets the id of this node
4423
4423
  */
@@ -4425,7 +4425,7 @@ export type Id89 = string;
4425
4425
  /**
4426
4426
  * When mandatory then the conversion must return a value (cannot be null), if this is not possible then NoTypeConversionAvailableException is thrown. Setting this to false could mean conversion is not possible and the value is null.
4427
4427
  */
4428
- export type Mandatory2 = boolean & string;
4428
+ export type Mandatory2 = boolean;
4429
4429
  /**
4430
4430
  * Name of variable to convert its value The simple language can be used to define a dynamic evaluated header name to be used. Otherwise a constant name will be used.
4431
4431
  */
@@ -4925,7 +4925,7 @@ export type Description11 = string;
4925
4925
  /**
4926
4926
  * Disables this EIP from the route.
4927
4927
  */
4928
- export type Disabled10 = boolean & string;
4928
+ export type Disabled10 = boolean;
4929
4929
  /**
4930
4930
  * Sets the id of this node
4931
4931
  */
@@ -5273,7 +5273,7 @@ export type Id97 = string;
5273
5273
  /**
5274
5274
  * To enable round robin mode. By default the weighted distribution mode is used. The default value is false.
5275
5275
  */
5276
- export type RoundRobin1 = boolean & string;
5276
+ export type RoundRobin1 = boolean;
5277
5277
  /**
5278
5278
  * Used for printing custom messages to the logger.
5279
5279
  */
@@ -5297,7 +5297,7 @@ export type Description12 = string;
5297
5297
  /**
5298
5298
  * Disables this EIP from the route.
5299
5299
  */
5300
- export type Disabled11 = boolean & string;
5300
+ export type Disabled11 = boolean;
5301
5301
  /**
5302
5302
  * Sets the id of this node
5303
5303
  */
@@ -5667,7 +5667,7 @@ export type AggregationStrategy2 = string;
5667
5667
  /**
5668
5668
  * If this option is false then the aggregate method is not used if there was no data to enrich. If this option is true then null values is used as the oldExchange (when no data to enrich), when using POJOs as the AggregationStrategy
5669
5669
  */
5670
- export type AggregationStrategyMethodAllowNull1 = boolean & string;
5670
+ export type AggregationStrategyMethodAllowNull1 = boolean;
5671
5671
  /**
5672
5672
  * This option can be used to explicit declare the method name to use, when using POJOs as the AggregationStrategy.
5673
5673
  */
@@ -5679,7 +5679,7 @@ export type Description13 = string;
5679
5679
  /**
5680
5680
  * Disables this EIP from the route.
5681
5681
  */
5682
- export type Disabled12 = boolean & string;
5682
+ export type Disabled12 = boolean;
5683
5683
  /**
5684
5684
  * Refers to a custom Thread Pool to be used for parallel processing. Notice if you set this option, then parallel processing is automatic implied, and you do not have to enable that option as well.
5685
5685
  */
@@ -5695,27 +5695,27 @@ export type OnPrepare = string;
5695
5695
  /**
5696
5696
  * If enabled then the aggregate method on AggregationStrategy can be called concurrently. Notice that this would require the implementation of AggregationStrategy to be implemented as thread-safe. By default this is false meaning that Camel synchronizes the call to the aggregate method. Though in some use-cases this can be used to archive higher performance when the AggregationStrategy is implemented as thread-safe.
5697
5697
  */
5698
- export type ParallelAggregate = boolean & string;
5698
+ export type ParallelAggregate = boolean;
5699
5699
  /**
5700
5700
  * If enabled then sending messages to the multicasts occurs concurrently. Note the caller thread will still wait until all messages has been fully processed, before it continues. Its only the sending and processing the replies from the multicasts which happens concurrently. When parallel processing is enabled, then the Camel routing engin will continue processing using last used thread from the parallel thread pool. However, if you want to use the original thread that called the multicast, then make sure to enable the synchronous option as well. In parallel processing mode, you may want to also synchronous = true to force this EIP to process the sub-tasks using the upper bounds of the thread-pool. If using synchronous = false then Camel will allow its reactive routing engine to use as many threads as possible, which may be available due to sub-tasks using other thread-pools such as CompletableFuture.runAsync or others.
5701
5701
  */
5702
- export type ParallelProcessing1 = boolean & string;
5702
+ export type ParallelProcessing1 = boolean;
5703
5703
  /**
5704
5704
  * Shares the org.apache.camel.spi.UnitOfWork with the parent and each of the sub messages. Multicast will by default not share unit of work between the parent exchange and each multicasted exchange. This means each sub exchange has its own individual unit of work.
5705
5705
  */
5706
- export type ShareUnitOfWork = boolean & string;
5706
+ export type ShareUnitOfWork = boolean;
5707
5707
  /**
5708
5708
  * Will now stop further processing if an exception or failure occurred during processing of an org.apache.camel.Exchange and the caused exception will be thrown. Will also stop if processing the exchange failed (has a fault message) or an exception was thrown and handled by the error handler (such as using onException). In all situations the multicast will stop further processing. This is the same behavior as in pipeline, which is used by the routing engine. The default behavior is to not stop but continue processing till the end
5709
5709
  */
5710
- export type StopOnException = boolean & string;
5710
+ export type StopOnException = boolean;
5711
5711
  /**
5712
5712
  * If enabled then Camel will process replies out-of-order, eg in the order they come back. If disabled, Camel will process replies in the same order as defined by the multicast.
5713
5713
  */
5714
- export type Streaming = boolean & string;
5714
+ export type Streaming = boolean;
5715
5715
  /**
5716
5716
  * Sets whether synchronous processing should be strictly used. When enabled then the same thread is used to continue routing after the multicast is complete, even if parallel processing is enabled.
5717
5717
  */
5718
- export type Synchronous = boolean & string;
5718
+ export type Synchronous = boolean;
5719
5719
  /**
5720
5720
  * Sets a total timeout specified in millis, when using parallel processing. If the Multicast hasn't been able to send and process all replies within the given timeframe, then the timeout triggers and the Multicast breaks out and continues. Notice if you provide a TimeoutAwareAggregationStrategy then the timeout method is invoked before breaking out. If the timeout is reached with running tasks still remaining, certain tasks for which it is difficult for Camel to shut down in a graceful manner may continue to run. So use this option with a bit of care.
5721
5721
  */
@@ -5731,7 +5731,7 @@ export type Description14 = string;
5731
5731
  /**
5732
5732
  * Disables this EIP from the route.
5733
5733
  */
5734
- export type Disabled13 = boolean & string;
5734
+ export type Disabled13 = boolean;
5735
5735
  /**
5736
5736
  * Sets the id of this node
5737
5737
  */
@@ -5747,7 +5747,7 @@ export type Description15 = string;
5747
5747
  /**
5748
5748
  * Disables this EIP from the route.
5749
5749
  */
5750
- export type Disabled14 = boolean & string;
5750
+ export type Disabled14 = boolean;
5751
5751
  /**
5752
5752
  * Sets the id of this node
5753
5753
  */
@@ -5759,7 +5759,7 @@ export type Description16 = string;
5759
5759
  /**
5760
5760
  * Disables this EIP from the route.
5761
5761
  */
5762
- export type Disabled15 = boolean & string;
5762
+ export type Disabled15 = boolean;
5763
5763
  /**
5764
5764
  * Sets the id of this node
5765
5765
  */
@@ -5791,7 +5791,7 @@ export type Description17 = string;
5791
5791
  /**
5792
5792
  * Disables this EIP from the route.
5793
5793
  */
5794
- export type Disabled16 = boolean & string;
5794
+ export type Disabled16 = boolean;
5795
5795
  /**
5796
5796
  * Sets the id of this node
5797
5797
  */
@@ -5935,7 +5935,7 @@ export type Description18 = string;
5935
5935
  /**
5936
5936
  * Disables this EIP from the route.
5937
5937
  */
5938
- export type Disabled17 = boolean & string;
5938
+ export type Disabled17 = boolean;
5939
5939
  /**
5940
5940
  * Sets the id of this node
5941
5941
  */
@@ -6082,7 +6082,7 @@ export type Description19 = string;
6082
6082
  /**
6083
6083
  * Disables this EIP from the route.
6084
6084
  */
6085
- export type Disabled18 = boolean & string;
6085
+ export type Disabled18 = boolean;
6086
6086
  /**
6087
6087
  * Sets the id of this node
6088
6088
  */
@@ -6110,7 +6110,7 @@ export type Description20 = string;
6110
6110
  /**
6111
6111
  * Disables this EIP from the route.
6112
6112
  */
6113
- export type Disabled19 = boolean & string;
6113
+ export type Disabled19 = boolean;
6114
6114
  /**
6115
6115
  * Name or patter of headers to not remove. The pattern is matched in the following order: 1 = exact match 2 = wildcard (pattern ends with a and the name starts with the pattern) 3 = regular expression (all of above is case in-sensitive).
6116
6116
  */
@@ -6142,7 +6142,7 @@ export type Description21 = string;
6142
6142
  /**
6143
6143
  * Disables this EIP from the route.
6144
6144
  */
6145
- export type Disabled20 = boolean & string;
6145
+ export type Disabled20 = boolean;
6146
6146
  /**
6147
6147
  * Name or pattern of properties to not remove. The pattern is matched in the following order: 1 = exact match 2 = wildcard (pattern ends with a and the name starts with the pattern) 3 = regular expression (all of above is case in-sensitive).
6148
6148
  */
@@ -6173,7 +6173,7 @@ export type Description22 = string;
6173
6173
  /**
6174
6174
  * Disables this EIP from the route.
6175
6175
  */
6176
- export type Disabled21 = boolean & string;
6176
+ export type Disabled21 = boolean;
6177
6177
  /**
6178
6178
  * Sets the id of this node
6179
6179
  */
@@ -6200,7 +6200,7 @@ export type Description23 = string;
6200
6200
  /**
6201
6201
  * Disables this EIP from the route.
6202
6202
  */
6203
- export type Disabled22 = boolean & string;
6203
+ export type Disabled22 = boolean;
6204
6204
  /**
6205
6205
  * Sets the id of this node
6206
6206
  */
@@ -6347,11 +6347,11 @@ export type ExpressionDefinition11 =
6347
6347
  /**
6348
6348
  * Whether to allow duplicates.
6349
6349
  */
6350
- export type AllowDuplicates = boolean & string;
6350
+ export type AllowDuplicates = boolean;
6351
6351
  /**
6352
6352
  * Sets the size of the batch to be re-ordered. The default size is 100.
6353
6353
  */
6354
- export type BatchSize = number & string;
6354
+ export type BatchSize = number;
6355
6355
  /**
6356
6356
  * Sets the timeout for collecting elements to be re-ordered. The default timeout is 1000 msec.
6357
6357
  */
@@ -6359,15 +6359,15 @@ export type BatchTimeout = string;
6359
6359
  /**
6360
6360
  * Whether to ignore invalid exchanges
6361
6361
  */
6362
- export type IgnoreInvalidExchanges = boolean & string;
6362
+ export type IgnoreInvalidExchanges = boolean;
6363
6363
  /**
6364
6364
  * Whether to reverse the ordering.
6365
6365
  */
6366
- export type Reverse = boolean & string;
6366
+ export type Reverse = boolean;
6367
6367
  /**
6368
6368
  * Sets the capacity of the resequencer inbound queue.
6369
6369
  */
6370
- export type Capacity = number & string;
6370
+ export type Capacity = number;
6371
6371
  /**
6372
6372
  * To use a custom comparator as a org.apache.camel.processor.resequencer.ExpressionResultComparator type.
6373
6373
  */
@@ -6379,11 +6379,11 @@ export type DeliveryAttemptInterval = string;
6379
6379
  /**
6380
6380
  * Whether to ignore invalid exchanges
6381
6381
  */
6382
- export type IgnoreInvalidExchanges1 = boolean & string;
6382
+ export type IgnoreInvalidExchanges1 = boolean;
6383
6383
  /**
6384
6384
  * If true, throws an exception when messages older than the last delivered message are processed
6385
6385
  */
6386
- export type RejectOld = boolean & string;
6386
+ export type RejectOld = boolean;
6387
6387
  /**
6388
6388
  * Sets minimum time (milliseconds) to wait for missing elements (messages).
6389
6389
  */
@@ -6395,7 +6395,7 @@ export type Description24 = string;
6395
6395
  /**
6396
6396
  * Disables this EIP from the route.
6397
6397
  */
6398
- export type Disabled23 = boolean & string;
6398
+ export type Disabled23 = boolean;
6399
6399
  /**
6400
6400
  * Sets the id of this node
6401
6401
  */
@@ -6403,7 +6403,7 @@ export type Id111 = string;
6403
6403
  /**
6404
6404
  * Sets whether the offsets will be intermittently present or whether they must be present in every exchange
6405
6405
  */
6406
- export type Intermittent = boolean & string;
6406
+ export type Intermittent = boolean;
6407
6407
  /**
6408
6408
  * The logging level to use in case of failures.
6409
6409
  */
@@ -6432,7 +6432,7 @@ export type Description25 = string;
6432
6432
  /**
6433
6433
  * Disables this EIP from the route.
6434
6434
  */
6435
- export type Disabled24 = boolean & string;
6435
+ export type Disabled24 = boolean;
6436
6436
  /**
6437
6437
  * Sets the id of this node
6438
6438
  */
@@ -6440,11 +6440,11 @@ export type Id112 = string;
6440
6440
  /**
6441
6441
  * Mark the transaction for rollback only (cannot be overruled to commit)
6442
6442
  */
6443
- export type MarkRollbackOnly = boolean & string;
6443
+ export type MarkRollbackOnly = boolean;
6444
6444
  /**
6445
6445
  * Mark only last sub transaction for rollback only. When using sub transactions (if the transaction manager support this)
6446
6446
  */
6447
- export type MarkRollbackOnlyLast = boolean & string;
6447
+ export type MarkRollbackOnlyLast = boolean;
6448
6448
  /**
6449
6449
  * Message to use in rollback exception
6450
6450
  */
@@ -6611,7 +6611,7 @@ export type Description26 = string;
6611
6611
  /**
6612
6612
  * Disables this EIP from the route.
6613
6613
  */
6614
- export type Disabled25 = boolean & string;
6614
+ export type Disabled25 = boolean;
6615
6615
  /**
6616
6616
  * Sets the id of this node
6617
6617
  */
@@ -6771,7 +6771,7 @@ export type Description27 = string;
6771
6771
  /**
6772
6772
  * Disables this EIP from the route.
6773
6773
  */
6774
- export type Disabled26 = boolean & string;
6774
+ export type Disabled26 = boolean;
6775
6775
  /**
6776
6776
  * Sets the id of this node
6777
6777
  */
@@ -7042,7 +7042,7 @@ export type Description28 = string;
7042
7042
  /**
7043
7043
  * Disables this EIP from the route.
7044
7044
  */
7045
- export type Disabled27 = boolean & string;
7045
+ export type Disabled27 = boolean;
7046
7046
  /**
7047
7047
  * Sets the id of this node
7048
7048
  */
@@ -7178,7 +7178,7 @@ export type Description29 = string;
7178
7178
  /**
7179
7179
  * Disables this EIP from the route.
7180
7180
  */
7181
- export type Disabled28 = boolean & string;
7181
+ export type Disabled28 = boolean;
7182
7182
  /**
7183
7183
  * Contains the headers to be set
7184
7184
  */
@@ -7434,7 +7434,7 @@ export type Description30 = string;
7434
7434
  /**
7435
7435
  * Disables this EIP from the route.
7436
7436
  */
7437
- export type Disabled29 = boolean & string;
7437
+ export type Disabled29 = boolean;
7438
7438
  /**
7439
7439
  * Sets the id of this node
7440
7440
  */
@@ -7690,7 +7690,7 @@ export type Description31 = string;
7690
7690
  /**
7691
7691
  * Disables this EIP from the route.
7692
7692
  */
7693
- export type Disabled30 = boolean & string;
7693
+ export type Disabled30 = boolean;
7694
7694
  /**
7695
7695
  * Sets the id of this node
7696
7696
  */
@@ -7702,7 +7702,7 @@ export type Description32 = string;
7702
7702
  /**
7703
7703
  * Disables this EIP from the route.
7704
7704
  */
7705
- export type Disabled31 = boolean & string;
7705
+ export type Disabled31 = boolean;
7706
7706
  /**
7707
7707
  * Sets the id of this node
7708
7708
  */
@@ -7710,7 +7710,7 @@ export type Id119 = string;
7710
7710
  /**
7711
7711
  * Whether idle core threads are allowed to timeout and therefore can shrink the pool size below the core pool size Is by default false
7712
7712
  */
7713
- export type AllowCoreThreadTimeOut = boolean & string;
7713
+ export type AllowCoreThreadTimeOut = boolean;
7714
7714
  /**
7715
7715
  * Whether or not to use as caller runs as fallback when a task is rejected being added to the thread pool (when its full). This is only used as fallback if no rejectedPolicy has been configured, or the thread pool has no configured rejection handler. Is by default true
7716
7716
  */
@@ -7722,7 +7722,7 @@ export type Description33 = string;
7722
7722
  /**
7723
7723
  * Disables this EIP from the route.
7724
7724
  */
7725
- export type Disabled32 = boolean & string;
7725
+ export type Disabled32 = boolean;
7726
7726
  /**
7727
7727
  * To use a custom thread pool
7728
7728
  */
@@ -7886,7 +7886,7 @@ export type Description34 = string;
7886
7886
  /**
7887
7887
  * Disables this EIP from the route.
7888
7888
  */
7889
- export type Disabled33 = boolean & string;
7889
+ export type Disabled33 = boolean;
7890
7890
  /**
7891
7891
  * The class of the exception to create using the message.
7892
7892
  */
@@ -7927,7 +7927,7 @@ export type Description35 = string;
7927
7927
  /**
7928
7928
  * Disables this EIP from the route.
7929
7929
  */
7930
- export type Disabled34 = boolean & string;
7930
+ export type Disabled34 = boolean;
7931
7931
  /**
7932
7932
  * Sets the id of this node
7933
7933
  */
@@ -7972,11 +7972,11 @@ export type ToD =
7972
7972
  /**
7973
7973
  * Whether to allow components to optimise toD if they are org.apache.camel.spi.SendDynamicAware .
7974
7974
  */
7975
- export type AllowOptimisedComponents = boolean & string;
7975
+ export type AllowOptimisedComponents = boolean;
7976
7976
  /**
7977
7977
  * Whether to auto startup components when toD is starting up.
7978
7978
  */
7979
- export type AutoStartComponents = boolean & string;
7979
+ export type AutoStartComponents = boolean;
7980
7980
  /**
7981
7981
  * Sets the maximum size used by the org.apache.camel.spi.ProducerCache which is used to cache and reuse producers when using this recipient list, when uris are reused. Beware that when using dynamic endpoints then it affects how well the cache can be utilized. If each dynamic endpoint is unique then its best to turn off caching by setting this to -1, which allows Camel to not cache both the producers and endpoints; they are regarded as prototype scoped and will be stopped and discarded after use. This reduces memory usage as otherwise producers/endpoints are stored in memory in the caches. However if there are a high degree of dynamic endpoints that have been used before, then it can benefit to use the cache to reuse both producers and endpoints and therefore the cache size can be set accordingly or rely on the default size (1000). If there is a mix of unique and used before dynamic endpoints, then setting a reasonable cache size can help reduce memory usage to avoid storing too many non frequent used producers.
7982
7982
  */
@@ -7988,7 +7988,7 @@ export type Description36 = string;
7988
7988
  /**
7989
7989
  * Disables this EIP from the route.
7990
7990
  */
7991
- export type Disabled35 = boolean & string;
7991
+ export type Disabled35 = boolean;
7992
7992
  /**
7993
7993
  * Sets the id of this node
7994
7994
  */
@@ -7996,7 +7996,7 @@ export type Id123 = string;
7996
7996
  /**
7997
7997
  * Whether to ignore invalid endpoint URIs and skip sending the message.
7998
7998
  */
7999
- export type IgnoreInvalidEndpoint = boolean & string;
7999
+ export type IgnoreInvalidEndpoint = boolean;
8000
8000
  /**
8001
8001
  * Sets the optional ExchangePattern used to invoke this endpoint
8002
8002
  */
@@ -8147,7 +8147,7 @@ export type Description37 = string;
8147
8147
  /**
8148
8148
  * Disables this EIP from the route.
8149
8149
  */
8150
- export type Disabled36 = boolean & string;
8150
+ export type Disabled36 = boolean;
8151
8151
  /**
8152
8152
  * Sets the id of this node
8153
8153
  */
@@ -8283,7 +8283,7 @@ export type Description38 = string;
8283
8283
  /**
8284
8284
  * Disables this EIP from the route.
8285
8285
  */
8286
- export type Disabled37 = boolean & string;
8286
+ export type Disabled37 = boolean;
8287
8287
  /**
8288
8288
  * Catches exceptions as part of a try, catch, finally block
8289
8289
  */
@@ -8602,11 +8602,11 @@ export type ExpressionDefinition23 =
8602
8602
  /**
8603
8603
  * Whether to allow components to optimise toD if they are org.apache.camel.spi.SendDynamicAware .
8604
8604
  */
8605
- export type AllowOptimisedComponents1 = boolean & string;
8605
+ export type AllowOptimisedComponents1 = boolean;
8606
8606
  /**
8607
8607
  * Whether to auto startup components when toD is starting up.
8608
8608
  */
8609
- export type AutoStartComponents1 = boolean & string;
8609
+ export type AutoStartComponents1 = boolean;
8610
8610
  /**
8611
8611
  * Sets the maximum size used by the org.apache.camel.spi.ProducerCache which is used to cache and reuse producers when using this recipient list, when uris are reused. Beware that when using dynamic endpoints then it affects how well the cache can be utilized. If each dynamic endpoint is unique then its best to turn off caching by setting this to -1, which allows Camel to not cache both the producers and endpoints; they are regarded as prototype scoped and will be stopped and discarded after use. This reduces memory usage as otherwise producers/endpoints are stored in memory in the caches. However if there are a high degree of dynamic endpoints that have been used before, then it can benefit to use the cache to reuse both producers and endpoints and therefore the cache size can be set accordingly or rely on the default size (1000). If there is a mix of unique and used before dynamic endpoints, then setting a reasonable cache size can help reduce memory usage to avoid storing too many non frequent used producers.
8612
8612
  */
@@ -8614,7 +8614,7 @@ export type CacheSize1 = number;
8614
8614
  /**
8615
8615
  * Uses a copy of the original exchange
8616
8616
  */
8617
- export type Copy = boolean & string;
8617
+ export type Copy = boolean;
8618
8618
  /**
8619
8619
  * Sets the description of this node
8620
8620
  */
@@ -8622,11 +8622,11 @@ export type Description39 = string;
8622
8622
  /**
8623
8623
  * Disables this EIP from the route.
8624
8624
  */
8625
- export type Disabled38 = boolean & string;
8625
+ export type Disabled38 = boolean;
8626
8626
  /**
8627
8627
  * Whether the uri is dynamic or static. If the uri is dynamic then the simple language is used to evaluate a dynamic uri to use as the wire-tap destination, for each incoming message. This works similar to how the toD EIP pattern works. If static then the uri is used as-is as the wire-tap destination.
8628
8628
  */
8629
- export type DynamicUri = boolean & string;
8629
+ export type DynamicUri = boolean;
8630
8630
  /**
8631
8631
  * Uses a custom thread pool
8632
8632
  */
@@ -8638,7 +8638,7 @@ export type Id131 = string;
8638
8638
  /**
8639
8639
  * Whether to ignore invalid endpoint URIs and skip sending the message.
8640
8640
  */
8641
- export type IgnoreInvalidEndpoint1 = boolean & string;
8641
+ export type IgnoreInvalidEndpoint1 = boolean;
8642
8642
  /**
8643
8643
  * Uses the Processor when preparing the org.apache.camel.Exchange to be sent. This can be used to deep-clone messages that should be sent, or any custom logic needed before the exchange is sent.
8644
8644
  */
@@ -8823,7 +8823,7 @@ export type AclToken = string;
8823
8823
  /**
8824
8824
  * The seconds to wait for a watch event, default 10 seconds
8825
8825
  */
8826
- export type BlockSeconds = number & string;
8826
+ export type BlockSeconds = number;
8827
8827
  /**
8828
8828
  * Connect timeout for OkHttpClient
8829
8829
  */
@@ -8959,7 +8959,7 @@ export type Properties8 = Property[];
8959
8959
  /**
8960
8960
  * Sets whether to turn on trust certificate check when using client lookup
8961
8961
  */
8962
- export type TrustCerts = boolean & string;
8962
+ export type TrustCerts = boolean;
8963
8963
  /**
8964
8964
  * Sets the username for authentication when using client lookup
8965
8965
  */
@@ -9051,7 +9051,7 @@ export type Description40 = string;
9051
9051
  /**
9052
9052
  * Disables this EIP from the route.
9053
9053
  */
9054
- export type Disabled39 = boolean & string;
9054
+ export type Disabled39 = boolean;
9055
9055
  /**
9056
9056
  * Sets the id of this node
9057
9057
  */
@@ -9088,7 +9088,7 @@ export type Description41 = string;
9088
9088
  /**
9089
9089
  * Disables this EIP from the route.
9090
9090
  */
9091
- export type Disabled40 = boolean & string;
9091
+ export type Disabled40 = boolean;
9092
9092
  /**
9093
9093
  * Sets the id of this node
9094
9094
  */
@@ -9135,7 +9135,7 @@ export type Description42 = string;
9135
9135
  /**
9136
9136
  * Disables this EIP from the route.
9137
9137
  */
9138
- export type Disabled41 = boolean & string;
9138
+ export type Disabled41 = boolean;
9139
9139
  /**
9140
9140
  * Sets the id of this node
9141
9141
  */
@@ -9167,7 +9167,7 @@ export type Description43 = string;
9167
9167
  /**
9168
9168
  * Disables this EIP from the route.
9169
9169
  */
9170
- export type Disabled42 = boolean & string;
9170
+ export type Disabled42 = boolean;
9171
9171
  /**
9172
9172
  * To use a custom Thread Pool to be used for parallel processing. Notice if you set this option, then parallel processing is automatic implied, and you do not have to enable that option as well.
9173
9173
  */
@@ -9183,11 +9183,11 @@ export type Mode1 = "AfterConsumer" | "BeforeConsumer";
9183
9183
  /**
9184
9184
  * Will only synchronize when the org.apache.camel.Exchange completed successfully (no errors).
9185
9185
  */
9186
- export type OnCompleteOnly = boolean & string;
9186
+ export type OnCompleteOnly = boolean;
9187
9187
  /**
9188
9188
  * Will only synchronize when the org.apache.camel.Exchange ended with failure (exception or FAULT message).
9189
9189
  */
9190
- export type OnFailureOnly = boolean & string;
9190
+ export type OnFailureOnly = boolean;
9191
9191
  /**
9192
9192
  * To use an expression to only trigger routing this completion steps in specific situations
9193
9193
  */
@@ -9203,11 +9203,11 @@ export type OnWhen4 =
9203
9203
  /**
9204
9204
  * If enabled then the on completion process will run asynchronously by a separate thread from a thread pool. By default this is false, meaning the on completion process will run synchronously using the same caller thread as from the route.
9205
9205
  */
9206
- export type ParallelProcessing2 = boolean & string;
9206
+ export type ParallelProcessing2 = boolean;
9207
9207
  /**
9208
9208
  * Will use the original input message body when an org.apache.camel.Exchange for this on completion. The original input message is defensively copied, and the copied message body is converted to org.apache.camel.StreamCache if possible (stream caching is enabled, can be disabled globally or on the original route), to ensure the body can be read when the original message is being used later. If the body is converted to org.apache.camel.StreamCache then the message body on the current org.apache.camel.Exchange is replaced with the org.apache.camel.StreamCache body. If the body is not converted to org.apache.camel.StreamCache then the body will not be able to re-read when accessed later. Important: The original input means the input message that are bounded by the current org.apache.camel.spi.UnitOfWork . An unit of work typically spans one route, or multiple routes if they are connected using internal endpoints such as direct or seda. When messages is passed via external endpoints such as JMS or HTTP then the consumer will create a new unit of work, with the message it received as input as the original input. Also some EIP patterns such as splitter, multicast, will create a new unit of work boundary for the messages in their sub-route (eg the split message); however these EIPs have an option named shareUnitOfWork which allows to combine with the parent unit of work in regard to error handling and therefore use the parent original message. By default this feature is off.
9209
9209
  */
9210
- export type UseOriginalMessage4 = boolean & string;
9210
+ export type UseOriginalMessage4 = boolean;
9211
9211
  /**
9212
9212
  * Sets whether the exchange should handle and continue routing from the point of failure. If this option is enabled then its considered handled as well.
9213
9213
  */
@@ -9326,7 +9326,7 @@ export type Description44 = string;
9326
9326
  /**
9327
9327
  * Disables this EIP from the route.
9328
9328
  */
9329
- export type Disabled43 = boolean & string;
9329
+ export type Disabled43 = boolean;
9330
9330
  /**
9331
9331
  * A set of exceptions to react upon.
9332
9332
  */
@@ -9584,11 +9584,11 @@ export type RetryWhile =
9584
9584
  /**
9585
9585
  * Will use the original input org.apache.camel.Message body (original body only) when an org.apache.camel.Exchange is moved to the dead letter queue. Notice: this only applies when all redeliveries attempt have failed and the org.apache.camel.Exchange is doomed for failure. Instead of using the current inprogress org.apache.camel.Exchange IN message we use the original IN message instead. This allows you to store the original input in the dead letter queue instead of the inprogress snapshot of the IN message. For instance if you route transform the IN body during routing and then failed. With the original exchange store in the dead letter queue it might be easier to manually re submit the org.apache.camel.Exchange again as the IN message is the same as when Camel received it. So you should be able to send the org.apache.camel.Exchange to the same input. The difference between useOriginalMessage and useOriginalBody is that the former includes both the original body and headers, where as the latter only includes the original body. You can use the latter to enrich the message with custom headers and include the original message body. The former wont let you do this, as its using the original message body and headers as they are. You cannot enable both useOriginalMessage and useOriginalBody. The original input message is defensively copied, and the copied message body is converted to org.apache.camel.StreamCache if possible (stream caching is enabled, can be disabled globally or on the original route), to ensure the body can be read when the original message is being used later. If the body is converted to org.apache.camel.StreamCache then the message body on the current org.apache.camel.Exchange is replaced with the org.apache.camel.StreamCache body. If the body is not converted to org.apache.camel.StreamCache then the body will not be able to re-read when accessed later. Important: The original input means the input message that are bounded by the current org.apache.camel.spi.UnitOfWork . An unit of work typically spans one route, or multiple routes if they are connected using internal endpoints such as direct or seda. When messages is passed via external endpoints such as JMS or HTTP then the consumer will create a new unit of work, with the message it received as input as the original input. Also some EIP patterns such as splitter, multicast, will create a new unit of work boundary for the messages in their sub-route (eg the split message); however these EIPs have an option named shareUnitOfWork which allows to combine with the parent unit of work in regard to error handling and therefore use the parent original message. By default this feature is off.
9586
9586
  */
9587
- export type UseOriginalBody4 = boolean & string;
9587
+ export type UseOriginalBody4 = boolean;
9588
9588
  /**
9589
9589
  * Will use the original input org.apache.camel.Message (original body and headers) when an org.apache.camel.Exchange is moved to the dead letter queue. Notice: this only applies when all redeliveries attempt have failed and the org.apache.camel.Exchange is doomed for failure. Instead of using the current inprogress org.apache.camel.Exchange IN message we use the original IN message instead. This allows you to store the original input in the dead letter queue instead of the inprogress snapshot of the IN message. For instance if you route transform the IN body during routing and then failed. With the original exchange store in the dead letter queue it might be easier to manually re submit the org.apache.camel.Exchange again as the IN message is the same as when Camel received it. So you should be able to send the org.apache.camel.Exchange to the same input. The difference between useOriginalMessage and useOriginalBody is that the former includes both the original body and headers, where as the latter only includes the original body. You can use the latter to enrich the message with custom headers and include the original message body. The former wont let you do this, as its using the original message body and headers as they are. You cannot enable both useOriginalMessage and useOriginalBody. The original input message is defensively copied, and the copied message body is converted to org.apache.camel.StreamCache if possible (stream caching is enabled, can be disabled globally or on the original route), to ensure the body can be read when the original message is being used later. If the body is converted to org.apache.camel.StreamCache then the message body on the current org.apache.camel.Exchange is replaced with the org.apache.camel.StreamCache body. If the body is not converted to org.apache.camel.StreamCache then the body will not be able to re-read when accessed later. Important: The original input means the input message that are bounded by the current org.apache.camel.spi.UnitOfWork . An unit of work typically spans one route, or multiple routes if they are connected using internal endpoints such as direct or seda. When messages is passed via external endpoints such as JMS or HTTP then the consumer will create a new unit of work, with the message it received as input as the original input. Also some EIP patterns such as splitter, multicast, will create a new unit of work boundary for the messages in their sub-route (eg the split message); however these EIPs have an option named shareUnitOfWork which allows to combine with the parent unit of work in regard to error handling and therefore use the parent original message. By default this feature is off.
9590
9590
  */
9591
- export type UseOriginalMessage5 = boolean & string;
9591
+ export type UseOriginalMessage5 = boolean;
9592
9592
  /**
9593
9593
  * Camel error handling.
9594
9594
  */
@@ -9635,7 +9635,7 @@ export type Urn = string;
9635
9635
  /**
9636
9636
  * Whether if validation is required for this input type.
9637
9637
  */
9638
- export type Validate3 = boolean & string;
9638
+ export type Validate3 = boolean;
9639
9639
  /**
9640
9640
  * Sets the description of this node
9641
9641
  */
@@ -9651,7 +9651,7 @@ export type Urn1 = string;
9651
9651
  /**
9652
9652
  * Whether if validation is required for this output type.
9653
9653
  */
9654
- export type Validate4 = boolean & string;
9654
+ export type Validate4 = boolean;
9655
9655
  /**
9656
9656
  * Default value of the parameter. If a default value is provided then the parameter is implied not to be required.
9657
9657
  */
@@ -9667,7 +9667,7 @@ export type Name7 = string;
9667
9667
  /**
9668
9668
  * Whether the parameter is required or not. A parameter is required unless this option is set to false or a default value has been configured.
9669
9669
  */
9670
- export type Required = boolean & string;
9670
+ export type Required = boolean;
9671
9671
  /**
9672
9672
  * The name of the parameter
9673
9673
  */
@@ -9707,7 +9707,7 @@ export type ApiProperty = RestProperty[];
9707
9707
  /**
9708
9708
  * Whether vendor extension is enabled in the Rest APIs. If enabled then Camel will include additional information as vendor extension (eg keys starting with x-) such as route ids, class names etc. Not all 3rd party API gateways and tools supports vendor-extensions when importing your API docs.
9709
9709
  */
9710
- export type ApiVendorExtension = boolean & string;
9710
+ export type ApiVendorExtension = boolean;
9711
9711
  /**
9712
9712
  * Sets the binding mode to use. The default value is off
9713
9713
  */
@@ -9719,11 +9719,11 @@ export type BindingPackageScan = string;
9719
9719
  /**
9720
9720
  * Whether to enable validation of the client request to check: 1) Content-Type header matches what the Rest DSL consumes; returns HTTP Status 415 if validation error. 2) Accept header matches what the Rest DSL produces; returns HTTP Status 406 if validation error. 3) Missing required data (query parameters, HTTP headers, body); returns HTTP Status 400 if validation error. 4) Parsing error of the message body (JSon, XML or Auto binding mode must be enabled); returns HTTP Status 400 if validation error.
9721
9721
  */
9722
- export type ClientRequestValidation = boolean & string;
9722
+ export type ClientRequestValidation = boolean;
9723
9723
  /**
9724
9724
  * Whether to check what Camel is returning as response to the client: 1) Status-code and Content-Type matches Rest DSL response messages. 2) Check whether expected headers is included according to the Rest DSL repose message headers. 3) If the response body is JSon then check whether its valid JSon. Returns 500 if validation error detected.
9725
9725
  */
9726
- export type ClientResponseValidation = boolean & string;
9726
+ export type ClientResponseValidation = boolean;
9727
9727
  /**
9728
9728
  * The Camel Rest component to use for the REST transport (consumer), such as netty-http, jetty, servlet, undertow. If no component has been explicit configured, then Camel will lookup if there is a Camel component that integrates with the Rest DSL, or if a org.apache.camel.spi.RestConsumerFactory is registered in the registry. If either one is found, then that is being used.
9729
9729
  */
@@ -9751,11 +9751,11 @@ export type DataFormatProperty = RestProperty[];
9751
9751
  /**
9752
9752
  * Whether to enable CORS headers in the HTTP response. The default value is false.
9753
9753
  */
9754
- export type EnableCORS = boolean & string;
9754
+ export type EnableCORS = boolean;
9755
9755
  /**
9756
9756
  * Whether to return HTTP 204 with an empty body when a response contains an empty JSON object or XML root object. The default value is false.
9757
9757
  */
9758
- export type EnableNoContentResponse = boolean & string;
9758
+ export type EnableNoContentResponse = boolean;
9759
9759
  /**
9760
9760
  * Allows to configure as many additional properties for the rest endpoint in use.
9761
9761
  */
@@ -9771,7 +9771,7 @@ export type HostNameResolver = "allLocalIp" | "localHostName" | "localIp" | "non
9771
9771
  /**
9772
9772
  * Inline routes in rest-dsl which are linked using direct endpoints. Each service in Rest DSL is an individual route, meaning that you would have at least two routes per service (rest-dsl, and the route linked from rest-dsl). By inlining (default) allows Camel to optimize and inline this as a single route, however this requires to use direct endpoints, which must be unique per service. If a route is not using direct endpoint then the rest-dsl is not inlined, and will become an individual route. This option is default true.
9773
9773
  */
9774
- export type InlineRoutes = boolean & string;
9774
+ export type InlineRoutes = boolean;
9775
9775
  /**
9776
9776
  * Name of specific json data format to use. By default jackson will be used. Important: This option is only for setting a custom name of the data format, not to refer to an existing data format instance.
9777
9777
  */
@@ -9795,11 +9795,11 @@ export type Scheme = string;
9795
9795
  /**
9796
9796
  * Whether to skip binding on output if there is a custom HTTP error code header. This allows to build custom error messages that do not bind to json / xml etc, as success messages otherwise will do.
9797
9797
  */
9798
- export type SkipBindingOnErrorCode = boolean & string;
9798
+ export type SkipBindingOnErrorCode = boolean;
9799
9799
  /**
9800
9800
  * Whether to use X-Forward headers to set host etc. for OpenApi. This may be needed in special cases involving reverse-proxy and networking going from HTTP to HTTPS etc. Then the proxy can send X-Forward headers (X-Forwarded-Proto) that influences the host names in the OpenAPI schema that camel-openapi-java generates from Rest DSL routes.
9801
9801
  */
9802
- export type UseXForwardHeaders = boolean & string;
9802
+ export type UseXForwardHeaders = boolean;
9803
9803
  /**
9804
9804
  * Allows to configure custom validation levels when using camel-openapi-validator with client request/response validator.
9805
9805
  */
@@ -9811,7 +9811,7 @@ export type XmlDataFormat = string;
9811
9811
  /**
9812
9812
  * Whether to include or exclude this rest operation in API documentation. This option will override what may be configured on a parent level. The default value is true.
9813
9813
  */
9814
- export type ApiDocs = boolean & string;
9814
+ export type ApiDocs = boolean;
9815
9815
  /**
9816
9816
  * Sets the binding mode to use. This option will override what may be configured on a parent level The default value is auto
9817
9817
  */
@@ -9819,11 +9819,11 @@ export type BindingMode1 = "off" | "auto" | "json" | "xml" | "json_xml";
9819
9819
  /**
9820
9820
  * Whether to enable validation of the client request to check: 1) Content-Type header matches what the Rest DSL consumes; returns HTTP Status 415 if validation error. 2) Accept header matches what the Rest DSL produces; returns HTTP Status 406 if validation error. 3) Missing required data (query parameters, HTTP headers, body); returns HTTP Status 400 if validation error. 4) Parsing error of the message body (JSon, XML or Auto binding mode must be enabled); returns HTTP Status 400 if validation error.
9821
9821
  */
9822
- export type ClientRequestValidation1 = boolean & string;
9822
+ export type ClientRequestValidation1 = boolean;
9823
9823
  /**
9824
9824
  * Whether to check what Camel is returning as response to the client: 1) Status-code and Content-Type matches Rest DSL response messages. 2) Check whether expected headers is included according to the Rest DSL repose message headers. 3) If the response body is JSon then check whether its valid JSon. Returns 500 if validation error detected.
9825
9825
  */
9826
- export type ClientResponseValidation1 = boolean & string;
9826
+ export type ClientResponseValidation1 = boolean;
9827
9827
  /**
9828
9828
  * To define the content type what the REST service consumes (accept as input), such as application/xml or application/json. This option will override what may be configured on a parent level
9829
9829
  */
@@ -9831,7 +9831,7 @@ export type Consumes = string;
9831
9831
  /**
9832
9832
  * Whether to include or exclude this rest operation in API documentation. The default value is true.
9833
9833
  */
9834
- export type ApiDocs1 = boolean & string;
9834
+ export type ApiDocs1 = boolean;
9835
9835
  /**
9836
9836
  * Sets the binding mode to use. This option will override what may be configured on a parent level The default value is off
9837
9837
  */
@@ -9839,11 +9839,11 @@ export type BindingMode2 = "off" | "auto" | "json" | "xml" | "json_xml";
9839
9839
  /**
9840
9840
  * Whether to enable validation of the client request to check: 1) Content-Type header matches what the Rest DSL consumes; returns HTTP Status 415 if validation error. 2) Accept header matches what the Rest DSL produces; returns HTTP Status 406 if validation error. 3) Missing required data (query parameters, HTTP headers, body); returns HTTP Status 400 if validation error. 4) Parsing error of the message body (JSon, XML or Auto binding mode must be enabled); returns HTTP Status 400 if validation error.
9841
9841
  */
9842
- export type ClientRequestValidation2 = boolean & string;
9842
+ export type ClientRequestValidation2 = boolean;
9843
9843
  /**
9844
9844
  * Whether to check what Camel is returning as response to the client: 1) Status-code and Content-Type matches Rest DSL response messages. 2) Check whether expected headers is included according to the Rest DSL repose message headers. 3) If the response body is JSon then check whether its valid JSon. Returns 500 if validation error detected.
9845
9845
  */
9846
- export type ClientResponseValidation2 = boolean & string;
9846
+ export type ClientResponseValidation2 = boolean;
9847
9847
  /**
9848
9848
  * To define the content type what the REST service consumes (accept as input), such as application/xml or application/json. This option will override what may be configured on a parent level
9849
9849
  */
@@ -9851,7 +9851,7 @@ export type Consumes1 = string;
9851
9851
  /**
9852
9852
  * Marks this rest operation as deprecated in OpenApi documentation.
9853
9853
  */
9854
- export type Deprecated = boolean & string;
9854
+ export type Deprecated = boolean;
9855
9855
  /**
9856
9856
  * Sets the description of this node
9857
9857
  */
@@ -9859,15 +9859,15 @@ export type Description48 = string;
9859
9859
  /**
9860
9860
  * Whether to disable this REST service from the route during build time. Once an REST service has been disabled then it cannot be enabled later at runtime.
9861
9861
  */
9862
- export type Disabled44 = boolean & string;
9862
+ export type Disabled44 = boolean;
9863
9863
  /**
9864
9864
  * Whether to enable CORS headers in the HTTP response. This option will override what may be configured on a parent level The default value is false.
9865
9865
  */
9866
- export type EnableCORS1 = boolean & string;
9866
+ export type EnableCORS1 = boolean;
9867
9867
  /**
9868
9868
  * Whether to return HTTP 204 with an empty body when a response contains an empty JSON object or XML root object. The default value is false.
9869
9869
  */
9870
- export type EnableNoContentResponse1 = boolean & string;
9870
+ export type EnableNoContentResponse1 = boolean;
9871
9871
  /**
9872
9872
  * Sets the id of this node
9873
9873
  */
@@ -9927,7 +9927,7 @@ export type Name9 = string;
9927
9927
  /**
9928
9928
  * Sets the parameter required flag.
9929
9929
  */
9930
- export type Required1 = boolean & string;
9930
+ export type Required1 = boolean;
9931
9931
  /**
9932
9932
  * Sets the parameter type.
9933
9933
  */
@@ -10023,11 +10023,11 @@ export type Security = RestSecurity[];
10023
10023
  /**
10024
10024
  * Whether to skip binding on output if there is a custom HTTP error code header. This allows to build custom error messages that do not bind to json / xml etc, as success messages otherwise will do. This option will override what may be configured on a parent level
10025
10025
  */
10026
- export type SkipBindingOnErrorCode1 = boolean & string;
10026
+ export type SkipBindingOnErrorCode1 = boolean;
10027
10027
  /**
10028
10028
  * Whether stream caching is enabled on this rest operation.
10029
10029
  */
10030
- export type StreamCache = boolean & string;
10030
+ export type StreamCache = boolean;
10031
10031
  /**
10032
10032
  * Sends the message to a static endpoint
10033
10033
  */
@@ -10056,19 +10056,19 @@ export type Description51 = string;
10056
10056
  /**
10057
10057
  * Whether to disable this REST service from the route during build time. Once an REST service has been disabled then it cannot be enabled later at runtime.
10058
10058
  */
10059
- export type Disabled45 = boolean & string;
10059
+ export type Disabled45 = boolean;
10060
10060
  /**
10061
10061
  * Whether to enable CORS headers in the HTTP response. This option will override what may be configured on a parent level The default value is false.
10062
10062
  */
10063
- export type EnableCORS2 = boolean & string;
10063
+ export type EnableCORS2 = boolean;
10064
10064
  /**
10065
10065
  * Whether to return HTTP 204 with an empty body when a response contains an empty JSON object or XML root object. The default value is false.
10066
10066
  */
10067
- export type EnableNoContentResponse2 = boolean & string;
10067
+ export type EnableNoContentResponse2 = boolean;
10068
10068
  /**
10069
10069
  * Whether to include or exclude this rest operation in API documentation. The default value is true.
10070
10070
  */
10071
- export type ApiDocs2 = boolean & string;
10071
+ export type ApiDocs2 = boolean;
10072
10072
  /**
10073
10073
  * Sets the binding mode to use. This option will override what may be configured on a parent level The default value is off
10074
10074
  */
@@ -10076,11 +10076,11 @@ export type BindingMode3 = "off" | "auto" | "json" | "xml" | "json_xml";
10076
10076
  /**
10077
10077
  * Whether to enable validation of the client request to check: 1) Content-Type header matches what the Rest DSL consumes; returns HTTP Status 415 if validation error. 2) Accept header matches what the Rest DSL produces; returns HTTP Status 406 if validation error. 3) Missing required data (query parameters, HTTP headers, body); returns HTTP Status 400 if validation error. 4) Parsing error of the message body (JSon, XML or Auto binding mode must be enabled); returns HTTP Status 400 if validation error.
10078
10078
  */
10079
- export type ClientRequestValidation3 = boolean & string;
10079
+ export type ClientRequestValidation3 = boolean;
10080
10080
  /**
10081
10081
  * Whether to check what Camel is returning as response to the client: 1) Status-code and Content-Type matches Rest DSL response messages. 2) Check whether expected headers is included according to the Rest DSL repose message headers. 3) If the response body is JSon then check whether its valid JSon. Returns 500 if validation error detected.
10082
10082
  */
10083
- export type ClientResponseValidation3 = boolean & string;
10083
+ export type ClientResponseValidation3 = boolean;
10084
10084
  /**
10085
10085
  * To define the content type what the REST service consumes (accept as input), such as application/xml or application/json. This option will override what may be configured on a parent level
10086
10086
  */
@@ -10088,7 +10088,7 @@ export type Consumes2 = string;
10088
10088
  /**
10089
10089
  * Marks this rest operation as deprecated in OpenApi documentation.
10090
10090
  */
10091
- export type Deprecated1 = boolean & string;
10091
+ export type Deprecated1 = boolean;
10092
10092
  /**
10093
10093
  * Sets the description of this node
10094
10094
  */
@@ -10096,15 +10096,15 @@ export type Description52 = string;
10096
10096
  /**
10097
10097
  * Whether to disable this REST service from the route during build time. Once an REST service has been disabled then it cannot be enabled later at runtime.
10098
10098
  */
10099
- export type Disabled46 = boolean & string;
10099
+ export type Disabled46 = boolean;
10100
10100
  /**
10101
10101
  * Whether to enable CORS headers in the HTTP response. This option will override what may be configured on a parent level The default value is false.
10102
10102
  */
10103
- export type EnableCORS3 = boolean & string;
10103
+ export type EnableCORS3 = boolean;
10104
10104
  /**
10105
10105
  * Whether to return HTTP 204 with an empty body when a response contains an empty JSON object or XML root object. The default value is false.
10106
10106
  */
10107
- export type EnableNoContentResponse3 = boolean & string;
10107
+ export type EnableNoContentResponse3 = boolean;
10108
10108
  /**
10109
10109
  * Sets the id of this node
10110
10110
  */
@@ -10140,11 +10140,11 @@ export type Security1 = RestSecurity[];
10140
10140
  /**
10141
10141
  * Whether to skip binding on output if there is a custom HTTP error code header. This allows to build custom error messages that do not bind to json / xml etc, as success messages otherwise will do. This option will override what may be configured on a parent level
10142
10142
  */
10143
- export type SkipBindingOnErrorCode2 = boolean & string;
10143
+ export type SkipBindingOnErrorCode2 = boolean;
10144
10144
  /**
10145
10145
  * Whether stream caching is enabled on this rest operation.
10146
10146
  */
10147
- export type StreamCache1 = boolean & string;
10147
+ export type StreamCache1 = boolean;
10148
10148
  /**
10149
10149
  * Sends the message to a static endpoint
10150
10150
  */
@@ -10169,7 +10169,7 @@ export type Type7 = string;
10169
10169
  /**
10170
10170
  * Whether to include or exclude this rest operation in API documentation. The default value is true.
10171
10171
  */
10172
- export type ApiDocs3 = boolean & string;
10172
+ export type ApiDocs3 = boolean;
10173
10173
  /**
10174
10174
  * Sets the binding mode to use. This option will override what may be configured on a parent level The default value is off
10175
10175
  */
@@ -10177,11 +10177,11 @@ export type BindingMode4 = "off" | "auto" | "json" | "xml" | "json_xml";
10177
10177
  /**
10178
10178
  * Whether to enable validation of the client request to check: 1) Content-Type header matches what the Rest DSL consumes; returns HTTP Status 415 if validation error. 2) Accept header matches what the Rest DSL produces; returns HTTP Status 406 if validation error. 3) Missing required data (query parameters, HTTP headers, body); returns HTTP Status 400 if validation error. 4) Parsing error of the message body (JSon, XML or Auto binding mode must be enabled); returns HTTP Status 400 if validation error.
10179
10179
  */
10180
- export type ClientRequestValidation4 = boolean & string;
10180
+ export type ClientRequestValidation4 = boolean;
10181
10181
  /**
10182
10182
  * Whether to check what Camel is returning as response to the client: 1) Status-code and Content-Type matches Rest DSL response messages. 2) Check whether expected headers is included according to the Rest DSL repose message headers. 3) If the response body is JSon then check whether its valid JSon. Returns 500 if validation error detected.
10183
10183
  */
10184
- export type ClientResponseValidation4 = boolean & string;
10184
+ export type ClientResponseValidation4 = boolean;
10185
10185
  /**
10186
10186
  * To define the content type what the REST service consumes (accept as input), such as application/xml or application/json. This option will override what may be configured on a parent level
10187
10187
  */
@@ -10189,7 +10189,7 @@ export type Consumes3 = string;
10189
10189
  /**
10190
10190
  * Marks this rest operation as deprecated in OpenApi documentation.
10191
10191
  */
10192
- export type Deprecated2 = boolean & string;
10192
+ export type Deprecated2 = boolean;
10193
10193
  /**
10194
10194
  * Sets the description of this node
10195
10195
  */
@@ -10197,15 +10197,15 @@ export type Description53 = string;
10197
10197
  /**
10198
10198
  * Whether to disable this REST service from the route during build time. Once an REST service has been disabled then it cannot be enabled later at runtime.
10199
10199
  */
10200
- export type Disabled47 = boolean & string;
10200
+ export type Disabled47 = boolean;
10201
10201
  /**
10202
10202
  * Whether to enable CORS headers in the HTTP response. This option will override what may be configured on a parent level The default value is false.
10203
10203
  */
10204
- export type EnableCORS4 = boolean & string;
10204
+ export type EnableCORS4 = boolean;
10205
10205
  /**
10206
10206
  * Whether to return HTTP 204 with an empty body when a response contains an empty JSON object or XML root object. The default value is false.
10207
10207
  */
10208
- export type EnableNoContentResponse4 = boolean & string;
10208
+ export type EnableNoContentResponse4 = boolean;
10209
10209
  /**
10210
10210
  * Sets the id of this node
10211
10211
  */
@@ -10241,11 +10241,11 @@ export type Security2 = RestSecurity[];
10241
10241
  /**
10242
10242
  * Whether to skip binding on output if there is a custom HTTP error code header. This allows to build custom error messages that do not bind to json / xml etc, as success messages otherwise will do. This option will override what may be configured on a parent level
10243
10243
  */
10244
- export type SkipBindingOnErrorCode3 = boolean & string;
10244
+ export type SkipBindingOnErrorCode3 = boolean;
10245
10245
  /**
10246
10246
  * Whether stream caching is enabled on this rest operation.
10247
10247
  */
10248
- export type StreamCache2 = boolean & string;
10248
+ export type StreamCache2 = boolean;
10249
10249
  /**
10250
10250
  * Sends the message to a static endpoint
10251
10251
  */
@@ -10282,7 +10282,7 @@ export type Description54 = string;
10282
10282
  /**
10283
10283
  * Whether to disable all the REST services from the OpenAPI contract from the route during build time. Once an REST service has been disabled then it cannot be enabled later at runtime.
10284
10284
  */
10285
- export type Disabled48 = boolean & string;
10285
+ export type Disabled48 = boolean;
10286
10286
  /**
10287
10287
  * Sets the id of this node
10288
10288
  */
@@ -10306,7 +10306,7 @@ export type Specification = string;
10306
10306
  /**
10307
10307
  * Whether to include or exclude this rest operation in API documentation. The default value is true.
10308
10308
  */
10309
- export type ApiDocs4 = boolean & string;
10309
+ export type ApiDocs4 = boolean;
10310
10310
  /**
10311
10311
  * Sets the binding mode to use. This option will override what may be configured on a parent level The default value is off
10312
10312
  */
@@ -10314,11 +10314,11 @@ export type BindingMode5 = "off" | "auto" | "json" | "xml" | "json_xml";
10314
10314
  /**
10315
10315
  * Whether to enable validation of the client request to check: 1) Content-Type header matches what the Rest DSL consumes; returns HTTP Status 415 if validation error. 2) Accept header matches what the Rest DSL produces; returns HTTP Status 406 if validation error. 3) Missing required data (query parameters, HTTP headers, body); returns HTTP Status 400 if validation error. 4) Parsing error of the message body (JSon, XML or Auto binding mode must be enabled); returns HTTP Status 400 if validation error.
10316
10316
  */
10317
- export type ClientRequestValidation5 = boolean & string;
10317
+ export type ClientRequestValidation5 = boolean;
10318
10318
  /**
10319
10319
  * Whether to check what Camel is returning as response to the client: 1) Status-code and Content-Type matches Rest DSL response messages. 2) Check whether expected headers is included according to the Rest DSL repose message headers. 3) If the response body is JSon then check whether its valid JSon. Returns 500 if validation error detected.
10320
10320
  */
10321
- export type ClientResponseValidation5 = boolean & string;
10321
+ export type ClientResponseValidation5 = boolean;
10322
10322
  /**
10323
10323
  * To define the content type what the REST service consumes (accept as input), such as application/xml or application/json. This option will override what may be configured on a parent level
10324
10324
  */
@@ -10326,7 +10326,7 @@ export type Consumes4 = string;
10326
10326
  /**
10327
10327
  * Marks this rest operation as deprecated in OpenApi documentation.
10328
10328
  */
10329
- export type Deprecated3 = boolean & string;
10329
+ export type Deprecated3 = boolean;
10330
10330
  /**
10331
10331
  * Sets the description of this node
10332
10332
  */
@@ -10334,15 +10334,15 @@ export type Description55 = string;
10334
10334
  /**
10335
10335
  * Whether to disable this REST service from the route during build time. Once an REST service has been disabled then it cannot be enabled later at runtime.
10336
10336
  */
10337
- export type Disabled49 = boolean & string;
10337
+ export type Disabled49 = boolean;
10338
10338
  /**
10339
10339
  * Whether to enable CORS headers in the HTTP response. This option will override what may be configured on a parent level The default value is false.
10340
10340
  */
10341
- export type EnableCORS5 = boolean & string;
10341
+ export type EnableCORS5 = boolean;
10342
10342
  /**
10343
10343
  * Whether to return HTTP 204 with an empty body when a response contains an empty JSON object or XML root object. The default value is false.
10344
10344
  */
10345
- export type EnableNoContentResponse5 = boolean & string;
10345
+ export type EnableNoContentResponse5 = boolean;
10346
10346
  /**
10347
10347
  * Sets the id of this node
10348
10348
  */
@@ -10378,11 +10378,11 @@ export type Security3 = RestSecurity[];
10378
10378
  /**
10379
10379
  * Whether to skip binding on output if there is a custom HTTP error code header. This allows to build custom error messages that do not bind to json / xml etc, as success messages otherwise will do. This option will override what may be configured on a parent level
10380
10380
  */
10381
- export type SkipBindingOnErrorCode4 = boolean & string;
10381
+ export type SkipBindingOnErrorCode4 = boolean;
10382
10382
  /**
10383
10383
  * Whether stream caching is enabled on this rest operation.
10384
10384
  */
10385
- export type StreamCache3 = boolean & string;
10385
+ export type StreamCache3 = boolean;
10386
10386
  /**
10387
10387
  * Sends the message to a static endpoint
10388
10388
  */
@@ -10411,7 +10411,7 @@ export type Path4 = string;
10411
10411
  /**
10412
10412
  * Whether to include or exclude this rest operation in API documentation. The default value is true.
10413
10413
  */
10414
- export type ApiDocs5 = boolean & string;
10414
+ export type ApiDocs5 = boolean;
10415
10415
  /**
10416
10416
  * Sets the binding mode to use. This option will override what may be configured on a parent level The default value is off
10417
10417
  */
@@ -10419,11 +10419,11 @@ export type BindingMode6 = "off" | "auto" | "json" | "xml" | "json_xml";
10419
10419
  /**
10420
10420
  * Whether to enable validation of the client request to check: 1) Content-Type header matches what the Rest DSL consumes; returns HTTP Status 415 if validation error. 2) Accept header matches what the Rest DSL produces; returns HTTP Status 406 if validation error. 3) Missing required data (query parameters, HTTP headers, body); returns HTTP Status 400 if validation error. 4) Parsing error of the message body (JSon, XML or Auto binding mode must be enabled); returns HTTP Status 400 if validation error.
10421
10421
  */
10422
- export type ClientRequestValidation6 = boolean & string;
10422
+ export type ClientRequestValidation6 = boolean;
10423
10423
  /**
10424
10424
  * Whether to check what Camel is returning as response to the client: 1) Status-code and Content-Type matches Rest DSL response messages. 2) Check whether expected headers is included according to the Rest DSL repose message headers. 3) If the response body is JSon then check whether its valid JSon. Returns 500 if validation error detected.
10425
10425
  */
10426
- export type ClientResponseValidation6 = boolean & string;
10426
+ export type ClientResponseValidation6 = boolean;
10427
10427
  /**
10428
10428
  * To define the content type what the REST service consumes (accept as input), such as application/xml or application/json. This option will override what may be configured on a parent level
10429
10429
  */
@@ -10431,7 +10431,7 @@ export type Consumes5 = string;
10431
10431
  /**
10432
10432
  * Marks this rest operation as deprecated in OpenApi documentation.
10433
10433
  */
10434
- export type Deprecated4 = boolean & string;
10434
+ export type Deprecated4 = boolean;
10435
10435
  /**
10436
10436
  * Sets the description of this node
10437
10437
  */
@@ -10439,15 +10439,15 @@ export type Description56 = string;
10439
10439
  /**
10440
10440
  * Whether to disable this REST service from the route during build time. Once an REST service has been disabled then it cannot be enabled later at runtime.
10441
10441
  */
10442
- export type Disabled50 = boolean & string;
10442
+ export type Disabled50 = boolean;
10443
10443
  /**
10444
10444
  * Whether to enable CORS headers in the HTTP response. This option will override what may be configured on a parent level The default value is false.
10445
10445
  */
10446
- export type EnableCORS6 = boolean & string;
10446
+ export type EnableCORS6 = boolean;
10447
10447
  /**
10448
10448
  * Whether to return HTTP 204 with an empty body when a response contains an empty JSON object or XML root object. The default value is false.
10449
10449
  */
10450
- export type EnableNoContentResponse6 = boolean & string;
10450
+ export type EnableNoContentResponse6 = boolean;
10451
10451
  /**
10452
10452
  * Sets the id of this node
10453
10453
  */
@@ -10483,11 +10483,11 @@ export type Security4 = RestSecurity[];
10483
10483
  /**
10484
10484
  * Whether to skip binding on output if there is a custom HTTP error code header. This allows to build custom error messages that do not bind to json / xml etc, as success messages otherwise will do. This option will override what may be configured on a parent level
10485
10485
  */
10486
- export type SkipBindingOnErrorCode5 = boolean & string;
10486
+ export type SkipBindingOnErrorCode5 = boolean;
10487
10487
  /**
10488
10488
  * Whether stream caching is enabled on this rest operation.
10489
10489
  */
10490
- export type StreamCache4 = boolean & string;
10490
+ export type StreamCache4 = boolean;
10491
10491
  /**
10492
10492
  * Sends the message to a static endpoint
10493
10493
  */
@@ -10516,7 +10516,7 @@ export type Produces5 = string;
10516
10516
  /**
10517
10517
  * Whether to include or exclude this rest operation in API documentation. The default value is true.
10518
10518
  */
10519
- export type ApiDocs6 = boolean & string;
10519
+ export type ApiDocs6 = boolean;
10520
10520
  /**
10521
10521
  * Sets the binding mode to use. This option will override what may be configured on a parent level The default value is off
10522
10522
  */
@@ -10524,11 +10524,11 @@ export type BindingMode7 = "off" | "auto" | "json" | "xml" | "json_xml";
10524
10524
  /**
10525
10525
  * Whether to enable validation of the client request to check: 1) Content-Type header matches what the Rest DSL consumes; returns HTTP Status 415 if validation error. 2) Accept header matches what the Rest DSL produces; returns HTTP Status 406 if validation error. 3) Missing required data (query parameters, HTTP headers, body); returns HTTP Status 400 if validation error. 4) Parsing error of the message body (JSon, XML or Auto binding mode must be enabled); returns HTTP Status 400 if validation error.
10526
10526
  */
10527
- export type ClientRequestValidation7 = boolean & string;
10527
+ export type ClientRequestValidation7 = boolean;
10528
10528
  /**
10529
10529
  * Whether to check what Camel is returning as response to the client: 1) Status-code and Content-Type matches Rest DSL response messages. 2) Check whether expected headers is included according to the Rest DSL repose message headers. 3) If the response body is JSon then check whether its valid JSon. Returns 500 if validation error detected.
10530
10530
  */
10531
- export type ClientResponseValidation7 = boolean & string;
10531
+ export type ClientResponseValidation7 = boolean;
10532
10532
  /**
10533
10533
  * To define the content type what the REST service consumes (accept as input), such as application/xml or application/json. This option will override what may be configured on a parent level
10534
10534
  */
@@ -10536,7 +10536,7 @@ export type Consumes6 = string;
10536
10536
  /**
10537
10537
  * Marks this rest operation as deprecated in OpenApi documentation.
10538
10538
  */
10539
- export type Deprecated5 = boolean & string;
10539
+ export type Deprecated5 = boolean;
10540
10540
  /**
10541
10541
  * Sets the description of this node
10542
10542
  */
@@ -10544,15 +10544,15 @@ export type Description57 = string;
10544
10544
  /**
10545
10545
  * Whether to disable this REST service from the route during build time. Once an REST service has been disabled then it cannot be enabled later at runtime.
10546
10546
  */
10547
- export type Disabled51 = boolean & string;
10547
+ export type Disabled51 = boolean;
10548
10548
  /**
10549
10549
  * Whether to enable CORS headers in the HTTP response. This option will override what may be configured on a parent level The default value is false.
10550
10550
  */
10551
- export type EnableCORS7 = boolean & string;
10551
+ export type EnableCORS7 = boolean;
10552
10552
  /**
10553
10553
  * Whether to return HTTP 204 with an empty body when a response contains an empty JSON object or XML root object. The default value is false.
10554
10554
  */
10555
- export type EnableNoContentResponse7 = boolean & string;
10555
+ export type EnableNoContentResponse7 = boolean;
10556
10556
  /**
10557
10557
  * Sets the id of this node
10558
10558
  */
@@ -10588,11 +10588,11 @@ export type Security5 = RestSecurity[];
10588
10588
  /**
10589
10589
  * Whether to skip binding on output if there is a custom HTTP error code header. This allows to build custom error messages that do not bind to json / xml etc, as success messages otherwise will do. This option will override what may be configured on a parent level
10590
10590
  */
10591
- export type SkipBindingOnErrorCode6 = boolean & string;
10591
+ export type SkipBindingOnErrorCode6 = boolean;
10592
10592
  /**
10593
10593
  * Whether stream caching is enabled on this rest operation.
10594
10594
  */
10595
- export type StreamCache5 = boolean & string;
10595
+ export type StreamCache5 = boolean;
10596
10596
  /**
10597
10597
  * Sends the message to a static endpoint
10598
10598
  */
@@ -10621,15 +10621,15 @@ export type Description58 = string;
10621
10621
  /**
10622
10622
  * To use a cookie as the location of the API key.
10623
10623
  */
10624
- export type InCookie = boolean & string;
10624
+ export type InCookie = boolean;
10625
10625
  /**
10626
10626
  * To use header as the location of the API key.
10627
10627
  */
10628
- export type InHeader = boolean & string;
10628
+ export type InHeader = boolean;
10629
10629
  /**
10630
10630
  * To use query parameter as the location of the API key.
10631
10631
  */
10632
- export type InQuery = boolean & string;
10632
+ export type InQuery = boolean;
10633
10633
  /**
10634
10634
  * Key used to refer to this security definition
10635
10635
  */
@@ -10713,7 +10713,7 @@ export type SecurityRequirements = RestSecurity[];
10713
10713
  /**
10714
10714
  * Whether to skip binding on output if there is a custom HTTP error code header. This allows to build custom error messages that do not bind to json / xml etc, as success messages otherwise will do. This option will override what may be configured on a parent level
10715
10715
  */
10716
- export type SkipBindingOnErrorCode7 = boolean & string;
10716
+ export type SkipBindingOnErrorCode7 = boolean;
10717
10717
  /**
10718
10718
  * To configure a special tag for the operations within this rest definition.
10719
10719
  */