attlaz-client 1.36.4 → 1.36.6

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.
@@ -18,7 +18,7 @@ export class AdapterConnection extends MetaDataAware {
18
18
  adapterConnection.projectId = rawAdapterConnection.project;
19
19
  adapterConnection.state = State.fromString(rawAdapterConnection.state);
20
20
  adapterConnection.status = AdapterConnectionStatus.fromString(rawAdapterConnection.status);
21
- adapterConnection.lastUsedAt = rawAdapterConnection.last_used === null ? null : Utils.parseRawDate(rawAdapterConnection.last_used);
21
+ adapterConnection.lastUsedAt = (rawAdapterConnection.last_used === null || rawAdapterConnection.last_used === undefined) ? null : Utils.parseRawDate(rawAdapterConnection.last_used);
22
22
  return adapterConnection;
23
23
  }
24
24
  }
@@ -4,6 +4,7 @@ export declare class PlatformImage implements StateAware {
4
4
  id: string;
5
5
  platformId: string;
6
6
  image: string;
7
+ name: string;
7
8
  version: string;
8
9
  languageVersion: string;
9
10
  buildDate: Date;
@@ -4,6 +4,7 @@ export class PlatformImage {
4
4
  id;
5
5
  platformId;
6
6
  image;
7
+ name;
7
8
  version;
8
9
  languageVersion;
9
10
  buildDate;
@@ -12,6 +13,7 @@ export class PlatformImage {
12
13
  const platformImage = new PlatformImage();
13
14
  platformImage.id = raw.id;
14
15
  platformImage.platformId = raw.platform;
16
+ platformImage.name = raw.name;
15
17
  platformImage.image = raw.image;
16
18
  platformImage.version = raw.version;
17
19
  platformImage.languageVersion = raw.language_version;
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "1.36.3";
1
+ export declare const VERSION = "1.36.5";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = "1.36.3";
1
+ export const VERSION = "1.36.5";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "attlaz-client",
3
- "version": "1.36.4",
3
+ "version": "1.36.6",
4
4
  "description": "Javascript Client to access Attlaz API",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",