Skip to content

Commit 7172e13

Browse files
SDK regeneration
1 parent c091def commit 7172e13

File tree

1,657 files changed

+42546
-45379
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,657 files changed

+42546
-45379
lines changed

.github/workflows/auto-merge-release.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

.github/workflows/ci-workflow-server.yaml

Lines changed: 0 additions & 46 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 11 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,6 @@
11
name: ci
22

3-
on:
4-
push:
5-
branches:
6-
- main
7-
tags:
8-
- "*"
9-
10-
pull_request:
11-
types:
12-
- opened
13-
- reopened
14-
- synchronize
15-
3+
on: [push]
164
jobs:
175
compile:
186
runs-on: ubuntu-latest
@@ -22,17 +10,12 @@ jobs:
2210
- name: Set up python
2311
uses: actions/setup-python@v4
2412
with:
25-
python-version: 3.9
13+
python-version: 3.8
2614
- name: Bootstrap poetry
27-
run: make setup-poetry
15+
run: |
16+
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
2817
- name: Install dependencies
2918
run: poetry install
30-
- name: Format
31-
run: poetry run black --check .
32-
- name: Order Imports
33-
run: poetry run isort --check .
34-
- name: Lint
35-
run: poetry run flake8
3619
- name: Compile
3720
run: poetry run mypy .
3821
test:
@@ -43,14 +26,15 @@ jobs:
4326
- name: Set up python
4427
uses: actions/setup-python@v4
4528
with:
46-
python-version: 3.9
29+
python-version: 3.8
4730
- name: Bootstrap poetry
48-
run: make setup-poetry
31+
run: |
32+
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
4933
- name: Install dependencies
5034
run: poetry install
5135

5236
- name: Test
53-
run: make test-ci
37+
run: poetry run pytest -rP .
5438

5539
publish:
5640
needs: [compile, test]
@@ -62,9 +46,10 @@ jobs:
6246
- name: Set up python
6347
uses: actions/setup-python@v4
6448
with:
65-
python-version: 3.9
49+
python-version: 3.8
6650
- name: Bootstrap poetry
67-
run: make setup-poetry
51+
run: |
52+
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
6853
- name: Install dependencies
6954
run: poetry install
7055
- name: Publish to pypi

.github/workflows/release.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,3 @@
33
__pycache__/
44
dist/
55
poetry.toml
6-
7-
.env
8-
.npmrc
9-
ee/codegen/lib/
10-
ee/codegen/src/assets/node-definitions.json
11-
examples/.ipynb_checkpoints/
12-
node_modules/
13-
tsconfig.tsbuildinfo
14-
.idea
15-
.DS_Store
16-
htmlcov/
17-
CLAUDE.md

LICENSE

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
1-
Copyright (c) 2023-present Vocify Inc. dba Velum
1+
MIT License
22

3-
Portions of this software are licensed as follows:
4-
5-
* All content that resides under the "ee/" directory of this repository, if
6-
that directory exists, is licensed under the license defined in "ee/LICENSE".
7-
* All third party components incorporated into the Vellum Software are
8-
licensed under the original license provided by the owner of the applicable
9-
component.
10-
* Content outside of the above mentioned directories or restrictions above is
11-
available under the "MIT Expat" license as defined below.
3+
Copyright (c) 2025 Vellum.
124

135
Permission is hereby granted, free of charge, to any person obtaining a copy
146
of this software and associated documentation files (the "Software"), to deal
@@ -26,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2618
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2719
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2820
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29-
SOFTWARE.
21+
SOFTWARE.

0 commit comments

Comments
 (0)