attlaz-client 1.11.7 → 1.11.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -8,6 +8,7 @@ export declare class WorkerConfig {
|
|
|
8
8
|
static KEY_MEMORY_LIMIT: string;
|
|
9
9
|
static KEY_CPU_LIMIT: string;
|
|
10
10
|
static KEY_RUNNER_IMAGE: string;
|
|
11
|
+
static KEY_API_ENDPOINT_WORKER: string;
|
|
11
12
|
static KEY_API_ENDPOINT: string;
|
|
12
13
|
static KEY_API_CLIENT_ID: string;
|
|
13
14
|
static KEY_API_CLIENT_SECRET: string;
|
|
@@ -7,6 +7,7 @@ export class WorkerConfig {
|
|
|
7
7
|
static KEY_MEMORY_LIMIT = 'memory_limit';
|
|
8
8
|
static KEY_CPU_LIMIT = 'cpu_limit';
|
|
9
9
|
static KEY_RUNNER_IMAGE = 'runner_image';
|
|
10
|
+
static KEY_API_ENDPOINT_WORKER = 'api_endpoint_worker';
|
|
10
11
|
static KEY_API_ENDPOINT = 'api_endpoint';
|
|
11
12
|
static KEY_API_CLIENT_ID = 'api_client_id';
|
|
12
13
|
static KEY_API_CLIENT_SECRET = 'api_client_secret';
|