@elyra/pipeline-schemas 3.0.101 → 3.0.106
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/.github/workflows/build.yml +6 -4
- package/.github/workflows/publish.yml +14 -7
- package/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json +4 -0
- package/common-pipeline/pipeline-flow/pipeline-flow-v3-schema.json +6 -0
- package/package.json +2 -2
- package/types/canvas-info-v3.d.ts +4 -0
- package/types/palette-v3.d.ts +10 -0
- package/types/pipeline-flow-v3.d.ts +10 -0
|
@@ -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.
|
|
@@ -29,10 +29,12 @@ concurrency:
|
|
|
29
29
|
jobs:
|
|
30
30
|
build:
|
|
31
31
|
runs-on: ubuntu-latest
|
|
32
|
+
env:
|
|
33
|
+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
|
32
34
|
steps:
|
|
33
|
-
- uses: actions/checkout@
|
|
35
|
+
- uses: actions/checkout@v6
|
|
34
36
|
- name: Use Node.js
|
|
35
|
-
uses: actions/setup-node@
|
|
37
|
+
uses: actions/setup-node@v6
|
|
36
38
|
with:
|
|
37
|
-
node-version:
|
|
39
|
+
node-version: 24.x
|
|
38
40
|
- run: ./scripts/generateTS.sh
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#
|
|
2
|
-
# Copyright 2017-
|
|
2
|
+
# Copyright 2017-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.
|
|
@@ -22,16 +22,23 @@ jobs:
|
|
|
22
22
|
publish:
|
|
23
23
|
if: "!contains(github.event.commits[0].message, '[skip ci]')"
|
|
24
24
|
runs-on: ubuntu-latest
|
|
25
|
+
permissions:
|
|
26
|
+
contents: read
|
|
27
|
+
id-token: write # Required for OIDC authentication
|
|
28
|
+
env:
|
|
29
|
+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
|
25
30
|
steps:
|
|
26
|
-
- uses: actions/checkout@
|
|
31
|
+
- uses: actions/checkout@v6
|
|
27
32
|
with:
|
|
28
33
|
token: ${{ secrets.GIT_TOKEN }}
|
|
34
|
+
fetch-depth: 0
|
|
35
|
+
- name: Pull latest changes
|
|
36
|
+
run: git pull origin main
|
|
29
37
|
- name: Use Node.js
|
|
30
|
-
uses: actions/setup-node@
|
|
38
|
+
uses: actions/setup-node@v6
|
|
31
39
|
with:
|
|
32
|
-
node-version:
|
|
40
|
+
node-version: 24.x
|
|
41
|
+
registry-url: 'https://registry.npmjs.org'
|
|
42
|
+
- run: node -v && npm -v
|
|
33
43
|
- run: ./scripts/generateTS.sh
|
|
34
44
|
- run: ./scripts/publish_modules.sh
|
|
35
|
-
env:
|
|
36
|
-
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
|
|
37
|
-
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
|
|
@@ -491,6 +491,10 @@
|
|
|
491
491
|
"temporary": {
|
|
492
492
|
"description": "If set to true, the decoration will not be serialized in the pipeline flow.",
|
|
493
493
|
"type": "boolean"
|
|
494
|
+
},
|
|
495
|
+
"focusable": {
|
|
496
|
+
"description": "Indicates whether the decoration can receive keyboard focus or not.",
|
|
497
|
+
"type": "boolean"
|
|
494
498
|
}
|
|
495
499
|
},
|
|
496
500
|
"required": [
|
|
@@ -601,6 +601,12 @@
|
|
|
601
601
|
"description": "Link type attribute",
|
|
602
602
|
"type": "string"
|
|
603
603
|
},
|
|
604
|
+
"parameters": {
|
|
605
|
+
"description": "Parameters for the link",
|
|
606
|
+
"type": "object",
|
|
607
|
+
"properties": {},
|
|
608
|
+
"additionalProperties": true
|
|
609
|
+
},
|
|
604
610
|
"description": {
|
|
605
611
|
"description": "Deprecated - use description in pipeline-flow-ui-v3-schema.json#/definitions/node_link_ui_def instead.",
|
|
606
612
|
"type": "string",
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyra/pipeline-schemas",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.106",
|
|
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",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/elyra-ai/pipeline-schemas
|
|
10
|
+
"url": "git+https://github.com/elyra-ai/pipeline-schemas.git#main"
|
|
11
11
|
},
|
|
12
12
|
"bugs": {
|
|
13
13
|
"url": "https://github.com/elyra-ai/pipeline-schemas/issues"
|
|
@@ -668,6 +668,10 @@ export interface DecorationSharedProperties {
|
|
|
668
668
|
* If set to true, the decoration will not be serialized in the pipeline flow.
|
|
669
669
|
*/
|
|
670
670
|
temporary?: boolean;
|
|
671
|
+
/**
|
|
672
|
+
* Indicates whether the decoration can receive keyboard focus or not.
|
|
673
|
+
*/
|
|
674
|
+
focusable?: boolean;
|
|
671
675
|
[k: string]: unknown;
|
|
672
676
|
}
|
|
673
677
|
/**
|
package/types/palette-v3.d.ts
CHANGED
|
@@ -279,6 +279,12 @@ export interface NodeLinkDef {
|
|
|
279
279
|
* Link type attribute
|
|
280
280
|
*/
|
|
281
281
|
type_attr?: string;
|
|
282
|
+
/**
|
|
283
|
+
* Parameters for the link
|
|
284
|
+
*/
|
|
285
|
+
parameters?: {
|
|
286
|
+
[k: string]: unknown;
|
|
287
|
+
};
|
|
282
288
|
/**
|
|
283
289
|
* @deprecated
|
|
284
290
|
* Deprecated - use description in pipeline-flow-ui-v3-schema.json#/definitions/node_link_ui_def instead.
|
|
@@ -360,6 +366,10 @@ export interface DecorationSharedProperties {
|
|
|
360
366
|
* If set to true, the decoration will not be serialized in the pipeline flow.
|
|
361
367
|
*/
|
|
362
368
|
temporary?: boolean;
|
|
369
|
+
/**
|
|
370
|
+
* Indicates whether the decoration can receive keyboard focus or not.
|
|
371
|
+
*/
|
|
372
|
+
focusable?: boolean;
|
|
363
373
|
[k: string]: unknown;
|
|
364
374
|
}
|
|
365
375
|
/**
|
|
@@ -364,6 +364,12 @@ export interface NodeLinkDef {
|
|
|
364
364
|
* Link type attribute
|
|
365
365
|
*/
|
|
366
366
|
type_attr?: string;
|
|
367
|
+
/**
|
|
368
|
+
* Parameters for the link
|
|
369
|
+
*/
|
|
370
|
+
parameters?: {
|
|
371
|
+
[k: string]: unknown;
|
|
372
|
+
};
|
|
367
373
|
/**
|
|
368
374
|
* @deprecated
|
|
369
375
|
* Deprecated - use description in pipeline-flow-ui-v3-schema.json#/definitions/node_link_ui_def instead.
|
|
@@ -445,6 +451,10 @@ export interface DecorationSharedProperties {
|
|
|
445
451
|
* If set to true, the decoration will not be serialized in the pipeline flow.
|
|
446
452
|
*/
|
|
447
453
|
temporary?: boolean;
|
|
454
|
+
/**
|
|
455
|
+
* Indicates whether the decoration can receive keyboard focus or not.
|
|
456
|
+
*/
|
|
457
|
+
focusable?: boolean;
|
|
448
458
|
[k: string]: unknown;
|
|
449
459
|
}
|
|
450
460
|
/**
|