Skip to content

Commit

Permalink
track credits id in client
Browse files Browse the repository at this point in the history
  • Loading branch information
InventivetalentDev committed Oct 19, 2024
1 parent 74a9557 commit 356bf00
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion dist/skin/v2/ClientInfo.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ export interface ClientInfo {
billable?: boolean;
/** metered billing **/
metered?: boolean;
/** credits ID **/
credits?: string;
/** whether to use up paid credits **/
credits?: boolean;
usePaidCredits?: boolean;
/** max concurrency **/
concurrency?: number;
/** queue priority **/
Expand Down
2 changes: 1 addition & 1 deletion dist/skin/v2/ClientInfo.js.map

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

4 changes: 3 additions & 1 deletion src/skin/v2/ClientInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ export interface ClientInfo {
billable?: boolean;
/** metered billing **/
metered?: boolean;
/** credits ID **/
credits?: string;
/** whether to use up paid credits **/
credits?: boolean;
usePaidCredits?: boolean;
/** max concurrency **/
concurrency?: number;
/** queue priority **/
Expand Down

0 comments on commit 356bf00

Please sign in to comment.