@kaoto/camel-catalog 0.4.3 → 0.4.5

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.
Files changed (22) hide show
  1. package/dist/camel-catalog/citrus/{4.9.4 → 4.10.0}/citrus-agent-configuration.json +31 -0
  2. package/dist/camel-catalog/citrus/{4.9.4 → 4.10.0}/citrus-catalog-aggregate-endpoints.json +70 -35
  3. package/dist/camel-catalog/citrus/{4.9.4 → 4.10.0}/citrus-catalog-aggregate-functions.json +86 -43
  4. package/dist/camel-catalog/citrus/{4.9.4 → 4.10.0}/citrus-catalog-aggregate-test-actions.json +246 -146
  5. package/dist/camel-catalog/citrus/{4.9.4 → 4.10.0}/citrus-catalog-aggregate-test-containers.json +13 -12
  6. package/dist/camel-catalog/citrus/{4.9.4 → 4.10.0}/citrus-catalog-aggregate-validation-matcher.json +50 -25
  7. package/dist/camel-catalog/citrus/{4.9.4 → 4.10.0}/citrus-testcase.json +8 -3
  8. package/dist/camel-catalog/citrus/{4.9.4 → 4.10.0}/index.json +9 -9
  9. package/dist/camel-catalog/citrus/4.10.1/citrus-agent-configuration.json +151 -0
  10. package/dist/camel-catalog/citrus/4.10.1/citrus-catalog-aggregate-endpoints.json +3307 -0
  11. package/dist/camel-catalog/citrus/4.10.1/citrus-catalog-aggregate-functions.json +1156 -0
  12. package/dist/camel-catalog/citrus/4.10.1/citrus-catalog-aggregate-test-actions.json +19990 -0
  13. package/dist/camel-catalog/citrus/4.10.1/citrus-catalog-aggregate-test-containers.json +573 -0
  14. package/dist/camel-catalog/citrus/4.10.1/citrus-catalog-aggregate-validation-matcher.json +514 -0
  15. package/dist/camel-catalog/citrus/4.10.1/citrus-testcase.json +14254 -0
  16. package/dist/camel-catalog/citrus/4.10.1/citrus-testcase.xsd +2970 -0
  17. package/dist/camel-catalog/citrus/4.10.1/index.json +51 -0
  18. package/dist/camel-catalog/index.json +9 -3
  19. package/dist/index.js +1 -1
  20. package/dist/types/catalog-index.d.ts +1 -1
  21. package/package.json +2 -2
  22. /package/dist/camel-catalog/citrus/{4.9.4 → 4.10.0}/citrus-testcase.xsd +0 -0
@@ -0,0 +1,514 @@
1
+ {
2
+ "isUUIDv4": {
3
+ "kind": "testValidationMatcher",
4
+ "version": "4.10.1",
5
+ "name": "isUUIDv4",
6
+ "group": "citrus",
7
+ "module": "citrus-base",
8
+ "title": "IsUUIDv4",
9
+ "propertiesSchema": {
10
+ "$schema": "http://json-schema.org/draft-07/schema#",
11
+ "type": "object",
12
+ "additionalProperties": false }
13
+ },
14
+ "dateRange": {
15
+ "kind": "testValidationMatcher",
16
+ "version": "4.10.1",
17
+ "name": "dateRange",
18
+ "group": "citrus",
19
+ "module": "citrus-base",
20
+ "title": "DateRange",
21
+ "propertiesSchema": {
22
+ "$schema": "http://json-schema.org/draft-07/schema#",
23
+ "type": "object",
24
+ "properties": {
25
+ "dateFormat": {
26
+ "type": "string",
27
+ "title": "DateFormat",
28
+ "description": "The date format string.",
29
+ "default": "yyyy-MM-dd"
30
+ },
31
+ "dateFrom": {
32
+ "type": "string",
33
+ "title": "DateFrom",
34
+ "description": "The expected data range start value."
35
+ },
36
+ "dateTo": {
37
+ "type": "string",
38
+ "title": "DateTo",
39
+ "description": "The expected data range end value."
40
+ }
41
+ },
42
+ "required": [
43
+ "dateFrom",
44
+ "dateTo"
45
+ ],
46
+ "additionalProperties": false }
47
+ },
48
+ "lowerThan": {
49
+ "kind": "testValidationMatcher",
50
+ "version": "4.10.1",
51
+ "name": "lowerThan",
52
+ "group": "citrus",
53
+ "module": "citrus-base",
54
+ "title": "LowerThan",
55
+ "propertiesSchema": {
56
+ "$schema": "http://json-schema.org/draft-07/schema#",
57
+ "type": "object",
58
+ "properties": {
59
+ "value": {
60
+ "type": "number",
61
+ "title": "Value",
62
+ "description": "The numeric value to evaluate."
63
+ }
64
+ },
65
+ "required": [
66
+ "value"
67
+ ],
68
+ "additionalProperties": false }
69
+ },
70
+ "matchesDatePattern": {
71
+ "kind": "testValidationMatcher",
72
+ "version": "4.10.1",
73
+ "name": "matchesDatePattern",
74
+ "group": "citrus",
75
+ "module": "citrus-base",
76
+ "title": "MatchesDatePattern",
77
+ "propertiesSchema": {
78
+ "$schema": "http://json-schema.org/draft-07/schema#",
79
+ "type": "object",
80
+ "properties": {
81
+ "value": {
82
+ "type": "string",
83
+ "title": "Value",
84
+ "description": "The expected control value."
85
+ }
86
+ },
87
+ "required": [
88
+ "value"
89
+ ],
90
+ "additionalProperties": false }
91
+ },
92
+ "isWeekday": {
93
+ "kind": "testValidationMatcher",
94
+ "version": "4.10.1",
95
+ "name": "isWeekday",
96
+ "group": "citrus",
97
+ "module": "citrus-base",
98
+ "title": "IsWeekday",
99
+ "propertiesSchema": {
100
+ "$schema": "http://json-schema.org/draft-07/schema#",
101
+ "type": "object",
102
+ "properties": {
103
+ "dateFormat": {
104
+ "type": "string",
105
+ "title": "DateFormat",
106
+ "description": "The date format string.",
107
+ "default": "dd.MM.yyyy"
108
+ },
109
+ "weekday": {
110
+ "type": "string",
111
+ "enum": [
112
+ "MONDAY",
113
+ "TUESDAY",
114
+ "WEDNESDAY",
115
+ "THURSDAY",
116
+ "FRIDAY",
117
+ "SATURDAY",
118
+ "SUNDAY"
119
+ ],
120
+ "title": "Weekday",
121
+ "description": "The expected weekday."
122
+ }
123
+ },
124
+ "required": [
125
+ "weekday"
126
+ ],
127
+ "additionalProperties": false }
128
+ },
129
+ "empty": {
130
+ "kind": "testValidationMatcher",
131
+ "version": "4.10.1",
132
+ "name": "empty",
133
+ "group": "citrus",
134
+ "module": "citrus-base",
135
+ "title": "Empty",
136
+ "propertiesSchema": {
137
+ "$schema": "http://json-schema.org/draft-07/schema#",
138
+ "type": "object",
139
+ "additionalProperties": false }
140
+ },
141
+ "trim": {
142
+ "kind": "testValidationMatcher",
143
+ "version": "4.10.1",
144
+ "name": "trim",
145
+ "group": "citrus",
146
+ "module": "citrus-base",
147
+ "title": "Trim",
148
+ "propertiesSchema": {
149
+ "$schema": "http://json-schema.org/draft-07/schema#",
150
+ "type": "object",
151
+ "properties": {
152
+ "value": {
153
+ "type": "string",
154
+ "title": "Value",
155
+ "description": "The expected control value."
156
+ }
157
+ },
158
+ "required": [
159
+ "value"
160
+ ],
161
+ "additionalProperties": false }
162
+ },
163
+ "ignoreNewLine": {
164
+ "kind": "testValidationMatcher",
165
+ "version": "4.10.1",
166
+ "name": "ignoreNewLine",
167
+ "group": "citrus",
168
+ "module": "citrus-base",
169
+ "title": "IgnoreNewLine",
170
+ "propertiesSchema": {
171
+ "$schema": "http://json-schema.org/draft-07/schema#",
172
+ "type": "object",
173
+ "properties": {
174
+ "value": {
175
+ "type": "string",
176
+ "title": "Value",
177
+ "description": "The expected control value."
178
+ }
179
+ },
180
+ "required": [
181
+ "value"
182
+ ],
183
+ "additionalProperties": false }
184
+ },
185
+ "isNumber": {
186
+ "kind": "testValidationMatcher",
187
+ "version": "4.10.1",
188
+ "name": "isNumber",
189
+ "group": "citrus",
190
+ "module": "citrus-base",
191
+ "title": "IsNumber",
192
+ "propertiesSchema": {
193
+ "$schema": "http://json-schema.org/draft-07/schema#",
194
+ "type": "object",
195
+ "additionalProperties": false }
196
+ },
197
+ "ignore": {
198
+ "kind": "testValidationMatcher",
199
+ "version": "4.10.1",
200
+ "name": "ignore",
201
+ "group": "citrus",
202
+ "module": "citrus-base",
203
+ "title": "Ignore",
204
+ "propertiesSchema": {
205
+ "$schema": "http://json-schema.org/draft-07/schema#",
206
+ "type": "object",
207
+ "additionalProperties": false }
208
+ },
209
+ "equalsIgnoreCase": {
210
+ "kind": "testValidationMatcher",
211
+ "version": "4.10.1",
212
+ "name": "equalsIgnoreCase",
213
+ "group": "citrus",
214
+ "module": "citrus-base",
215
+ "title": "EqualsIgnoreCase",
216
+ "propertiesSchema": {
217
+ "$schema": "http://json-schema.org/draft-07/schema#",
218
+ "type": "object",
219
+ "properties": {
220
+ "value": {
221
+ "type": "string",
222
+ "title": "Value",
223
+ "description": "The expected control value."
224
+ }
225
+ },
226
+ "required": [
227
+ "value"
228
+ ],
229
+ "additionalProperties": false }
230
+ },
231
+ "hasLength": {
232
+ "kind": "testValidationMatcher",
233
+ "version": "4.10.1",
234
+ "name": "hasLength",
235
+ "group": "citrus",
236
+ "module": "citrus-base",
237
+ "title": "HasLength",
238
+ "propertiesSchema": {
239
+ "$schema": "http://json-schema.org/draft-07/schema#",
240
+ "type": "object",
241
+ "properties": {
242
+ "value": {
243
+ "type": "string",
244
+ "title": "Value",
245
+ "description": "The expected control value."
246
+ }
247
+ },
248
+ "required": [
249
+ "value"
250
+ ],
251
+ "additionalProperties": false }
252
+ },
253
+ "greaterThan": {
254
+ "kind": "testValidationMatcher",
255
+ "version": "4.10.1",
256
+ "name": "greaterThan",
257
+ "group": "citrus",
258
+ "module": "citrus-base",
259
+ "title": "GreaterThan",
260
+ "propertiesSchema": {
261
+ "$schema": "http://json-schema.org/draft-07/schema#",
262
+ "type": "object",
263
+ "properties": {
264
+ "value": {
265
+ "type": "number",
266
+ "title": "Value",
267
+ "description": "The numeric value to evaluate."
268
+ }
269
+ },
270
+ "required": [
271
+ "value"
272
+ ],
273
+ "additionalProperties": false }
274
+ },
275
+ "notNull": {
276
+ "kind": "testValidationMatcher",
277
+ "version": "4.10.1",
278
+ "name": "notNull",
279
+ "group": "citrus",
280
+ "module": "citrus-base",
281
+ "title": "NotNull",
282
+ "propertiesSchema": {
283
+ "$schema": "http://json-schema.org/draft-07/schema#",
284
+ "type": "object",
285
+ "additionalProperties": false }
286
+ },
287
+ "matchesXml": {
288
+ "kind": "testValidationMatcher",
289
+ "version": "4.10.1",
290
+ "name": "matchesXml",
291
+ "group": "citrus",
292
+ "module": "citrus-validation-xml",
293
+ "title": "MatchesXml",
294
+ "propertiesSchema": {
295
+ "$schema": "http://json-schema.org/draft-07/schema#",
296
+ "type": "object",
297
+ "properties": {
298
+ "value": {
299
+ "type": "string",
300
+ "title": "Value",
301
+ "description": "The expected control value."
302
+ }
303
+ },
304
+ "required": [
305
+ "value"
306
+ ],
307
+ "additionalProperties": false }
308
+ },
309
+ "containsIgnoreCase": {
310
+ "kind": "testValidationMatcher",
311
+ "version": "4.10.1",
312
+ "name": "containsIgnoreCase",
313
+ "group": "citrus",
314
+ "module": "citrus-base",
315
+ "title": "ContainsIgnoreCase",
316
+ "propertiesSchema": {
317
+ "$schema": "http://json-schema.org/draft-07/schema#",
318
+ "type": "object",
319
+ "properties": {
320
+ "value": {
321
+ "type": "string",
322
+ "title": "Value",
323
+ "description": "The expected control value."
324
+ }
325
+ },
326
+ "required": [
327
+ "value"
328
+ ],
329
+ "additionalProperties": false }
330
+ },
331
+ "trimAllWhitespaces": {
332
+ "kind": "testValidationMatcher",
333
+ "version": "4.10.1",
334
+ "name": "trimAllWhitespaces",
335
+ "group": "citrus",
336
+ "module": "citrus-base",
337
+ "title": "TrimAllWhitespaces",
338
+ "propertiesSchema": {
339
+ "$schema": "http://json-schema.org/draft-07/schema#",
340
+ "type": "object",
341
+ "properties": {
342
+ "value": {
343
+ "type": "string",
344
+ "title": "Value",
345
+ "description": "The expected control value."
346
+ }
347
+ },
348
+ "required": [
349
+ "value"
350
+ ],
351
+ "additionalProperties": false }
352
+ },
353
+ "assertThat": {
354
+ "kind": "testValidationMatcher",
355
+ "version": "4.10.1",
356
+ "name": "assertThat",
357
+ "group": "citrus",
358
+ "module": "citrus-validation-hamcrest",
359
+ "title": "AssertThat",
360
+ "propertiesSchema": {
361
+ "$schema": "http://json-schema.org/draft-07/schema#",
362
+ "type": "object",
363
+ "properties": {
364
+ "expression": {
365
+ "type": "string",
366
+ "title": "Expression",
367
+ "description": "The Hamcrest expression to evaluate."
368
+ },
369
+ "value": {
370
+ "type": "string",
371
+ "title": "Value",
372
+ "description": "The value to verify."
373
+ }
374
+ },
375
+ "required": [
376
+ "expression"
377
+ ],
378
+ "additionalProperties": false }
379
+ },
380
+ "matches": {
381
+ "kind": "testValidationMatcher",
382
+ "version": "4.10.1",
383
+ "name": "matches",
384
+ "group": "citrus",
385
+ "module": "citrus-base",
386
+ "title": "Matches",
387
+ "propertiesSchema": {
388
+ "$schema": "http://json-schema.org/draft-07/schema#",
389
+ "type": "object",
390
+ "properties": {
391
+ "value": {
392
+ "type": "string",
393
+ "title": "Value",
394
+ "description": "The expected control value."
395
+ }
396
+ },
397
+ "required": [
398
+ "value"
399
+ ],
400
+ "additionalProperties": false }
401
+ },
402
+ "contains": {
403
+ "kind": "testValidationMatcher",
404
+ "version": "4.10.1",
405
+ "name": "contains",
406
+ "group": "citrus",
407
+ "module": "citrus-base",
408
+ "title": "Contains",
409
+ "propertiesSchema": {
410
+ "$schema": "http://json-schema.org/draft-07/schema#",
411
+ "type": "object",
412
+ "properties": {
413
+ "value": {
414
+ "type": "string",
415
+ "title": "Value",
416
+ "description": "The expected control value."
417
+ }
418
+ },
419
+ "required": [
420
+ "value"
421
+ ],
422
+ "additionalProperties": false }
423
+ },
424
+ "null": {
425
+ "kind": "testValidationMatcher",
426
+ "version": "4.10.1",
427
+ "name": "null",
428
+ "group": "citrus",
429
+ "module": "citrus-base",
430
+ "title": "Null",
431
+ "propertiesSchema": {
432
+ "$schema": "http://json-schema.org/draft-07/schema#",
433
+ "type": "object",
434
+ "additionalProperties": false }
435
+ },
436
+ "endsWith": {
437
+ "kind": "testValidationMatcher",
438
+ "version": "4.10.1",
439
+ "name": "endsWith",
440
+ "group": "citrus",
441
+ "module": "citrus-base",
442
+ "title": "EndsWith",
443
+ "propertiesSchema": {
444
+ "$schema": "http://json-schema.org/draft-07/schema#",
445
+ "type": "object",
446
+ "properties": {
447
+ "value": {
448
+ "type": "string",
449
+ "title": "Value",
450
+ "description": "The expected control value."
451
+ }
452
+ },
453
+ "required": [
454
+ "value"
455
+ ],
456
+ "additionalProperties": false }
457
+ },
458
+ "variable": {
459
+ "kind": "testValidationMatcher",
460
+ "version": "4.10.1",
461
+ "name": "variable",
462
+ "group": "citrus",
463
+ "module": "citrus-base",
464
+ "title": "Variable",
465
+ "propertiesSchema": {
466
+ "$schema": "http://json-schema.org/draft-07/schema#",
467
+ "type": "object",
468
+ "properties": {
469
+ "value": {
470
+ "type": "string",
471
+ "title": "Value",
472
+ "description": "The expected control value."
473
+ }
474
+ },
475
+ "required": [
476
+ "value"
477
+ ],
478
+ "additionalProperties": false }
479
+ },
480
+ "notEmpty": {
481
+ "kind": "testValidationMatcher",
482
+ "version": "4.10.1",
483
+ "name": "notEmpty",
484
+ "group": "citrus",
485
+ "module": "citrus-base",
486
+ "title": "NotEmpty",
487
+ "propertiesSchema": {
488
+ "$schema": "http://json-schema.org/draft-07/schema#",
489
+ "type": "object",
490
+ "additionalProperties": false }
491
+ },
492
+ "startsWith": {
493
+ "kind": "testValidationMatcher",
494
+ "version": "4.10.1",
495
+ "name": "startsWith",
496
+ "group": "citrus",
497
+ "module": "citrus-base",
498
+ "title": "StartsWith",
499
+ "propertiesSchema": {
500
+ "$schema": "http://json-schema.org/draft-07/schema#",
501
+ "type": "object",
502
+ "properties": {
503
+ "value": {
504
+ "type": "string",
505
+ "title": "Value",
506
+ "description": "The expected control value."
507
+ }
508
+ },
509
+ "required": [
510
+ "value"
511
+ ],
512
+ "additionalProperties": false }
513
+ }
514
+ }