@elyra/pipeline-schemas 3.0.107 → 3.0.109

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.
@@ -593,7 +593,7 @@
593
593
  "type": "array",
594
594
  "minItems": 0,
595
595
  "items": {
596
- "$ref": "#/definitions/node_decoration_def"
596
+ "$ref": "#/definitions/comment_decoration_def"
597
597
  },
598
598
  "uniqueItems": true
599
599
  }
@@ -607,6 +607,9 @@
607
607
  ],
608
608
  "additionalProperties": true
609
609
  },
610
+ "comment_decoration_def": {
611
+ "$ref": "#/definitions/node_decoration_def"
612
+ },
610
613
  "comment_link_def": {
611
614
  "description": "Comment link definition",
612
615
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyra/pipeline-schemas",
3
- "version": "3.0.107",
3
+ "version": "3.0.109",
4
4
  "description": "pipeline-schemas",
5
5
  "main": "common-pipeline/pipeline-flow/upgrade/upgrade-flow.js",
6
6
  "homepage": "https://github.com/elyra-ai/pipeline-schemas",
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2025 Elyra Authors
2
+ * Copyright 2025-2026 Elyra Authors
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License");
5
5
  * you may not use this file except in compliance with the License.
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2025 Elyra Authors
2
+ * Copyright 2025-2026 Elyra Authors
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License");
5
5
  * you may not use this file except in compliance with the License.
package/types/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * Copyright 2025 Elyra Authors
3
+ * Copyright 2025-2026 Elyra Authors
4
4
  *
5
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
6
  * you may not use this file except in compliance with the License.
@@ -40,6 +40,7 @@ export {
40
40
  PortUiDef,
41
41
  ZoomObjectDef,
42
42
  NodeDecorationDef,
43
+ CommentDecorationDef,
43
44
  LinkDecorationDef,
44
45
  ImageDecorationDef,
45
46
  LabelDecorationDef,
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2025 Elyra Authors
2
+ * Copyright 2025-2026 Elyra Authors
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License");
5
5
  * you may not use this file except in compliance with the License.
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2025 Elyra Authors
2
+ * Copyright 2025-2026 Elyra Authors
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License");
5
5
  * you may not use this file except in compliance with the License.
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2025 Elyra Authors
2
+ * Copyright 2025-2026 Elyra Authors
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License");
5
5
  * you may not use this file except in compliance with the License.
@@ -118,7 +118,7 @@ export type PortsDef = PortDef[];
118
118
  /**
119
119
  * Decoration used to decorate a node or comment
120
120
  */
121
- export type NodeDecorationDef = (ImageDecorationDef | LabelDecorationDef | ShapeDecorationDef | JsxDecorationDef) & {
121
+ export type CommentDecorationDef = (ImageDecorationDef | LabelDecorationDef | ShapeDecorationDef | JsxDecorationDef) & {
122
122
  /**
123
123
  * Indicates an anchor point on the node or comment at which the decoration will be displayed.
124
124
  */
@@ -616,7 +616,7 @@ export interface NodeUiDef {
616
616
  *
617
617
  * @minItems 0
618
618
  */
619
- decorations?: NodeDecorationDef[];
619
+ decorations?: CommentDecorationDef[];
620
620
  [k: string]: unknown;
621
621
  }
622
622
  /**
@@ -1041,7 +1041,7 @@ export interface CommentDef {
1041
1041
  *
1042
1042
  * @minItems 0
1043
1043
  */
1044
- decorations?: NodeDecorationDef[];
1044
+ decorations?: CommentDecorationDef[];
1045
1045
  [k: string]: unknown;
1046
1046
  }
1047
1047
  /**