Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 4.43.0 #429

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 @@
{
".": "4.42.1"
".": "4.43.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 97
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-d0a97f690d07742fea0d6c9b9b0d9dae5e8490eb03a7f3da27989fdf53d3e45d.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-77f4e8cf0fc3b3f18c894408f322af7988ae90606235fe5058442409142a33e1.yml
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 4.43.0 (2024-12-23)

Full Changelog: [v4.42.1...v4.43.0](https://github.com/orbcorp/orb-node/compare/v4.42.1...v4.43.0)

### Features

* **api:** api update ([#430](https://github.com/orbcorp/orb-node/issues/430)) ([6116d83](https://github.com/orbcorp/orb-node/commit/6116d8358856cca98fd1f57219ac932a3c97527a))


### Documentation

* minor formatting changes ([#428](https://github.com/orbcorp/orb-node/issues/428)) ([429ece9](https://github.com/orbcorp/orb-node/commit/429ece9c40972a396fc5d7ca0fab96af0323afdc))

## 4.42.1 (2024-12-20)

Full Changelog: [v4.42.0...v4.42.1](https://github.com/orbcorp/orb-node/compare/v4.42.0...v4.42.1)
Expand Down
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Setting up the environment

This repository uses [`yarn@v1`](https://classic.yarnpkg.com/lang/en/docs/install/#mac-stable).
This repository uses [`yarn@v1`](https://classic.yarnpkg.com/lang/en/docs/install).
Other package managers may work but are not officially supported for development.

To set up the repository, run:
Expand Down Expand Up @@ -29,10 +29,10 @@ All files in the `examples/` directory are not modified by the generator and can
```

```
chmod +x examples/<your-example>.ts
```sh
$ chmod +x examples/<your-example>.ts
# run the example against your api
yarn tsn -T examples/<your-example>.ts
$ yarn tsn -T examples/<your-example>.ts
```

## Using the repository from source
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": "orb-billing",
"version": "4.42.1",
"version": "4.43.0",
"description": "The official TypeScript library for the Orb API",
"author": "Orb <[email protected]>",
"types": "dist/index.d.ts",
Expand Down
12 changes: 10 additions & 2 deletions src/resources/customers/credits/credits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ export class Credits extends APIResource {
/**
* Returns a paginated list of unexpired, non-zero credit blocks for a customer.
*
* If `include_all_blocks` is set to `true`, all credit blocks (including expired
* and depleted blocks) will be included in the response.
*
* Note that `currency` defaults to credits if not specified. To use a real world
* currency, set `currency` to an ISO 4217 string.
*/
Expand Down Expand Up @@ -69,6 +72,9 @@ export class Credits extends APIResource {
/**
* Returns a paginated list of unexpired, non-zero credit blocks for a customer.
*
* If `include_all_blocks` is set to `true`, all credit blocks (including expired
* and depleted blocks) will be included in the response.
*
* Note that `currency` defaults to credits if not specified. To use a real world
* currency, set `currency` to an ISO 4217 string.
*/
Expand Down Expand Up @@ -140,7 +146,8 @@ export interface CreditListParams extends PageParams {
currency?: string | null;

/**
* Include all blocks, not just active ones.
* If set to True, all expired and depleted blocks, as well as active block will be
* returned.
*/
include_all_blocks?: boolean;
}
Expand All @@ -152,7 +159,8 @@ export interface CreditListByExternalIDParams extends PageParams {
currency?: string | null;

/**
* Include all blocks, not just active ones.
* If set to True, all expired and depleted blocks, as well as active block will be
* returned.
*/
include_all_blocks?: boolean;
}
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 = '4.42.1'; // x-release-please-version
export const VERSION = '4.43.0'; // x-release-please-version
Loading