Skip to content

Commit 58fe018

Browse files
committed
Updated all generated apis
1 parent 3535499 commit 58fe018

File tree

684 files changed

+1742
-1510
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

684 files changed

+1742
-1510
lines changed

src/Moryx.ControlSystem.ProcessEngine.Web/app/src/app/api/api-configuration.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@
88

99
import { Injectable } from '@angular/core';
1010

11+
/**
12+
* Provides the ApiConfiguration configuration object with a given root URL.
13+
*/
14+
export function provideApiConfiguration(rootUrl: string) {
15+
var config = new ApiConfiguration();
16+
config.rootUrl = rootUrl;
17+
return {
18+
provide: ApiConfiguration,
19+
useValue: config
20+
};
21+
}
22+
1123
/**
1224
* Global configuration
1325
*/
@@ -24,4 +36,3 @@ export class ApiConfiguration {
2436
export interface ApiConfigurationParams {
2537
rootUrl?: string;
2638
}
27-

src/Moryx.ControlSystem.ProcessEngine.Web/app/src/app/api/api.module.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,3 @@ export class ApiModule {
5454
}
5555
}
5656
}
57-

src/Moryx.ControlSystem.ProcessEngine.Web/app/src/app/api/api.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,3 @@ export class Api {
6767
return obs;
6868
}
6969
}
70-

src/Moryx.ControlSystem.ProcessEngine.Web/app/src/app/api/base-service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,3 @@ export class BaseService {
3838
this._rootUrl = rootUrl;
3939
}
4040
}
41-

src/Moryx.ControlSystem.ProcessEngine.Web/app/src/app/api/fn/job-management/abort.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,3 @@ export function abort(http: HttpClient, rootUrl: string, params: Abort$Params, c
3434
}
3535

3636
abort.PATH = '/api/moryx/jobs/{jobId}/abort';
37-

src/Moryx.ControlSystem.ProcessEngine.Web/app/src/app/api/fn/job-management/complete.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,3 @@ export function complete(http: HttpClient, rootUrl: string, params: Complete$Par
3434
}
3535

3636
complete.PATH = '/api/moryx/jobs/{jobId}/complete';
37-

src/Moryx.ControlSystem.ProcessEngine.Web/app/src/app/api/fn/job-management/get-all.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,3 @@ export function getAll(http: HttpClient, rootUrl: string, params?: GetAll$Params
3333
}
3434

3535
getAll.PATH = '/api/moryx/jobs';
36-

src/Moryx.ControlSystem.ProcessEngine.Web/app/src/app/api/fn/job-management/get-job.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,3 @@ export function getJob(http: HttpClient, rootUrl: string, params: GetJob$Params,
3535
}
3636

3737
getJob.PATH = '/api/moryx/jobs/{jobId}';
38-

src/Moryx.ControlSystem.ProcessEngine.Web/app/src/app/api/fn/job-management/progress-stream.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,3 @@ export function progressStream(http: HttpClient, rootUrl: string, params?: Progr
3232
}
3333

3434
progressStream.PATH = '/api/moryx/jobs/stream';
35-

src/Moryx.ControlSystem.ProcessEngine.Web/app/src/app/api/fn/order-management/abort-operation.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,3 @@ export function abortOperation(http: HttpClient, rootUrl: string, params: AbortO
3434
}
3535

3636
abortOperation.PATH = '/api/moryx/orders/{guid}/abort';
37-

0 commit comments

Comments
 (0)