-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: 🐝 Update SDK - Generate 0.19.0 (#136)
> [!IMPORTANT] > Linting report available at: <https://app.speakeasy.com/org/unstructured/unstructured5xr/linting-report/824b9f90ba7196da07c221cb7f0d71e6> > OpenAPI Change report available at: <https://app.speakeasy.com/org/unstructured/unstructured5xr/changes-report/b702fa86d0b84d9997084bd5d9b34d74> # SDK update Based on: - OpenAPI Doc - Speakeasy CLI 1.468.6 (2.493.13) https://github.com/speakeasy-api/speakeasy ## Versioning Version Bump Type: [minor] - 🤖 (automated) ## OpenAPI Change Summary ``` ├─┬Info │ └──[🔀] version (5:16) ├─┬Paths │ └─┬/general/v0/general │ └─┬POST │ └─┬Responses │ └─┬200 │ ├──[➕] content (76:27) │ └─┬application/json │ └─┬Schema │ └─┬Extensions │ └──[➕] x-speakeasy-name-override (73:48) └─┬Components ├──[➕] schemas (526:22) └─┬partition_parameters ├──[➕] properties (337:11) ├─┬strategy │ └──[➕] enum (326:15) └─┬unique_element_ids └──[🔀] title (352:22) ``` | Document Element | Total Changes | Breaking Changes | |------------------|---------------|------------------| | components | 4 | 0 | | info | 1 | 0 | | paths | 2 | 0 | ## TYPESCRIPT CHANGELOG ## sdkHooks: 0.2.0 - 2024-11-02 ### 🐝 New Features - allow hooks to trigger retries *(commit by [@disintegrator](https://github.com/disintegrator))* ## envVarSecurityUsage: 0.1.2 - 2024-11-04 ### 🐛 Bug Fixes - speakeasy examples override default strings *(commit by [@ryan-timothy-albert](https://github.com/ryan-timothy-albert))* ## examples: 2.81.5 - 2025-01-08 ### 🐛 Bug Fixes - prevent map examples from retaining obsolete key-value pairs *(commit by [@2ynn](https://github.com/2ynn))* ## acceptHeaders: 2.81.2 - 2024-04-30 ### 🐛 Bug Fixes - compute accept types from success responses *(commit by [@disintegrator](https://github.com/disintegrator))* ## globalSecurity: 2.82.12 - 2024-12-23 ### 🐛 Bug Fixes - remove default basic auth username / password *(commit by [@disintegrator](https://github.com/disintegrator))* ## core: 3.18.14 - 2025-01-13 ### 🐛 Bug Fixes - skip null and undefined parameter values during serialization *(commit by [@disintegrator](https://github.com/disintegrator))* ## core: 3.18.13 - 2025-01-13 ### 🐛 Bug Fixes - avoid setting `Content-Type: */*` request header for relevant operations *(commit by [@disintegrator](https://github.com/disintegrator))* ## core: 3.18.12 - 2024-12-19 ### 🔧 Chores - bump typescript transpilation target to ES2020 *(commit by [@mfbx9da4](https://github.com/mfbx9da4))* ## core: 3.18.11 - 2024-12-16 ### 🐛 Bug Fixes - flattening with hidden parameters *(commit by [@mfbx9da4](https://github.com/mfbx9da4))* ## core: 3.18.10 - 2024-12-13 ### 🐛 Bug Fixes - Support OAS references under multipart/form-data file properties *(commit by [@bflad](https://github.com/bflad))* ## core: 3.18.9 - 2024-12-06 ### 🐛 Bug Fixes - support property names solely comprised of illegal characters *(commit by [@mfbx9da4](https://github.com/mfbx9da4))* ## core: 3.18.8 - 2024-11-28 ### 🐛 Bug Fixes - add arguments to variable name exclusion list to avoid shadowing errors *(commit by [@TristanSpeakEasy](https://github.com/tristanspeakeasy))* ## core: 3.18.7 - 2024-11-22 ### 🐛 Bug Fixes - handle circular references through unions correctly *(commit by [@disintegrator](https://github.com/disintegrator))* ## core: 3.18.6 - 2024-11-19 ### 🐛 Bug Fixes - detect import cycles between models living in different modules *(commit by [@disintegrator](https://github.com/disintegrator))* ## core: 3.18.5 - 2024-11-15 ### 🐛 Bug Fixes - handling of raw buffers when deserialzing into zod types *(commit by [@TristanSpeakEasy](https://github.com/tristanspeakeasy))* ## core: 3.18.4 - 2024-11-12 ### 🐛 Bug Fixes - sort media type objects by specificity *(commit by [@disintegrator](https://github.com/disintegrator))* ## core: 3.18.3 - 2024-10-31 ### 🐛 Bug Fixes - Prevent panic with invalid implicit discriminator mappings with propertyName within allOf object *(commit by [@bflad](https://github.com/bflad))* ## unions: 2.85.8 - 2024-11-05 ### 🐛 Bug Fixes - improved handling of complex allOf schemas that merge multiple types *(commit by [@TristanSpeakEasy](https://github.com/tristanspeakeasy))* Co-authored-by: speakeasybot <[email protected]>
- Loading branch information
1 parent
a8c0297
commit e33d8a7
Showing
36 changed files
with
907 additions
and
263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
/react-query | ||
/.speakeasy/reports | ||
/__tests__ | ||
/funcs | ||
/core.* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
**/* | ||
!/FUNCTIONS.md | ||
!/RUNTIMES.md | ||
!/REACT_QUERY.md | ||
!/**/*.ts | ||
!/**/*.js | ||
!/**/*.map | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# RetryConfig | ||
|
||
Allows customizing the default retry configuration. It is only permitted in methods that accept retry policies. | ||
|
||
## Fields | ||
|
||
| Name | Type | Description | Example | | ||
| ------------------------- | ----------------------------------- | ------------------------------------------------------------------------------------------ | ----------- | | ||
| `strategy` | `"backoff" | "none"` | The retry strategy to use. | `"backoff"` | | ||
| `backoff` | [BackoffStrategy](#backoffstrategy) | When strategy is "backoff", this configurates for the backoff parameters. | | | ||
| `retryConnectionErrors` | `*boolean*` | When strategy is "backoff", this determines whether or not to retry on connection errors. | `true` | | ||
|
||
## BackoffStrategy | ||
|
||
The backoff strategy allows retrying a request with an exponential backoff between each retry. | ||
|
||
### Fields | ||
|
||
| Name | Type | Description | Example | | ||
| ------------------ | ------------ | ----------------------------------------- | -------- | | ||
| `initialInterval` | `*number*` | The initial interval in milliseconds. | `500` | | ||
| `maxInterval` | `*number*` | The maximum interval in milliseconds. | `60000` | | ||
| `exponent` | `*number*` | The exponent to use for the backoff. | `1.5` | | ||
| `maxElapsedTime` | `*number*` | The maximum elapsed time in milliseconds. | `300000` | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.