attlaz-client 1.10.11 → 1.10.12

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,9 +1,10 @@
1
1
  import { DataValueCollection } from '../DataValueCollection.js';
2
2
  export declare class AdapterConnection {
3
- id: number;
3
+ id: string;
4
4
  key: string;
5
5
  adapter: string;
6
6
  name: string;
7
+ projectId: string;
7
8
  configuration: DataValueCollection;
8
9
  constructor();
9
10
  static parse(rawAdapterConnection: any): AdapterConnection;
@@ -4,6 +4,7 @@ export class AdapterConnection {
4
4
  key;
5
5
  adapter;
6
6
  name;
7
+ projectId;
7
8
  configuration;
8
9
  constructor() {
9
10
  this.configuration = new DataValueCollection();
@@ -14,6 +15,7 @@ export class AdapterConnection {
14
15
  adapterConnection.key = rawAdapterConnection.key;
15
16
  adapterConnection.adapter = rawAdapterConnection.adapter;
16
17
  adapterConnection.name = rawAdapterConnection.name;
18
+ adapterConnection.projectId = rawAdapterConnection.project;
17
19
  adapterConnection.configuration = DataValueCollection.fromObject(rawAdapterConnection.configuration);
18
20
  return adapterConnection;
19
21
  // adapter.id = rawAdapter.id;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "attlaz-client",
3
- "version": "1.10.11",
3
+ "version": "1.10.12",
4
4
  "description": "Javascript Client to access Attlaz API",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",