attlaz-client 1.36.9 → 1.36.10
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,7 +1,7 @@
|
|
|
1
|
-
import { LogLevel } from '../Log/LogLevel.js';
|
|
2
1
|
import { MetaDataAware } from '../../Core/MetaDataAware.js';
|
|
3
|
-
import { FlowRunPriority } from './FlowRunPriority.js';
|
|
4
2
|
import { ApiRecord } from '../ApiRecord.js';
|
|
3
|
+
import { LogLevel } from '../Log/LogLevel.js';
|
|
4
|
+
import { FlowRunPriority } from './FlowRunPriority.js';
|
|
5
5
|
export declare class FlowRun extends MetaDataAware {
|
|
6
6
|
id: string;
|
|
7
7
|
flowId: string;
|
|
@@ -10,6 +10,7 @@ export declare class FlowRun extends MetaDataAware {
|
|
|
10
10
|
triggerId: string;
|
|
11
11
|
priority: FlowRunPriority;
|
|
12
12
|
deployId: string;
|
|
13
|
+
logStreamId: string;
|
|
13
14
|
logLevelCount: Map<LogLevel, number>;
|
|
14
15
|
logsPurged: boolean;
|
|
15
16
|
static parse(rawFlowRun: ApiRecord): FlowRun;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Utils } from '../../Utils.js';
|
|
2
1
|
import { MetaDataAware } from '../../Core/MetaDataAware.js';
|
|
2
|
+
import { Utils } from '../../Utils.js';
|
|
3
3
|
import { FlowRunPriority } from './FlowRunPriority.js';
|
|
4
4
|
export class FlowRun extends MetaDataAware {
|
|
5
5
|
id;
|
|
@@ -11,6 +11,7 @@ export class FlowRun extends MetaDataAware {
|
|
|
11
11
|
// TODO: implement priority object
|
|
12
12
|
priority = FlowRunPriority.None;
|
|
13
13
|
deployId;
|
|
14
|
+
logStreamId;
|
|
14
15
|
logLevelCount;
|
|
15
16
|
logsPurged = false;
|
|
16
17
|
static parse(rawFlowRun) {
|
|
@@ -22,6 +23,7 @@ export class FlowRun extends MetaDataAware {
|
|
|
22
23
|
flowRun.priority = FlowRunPriority.fromString(rawFlowRun.priority);
|
|
23
24
|
flowRun.triggerId = rawFlowRun.trigger;
|
|
24
25
|
flowRun.deployId = rawFlowRun.deploy;
|
|
26
|
+
flowRun.logStreamId = rawFlowRun.log_stream;
|
|
25
27
|
flowRun.logLevelCount = rawFlowRun.log_level_count;
|
|
26
28
|
flowRun.logsPurged = Utils.isTrue(rawFlowRun.logs_purged);
|
|
27
29
|
return flowRun;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Configuration } from '../Model/Configuration/Configuration.js';
|
|
2
2
|
import { CollectionResult } from '../Model/Result/CollectionResult.js';
|
|
3
|
-
import { Endpoint } from './Endpoint.js';
|
|
4
3
|
import { CursorPagination } from '../Model/Pagination/CursorPagination.js';
|
|
4
|
+
import { Endpoint } from './Endpoint.js';
|
|
5
5
|
export declare class ConfigurationEndpoint extends Endpoint {
|
|
6
6
|
getByPath(scopeId: string, path: string): Promise<Configuration | null>;
|
|
7
7
|
getByPathQuery(scopeId: string, pathQuery: string, pagination: CursorPagination): Promise<CollectionResult<Configuration>>;
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "1.36.
|
|
1
|
+
export declare const VERSION = "1.36.9";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "1.36.
|
|
1
|
+
export const VERSION = "1.36.9";
|