Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dsinghvi committed Nov 21, 2024
1 parent 5bf418c commit b8cbd60
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
20 changes: 11 additions & 9 deletions generators/typescript/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.42.4] - 2024-11-23

- Fix: Remove extraenous import in pagination snippets.

## [0.42.3] - 2024-11-22

- Fix: Fixed issue with snippets used for pagination endpoints.

## [0.42.2] - 2024-11-21

- Improvement: Added documentation for pagination in the README. The snippet below will
now show up on generated READMEs.
- Improvement: Added documentation for pagination in the README. The snippet below will
now show up on generated READMEs.

```typescript
// Iterate through all items
Expand All @@ -28,7 +32,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
}
```


## [0.42.1] - 2024-11-20

- Feat: Added support for passing additional headers in request options. For example:
Expand All @@ -41,28 +44,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
});
```


## [0.42.0] - 2024-11-15

- Feat: Added support for `.asRaw()` which allows users to access raw response data including headers. For example:

```ts
const response = await client.someEndpoint().asRaw();
console.log(response.headers['X-My-Header']);
console.log(response.headers["X-My-Header"]);
console.log(response.body);
```

## [0.41.2] - 2024-11-18

- Fix: Actually remove `jest-fetch-mock` from package.json.
- Fix: Actually remove `jest-fetch-mock` from package.json.

## [0.41.1] - 2024-11-02

- Fix: Remove dev dependency on `jest-fetch-mock`.
- Fix: Remove dev dependency on `jest-fetch-mock`.

## [0.41.0] - 2024-10-08

- Improvement: Add a variable jitter to the exponential backoff and retry.
- Improvement: Add a variable jitter to the exponential backoff and retry.

## [0.41.0-rc2] - 2024-10-08

Expand Down Expand Up @@ -118,7 +120,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
// serialize to json

const json = serializers.Plant.toJson({
name: "fern",
name: "fern"
});

const parsed = serializers.Plant.parseOrThrow(`{ "name": "fern" }`);
Expand Down
2 changes: 1 addition & 1 deletion generators/typescript/sdk/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.42.3
0.42.4

0 comments on commit b8cbd60

Please sign in to comment.