attlaz-client 1.8.26 → 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.
- package/dist/Model/Deployment/CodeSource.d.ts +2 -0
- package/dist/Model/Deployment/CodeSource.js +2 -0
- package/dist/Model/Project/PlatformLanguage.d.ts +2 -2
- package/dist/Model/Project/ProjectDeploy.d.ts +1 -0
- package/dist/Model/Project/ProjectDeploy.js +1 -0
- package/dist/Model/Worker/Platform.d.ts +2 -2
- package/dist/Model/Worker/PlatformImage.d.ts +2 -2
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -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
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { State } from '../State';
|
|
2
2
|
import { StateAware } from '../StateAware';
|
|
3
3
|
export declare class PlatformLanguage implements StateAware {
|
|
4
|
-
id:
|
|
4
|
+
id: string;
|
|
5
5
|
name: string;
|
|
6
6
|
description: string;
|
|
7
7
|
state: State;
|
|
8
|
-
constructor(id:
|
|
8
|
+
constructor(id: string, name: string);
|
|
9
9
|
static parse(rawLanguage: any): PlatformLanguage;
|
|
10
10
|
}
|
|
@@ -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);
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { State } from '../State';
|
|
2
2
|
import { StateAware } from '../StateAware';
|
|
3
3
|
export declare class Platform implements StateAware {
|
|
4
|
-
id:
|
|
4
|
+
id: string;
|
|
5
5
|
name: string;
|
|
6
|
-
languageId:
|
|
6
|
+
languageId: string;
|
|
7
7
|
released: Date;
|
|
8
8
|
endOfSupport: Date;
|
|
9
9
|
endOfLife: Date;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { State } from '../State';
|
|
2
2
|
import { StateAware } from '../StateAware';
|
|
3
3
|
export declare class PlatformImage implements StateAware {
|
|
4
|
-
id:
|
|
5
|
-
platformId:
|
|
4
|
+
id: string;
|
|
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.
|
|
1
|
+
export declare const VERSION = "1.8.28";
|
package/dist/version.js
CHANGED