@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.
- package/dist/citrus-catalog/citrus/4.9.2/citrus-agent-configuration.json +118 -0
- package/dist/citrus-catalog/citrus/4.9.2/citrus-catalog-aggregate-endpoints.json +3237 -0
- package/dist/citrus-catalog/citrus/4.9.2/citrus-catalog-aggregate-functions.json +1069 -0
- package/dist/citrus-catalog/citrus/4.9.2/citrus-catalog-aggregate-test-actions.json +19228 -0
- package/dist/citrus-catalog/citrus/4.9.2/citrus-catalog-aggregate-test-containers.json +873 -0
- package/dist/citrus-catalog/citrus/4.9.2/citrus-catalog-aggregate-validation-matcher.json +464 -0
- package/dist/citrus-catalog/citrus/4.9.2/citrus-testcase.json +13949 -0
- package/dist/citrus-catalog/citrus/4.9.2/citrus-testcase.xsd +2970 -0
- package/dist/citrus-catalog/citrus/4.9.2/index.json +51 -0
- package/dist/citrus-catalog/citrus/citrus-agent-configuration.json +118 -0
- package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-endpoints.json +3237 -0
- package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-functions.json +1069 -0
- package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-test-actions.json +19228 -0
- package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-test-containers.json +873 -0
- package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-validation-matcher.json +464 -0
- package/dist/citrus-catalog/citrus/citrus-testcase.json +13949 -0
- package/dist/citrus-catalog/citrus/citrus-testcase.xsd +2970 -0
- package/dist/citrus-catalog/citrus/index.json +51 -0
- package/dist/citrus-catalog/index.json +15 -0
- package/dist/types/catalog-index.d.ts +2 -2
- package/package.json +8 -6
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name" : "Citrus 4.9.2",
|
|
3
|
+
"version" : "4.9.2",
|
|
4
|
+
"runtime" : "Citrus",
|
|
5
|
+
"catalogs" : {
|
|
6
|
+
"actions" : {
|
|
7
|
+
"name" : "actions",
|
|
8
|
+
"description" : "Aggregated Citrus catalog for test actions",
|
|
9
|
+
"version" : "4.9.2",
|
|
10
|
+
"file" : "citrus-catalog-aggregate-test-actions.json"
|
|
11
|
+
},
|
|
12
|
+
"containers" : {
|
|
13
|
+
"name" : "containers",
|
|
14
|
+
"description" : "Aggregated Citrus catalog for test action containers",
|
|
15
|
+
"version" : "4.9.2",
|
|
16
|
+
"file" : "citrus-catalog-aggregate-test-containers.json"
|
|
17
|
+
},
|
|
18
|
+
"endpoints" : {
|
|
19
|
+
"name" : "endpoints",
|
|
20
|
+
"description" : "Aggregated Citrus catalog for endpoints",
|
|
21
|
+
"version" : "4.9.2",
|
|
22
|
+
"file" : "citrus-catalog-aggregate-endpoints.json"
|
|
23
|
+
},
|
|
24
|
+
"functions" : {
|
|
25
|
+
"name" : "functions",
|
|
26
|
+
"description" : "Aggregated Citrus catalog for functions",
|
|
27
|
+
"version" : "4.9.2",
|
|
28
|
+
"file" : "citrus-catalog-aggregate-functions.json"
|
|
29
|
+
},
|
|
30
|
+
"validationMatcher" : {
|
|
31
|
+
"name" : "validationMatcher",
|
|
32
|
+
"description" : "Aggregated Citrus catalog for validation matcher",
|
|
33
|
+
"version" : "4.9.2",
|
|
34
|
+
"file" : "citrus-catalog-aggregate-validation-matcher.json"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"schemas" : {
|
|
38
|
+
"citrus-yaml" : {
|
|
39
|
+
"name" : "citrus-yaml",
|
|
40
|
+
"description" : "Citrus Json schema for tests",
|
|
41
|
+
"version" : "4.9.2",
|
|
42
|
+
"file" : "citrus-testcase.json"
|
|
43
|
+
},
|
|
44
|
+
"citrus-xml-io" : {
|
|
45
|
+
"name" : "citrus-xml",
|
|
46
|
+
"description" : "Citrus XSD schema for tests",
|
|
47
|
+
"version" : "4.9.2",
|
|
48
|
+
"file" : "citrus-testcase.xsd"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name" : "Citrus catalog",
|
|
3
|
+
"version" : 1,
|
|
4
|
+
"definitions" : [ {
|
|
5
|
+
"name" : "Citrus Latest",
|
|
6
|
+
"version" : "latest",
|
|
7
|
+
"runtime" : "Citrus",
|
|
8
|
+
"fileName" : "citrus/index.json"
|
|
9
|
+
}, {
|
|
10
|
+
"name" : "Citrus 4.9.2",
|
|
11
|
+
"version" : "4.9.2",
|
|
12
|
+
"runtime" : "Citrus",
|
|
13
|
+
"fileName" : "citrus/4.9.2/index.json"
|
|
14
|
+
} ]
|
|
15
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
// Generated using typescript-generator version 3.2.1263 on 2026-
|
|
3
|
+
// Generated using typescript-generator version 3.2.1263 on 2026-02-10 10:15:06.
|
|
4
4
|
|
|
5
5
|
export interface CatalogCliArgument {
|
|
6
6
|
runtime: CatalogRuntime;
|
|
@@ -64,4 +64,4 @@ export interface MavenCoordinates {
|
|
|
64
64
|
|
|
65
65
|
export type RestResponse<R> = Promise<R>;
|
|
66
66
|
|
|
67
|
-
export type CatalogRuntime = "Main" | "Quarkus" | "SpringBoot";
|
|
67
|
+
export type CatalogRuntime = "Main" | "Quarkus" | "SpringBoot" | "Citrus";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaoto/camel-catalog",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.9",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "Camel Catalog and schemas for Kaoto",
|
|
6
6
|
"repository": "https://github.com/KaotoIO/camel-catalog",
|
|
@@ -20,7 +20,9 @@
|
|
|
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"
|
|
23
|
+
"./*.json": "./dist/camel-catalog/*.json",
|
|
24
|
+
"./citrus/index.json": "./dist/citrus-catalog/index.json",
|
|
25
|
+
"./citrus/*.json": "./dist/citrus-catalog/*.json"
|
|
24
26
|
},
|
|
25
27
|
"scripts": {
|
|
26
28
|
"build": "yarn clean && yarn build:default:catalog && yarn build:ts && copyfiles index.js dist && yarn build:copy-catalog",
|
|
@@ -36,9 +38,9 @@
|
|
|
36
38
|
},
|
|
37
39
|
"devDependencies": {
|
|
38
40
|
"@eslint/js": "^9.10.0",
|
|
39
|
-
"@lerna-lite/cli": "^4.
|
|
40
|
-
"@lerna-lite/publish": "^4.
|
|
41
|
-
"@lerna-lite/version": "^4.
|
|
41
|
+
"@lerna-lite/cli": "^4.11.2",
|
|
42
|
+
"@lerna-lite/publish": "^4.11.2",
|
|
43
|
+
"@lerna-lite/version": "^4.11.2",
|
|
42
44
|
"@types/eslint__js": "^8.42.3",
|
|
43
45
|
"@types/node": "^20.0.0",
|
|
44
46
|
"copyfiles": "^2.4.1",
|
|
@@ -52,6 +54,6 @@
|
|
|
52
54
|
"typescript": "^5.4.2",
|
|
53
55
|
"typescript-eslint": "^8.5.0"
|
|
54
56
|
},
|
|
55
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "30b875400523fbe04edf9c9ad765c967f5a29fb1",
|
|
56
58
|
"packageManager": "yarn@4.12.0"
|
|
57
59
|
}
|