chore: 🐝 Update SDK - Generate (spec change merged) 0.11.11 (#410)

Co-authored-by: speakeasybot <bot@speakeasyapi.dev>
Co-authored-by: speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2026-07-08 19:10:58 +00:00
committed by GitHub
co-authored by speakeasybot speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
parent 1da6f0d903
commit 164490028b
15 changed files with 212 additions and 27 deletions
@@ -0,0 +1,14 @@
---
title: "ImageGenTextChunkEvent"
---
Emitted when a text chunk becomes available during streaming generation of text-based formats (e.g. SVG)
## Fields
| Field | Type | Required | Description |
| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| `phase` | [components.ImageGenTextChunkEventPhase](../components/imagegentextchunkeventphase.mdx) | :heavy_check_mark: | The generation phase this chunk belongs to. `content` is the renderable output; `reasoning` and `draft` are intermediate provider phases. |
| `text` | *str* | :heavy_check_mark: | A text fragment of the image being generated (e.g. partial SVG markup) |
| `type` | [components.ImageGenTextChunkEventType](../components/imagegentextchunkeventtype.mdx) | :heavy_check_mark: | The event type |
@@ -0,0 +1,23 @@
---
title: "ImageGenTextChunkEventPhase"
---
The generation phase this chunk belongs to. `content` is the renderable output; `reasoning` and `draft` are intermediate provider phases.
## Example Usage
```python
from openrouter.components import ImageGenTextChunkEventPhase
# Open enum: unrecognized values are captured as UnrecognizedStr
value: ImageGenTextChunkEventPhase = "content"
```
## Values
This is an open enum. Unrecognized values will not fail type checks.
- `"content"`
- `"reasoning"`
- `"draft"`
@@ -0,0 +1,17 @@
---
title: "ImageGenTextChunkEventType"
---
The event type
## Example Usage
```python
from openrouter.components import ImageGenTextChunkEventType
value: ImageGenTextChunkEventType = "image_generation.text_chunk"
```
## Values
- `"image_generation.text_chunk"`
@@ -10,6 +10,12 @@ title: "ImageStreamingResponseData"
value: components.ImageGenPartialImageEvent = /* values here */
```
### `components.ImageGenTextChunkEvent`
```python
value: components.ImageGenTextChunkEvent = /* values here */
```
### `components.ImageGenCompletedEvent`
```python