@kaoto/camel-catalog 0.6.0 → 0.7.0
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/camel-main/4.18.1.redhat-00019/{index-c2b60ed1b80d5703c243149485b59ddf.json → index-8bebcd40b377fba15825a272c711256f.json} +1 -1
- package/dist/camel-catalog/camel-quarkus/3.33.0.redhat-00007/{index-3ed9a5a025adede36713dadb2f88a5f8.json → index-435274155e166feeba853efd9320c43c.json} +1 -1
- package/dist/camel-catalog/camel-springboot/4.18.1.redhat-00014/{index-291f46403fc4b16c3273237d067064a9.json → index-fdd310743f9d9edd7a4923e6f70cd70b.json} +1 -1
- package/dist/camel-catalog/citrus/4.10.0/citrus-catalog-aggregate-test-actions.json +17056 -18138
- package/dist/camel-catalog/citrus/4.10.0/citrus-catalog-aggregate-test-containers.json +422 -526
- package/dist/camel-catalog/citrus/4.10.1/citrus-catalog-aggregate-test-actions.json +17109 -18215
- package/dist/camel-catalog/citrus/4.10.1/citrus-catalog-aggregate-test-containers.json +422 -526
- package/dist/camel-catalog/index.json +17 -6
- package/dist/camel-catalog/xslt/3.0/index.json +19 -0
- package/dist/camel-catalog/xslt/3.0/xslt-xpath-functions.json +12042 -0
- package/dist/index.js +1 -0
- package/dist/types/catalog-index.d.ts +30 -4
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -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-07-30 15:37:40.
|
|
4
4
|
|
|
5
5
|
export interface CatalogCliArgument {
|
|
6
6
|
runtime: CatalogRuntime;
|
|
@@ -48,13 +48,13 @@ export interface CatalogLibraryEntry {
|
|
|
48
48
|
export interface Constants {
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
export interface KaotoFunction {
|
|
51
|
+
export interface KaotoFunction<A> {
|
|
52
52
|
name: string;
|
|
53
53
|
displayName: string;
|
|
54
54
|
description: string;
|
|
55
55
|
returnType: string;
|
|
56
56
|
returnCollection: boolean;
|
|
57
|
-
arguments:
|
|
57
|
+
arguments: A[];
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
export interface KaotoFunctionArgument {
|
|
@@ -66,6 +66,19 @@ export interface KaotoFunctionArgument {
|
|
|
66
66
|
maxOccurs: number;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
+
export interface KaotoFunctionSignature {
|
|
70
|
+
returnType: string;
|
|
71
|
+
arguments: KaotoFunctionSignatureArgument[];
|
|
72
|
+
properties: string[];
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export interface KaotoFunctionSignatureArgument {
|
|
76
|
+
name: string;
|
|
77
|
+
type: string;
|
|
78
|
+
usage: string;
|
|
79
|
+
default: string;
|
|
80
|
+
}
|
|
81
|
+
|
|
69
82
|
export interface MavenCoordinates {
|
|
70
83
|
groupId: string;
|
|
71
84
|
artifactId: string;
|
|
@@ -79,6 +92,19 @@ export interface ResolvedVersions {
|
|
|
79
92
|
catalogDownloadVersion: string;
|
|
80
93
|
}
|
|
81
94
|
|
|
95
|
+
export interface XPathFunction extends KaotoFunction<XPathFunctionArgument> {
|
|
96
|
+
arguments: XPathFunctionArgument[];
|
|
97
|
+
prefix: string;
|
|
98
|
+
returnCardinality: string;
|
|
99
|
+
signatures: KaotoFunctionSignature[];
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export interface XPathFunctionArgument extends KaotoFunctionArgument {
|
|
103
|
+
cardinality: string;
|
|
104
|
+
usage: string;
|
|
105
|
+
default: string;
|
|
106
|
+
}
|
|
107
|
+
|
|
82
108
|
export type RestResponse<R> = Promise<R>;
|
|
83
109
|
|
|
84
|
-
export type CatalogRuntime = "Main" | "Quarkus" | "SpringBoot" | "Citrus";
|
|
110
|
+
export type CatalogRuntime = "Main" | "Quarkus" | "SpringBoot" | "Citrus" | "XSLT";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaoto/camel-catalog",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "Camel Catalog and schemas for Kaoto",
|
|
6
6
|
"repository": "https://github.com/KaotoIO/camel-catalog",
|
|
@@ -52,6 +52,6 @@
|
|
|
52
52
|
"typescript": "^5.4.2",
|
|
53
53
|
"typescript-eslint": "^8.5.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "41f108479e695603720414ee1d09d13f7b38b2db",
|
|
56
56
|
"packageManager": "yarn@4.16.0"
|
|
57
57
|
}
|