@elyra/pipeline-schemas 3.0.80 → 3.0.90
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 +38 -0
- package/.github/workflows/publish.yml +3 -2
- package/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json +3 -3
- package/package.json +4 -4
- package/types/canvas-info-v3.ts +1205 -0
- package/types/index.d.ts +38 -0
- package/types/palette-v3.ts +863 -0
- package/types/pipeline-flow-v3.ts +1252 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyright 2025 Elyra Authors
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
#
|
|
16
|
+
name: Elyra pipeline-schemas build
|
|
17
|
+
|
|
18
|
+
on:
|
|
19
|
+
push:
|
|
20
|
+
branches: '*'
|
|
21
|
+
pull_request:
|
|
22
|
+
branches: '*'
|
|
23
|
+
|
|
24
|
+
# Ensure build jobs for a PR are cancelled when a new commit is pushed to the PR
|
|
25
|
+
concurrency:
|
|
26
|
+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
27
|
+
cancel-in-progress: true
|
|
28
|
+
|
|
29
|
+
jobs:
|
|
30
|
+
build:
|
|
31
|
+
runs-on: ubuntu-latest
|
|
32
|
+
steps:
|
|
33
|
+
- uses: actions/checkout@v4
|
|
34
|
+
- name: Use Node.js
|
|
35
|
+
uses: actions/setup-node@v4
|
|
36
|
+
with:
|
|
37
|
+
node-version: 20.x
|
|
38
|
+
- run: ./scripts/generateTS.sh
|
|
@@ -27,9 +27,10 @@ jobs:
|
|
|
27
27
|
with:
|
|
28
28
|
token: ${{ secrets.GIT_TOKEN }}
|
|
29
29
|
- name: Use Node.js
|
|
30
|
-
uses: actions/setup-node@
|
|
30
|
+
uses: actions/setup-node@v4
|
|
31
31
|
with:
|
|
32
|
-
node-version:
|
|
32
|
+
node-version: 20.x
|
|
33
|
+
- run: ./scripts/generateTS.sh
|
|
33
34
|
- run: ./scripts/publish_modules.sh
|
|
34
35
|
env:
|
|
35
36
|
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
|
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
"additionalProperties": false
|
|
298
298
|
},
|
|
299
299
|
"decoration_def": {
|
|
300
|
-
"
|
|
300
|
+
"anyOf": [
|
|
301
301
|
{
|
|
302
302
|
"$ref": "#/definitions/node_decoration_def"
|
|
303
303
|
},
|
|
@@ -324,7 +324,7 @@
|
|
|
324
324
|
]
|
|
325
325
|
}
|
|
326
326
|
},
|
|
327
|
-
"
|
|
327
|
+
"anyOf": [
|
|
328
328
|
{
|
|
329
329
|
"$ref": "#/definitions/image_decoration_def"
|
|
330
330
|
},
|
|
@@ -355,7 +355,7 @@
|
|
|
355
355
|
"type": "integer"
|
|
356
356
|
}
|
|
357
357
|
},
|
|
358
|
-
"
|
|
358
|
+
"anyOf": [
|
|
359
359
|
{
|
|
360
360
|
"$ref": "#/definitions/image_decoration_def"
|
|
361
361
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyra/pipeline-schemas",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.90",
|
|
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",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"bugs": {
|
|
13
13
|
"url": "https://github.com/elyra-ai/pipeline-schemas/issues"
|
|
14
14
|
},
|
|
15
|
-
"devDependencies": {
|
|
16
|
-
"dependencies": {
|
|
15
|
+
"devDependencies": {
|
|
17
16
|
"json-schema-to-typescript": "^15.0.4"
|
|
18
|
-
}
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {}
|
|
19
19
|
}
|