@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/index.js CHANGED
@@ -39,6 +39,7 @@ const CATALOGS = {
39
39
  '4.10.7.redhat-00013',
40
40
  ],
41
41
  Citrus: ['4.10.0', '4.10.1'],
42
+ XSLT: ['3.0'],
42
43
  };
43
44
 
44
45
  const KAMELETS_VERSION = '4.20.0';
@@ -1,6 +1,6 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- // Generated using typescript-generator version 3.2.1263 on 2026-06-23 13:39:26.
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: KaotoFunctionArgument[];
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.6.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": "39d001f5cd4d356d0966a47a6843c1ce7d744a3e",
55
+ "gitHead": "41f108479e695603720414ee1d09d13f7b38b2db",
56
56
  "packageManager": "yarn@4.16.0"
57
57
  }