@elyra/pipeline-schemas 3.0.102 → 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.
|
@@ -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 }}
|
|
@@ -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"
|
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.
|
|
@@ -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.
|