Skip to content

Commit

Permalink
add id to CreditsUsageInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
InventivetalentDev committed Oct 19, 2024
1 parent 356bf00 commit 9830668
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions dist/usage/CreditsUsageInfo.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
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.

1 change: 1 addition & 0 deletions src/usage/CreditsUsageInfo.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { CreditType } from "../billing";

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

0 comments on commit 9830668

Please sign in to comment.