Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.434.0"
".": "0.435.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 232
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1127bb6ee64bebab1bbf8ecbd9ec71c0deb5ca8552fd454fa2ec120fd9eac14a.yml
openapi_spec_hash: 9fedc9dc133202e4d39bf7bffe4839d9
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-b27417de2b11e1ed32ccf399f6b52acd599a75ba910d7709028972960e12ba67.yml
openapi_spec_hash: 82ef00d2d4f3a796ba181d2546c424bb
config_hash: 4b562e97b3d8b4cba758a87d4927a76d
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.435.0 (2026-02-17)

Full Changelog: [v0.434.0...v0.435.0](https://github.com/Increase/increase-typescript/compare/v0.434.0...v0.435.0)

### Features

* **api:** api update ([db811e4](https://github.com/Increase/increase-typescript/commit/db811e40e301f47dec124af6cb9bc8e3c94eb984))


### Chores

* **internal/client:** fix form-urlencoded requests ([372473c](https://github.com/Increase/increase-typescript/commit/372473c5925daadb3cea2ae7eea5f98bf0336805))

## 0.434.0 (2026-02-14)

Full Changelog: [v0.433.0...v0.434.0](https://github.com/Increase/increase-typescript/compare/v0.433.0...v0.434.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "increase",
"version": "0.434.0",
"version": "0.435.0",
"description": "The official TypeScript library for the Increase API",
"author": "Increase <dev-feedback@increase.com>",
"types": "dist/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1098,6 +1098,14 @@ export class Increase {
(Symbol.iterator in body && 'next' in body && typeof body.next === 'function'))
) {
return { bodyHeaders: undefined, body: Shims.ReadableStreamFrom(body as AsyncIterable<Uint8Array>) };
} else if (
typeof body === 'object' &&
headers.values.get('content-type') === 'application/x-www-form-urlencoded'
) {
return {
bodyHeaders: { 'content-type': 'application/x-www-form-urlencoded' },
body: this.stringifyQuery(body as Record<string, unknown>),
};
} else {
return this.#encoder({ body, headers });
}
Expand Down
2 changes: 2 additions & 0 deletions src/resources/cards.ts
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,8 @@ export interface CardUpdateParams {
* - `canceled` - The card is permanently canceled.
*/
status?: 'active' | 'disabled' | 'canceled';

[k: string]: unknown;
}

export namespace CardUpdateParams {
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.434.0'; // x-release-please-version
export const VERSION = '0.435.0'; // x-release-please-version