Skip to content

Commit bb89c32

Browse files
authored
Merge branch 'main' into VAPI-3161-add-refer-verb
2 parents 2052a03 + d85f4ad commit bb89c32

62 files changed

Lines changed: 624 additions & 161 deletions

File tree

Some content is hidden

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

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
fi
5050
5151
- name: Checkout
52-
uses: actions/checkout@v6
52+
uses: actions/checkout@v7
5353

5454
- name: Set OpenAPI Generator Version
5555
run: |
@@ -58,7 +58,7 @@ jobs:
5858
shell: bash
5959

6060
- name: Generate SDK with Updated Version
61-
uses: Bandwidth/generate-sdk-action@v4.0.0
61+
uses: Bandwidth/generate-sdk-action@v4.1.0
6262
with:
6363
openapi-generator-version: ${{ env.OPENAPI_GENERATOR_VERSION }}
6464
language: python

.github/workflows/test-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,18 @@ jobs:
3737
strategy:
3838
matrix:
3939
os: [windows-2022, windows-2025, ubuntu-22.04, ubuntu-24.04]
40-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
40+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
4141
fail-fast: false
4242
env:
4343
PYTHON_VERSION: ${{ matrix.python-version }}
4444
OPERATING_SYSTEM: ${{ matrix.os }}
4545

4646
steps:
4747
- name: Checkout
48-
uses: actions/checkout@v6
48+
uses: actions/checkout@v7
4949

5050
- name: Set up Python
51-
uses: actions/setup-python@v6
51+
uses: actions/setup-python@v7
5252
with:
5353
python-version: ${{ matrix.python-version }}
5454

.github/workflows/test-smoke.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ concurrency:
2323
cancel-in-progress: true
2424

2525
env:
26-
PYTHON_VERSION: '3.12'
26+
PYTHON_VERSION: "3.12"
2727
OPERATING_SYSTEM: ubuntu
2828
BW_USERNAME: ${{ secrets.BW_USERNAME }}
2929
BW_PASSWORD: ${{ secrets.BW_PASSWORD }}
@@ -52,12 +52,12 @@ jobs:
5252
MANTECA_APPLICATION_ID: ${{ secrets.MANTECA_APPLICATION_ID }}
5353
steps:
5454
- name: Checkout
55-
uses: actions/checkout@v6
55+
uses: actions/checkout@v7
5656

5757
- name: Set up Python
58-
uses: actions/setup-python@v6
58+
uses: actions/setup-python@v7
5959
with:
60-
python-version: '3.14'
60+
python-version: "3.14"
6161

6262
- name: Install Packages
6363
run: |
@@ -91,12 +91,12 @@ jobs:
9191
MANTECA_APPLICATION_ID: ${{ secrets.MANTECA_UP_APPLICATION_ID }}
9292
steps:
9393
- name: Checkout
94-
uses: actions/checkout@v6
94+
uses: actions/checkout@v7
9595

9696
- name: Set up Python
97-
uses: actions/setup-python@v6
97+
uses: actions/setup-python@v7
9898
with:
99-
python-version: '3.14'
99+
python-version: "3.14"
100100

101101
- name: Install Packages
102102
run: |

.openapi-generator/FILES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,8 @@ bandwidth/models/recording_transcription_metadata.py
177177
bandwidth/models/recording_transcriptions.py
178178
bandwidth/models/redirect_callback.py
179179
bandwidth/models/redirect_method_enum.py
180+
bandwidth/models/refer_call_status_enum.py
181+
bandwidth/models/refer_complete_callback.py
180182
bandwidth/models/sip_connection_metadata.py
181183
bandwidth/models/sip_credentials.py
182184
bandwidth/models/sms_message_content.py
@@ -387,6 +389,8 @@ docs/RecordingTranscriptions.md
387389
docs/RecordingsApi.md
388390
docs/RedirectCallback.md
389391
docs/RedirectMethodEnum.md
392+
docs/ReferCallStatusEnum.md
393+
docs/ReferCompleteCallback.md
390394
docs/SipConnectionMetadata.md
391395
docs/SipCredentials.md
392396
docs/SmsMessageContent.md

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,8 @@ Class | Method | HTTP request | Description
319319
- [RecordingTranscriptions](docs/RecordingTranscriptions.md)
320320
- [RedirectCallback](docs/RedirectCallback.md)
321321
- [RedirectMethodEnum](docs/RedirectMethodEnum.md)
322+
- [ReferCallStatusEnum](docs/ReferCallStatusEnum.md)
323+
- [ReferCompleteCallback](docs/ReferCompleteCallback.md)
322324
- [SipConnectionMetadata](docs/SipConnectionMetadata.md)
323325
- [SipCredentials](docs/SipCredentials.md)
324326
- [SmsMessageContent](docs/SmsMessageContent.md)

0 commit comments

Comments
 (0)