attlaz-client 1.63.0 → 1.63.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.
@@ -1 +1 @@
1
- export type FilterOperator = 'eq' | 'neq' | 'in' | 'not_in' | 'lt' | 'lte' | 'gt' | 'gte' | 'is_null' | 'is_not_null' | 'starts_with' | 'contains';
1
+ export type FilterOperator = 'eq' | 'neq' | 'in' | 'not_in' | 'lt' | 'lte' | 'gt' | 'gte' | 'is_null' | 'is_not_null' | 'starts_with' | 'ends_with' | 'contains';
@@ -9,6 +9,7 @@ export declare class ProjectEnvironment extends MetaDataAware implements StateAw
9
9
  projectId: string;
10
10
  codeSourceId: string | null;
11
11
  parentId: string | null;
12
+ defaultRunnerPoolId: string | null;
12
13
  type: ProjectEnvironmentType;
13
14
  state: State;
14
15
  static parse(rawProjectEnvironment: ApiRecord): ProjectEnvironment;
@@ -7,6 +7,7 @@ export class ProjectEnvironment extends MetaDataAware {
7
7
  projectId;
8
8
  codeSourceId = null;
9
9
  parentId = null;
10
+ defaultRunnerPoolId = null;
10
11
  type = ProjectEnvironmentType.Production;
11
12
  state = State.Active;
12
13
  static parse(rawProjectEnvironment) {
@@ -16,6 +17,7 @@ export class ProjectEnvironment extends MetaDataAware {
16
17
  projectEnvironment.projectId = rawProjectEnvironment.project;
17
18
  projectEnvironment.codeSourceId = rawProjectEnvironment.code_source;
18
19
  projectEnvironment.parentId = rawProjectEnvironment.parent;
20
+ projectEnvironment.defaultRunnerPoolId = rawProjectEnvironment.default_runner_pool;
19
21
  projectEnvironment.type = ProjectEnvironmentType.fromString(rawProjectEnvironment.type);
20
22
  projectEnvironment.state = State.fromString(rawProjectEnvironment.state);
21
23
  return projectEnvironment;
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "1.62.0";
1
+ export declare const VERSION = "1.63.0";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = "1.62.0";
1
+ export const VERSION = "1.63.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "attlaz-client",
3
- "version": "1.63.0",
3
+ "version": "1.63.1",
4
4
  "description": "Javascript Client to access Attlaz API",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",