attlaz-client 1.8.27 → 1.8.28

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,5 +3,7 @@ export declare class CodeSource {
3
3
  codeSourceAccountId: string;
4
4
  repository: string;
5
5
  branch: string;
6
+ platformId: string;
7
+ buildStrategyId: string;
6
8
  static parse(rawCodeSource: any): CodeSource;
7
9
  }
@@ -8,6 +8,8 @@ class CodeSource {
8
8
  codeSource.codeSourceAccountId = rawCodeSource.codeSourceAccountId;
9
9
  codeSource.repository = rawCodeSource.repository;
10
10
  codeSource.branch = rawCodeSource.branch;
11
+ codeSource.platformId = rawCodeSource.platformId;
12
+ codeSource.buildStrategyId = rawCodeSource.buildStrategyId;
11
13
  return codeSource;
12
14
  }
13
15
  }
@@ -3,6 +3,7 @@ import { ProjectDeployCommit } from './ProjectDeployCommit';
3
3
  export declare class ProjectDeploy {
4
4
  id: string;
5
5
  platformId: string;
6
+ buildStrategyId: string;
6
7
  userId: string;
7
8
  requested: Date;
8
9
  started: Date;
@@ -14,6 +14,7 @@ class ProjectDeploy {
14
14
  const projectDeploy = new ProjectDeploy();
15
15
  projectDeploy.id = rawProjectDeploy.id.toString();
16
16
  projectDeploy.platformId = rawProjectDeploy.platformId;
17
+ projectDeploy.buildStrategyId = rawProjectDeploy.buildStrategyId;
17
18
  projectDeploy.userId = rawProjectDeploy.userId;
18
19
  projectDeploy.requested = new Date(rawProjectDeploy.requested);
19
20
  projectDeploy.started = new Date(rawProjectDeploy.started);
@@ -2,7 +2,7 @@ import { State } from '../State';
2
2
  import { StateAware } from '../StateAware';
3
3
  export declare class PlatformImage implements StateAware {
4
4
  id: string;
5
- platformId: number;
5
+ platformId: string;
6
6
  image: string;
7
7
  version: string;
8
8
  languageVersion: string;
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "1.8.27";
1
+ export declare const VERSION = "1.8.28";
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = "1.8.27";
4
+ exports.VERSION = "1.8.28";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "attlaz-client",
3
- "version": "1.8.27",
3
+ "version": "1.8.28",
4
4
  "description": "Javascript Client to access Attlaz API",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",