attlaz-client 1.27.1 → 1.27.2
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/Client.d.ts
CHANGED
|
@@ -75,7 +75,7 @@ export declare class Client {
|
|
|
75
75
|
getSourcesAccountEndpoint(): SourcesAccountEndpoint;
|
|
76
76
|
getLanguageEndpoint(): PlatformLanguageEndpoint;
|
|
77
77
|
getStorageEndpoint(): StorageEndpoint;
|
|
78
|
-
|
|
78
|
+
getInfrastructureConfigurationEndpoint(): InfrastructureConfigurationEndpoint;
|
|
79
79
|
getQueueEndpoint(): QueueEndpoint;
|
|
80
80
|
getHealthAlertEndpoint(): HealthAlertEndpoint;
|
|
81
81
|
getCodeSourceStrategiesEndpoint(): CodeSourceStrategiesEndpoint;
|
package/dist/Client.js
CHANGED
|
@@ -65,7 +65,7 @@ export class Client {
|
|
|
65
65
|
TriggerEndpoint,
|
|
66
66
|
UserActionEndpoint,
|
|
67
67
|
UserEndpoint,
|
|
68
|
-
|
|
68
|
+
InfrastructureConfigurationEndpoint,
|
|
69
69
|
WorkerEndpoint,
|
|
70
70
|
WorkspaceEndpoint,
|
|
71
71
|
WorkspaceMemberEndpoint,
|
|
@@ -195,8 +195,8 @@ export class Client {
|
|
|
195
195
|
getStorageEndpoint() {
|
|
196
196
|
return this.getEndpoint('storage', this.Store.StorageEndpoint);
|
|
197
197
|
}
|
|
198
|
-
|
|
199
|
-
return this.getEndpoint('worker-config', this.Store.
|
|
198
|
+
getInfrastructureConfigurationEndpoint() {
|
|
199
|
+
return this.getEndpoint('worker-config', this.Store.InfrastructureConfigurationEndpoint);
|
|
200
200
|
}
|
|
201
201
|
getQueueEndpoint() {
|
|
202
202
|
return this.getEndpoint('queue', this.Store.QueueEndpoint);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { WorkerConfig } from '../Model/Worker/WorkerConfig.js';
|
|
2
2
|
import { CollectionResult } from '../Model/Result/CollectionResult.js';
|
|
3
|
-
import { Endpoint } from './Endpoint.js';
|
|
4
3
|
import { DataValueValue } from '../Model/DataValue.js';
|
|
4
|
+
import { Endpoint } from './Endpoint.js';
|
|
5
5
|
export declare class InfrastructureConfigurationEndpoint extends Endpoint {
|
|
6
6
|
getByProjectEnvironment(projectEnvironmentId: string): Promise<CollectionResult<WorkerConfig>>;
|
|
7
7
|
getByKey(projectEnvironmentId: string, key: string): Promise<WorkerConfig | null>;
|