diff --git a/dist/skin/v2/ClientInfo.d.ts b/dist/skin/v2/ClientInfo.d.ts index 295549a..909b66b 100644 --- a/dist/skin/v2/ClientInfo.d.ts +++ b/dist/skin/v2/ClientInfo.d.ts @@ -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 **/ diff --git a/dist/skin/v2/ClientInfo.js.map b/dist/skin/v2/ClientInfo.js.map index 4a9691a..0080d29 100644 --- a/dist/skin/v2/ClientInfo.js.map +++ b/dist/skin/v2/ClientInfo.js.map @@ -1 +1 @@ -{"version":3,"file":"ClientInfo.js","sourceRoot":"/","sources":["skin/v2/ClientInfo.ts"],"names":[],"mappings":"","sourcesContent":["export interface ClientInfo {\r\n /** client request date millis **/\r\n time: number;\r\n /** client user agent **/\r\n agent: string;\r\n /** client origin **/\r\n origin?: string;\r\n /** client ip **/\r\n ip: string;\r\n /** client api key (ID) **/\r\n key?: string;\r\n /** client user **/\r\n user?: string;\r\n breadcrumb: string;\r\n grants?: Record;\r\n\r\n billable?: boolean;\r\n /** metered billing **/\r\n metered?: boolean;\r\n /** whether to use up paid credits **/\r\n credits?: boolean;\r\n /** max concurrency **/\r\n concurrency?: number;\r\n /** queue priority **/\r\n priority?: number;\r\n}"]} \ No newline at end of file +{"version":3,"file":"ClientInfo.js","sourceRoot":"/","sources":["skin/v2/ClientInfo.ts"],"names":[],"mappings":"","sourcesContent":["export interface ClientInfo {\r\n /** client request date millis **/\r\n time: number;\r\n /** client user agent **/\r\n agent: string;\r\n /** client origin **/\r\n origin?: string;\r\n /** client ip **/\r\n ip: string;\r\n /** client api key (ID) **/\r\n key?: string;\r\n /** client user **/\r\n user?: string;\r\n breadcrumb: string;\r\n grants?: Record;\r\n\r\n billable?: boolean;\r\n /** metered billing **/\r\n metered?: boolean;\r\n /** credits ID **/\r\n credits?: string;\r\n /** whether to use up paid credits **/\r\n usePaidCredits?: boolean;\r\n /** max concurrency **/\r\n concurrency?: number;\r\n /** queue priority **/\r\n priority?: number;\r\n}"]} \ No newline at end of file diff --git a/src/skin/v2/ClientInfo.ts b/src/skin/v2/ClientInfo.ts index aed1a0b..fa46627 100644 --- a/src/skin/v2/ClientInfo.ts +++ b/src/skin/v2/ClientInfo.ts @@ -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 **/