attlaz-client 1.9.38 → 1.9.39
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 +2 -0
- package/dist/Client.js +12 -9
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ import { LogEndpoint } from './Service/LogEndpoint';
|
|
|
25
25
|
import { TriggerEndpoint } from './Service/TriggerEndpoint';
|
|
26
26
|
import { PlatformEndpoint } from './Service/PlatformEndpoint';
|
|
27
27
|
import { FlowRunStatsEndpoint } from './Service/FlowRunStatsEndpoint';
|
|
28
|
+
import { CodeSourceDeployStrategyEndpoint } from './Service/CodeSourceDeployStrategyEndpoint';
|
|
28
29
|
export declare class Client {
|
|
29
30
|
private readonly apiEndpoint;
|
|
30
31
|
private readonly clientId;
|
|
@@ -69,5 +70,6 @@ export declare class Client {
|
|
|
69
70
|
getWorkerConfigEndpoint(): WorkerConfigEndpoint;
|
|
70
71
|
getQueueEndpoint(): QueueEndpoint;
|
|
71
72
|
getHealthAlertEndpoint(): HealthAlertEndpoint;
|
|
73
|
+
getCodeSourceDeployStrategyEndpoint(): CodeSourceDeployStrategyEndpoint;
|
|
72
74
|
private getEndpoint;
|
|
73
75
|
}
|
package/dist/Client.js
CHANGED
|
@@ -126,10 +126,10 @@ class Client {
|
|
|
126
126
|
return this.getEndpoint('project', this.Store.ProjectEndpoint);
|
|
127
127
|
}
|
|
128
128
|
getProjectEnvironmentEndpoint() {
|
|
129
|
-
return this.getEndpoint('
|
|
129
|
+
return this.getEndpoint('project-environment', this.Store.ProjectEnvironmentEndpoint);
|
|
130
130
|
}
|
|
131
131
|
getProjectDeployEndpoint() {
|
|
132
|
-
return this.getEndpoint('
|
|
132
|
+
return this.getEndpoint('project-deploy', this.Store.ProjectDeployEndpoint);
|
|
133
133
|
}
|
|
134
134
|
getChannelEndpoint() {
|
|
135
135
|
return this.getEndpoint('channel', this.Store.ChannelEndpoint);
|
|
@@ -150,16 +150,16 @@ class Client {
|
|
|
150
150
|
return this.getEndpoint('log', this.Store.LogEndpoint);
|
|
151
151
|
}
|
|
152
152
|
getFlowEndpoint() {
|
|
153
|
-
return this.getEndpoint('
|
|
153
|
+
return this.getEndpoint('flow', this.Store.FlowEndpoint);
|
|
154
154
|
}
|
|
155
155
|
getFlowRunEndpoint() {
|
|
156
|
-
return this.getEndpoint('
|
|
156
|
+
return this.getEndpoint('flow-run', this.Store.FlowRunEndpoint);
|
|
157
157
|
}
|
|
158
158
|
getFlowRunRequestEndpoint() {
|
|
159
|
-
return this.getEndpoint('
|
|
159
|
+
return this.getEndpoint('flow-run-request', this.Store.FlowRunRequestEndpoint);
|
|
160
160
|
}
|
|
161
161
|
getTaskExecutionStatsEndpoint() {
|
|
162
|
-
return this.getEndpoint('
|
|
162
|
+
return this.getEndpoint('flow-run-stats', this.Store.FlowRunStatsEndpoint);
|
|
163
163
|
}
|
|
164
164
|
getWorkspaceEndpoint() {
|
|
165
165
|
return this.getEndpoint('workspaces', this.Store.WorkspaceEndpoint);
|
|
@@ -177,7 +177,7 @@ class Client {
|
|
|
177
177
|
return this.getEndpoint('worker', this.Store.WorkerEndpoint);
|
|
178
178
|
}
|
|
179
179
|
getSourcesAccountEndpoint() {
|
|
180
|
-
return this.getEndpoint('
|
|
180
|
+
return this.getEndpoint('sources-account', this.Store.SourcesAccountEndpoint);
|
|
181
181
|
}
|
|
182
182
|
getLanguageEndpoint() {
|
|
183
183
|
return this.getEndpoint('language', this.Store.PlatformLanguageEndpoint);
|
|
@@ -186,13 +186,16 @@ class Client {
|
|
|
186
186
|
return this.getEndpoint('storage', this.Store.StorageEndpoint);
|
|
187
187
|
}
|
|
188
188
|
getWorkerConfigEndpoint() {
|
|
189
|
-
return this.getEndpoint('
|
|
189
|
+
return this.getEndpoint('worker-config', this.Store.WorkerConfigEndpoint);
|
|
190
190
|
}
|
|
191
191
|
getQueueEndpoint() {
|
|
192
192
|
return this.getEndpoint('queue', this.Store.QueueEndpoint);
|
|
193
193
|
}
|
|
194
194
|
getHealthAlertEndpoint() {
|
|
195
|
-
return this.getEndpoint('
|
|
195
|
+
return this.getEndpoint('healt-alert', this.Store.HealthAlertEndpoint);
|
|
196
|
+
}
|
|
197
|
+
getCodeSourceDeployStrategyEndpoint() {
|
|
198
|
+
return this.getEndpoint('code-source-deploy-strategy', this.Store.CodeSourceDeployStrategyEndpoint);
|
|
196
199
|
}
|
|
197
200
|
getEndpoint(key, className) {
|
|
198
201
|
//const classNameString: string = className.name;
|