@kaoto/camel-catalog 0.3.6 → 0.3.9

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