From e60578b8a041f83c78709de33ca8938dff59e85f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Haylee=20Sch=C3=A4fer?= Date: Mon, 14 Oct 2024 14:09:09 +0200 Subject: [PATCH] add concurrency --- dist/skin/v2/ClientInfo.d.ts | 2 ++ dist/skin/v2/ClientInfo.js.map | 2 +- src/skin/v2/ClientInfo.ts | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/dist/skin/v2/ClientInfo.d.ts b/dist/skin/v2/ClientInfo.d.ts index 1af9ed4..a8020ca 100644 --- a/dist/skin/v2/ClientInfo.d.ts +++ b/dist/skin/v2/ClientInfo.d.ts @@ -18,4 +18,6 @@ export interface ClientInfo { metered?: boolean; /** whether to use up paid credits **/ credits?: boolean; + /** max concurrency **/ + concurrency?: number; } diff --git a/dist/skin/v2/ClientInfo.js.map b/dist/skin/v2/ClientInfo.js.map index a0f4fed..3da6e68 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}"]} \ 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 /** whether to use up paid credits **/\r\n credits?: boolean;\r\n /** max concurrency **/\r\n concurrency?: number;\r\n}"]} \ No newline at end of file diff --git a/src/skin/v2/ClientInfo.ts b/src/skin/v2/ClientInfo.ts index 1c8f2cf..95024ae 100644 --- a/src/skin/v2/ClientInfo.ts +++ b/src/skin/v2/ClientInfo.ts @@ -19,4 +19,6 @@ export interface ClientInfo { metered?: boolean; /** whether to use up paid credits **/ credits?: boolean; + /** max concurrency **/ + concurrency?: number; } \ No newline at end of file