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.481.0"
".": "0.482.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: 236
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-842d7a1e6cff968c70110dc90a9e51da05e2f781e902d6f5ca71940e4b9688e1.yml
openapi_spec_hash: c3aabecf5bb2135391d6b8faef4ac1b3
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-2d7155feee87cb1c64ae2b6f31d769c46725b615f1622558f998f2a637cfb57c.yml
openapi_spec_hash: c3117360164f38ece4a984800813813c
config_hash: 25d7d7aa4882db6189b4b53e8e249e80
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.482.0 (2026-03-12)

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

### Features

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

## 0.481.0 (2026-03-12)

Full Changelog: [v0.480.0...v0.481.0](https://github.com/Increase/increase-typescript/compare/v0.480.0...v0.481.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.481.0",
"version": "0.482.0",
"description": "The official TypeScript library for the Increase API",
"author": "Increase <dev-feedback@increase.com>",
"types": "dist/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions src/resources/beneficial-owners.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class BeneficialOwners extends APIResource {
* ```ts
* const entityBeneficialOwner =
* await client.beneficialOwners.retrieve(
* 'entity_setup_beneficial_owner_submission_vgkyk7dj5eb4sfhdbkx7',
* 'entity_beneficial_owner_vozma8szzu1sxezp5zq6',
* );
* ```
*/
Expand All @@ -58,7 +58,7 @@ export class BeneficialOwners extends APIResource {
* ```ts
* const entityBeneficialOwner =
* await client.beneficialOwners.update(
* 'entity_setup_beneficial_owner_submission_vgkyk7dj5eb4sfhdbkx7',
* 'entity_beneficial_owner_vozma8szzu1sxezp5zq6',
* );
* ```
*/
Expand Down Expand Up @@ -103,7 +103,7 @@ export class BeneficialOwners extends APIResource {
* ```ts
* const entityBeneficialOwner =
* await client.beneficialOwners.archive(
* 'entity_setup_beneficial_owner_submission_vgkyk7dj5eb4sfhdbkx7',
* 'entity_beneficial_owner_vozma8szzu1sxezp5zq6',
* );
* ```
*/
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.481.0'; // x-release-please-version
export const VERSION = '0.482.0'; // x-release-please-version
10 changes: 3 additions & 7 deletions tests/api-resources/beneficial-owners.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,7 @@ describe('resource beneficialOwners', () => {
});

test('retrieve', async () => {
const responsePromise = client.beneficialOwners.retrieve(
'entity_setup_beneficial_owner_submission_vgkyk7dj5eb4sfhdbkx7',
);
const responsePromise = client.beneficialOwners.retrieve('entity_beneficial_owner_vozma8szzu1sxezp5zq6');
const rawResponse = await responsePromise.asResponse();
expect(rawResponse).toBeInstanceOf(Response);
const response = await responsePromise;
Expand All @@ -90,7 +88,7 @@ describe('resource beneficialOwners', () => {

test('update', async () => {
const responsePromise = client.beneficialOwners.update(
'entity_setup_beneficial_owner_submission_vgkyk7dj5eb4sfhdbkx7',
'entity_beneficial_owner_vozma8szzu1sxezp5zq6',
{},
);
const rawResponse = await responsePromise.asResponse();
Expand Down Expand Up @@ -123,9 +121,7 @@ describe('resource beneficialOwners', () => {
});

test('archive', async () => {
const responsePromise = client.beneficialOwners.archive(
'entity_setup_beneficial_owner_submission_vgkyk7dj5eb4sfhdbkx7',
);
const responsePromise = client.beneficialOwners.archive('entity_beneficial_owner_vozma8szzu1sxezp5zq6');
const rawResponse = await responsePromise.asResponse();
expect(rawResponse).toBeInstanceOf(Response);
const response = await responsePromise;
Expand Down
Loading