Skip to content

Commit 21188d7

Browse files
feat(api): api update
1 parent d995a94 commit 21188d7

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 139
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-17c43dab26af75e1b9f7e61ac8da1219cea65c7d0666d98686b71a60183e458d.yml
3-
openapi_spec_hash: 7d7f4d41ccb2023153327ca685dcf942
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-1ca41c4b1d872cf2a198c8cf5edeeeddac012259a7cf211b102bf137c05b8240.yml
3+
openapi_spec_hash: 955066d4865fc42440cd81e40f5f79cd
44
config_hash: c01c1191b1cd696c7ca855ff6d28a8df

src/resources/coupons/coupons.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ export class Coupons extends APIResource {
2727
*
2828
* The list of coupons is ordered starting from the most recently created coupon.
2929
* The response also includes `pagination_metadata`, which lets the caller retrieve
30-
* the next page of results if they exist. More information about pagination can be
31-
* found in the Pagination-metadata schema.
30+
* the next page of results if they exist.
3231
*/
3332
list(query?: CouponListParams, options?: Core.RequestOptions): Core.PagePromise<CouponsPage, Coupon>;
3433
list(options?: Core.RequestOptions): Core.PagePromise<CouponsPage, Coupon>;

src/resources/events/backfills.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ export class Backfills extends APIResource {
1717
* 3 steps:
1818
*
1919
* 1. Create the backfill, specifying its parameters.
20-
* 2. [Ingest](ingest) usage events, referencing the backfill (query parameter
21-
* `backfill_id`).
20+
* 2. [Ingest](/api-reference/event/ingest-events) usage events, referencing the
21+
* backfill (query parameter `backfill_id`).
2222
* 3. [Close](close-backfill) the backfill, propagating the update in past usage
2323
* throughout Orb.
2424
*
@@ -63,8 +63,7 @@ export class Backfills extends APIResource {
6363
* The list of backfills is ordered starting from the most recently created
6464
* backfill. The response also includes
6565
* [`pagination_metadata`](/api-reference/pagination), which lets the caller
66-
* retrieve the next page of results if they exist. More information about
67-
* pagination can be found in the [Pagination-metadata schema](pagination).
66+
* retrieve the next page of results if they exist.
6867
*/
6968
list(
7069
query?: BackfillListParams,

src/resources/subscriptions.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -405,10 +405,10 @@ export class Subscriptions extends APIResource {
405405
* metric, in usage units rather than a currency).
406406
*
407407
* The semantics of this endpoint exactly mirror those of
408-
* [fetching a customer's costs](fetch-customer-costs). Use this endpoint to limit
409-
* your analysis of costs to a specific subscription for the customer (e.g. to
410-
* de-aggregate costs when a customer's subscription has started and stopped on the
411-
* same day).
408+
* [fetching a customer's costs](/api-reference/customer/fetch-customer-costs). Use
409+
* this endpoint to limit your analysis of costs to a specific subscription for the
410+
* customer (e.g. to de-aggregate costs when a customer's subscription has started
411+
* and stopped on the same day).
412412
*/
413413
fetchCosts(
414414
subscriptionId: string,

0 commit comments

Comments
 (0)