attlaz-client 1.36.2 → 1.36.4
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.
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
export declare class InfrastructureConfiguration {
|
|
2
|
-
static
|
|
3
|
-
static
|
|
4
|
-
static
|
|
5
|
-
static
|
|
6
|
-
static
|
|
7
|
-
static
|
|
8
|
-
static
|
|
9
|
-
static
|
|
10
|
-
static
|
|
2
|
+
static readonly KEY_FLOW_RUN_ENABLED: string;
|
|
3
|
+
static readonly KEY_FLOW_RUN_VERSION: string;
|
|
4
|
+
static readonly KEY_FLOW_RUN_WORKER_IMAGE: string;
|
|
5
|
+
static readonly KEY_FLOW_RUN_WORKER_NAME: string;
|
|
6
|
+
static readonly KEY_FLOW_RUN_WORKER_SCALE: string;
|
|
7
|
+
static readonly KEY_FLOW_RUN_WORKER_SCALE_LIMIT: string;
|
|
8
|
+
static readonly KEY_FLOW_RUN_WORKER_API_ENDPOINT: string;
|
|
9
|
+
static readonly KEY_FLOW_RUN_WORKER_API_TOKEN: string;
|
|
10
|
+
static readonly KEY_FLOW_RUN_CODE_API_ENDPOINT: string;
|
|
11
|
+
static readonly KEY_FLOW_RUN_CODE_API_TOKEN: string;
|
|
12
|
+
static readonly KEY_FLOW_RUN_WORKER_MEMORY_LIMIT: string;
|
|
13
|
+
static readonly KEY_FLOW_RUN_WORKER_CPU_LIMIT: string;
|
|
14
|
+
static readonly KEY_FLOW_RUN_QUEUE_NAME: string;
|
|
15
|
+
static readonly KEY_FLOW_RUN_QUEUE_SUFFIX: string;
|
|
11
16
|
}
|
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
export class InfrastructureConfiguration {
|
|
2
|
-
static
|
|
3
|
-
static
|
|
4
|
-
static
|
|
5
|
-
static
|
|
6
|
-
static
|
|
7
|
-
static
|
|
8
|
-
|
|
9
|
-
static
|
|
10
|
-
|
|
2
|
+
static KEY_FLOW_RUN_ENABLED = 'flow_run_enabled';
|
|
3
|
+
static KEY_FLOW_RUN_VERSION = 'flow_run_version';
|
|
4
|
+
static KEY_FLOW_RUN_WORKER_IMAGE = 'flow_run_worker_image';
|
|
5
|
+
static KEY_FLOW_RUN_WORKER_NAME = 'flow_run_worker_name';
|
|
6
|
+
static KEY_FLOW_RUN_WORKER_SCALE = 'flow_run_worker_scale';
|
|
7
|
+
static KEY_FLOW_RUN_WORKER_SCALE_LIMIT = 'flow_run_worker_scale_limit';
|
|
8
|
+
// API used for the worker
|
|
9
|
+
static KEY_FLOW_RUN_WORKER_API_ENDPOINT = 'api_endpoint_worker';
|
|
10
|
+
// Token Id for the worker
|
|
11
|
+
static KEY_FLOW_RUN_WORKER_API_TOKEN = 'flow_run_worker_api_token';
|
|
12
|
+
// API used to run flow run code
|
|
13
|
+
static KEY_FLOW_RUN_CODE_API_ENDPOINT = 'flow_run_api_endpoint';
|
|
14
|
+
// Token Id used to run flow run code
|
|
15
|
+
static KEY_FLOW_RUN_CODE_API_TOKEN = 'flow_run_code_api_token';
|
|
16
|
+
static KEY_FLOW_RUN_WORKER_MEMORY_LIMIT = 'flow_run_worker_memory_limit';
|
|
17
|
+
static KEY_FLOW_RUN_WORKER_CPU_LIMIT = 'flow_run_worker_cpu_limit';
|
|
18
|
+
static KEY_FLOW_RUN_QUEUE_NAME = 'flow_run_queue_name';
|
|
19
|
+
static KEY_FLOW_RUN_QUEUE_SUFFIX = 'flow_run_queue_suffix';
|
|
11
20
|
}
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "1.36.
|
|
1
|
+
export declare const VERSION = "1.36.3";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "1.36.
|
|
1
|
+
export const VERSION = "1.36.3";
|