attlaz-client 1.10.22 → 1.10.23
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.
|
@@ -5,7 +5,6 @@ export class AdapterConnection {
|
|
|
5
5
|
name;
|
|
6
6
|
projectId;
|
|
7
7
|
status;
|
|
8
|
-
// configuration: DataValueCollection;
|
|
9
8
|
constructor() {
|
|
10
9
|
}
|
|
11
10
|
static parse(rawAdapterConnection) {
|
|
@@ -16,14 +15,6 @@ export class AdapterConnection {
|
|
|
16
15
|
adapterConnection.name = rawAdapterConnection.name;
|
|
17
16
|
adapterConnection.projectId = rawAdapterConnection.project;
|
|
18
17
|
adapterConnection.status = rawAdapterConnection.status;
|
|
19
|
-
// adapterConnection.configuration = DataValueCollection.fromObject(rawAdapterConnection.configuration);
|
|
20
18
|
return adapterConnection;
|
|
21
|
-
// adapter.id = rawAdapter.id;
|
|
22
|
-
// adapter.name = rawAdapter.name;
|
|
23
|
-
// adapter.description = rawAdapter.description;
|
|
24
|
-
// adapter.vendor = rawAdapter.vendor;
|
|
25
|
-
// adapter.image = rawAdapter.image;
|
|
26
|
-
// adapter.type = rawAdapter.type;
|
|
27
|
-
// return adapter;
|
|
28
19
|
}
|
|
29
20
|
}
|
|
@@ -4,7 +4,7 @@ import { AdapterConnection } from '../Model/Adapter/AdapterConnection.js';
|
|
|
4
4
|
import { AdapterConfiguration } from '../Model/Adapter/AdapterConfiguration.js';
|
|
5
5
|
import { CollectionResult } from '../Model/Result/CollectionResult.js';
|
|
6
6
|
import { DataValueCollection } from '../Model/DataValueCollection.js';
|
|
7
|
-
import { AdapterConnectionConfigurationValue } from '../Model/Adapter/AdapterConnectionConfigurationValue';
|
|
7
|
+
import { AdapterConnectionConfigurationValue } from '../Model/Adapter/AdapterConnectionConfigurationValue.js';
|
|
8
8
|
export declare class AdapterEndpoint extends Endpoint {
|
|
9
9
|
getAdapters(): Promise<CollectionResult<Adapter>>;
|
|
10
10
|
getAdapter(adapterId: string): Promise<Adapter | null>;
|