From 5ca5f4499b90728f01884c75959710947f6e0425 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20Gr=C3=BCneberg?= Date: Wed, 8 Jan 2025 09:04:21 +0800 Subject: [PATCH] fix(types): expose UsageDiscount --- api.md | 1 + src/index.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/api.md b/api.md index b68b285..6d446d0 100644 --- a/api.md +++ b/api.md @@ -9,6 +9,7 @@ Types: - PaginationMetadata - PercentageDiscount - TrialDiscount +- UsageDiscount # TopLevel diff --git a/src/index.ts b/src/index.ts index 1b5ba1f..d849970 100644 --- a/src/index.ts +++ b/src/index.ts @@ -526,6 +526,7 @@ export declare namespace Orb { export type PaginationMetadata = API.PaginationMetadata; export type PercentageDiscount = API.PercentageDiscount; export type TrialDiscount = API.TrialDiscount; + export type UsageDiscount = API.UsageDiscount; } export { toFile, fileFromPath } from './uploads';