Skip to content

Commit cdc80c3

Browse files
github-actions[bot]speakeasybotspeakeasy-github[bot]
authored
chore: 🐝 Update SDK - Generate 3.14.2 (#34)
* ## Python SDK Changes: * `novu.workflows.create()`: `response.steps[]` **Changed** * `novu.workflows.update()`: `response.steps[]` **Changed** * `novu.workflows.get()`: `response.steps[]` **Changed** * `novu.workflows.patch()`: `response.steps[]` **Changed** * `novu.workflows.sync()`: `response.steps[]` **Changed** * `novu.workflows.steps.retrieve()`: `response.step_resolver_hash` **Added** * empty commit to trigger [run-tests] workflow --------- Co-authored-by: speakeasybot <bot@speakeasyapi.dev> Co-authored-by: speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
1 parent ccab966 commit cdc80c3

File tree

417 files changed

+2274
-1215
lines changed

Some content is hidden

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

417 files changed

+2274
-1215
lines changed

.speakeasy/gen.lock

Lines changed: 843 additions & 836 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ generation:
3232
generateNewTests: false
3333
skipResponseBodyAssertions: false
3434
python:
35-
version: 3.14.1
35+
version: 3.14.2
3636
additionalDependencies:
3737
dev:
3838
- pytest>=6.0.0

.speakeasy/workflow.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
speakeasyVersion: 1.739.1
1+
speakeasyVersion: 1.745.1
22
sources:
33
novu-OAS:
44
sourceNamespace: novu-oas
5-
sourceRevisionDigest: sha256:8a2f7a356174aa0619b95dba3f1a10a3094fd16124928170762f85353ba3509e
6-
sourceBlobDigest: sha256:c7bcd36d7c18ea58398f85098ea50133860b80aba7eba3280a9f6c37fa4f8ed9
5+
sourceRevisionDigest: sha256:73d90b065a68abbb64fbc055f5ed3fd1b16bc5d2f8c46aeb9f705c21c0e2ad5d
6+
sourceBlobDigest: sha256:88d91b74f7f34630f2f4ce961add42a7a45fe0bc2ad7a359c7af15e0126cbac6
77
tags:
88
- latest
99
- 3.14.0
1010
targets:
1111
novu:
1212
source: novu-OAS
1313
sourceNamespace: novu-oas
14-
sourceRevisionDigest: sha256:8a2f7a356174aa0619b95dba3f1a10a3094fd16124928170762f85353ba3509e
15-
sourceBlobDigest: sha256:c7bcd36d7c18ea58398f85098ea50133860b80aba7eba3280a9f6c37fa4f8ed9
14+
sourceRevisionDigest: sha256:73d90b065a68abbb64fbc055f5ed3fd1b16bc5d2f8c46aeb9f705c21c0e2ad5d
15+
sourceBlobDigest: sha256:88d91b74f7f34630f2f4ce961add42a7a45fe0bc2ad7a359c7af15e0126cbac6
1616
codeSamplesNamespace: novu-oas-python-code-samples
17-
codeSamplesRevisionDigest: sha256:f70bfd3268209db82fd9b1a5ddf066021c798a45b2691505d1dd11d0973e59ae
17+
codeSamplesRevisionDigest: sha256:143d01193319ca13897df3e69d0531890ead4b50cb01c00bb5162053e89d0693
1818
workflow:
1919
workflowVersion: 1.0.0
2020
speakeasyVersion: latest

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,4 +168,14 @@ Based on:
168168
### Generated
169169
- [python v3.14.1] .
170170
### Releases
171-
- [PyPI v3.14.1] https://pypi.org/project/novu-py/3.14.1 - .
171+
- [PyPI v3.14.1] https://pypi.org/project/novu-py/3.14.1 - .
172+
173+
## 2026-03-06 15:22:08
174+
### Changes
175+
Based on:
176+
- OpenAPI Doc
177+
- Speakeasy CLI 1.745.1 (2.850.7) https://github.com/speakeasy-api/speakeasy
178+
### Generated
179+
- [python v3.14.2] .
180+
### Releases
181+
- [PyPI v3.14.2] https://pypi.org/project/novu-py/3.14.2 - .

docs/models/activitynotificationjobresponsedtotype.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
Type of the job
44

5+
## Example Usage
6+
7+
```python
8+
from novu_py.models import ActivityNotificationJobResponseDtoType
9+
10+
value = ActivityNotificationJobResponseDtoType.IN_APP
11+
```
12+
513

614
## Values
715

docs/models/actortypeenum.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
The type of the actor, indicating the role in the notification process.
44

5+
## Example Usage
6+
7+
```python
8+
from novu_py.models import ActorTypeEnum
9+
10+
value = ActorTypeEnum.NONE
11+
```
12+
513

614
## Values
715

docs/models/backoffunit.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# BackoffUnit
22

3+
## Example Usage
4+
5+
```python
6+
from novu_py.models import BackoffUnit
7+
8+
value = BackoffUnit.SECONDS
9+
```
10+
311

412
## Values
513

docs/models/builderfieldtypeenum.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# BuilderFieldTypeEnum
22

3+
## Example Usage
4+
5+
```python
6+
from novu_py.models import BuilderFieldTypeEnum
7+
8+
value = BuilderFieldTypeEnum.BOOLEAN
9+
```
10+
311

412
## Values
513

docs/models/buttontypeenum.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
Type of button for the action result
44

5+
## Example Usage
6+
7+
```python
8+
from novu_py.models import ButtonTypeEnum
9+
10+
value = ButtonTypeEnum.PRIMARY
11+
```
12+
513

614
## Values
715

docs/models/channel.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
The channel type (email, sms, push, chat, etc.).
44

5+
## Example Usage
6+
7+
```python
8+
from novu_py.models import Channel
9+
10+
value = Channel.IN_APP
11+
```
12+
513

614
## Values
715

0 commit comments

Comments
 (0)