attlaz-client 1.44.0 → 1.44.1
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.
|
@@ -3,6 +3,7 @@ export class QueueSpecification {
|
|
|
3
3
|
id;
|
|
4
4
|
name;
|
|
5
5
|
environment;
|
|
6
|
+
identifier;
|
|
6
7
|
type = 'flow_run';
|
|
7
8
|
// TODO: is this the required consumer count? we should be able to configure this with minimum, maximum, etc (auto scaling)
|
|
8
9
|
consumerCount;
|
|
@@ -12,6 +13,7 @@ export class QueueSpecification {
|
|
|
12
13
|
queueSpecification.id = raw.id;
|
|
13
14
|
queueSpecification.name = raw.name;
|
|
14
15
|
queueSpecification.environment = raw.environment;
|
|
16
|
+
queueSpecification.identifier = raw.identifier;
|
|
15
17
|
queueSpecification.type = raw.type;
|
|
16
18
|
// codeDeployStrategy.languageId = raw.language;
|
|
17
19
|
queueSpecification.state = State.fromString(raw.state);
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "1.
|
|
1
|
+
export declare const VERSION = "1.44.1";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "1.
|
|
1
|
+
export const VERSION = "1.44.1";
|