@kaoto/camel-catalog 0.3.9 → 0.3.11
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.
- package/dist/camel-catalog/index.json +6 -0
- package/dist/index.js +2 -0
- package/dist/types/catalog-index.d.ts +1 -1
- package/package.json +3 -5
- package/dist/citrus-catalog/citrus/citrus-agent-configuration.json +0 -118
- package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-endpoints.json +0 -3237
- package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-functions.json +0 -1069
- package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-test-actions.json +0 -19228
- package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-test-containers.json +0 -873
- package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-validation-matcher.json +0 -464
- package/dist/citrus-catalog/citrus/citrus-testcase.json +0 -13949
- package/dist/citrus-catalog/citrus/citrus-testcase.xsd +0 -2970
- package/dist/citrus-catalog/citrus/index.json +0 -51
- package/dist/citrus-catalog/index.json +0 -15
- /package/dist/{citrus-catalog → camel-catalog}/citrus/4.9.2/citrus-agent-configuration.json +0 -0
- /package/dist/{citrus-catalog → camel-catalog}/citrus/4.9.2/citrus-catalog-aggregate-endpoints.json +0 -0
- /package/dist/{citrus-catalog → camel-catalog}/citrus/4.9.2/citrus-catalog-aggregate-functions.json +0 -0
- /package/dist/{citrus-catalog → camel-catalog}/citrus/4.9.2/citrus-catalog-aggregate-test-actions.json +0 -0
- /package/dist/{citrus-catalog → camel-catalog}/citrus/4.9.2/citrus-catalog-aggregate-test-containers.json +0 -0
- /package/dist/{citrus-catalog → camel-catalog}/citrus/4.9.2/citrus-catalog-aggregate-validation-matcher.json +0 -0
- /package/dist/{citrus-catalog → camel-catalog}/citrus/4.9.2/citrus-testcase.json +0 -0
- /package/dist/{citrus-catalog → camel-catalog}/citrus/4.9.2/citrus-testcase.xsd +0 -0
- /package/dist/{citrus-catalog → camel-catalog}/citrus/4.9.2/index.json +0 -0
|
@@ -107,6 +107,12 @@
|
|
|
107
107
|
"version" : "4.4.0.redhat-00039",
|
|
108
108
|
"runtime" : "Spring Boot",
|
|
109
109
|
"fileName" : "camel-springboot/4.4.0.redhat-00039/index-e932d8bf76abf66231f19a2122a8477f.json"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name" : "Citrus 4.9.2",
|
|
113
|
+
"version" : "4.9.2",
|
|
114
|
+
"runtime" : "Citrus",
|
|
115
|
+
"fileName" : "citrus/4.9.2/index.json"
|
|
110
116
|
}
|
|
111
117
|
],
|
|
112
118
|
"version" : 3,
|
package/dist/index.js
CHANGED
|
@@ -24,6 +24,8 @@ const CATALOGS = {
|
|
|
24
24
|
// https://repo1.maven.org/maven2/org/apache/camel/springboot/camel-catalog-provider-springboot/
|
|
25
25
|
// https://maven.repository.redhat.com/ga/org/apache/camel/springboot/camel-catalog-provider-springboot/
|
|
26
26
|
SpringBoot: ['4.17.0', '4.14.4', '4.14.2.redhat-00015', '4.10.7.redhat-00013', '4.8.5.redhat-00008', '4.4.0.redhat-00039'],
|
|
27
|
+
// https://repo1.maven.org/maven2/org/citrusframework/citrus-catalog-schema/
|
|
28
|
+
Citrus: ['4.9.2'],
|
|
27
29
|
};
|
|
28
30
|
|
|
29
31
|
const KAMELETS_VERSION = '4.15.0';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
// Generated using typescript-generator version 3.2.1263 on 2026-02-
|
|
3
|
+
// Generated using typescript-generator version 3.2.1263 on 2026-02-20 09:07:17.
|
|
4
4
|
|
|
5
5
|
export interface CatalogCliArgument {
|
|
6
6
|
runtime: CatalogRuntime;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaoto/camel-catalog",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.11",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "Camel Catalog and schemas for Kaoto",
|
|
6
6
|
"repository": "https://github.com/KaotoIO/camel-catalog",
|
|
@@ -20,9 +20,7 @@
|
|
|
20
20
|
"./types": "./dist/types/index.ts",
|
|
21
21
|
"./catalog-index.d.ts": "./dist/types/catalog-index.d.ts",
|
|
22
22
|
"./package.json": "./package.json",
|
|
23
|
-
"./*.json": "./dist/camel-catalog/*.json"
|
|
24
|
-
"./citrus/index.json": "./dist/citrus-catalog/index.json",
|
|
25
|
-
"./citrus/*.json": "./dist/citrus-catalog/*.json"
|
|
23
|
+
"./*.json": "./dist/camel-catalog/*.json"
|
|
26
24
|
},
|
|
27
25
|
"scripts": {
|
|
28
26
|
"build": "yarn clean && yarn build:default:catalog && yarn build:ts && copyfiles index.js dist && yarn build:copy-catalog",
|
|
@@ -54,6 +52,6 @@
|
|
|
54
52
|
"typescript": "^5.4.2",
|
|
55
53
|
"typescript-eslint": "^8.5.0"
|
|
56
54
|
},
|
|
57
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "8f198074ba35e7b012883f6194c0957dde200285",
|
|
58
56
|
"packageManager": "yarn@4.12.0"
|
|
59
57
|
}
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema" : "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"type" : "object",
|
|
4
|
-
"properties" : {
|
|
5
|
-
"configClass" : {
|
|
6
|
-
"type" : "string",
|
|
7
|
-
"title" : "ConfigClass",
|
|
8
|
-
"description" : "Fully qualified configuration class name loaded as a Java bean configuration."
|
|
9
|
-
},
|
|
10
|
-
"defaultProperties" : {
|
|
11
|
-
"type" : "object",
|
|
12
|
-
"additionalProperties" : {
|
|
13
|
-
"type" : "string",
|
|
14
|
-
"title" : "DefaultProperties",
|
|
15
|
-
"description" : "Sets default properties"
|
|
16
|
-
},
|
|
17
|
-
"title" : "DefaultProperties",
|
|
18
|
-
"description" : "Sets default properties"
|
|
19
|
-
},
|
|
20
|
-
"engine" : {
|
|
21
|
-
"type" : "string",
|
|
22
|
-
"title" : "Engine",
|
|
23
|
-
"description" : "The test engine to use when running tests",
|
|
24
|
-
"default" : "junit5"
|
|
25
|
-
},
|
|
26
|
-
"includes" : {
|
|
27
|
-
"title" : "Includes",
|
|
28
|
-
"description" : "Test name patterns that specify which tests to include in the test run. Used when scanning packages for tests.",
|
|
29
|
-
"type" : "array",
|
|
30
|
-
"items" : {
|
|
31
|
-
"type" : "string",
|
|
32
|
-
"title" : "Includes",
|
|
33
|
-
"description" : "Test name patterns that specify which tests to include in the test run. Used when scanning packages for tests."
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"packages" : {
|
|
37
|
-
"title" : "Packages",
|
|
38
|
-
"description" : "List of package names to search for tests. All tests found in these packages are executed.",
|
|
39
|
-
"type" : "array",
|
|
40
|
-
"items" : {
|
|
41
|
-
"type" : "string",
|
|
42
|
-
"title" : "Packages",
|
|
43
|
-
"description" : "List of package names to search for tests. All tests found in these packages are executed."
|
|
44
|
-
}
|
|
45
|
-
},
|
|
46
|
-
"port" : {
|
|
47
|
-
"type" : "integer",
|
|
48
|
-
"title" : "Port",
|
|
49
|
-
"description" : "The Http port the agent service is listening on.",
|
|
50
|
-
"default" : "4567"
|
|
51
|
-
},
|
|
52
|
-
"reset" : {
|
|
53
|
-
"type" : "boolean",
|
|
54
|
-
"title" : "Reset",
|
|
55
|
-
"description" : "When enabled the Citrus context instance is reset after the test.",
|
|
56
|
-
"default" : "true"
|
|
57
|
-
},
|
|
58
|
-
"skipTests" : {
|
|
59
|
-
"type" : "boolean",
|
|
60
|
-
"title" : "SkipTests",
|
|
61
|
-
"description" : "When enabled no tests are run on application startup."
|
|
62
|
-
},
|
|
63
|
-
"systemExit" : {
|
|
64
|
-
"type" : "boolean",
|
|
65
|
-
"title" : "SystemExit",
|
|
66
|
-
"description" : "When enabled the application exits with an exit code after tests are run."
|
|
67
|
-
},
|
|
68
|
-
"testJar" : {
|
|
69
|
-
"type" : "string",
|
|
70
|
-
"title" : "TestJar",
|
|
71
|
-
"description" : "Set the test jar holding tests to execute. Jar file is used to perform package scans for test cases to run."
|
|
72
|
-
},
|
|
73
|
-
"testSources" : {
|
|
74
|
-
"title" : "TestSources",
|
|
75
|
-
"description" : "List of test sources to run. A test source represents a source code file in one of the supported languages (.java, .xml, .groovy, .yaml, .feature)",
|
|
76
|
-
"type" : "array",
|
|
77
|
-
"items" : {
|
|
78
|
-
"type" : "object",
|
|
79
|
-
"properties" : {
|
|
80
|
-
"filePath" : {
|
|
81
|
-
"type" : "string",
|
|
82
|
-
"title" : "FilePath",
|
|
83
|
-
"description" : "The source file path."
|
|
84
|
-
},
|
|
85
|
-
"name" : {
|
|
86
|
-
"type" : "string",
|
|
87
|
-
"title" : "Name",
|
|
88
|
-
"description" : "The source file name."
|
|
89
|
-
},
|
|
90
|
-
"type" : {
|
|
91
|
-
"type" : "string",
|
|
92
|
-
"title" : "Type",
|
|
93
|
-
"description" : "The test source type."
|
|
94
|
-
}
|
|
95
|
-
},
|
|
96
|
-
"title" : "TestSources",
|
|
97
|
-
"description" : "List of test sources to run. A test source represents a source code file in one of the supported languages (.java, .xml, .groovy, .yaml, .feature)"
|
|
98
|
-
}
|
|
99
|
-
},
|
|
100
|
-
"timeToLive" : {
|
|
101
|
-
"type" : "integer",
|
|
102
|
-
"title" : "TimeToLive",
|
|
103
|
-
"description" : "Set time to live for the Citrus application. When set the application terminates automatically when time is over."
|
|
104
|
-
},
|
|
105
|
-
"verbose" : {
|
|
106
|
-
"type" : "boolean",
|
|
107
|
-
"title" : "Verbose",
|
|
108
|
-
"description" : "When enabled the test run prints verbose messages.",
|
|
109
|
-
"default" : "true"
|
|
110
|
-
},
|
|
111
|
-
"workDir" : {
|
|
112
|
-
"type" : "string",
|
|
113
|
-
"title" : "WorkDir",
|
|
114
|
-
"description" : "Set custom working directory. File system based test engines may use this directory to read files from."
|
|
115
|
-
}
|
|
116
|
-
},
|
|
117
|
-
"required" : [ "engine", "port" ]
|
|
118
|
-
}
|