Skip to content

Commit

Permalink
add ONE_TIME product group
Browse files Browse the repository at this point in the history
  • Loading branch information
InventivetalentDev committed Oct 21, 2024
1 parent 9830668 commit 87ae806
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion dist/billing/ProductGroup.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export declare enum ProductGroup {
REQUEST_SPEED = "request_speed",
FEATURE_PACK = "feat_pack",
CREDITS = "credits"
CREDITS = "credits",
ONE_TIME = "one_time"
}
1 change: 1 addition & 0 deletions dist/billing/ProductGroup.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/billing/ProductGroup.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion dist/usage/CreditsUsageInfo.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { CreditType } from "../billing";
export interface CreditsUsageInfo {
id: string;
type: CreditType;
used: number;
remaining: number;
Expand Down
2 changes: 1 addition & 1 deletion dist/usage/CreditsUsageInfo.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/billing/ProductGroup.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export enum ProductGroup {
REQUEST_SPEED = "request_speed",
FEATURE_PACK = "feat_pack",
CREDITS = "credits"
CREDITS = "credits",
ONE_TIME = "one_time"
}
1 change: 0 additions & 1 deletion src/usage/CreditsUsageInfo.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { CreditType } from "../billing";

export interface CreditsUsageInfo {
id: string;
type: CreditType;
used: number;
remaining: number;
Expand Down

0 comments on commit 87ae806

Please sign in to comment.