@veeroute/lss-account-angular 4.0.173744-RC → 4.7.1601
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/README.md +3 -3
- package/api/api.d.ts +7 -7
- package/api/auditService.d.ts +17 -14
- package/api/auditServiceInterface.d.ts +11 -10
- package/api/authService.d.ts +27 -18
- package/api/authServiceInterface.d.ts +11 -11
- package/api/dataService.d.ts +82 -0
- package/api/dataServiceInterface.d.ts +45 -0
- package/api/infoService.d.ts +20 -14
- package/api/infoServiceInterface.d.ts +8 -8
- package/api/{quotaService.d.ts → quotasService.d.ts} +17 -14
- package/api/{quotaServiceInterface.d.ts → quotasServiceInterface.d.ts} +7 -7
- package/api/statisticsService.d.ts +30 -8
- package/api/statisticsServiceInterface.d.ts +17 -7
- package/api/systemService.d.ts +14 -8
- package/api/systemServiceInterface.d.ts +5 -5
- package/bundles/veeroute-lss-account-angular.umd.js +588 -294
- package/bundles/veeroute-lss-account-angular.umd.js.map +1 -1
- package/cfg/audit_operations.json +137 -0
- package/cfg/method_groups.json +88 -0
- package/esm2015/api/api.js +8 -8
- package/esm2015/api/auditService.js +48 -30
- package/esm2015/api/auditServiceInterface.js +1 -1
- package/esm2015/api/authService.js +86 -46
- package/esm2015/api/authServiceInterface.js +1 -1
- package/esm2015/api/dataService.js +236 -0
- package/esm2015/api/dataServiceInterface.js +2 -0
- package/esm2015/api/infoService.js +63 -36
- package/esm2015/api/infoServiceInterface.js +1 -1
- package/esm2015/api/quotasService.js +133 -0
- package/esm2015/api/quotasServiceInterface.js +2 -0
- package/esm2015/api/statisticsService.js +98 -28
- package/esm2015/api/statisticsServiceInterface.js +1 -1
- package/esm2015/api/systemService.js +53 -26
- package/esm2015/api/systemServiceInterface.js +1 -1
- package/esm2015/api.module.js +1 -1
- package/esm2015/model/accountAuditResult.js +2 -0
- package/esm2015/model/accountInfo.js +4 -4
- package/esm2015/model/auditAction.js +2 -0
- package/esm2015/model/auditActionStatistics.js +13 -0
- package/esm2015/model/auditStats.js +1 -1
- package/esm2015/model/auditStatsDetail.js +4 -4
- package/esm2015/model/checkResult.js +4 -4
- package/esm2015/model/dateStatistics.js +1 -1
- package/esm2015/model/inlineResponse400.js +1 -1
- package/esm2015/model/inlineResponse401.js +1 -1
- package/esm2015/model/inlineResponse402.js +1 -1
- package/esm2015/model/inlineResponse403.js +1 -1
- package/esm2015/model/inlineResponse404.js +1 -1
- package/esm2015/model/inlineResponse404Detail.js +2 -0
- package/esm2015/model/inlineResponse429.js +1 -1
- package/esm2015/model/inlineResponse500.js +1 -1
- package/esm2015/model/methodGroup.js +31 -0
- package/esm2015/model/methodQuota.js +1 -1
- package/esm2015/model/methodStatistics.js +1 -1
- package/esm2015/model/models.js +11 -16
- package/esm2015/model/passwordRequest.js +4 -4
- package/esm2015/model/quotaBase.js +2 -0
- package/esm2015/model/quotasResult.js +2 -0
- package/esm2015/model/serviceName.js +10 -13
- package/esm2015/model/serviceQuota.js +1 -1
- package/esm2015/model/serviceStatistics.js +1 -1
- package/esm2015/model/tokenRequest.js +4 -4
- package/esm2015/model/tokenValidationResult.js +2 -0
- package/esm2015/model/tracedata.js +2 -0
- package/esm2015/model/userRole.js +23 -0
- package/esm2015/model/userStatistics.js +1 -1
- package/esm2015/model/versionResult.js +4 -4
- package/fesm2015/veeroute-lss-account-angular.js +586 -296
- package/fesm2015/veeroute-lss-account-angular.js.map +1 -1
- package/model/accountAuditResult.d.ts +23 -0
- package/model/accountInfo.d.ts +8 -8
- package/model/auditAction.d.ts +30 -0
- package/model/auditActionStatistics.d.ts +24 -0
- package/model/auditStats.d.ts +3 -3
- package/model/auditStatsDetail.d.ts +3 -3
- package/model/checkResult.d.ts +3 -3
- package/model/dateStatistics.d.ts +3 -3
- package/model/inlineResponse400.d.ts +6 -6
- package/model/inlineResponse401.d.ts +6 -6
- package/model/inlineResponse402.d.ts +6 -6
- package/model/inlineResponse403.d.ts +7 -7
- package/model/inlineResponse404.d.ts +7 -7
- package/model/inlineResponse404Detail.d.ts +18 -0
- package/model/inlineResponse429.d.ts +6 -6
- package/model/inlineResponse500.d.ts +6 -6
- package/model/{methodName.d.ts → methodGroup.d.ts} +9 -7
- package/model/methodQuota.d.ts +7 -7
- package/model/methodStatistics.d.ts +5 -5
- package/model/models.d.ts +10 -15
- package/model/passwordRequest.d.ts +3 -3
- package/model/{quota.d.ts → quotaBase.d.ts} +4 -4
- package/model/quotasResult.d.ts +18 -0
- package/model/serviceName.d.ts +10 -13
- package/model/serviceQuota.d.ts +4 -4
- package/model/serviceStatistics.d.ts +3 -3
- package/model/tokenRequest.d.ts +4 -4
- package/model/{tokenValidation.d.ts → tokenValidationResult.d.ts} +6 -9
- package/model/tracedata.d.ts +38 -0
- package/model/userRole.d.ts +20 -0
- package/model/userStatistics.d.ts +4 -4
- package/model/versionResult.d.ts +3 -3
- package/package.json +8 -9
- package/veeroute-lss-account-angular.metadata.json +1 -1
- package/api/reportsService.d.ts +0 -41
- package/api/reportsServiceInterface.d.ts +0 -28
- package/bundles/veeroute-lss-account-angular.umd.min.js +0 -2
- package/bundles/veeroute-lss-account-angular.umd.min.js.map +0 -1
- package/esm2015/api/quotaService.js +0 -120
- package/esm2015/api/quotaServiceInterface.js +0 -2
- package/esm2015/api/reportsService.js +0 -132
- package/esm2015/api/reportsServiceInterface.js +0 -2
- package/esm2015/model/accountAction.js +0 -2
- package/esm2015/model/additionalQuota.js +0 -2
- package/esm2015/model/dateWindow.js +0 -13
- package/esm2015/model/inlineResponse405.js +0 -2
- package/esm2015/model/inlineResponse406.js +0 -2
- package/esm2015/model/inlineResponse415.js +0 -2
- package/esm2015/model/methodName.js +0 -29
- package/esm2015/model/quota.js +0 -2
- package/esm2015/model/tokenValidation.js +0 -18
- package/esm2015/model/traceData.js +0 -2
- package/esm2015/model/userActionDetail.js +0 -2
- package/esm2015/model/userAuditResult.js +0 -2
- package/esm2015/model/userQuotaResult.js +0 -2
- package/esm2015/model/userReportFilter.js +0 -6
- package/esm2015/model/userStatisticsFilter.js +0 -2
- package/model/accountAction.d.ts +0 -26
- package/model/additionalQuota.d.ts +0 -20
- package/model/dateWindow.d.ts +0 -24
- package/model/inlineResponse405.d.ts +0 -22
- package/model/inlineResponse406.d.ts +0 -22
- package/model/inlineResponse415.d.ts +0 -22
- package/model/traceData.d.ts +0 -36
- package/model/userActionDetail.d.ts +0 -22
- package/model/userAuditResult.d.ts +0 -23
- package/model/userQuotaResult.d.ts +0 -20
- package/model/userReportFilter.d.ts +0 -25
- package/model/userStatisticsFilter.d.ts +0 -18
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @veeroute/lss-account-angular@4.
|
|
1
|
+
## @veeroute/lss-account-angular@4.7.1601
|
|
2
2
|
|
|
3
3
|
## General usage
|
|
4
4
|
|
|
@@ -105,7 +105,7 @@ export class AppModule {
|
|
|
105
105
|
|
|
106
106
|
|
|
107
107
|
### Set service base path
|
|
108
|
-
If different than the generated base path, during app bootstrap, you can provide the base path to your service.
|
|
108
|
+
If different than the generated base path, during app bootstrap, you can provide the base path to your service.
|
|
109
109
|
|
|
110
110
|
```
|
|
111
111
|
import { BASE_PATH } from '@veeroute/lss-account-angular';
|
|
@@ -153,4 +153,4 @@ import { environment } from '../environments/environment';
|
|
|
153
153
|
bootstrap: [ AppComponent ]
|
|
154
154
|
})
|
|
155
155
|
export class AppModule { }
|
|
156
|
-
```
|
|
156
|
+
```
|
package/api/api.d.ts
CHANGED
|
@@ -4,19 +4,19 @@ export * from './auditServiceInterface';
|
|
|
4
4
|
export * from './authService';
|
|
5
5
|
import { AuthService } from './authService';
|
|
6
6
|
export * from './authServiceInterface';
|
|
7
|
+
export * from './dataService';
|
|
8
|
+
import { DataService } from './dataService';
|
|
9
|
+
export * from './dataServiceInterface';
|
|
7
10
|
export * from './infoService';
|
|
8
11
|
import { InfoService } from './infoService';
|
|
9
12
|
export * from './infoServiceInterface';
|
|
10
|
-
export * from './
|
|
11
|
-
import {
|
|
12
|
-
export * from './
|
|
13
|
-
export * from './reportsService';
|
|
14
|
-
import { ReportsService } from './reportsService';
|
|
15
|
-
export * from './reportsServiceInterface';
|
|
13
|
+
export * from './quotasService';
|
|
14
|
+
import { QuotasService } from './quotasService';
|
|
15
|
+
export * from './quotasServiceInterface';
|
|
16
16
|
export * from './statisticsService';
|
|
17
17
|
import { StatisticsService } from './statisticsService';
|
|
18
18
|
export * from './statisticsServiceInterface';
|
|
19
19
|
export * from './systemService';
|
|
20
20
|
import { SystemService } from './systemService';
|
|
21
21
|
export * from './systemServiceInterface';
|
|
22
|
-
export declare const APIS: (typeof AuditService | typeof AuthService | typeof
|
|
22
|
+
export declare const APIS: (typeof AuditService | typeof AuthService | typeof DataService | typeof InfoService | typeof QuotasService | typeof StatisticsService | typeof SystemService)[];
|
package/api/auditService.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1601
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec } from '@angular/common/http';
|
|
12
|
+
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http';
|
|
13
13
|
import { Observable } from 'rxjs';
|
|
14
|
-
import {
|
|
14
|
+
import { AccountAuditResultAccount } from '../model/accountAuditResult';
|
|
15
15
|
import { Configuration } from '../configuration';
|
|
16
|
-
import { AuditServiceInterface,
|
|
16
|
+
import { AuditServiceInterface, ReadAuditRequestParams } from './auditServiceInterface';
|
|
17
17
|
export declare class AuditService implements AuditServiceInterface {
|
|
18
18
|
protected httpClient: HttpClient;
|
|
19
19
|
protected basePath: string;
|
|
@@ -24,19 +24,22 @@ export declare class AuditService implements AuditServiceInterface {
|
|
|
24
24
|
private addToHttpParams;
|
|
25
25
|
private addToHttpParamsRecursive;
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
28
|
-
* User actions for the period. If the period is not specified, records for the current day are returned from the beginning of the day to the current time.
|
|
27
|
+
* Actions for the period
|
|
28
|
+
* User actions for the period. If the period is not specified, records for the current day are returned from the beginning of the day to the current time. If no \'from\' datetime is specified, audit data are returned from the beginning of the day. If no \'to\' datetime is specified, audit data are returned be the end of the current day.
|
|
29
29
|
* @param requestParameters
|
|
30
30
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
31
31
|
* @param reportProgress flag to report request and response progress.
|
|
32
32
|
*/
|
|
33
|
-
|
|
33
|
+
readAudit(requestParameters: ReadAuditRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
34
34
|
httpHeaderAccept?: 'application/json';
|
|
35
|
-
|
|
36
|
-
|
|
35
|
+
context?: HttpContext;
|
|
36
|
+
}): Observable<AccountAuditResultAccount>;
|
|
37
|
+
readAudit(requestParameters: ReadAuditRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
37
38
|
httpHeaderAccept?: 'application/json';
|
|
38
|
-
|
|
39
|
-
|
|
39
|
+
context?: HttpContext;
|
|
40
|
+
}): Observable<HttpResponse<AccountAuditResultAccount>>;
|
|
41
|
+
readAudit(requestParameters: ReadAuditRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
40
42
|
httpHeaderAccept?: 'application/json';
|
|
41
|
-
|
|
43
|
+
context?: HttpContext;
|
|
44
|
+
}): Observable<HttpEvent<AccountAuditResultAccount>>;
|
|
42
45
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1601
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -11,25 +11,26 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { HttpHeaders } from '@angular/common/http';
|
|
13
13
|
import { Observable } from 'rxjs';
|
|
14
|
-
import {
|
|
14
|
+
import { AccountAuditResultAccount } from '../model/models';
|
|
15
|
+
import { MethodGroupAccount } from '../model/models';
|
|
15
16
|
import { ServiceNameAccount } from '../model/models';
|
|
16
|
-
import { UserAuditResultAccount } from '../model/models';
|
|
17
17
|
import { Configuration } from '../configuration';
|
|
18
|
-
export interface
|
|
18
|
+
export interface ReadAuditRequestParams {
|
|
19
19
|
offset?: number;
|
|
20
20
|
limit?: number;
|
|
21
21
|
from?: string;
|
|
22
22
|
to?: string;
|
|
23
23
|
serviceName?: ServiceNameAccount;
|
|
24
|
-
|
|
24
|
+
operationId?: string;
|
|
25
|
+
methodGroup?: MethodGroupAccount;
|
|
25
26
|
}
|
|
26
27
|
export interface AuditServiceInterface {
|
|
27
28
|
defaultHeaders: HttpHeaders;
|
|
28
29
|
configuration: Configuration;
|
|
29
30
|
/**
|
|
30
|
-
*
|
|
31
|
-
* User actions for the period. If the period is not specified, records for the current day are returned from the beginning of the day to the current time.
|
|
31
|
+
* Actions for the period
|
|
32
|
+
* User actions for the period. If the period is not specified, records for the current day are returned from the beginning of the day to the current time. If no \'from\' datetime is specified, audit data are returned from the beginning of the day. If no \'to\' datetime is specified, audit data are returned be the end of the current day.
|
|
32
33
|
* @param requestParameters
|
|
33
34
|
*/
|
|
34
|
-
|
|
35
|
+
readAudit(requestParameters: ReadAuditRequestParams, extraHttpRequestParams?: any): Observable<AccountAuditResultAccount>;
|
|
35
36
|
}
|
package/api/authService.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1601
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec } from '@angular/common/http';
|
|
12
|
+
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http';
|
|
13
13
|
import { Observable } from 'rxjs';
|
|
14
|
-
import {
|
|
14
|
+
import { TokenValidationResultAccount } from '../model/tokenValidationResult';
|
|
15
15
|
import { Configuration } from '../configuration';
|
|
16
|
-
import { AuthServiceInterface, ChangePasswordRequestParams,
|
|
16
|
+
import { AuthServiceInterface, ChangePasswordRequestParams, RunTokenGenerationRequestParams, RunTokenValidationRequestParams } from './authServiceInterface';
|
|
17
17
|
export declare class AuthService implements AuthServiceInterface {
|
|
18
18
|
protected httpClient: HttpClient;
|
|
19
19
|
protected basePath: string;
|
|
@@ -24,7 +24,7 @@ export declare class AuthService implements AuthServiceInterface {
|
|
|
24
24
|
private addToHttpParams;
|
|
25
25
|
private addToHttpParamsRecursive;
|
|
26
26
|
/**
|
|
27
|
-
* Change password
|
|
27
|
+
* Change password
|
|
28
28
|
* Change password and get new token.
|
|
29
29
|
* @param requestParameters
|
|
30
30
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
@@ -32,43 +32,52 @@ export declare class AuthService implements AuthServiceInterface {
|
|
|
32
32
|
*/
|
|
33
33
|
changePassword(requestParameters: ChangePasswordRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
34
34
|
httpHeaderAccept?: 'application/json';
|
|
35
|
+
context?: HttpContext;
|
|
35
36
|
}): Observable<string>;
|
|
36
37
|
changePassword(requestParameters: ChangePasswordRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
37
38
|
httpHeaderAccept?: 'application/json';
|
|
39
|
+
context?: HttpContext;
|
|
38
40
|
}): Observable<HttpResponse<string>>;
|
|
39
41
|
changePassword(requestParameters: ChangePasswordRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
40
42
|
httpHeaderAccept?: 'application/json';
|
|
43
|
+
context?: HttpContext;
|
|
41
44
|
}): Observable<HttpEvent<string>>;
|
|
42
45
|
/**
|
|
43
|
-
* Obtaining a token
|
|
46
|
+
* Obtaining a token
|
|
44
47
|
* Obtaining a token using the login and password.
|
|
45
48
|
* @param requestParameters
|
|
46
49
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
47
50
|
* @param reportProgress flag to report request and response progress.
|
|
48
51
|
*/
|
|
49
|
-
|
|
52
|
+
runTokenGeneration(requestParameters: RunTokenGenerationRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
50
53
|
httpHeaderAccept?: 'application/json';
|
|
54
|
+
context?: HttpContext;
|
|
51
55
|
}): Observable<string>;
|
|
52
|
-
|
|
56
|
+
runTokenGeneration(requestParameters: RunTokenGenerationRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
53
57
|
httpHeaderAccept?: 'application/json';
|
|
58
|
+
context?: HttpContext;
|
|
54
59
|
}): Observable<HttpResponse<string>>;
|
|
55
|
-
|
|
60
|
+
runTokenGeneration(requestParameters: RunTokenGenerationRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
56
61
|
httpHeaderAccept?: 'application/json';
|
|
62
|
+
context?: HttpContext;
|
|
57
63
|
}): Observable<HttpEvent<string>>;
|
|
58
64
|
/**
|
|
59
|
-
* Validating a token
|
|
65
|
+
* Validating a token
|
|
60
66
|
* Validating a token.
|
|
61
67
|
* @param requestParameters
|
|
62
68
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
63
69
|
* @param reportProgress flag to report request and response progress.
|
|
64
70
|
*/
|
|
65
|
-
|
|
71
|
+
runTokenValidation(requestParameters: RunTokenValidationRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
66
72
|
httpHeaderAccept?: 'application/json';
|
|
67
|
-
|
|
68
|
-
|
|
73
|
+
context?: HttpContext;
|
|
74
|
+
}): Observable<TokenValidationResultAccount>;
|
|
75
|
+
runTokenValidation(requestParameters: RunTokenValidationRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
69
76
|
httpHeaderAccept?: 'application/json';
|
|
70
|
-
|
|
71
|
-
|
|
77
|
+
context?: HttpContext;
|
|
78
|
+
}): Observable<HttpResponse<TokenValidationResultAccount>>;
|
|
79
|
+
runTokenValidation(requestParameters: RunTokenValidationRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
72
80
|
httpHeaderAccept?: 'application/json';
|
|
73
|
-
|
|
81
|
+
context?: HttpContext;
|
|
82
|
+
}): Observable<HttpEvent<TokenValidationResultAccount>>;
|
|
74
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1601
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -13,36 +13,36 @@ import { HttpHeaders } from '@angular/common/http';
|
|
|
13
13
|
import { Observable } from 'rxjs';
|
|
14
14
|
import { PasswordRequestAccount } from '../model/models';
|
|
15
15
|
import { TokenRequestAccount } from '../model/models';
|
|
16
|
-
import {
|
|
16
|
+
import { TokenValidationResultAccount } from '../model/models';
|
|
17
17
|
import { Configuration } from '../configuration';
|
|
18
18
|
export interface ChangePasswordRequestParams {
|
|
19
19
|
passwordRequestAccount?: PasswordRequestAccount;
|
|
20
20
|
}
|
|
21
|
-
export interface
|
|
21
|
+
export interface RunTokenGenerationRequestParams {
|
|
22
22
|
tokenRequestAccount: TokenRequestAccount;
|
|
23
23
|
}
|
|
24
|
-
export interface
|
|
24
|
+
export interface RunTokenValidationRequestParams {
|
|
25
25
|
body: string;
|
|
26
26
|
}
|
|
27
27
|
export interface AuthServiceInterface {
|
|
28
28
|
defaultHeaders: HttpHeaders;
|
|
29
29
|
configuration: Configuration;
|
|
30
30
|
/**
|
|
31
|
-
* Change password
|
|
31
|
+
* Change password
|
|
32
32
|
* Change password and get new token.
|
|
33
33
|
* @param requestParameters
|
|
34
34
|
*/
|
|
35
35
|
changePassword(requestParameters: ChangePasswordRequestParams, extraHttpRequestParams?: any): Observable<string>;
|
|
36
36
|
/**
|
|
37
|
-
* Obtaining a token
|
|
37
|
+
* Obtaining a token
|
|
38
38
|
* Obtaining a token using the login and password.
|
|
39
39
|
* @param requestParameters
|
|
40
40
|
*/
|
|
41
|
-
|
|
41
|
+
runTokenGeneration(requestParameters: RunTokenGenerationRequestParams, extraHttpRequestParams?: any): Observable<string>;
|
|
42
42
|
/**
|
|
43
|
-
* Validating a token
|
|
43
|
+
* Validating a token
|
|
44
44
|
* Validating a token.
|
|
45
45
|
* @param requestParameters
|
|
46
46
|
*/
|
|
47
|
-
|
|
47
|
+
runTokenValidation(requestParameters: RunTokenValidationRequestParams, extraHttpRequestParams?: any): Observable<TokenValidationResultAccount>;
|
|
48
48
|
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Account [AC]
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1601
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http';
|
|
13
|
+
import { Observable } from 'rxjs';
|
|
14
|
+
import { Configuration } from '../configuration';
|
|
15
|
+
import { DataServiceInterface, ReadAllDataXlsxRequestParams, ReadDataInputRequestParams, ReadDataOutputRequestParams } from './dataServiceInterface';
|
|
16
|
+
export declare class DataService implements DataServiceInterface {
|
|
17
|
+
protected httpClient: HttpClient;
|
|
18
|
+
protected basePath: string;
|
|
19
|
+
defaultHeaders: HttpHeaders;
|
|
20
|
+
configuration: Configuration;
|
|
21
|
+
encoder: HttpParameterCodec;
|
|
22
|
+
constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
|
|
23
|
+
private addToHttpParams;
|
|
24
|
+
private addToHttpParamsRecursive;
|
|
25
|
+
/**
|
|
26
|
+
* Data in XLSX
|
|
27
|
+
* Getting the data by `tracecode`.
|
|
28
|
+
* @param requestParameters
|
|
29
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
30
|
+
* @param reportProgress flag to report request and response progress.
|
|
31
|
+
*/
|
|
32
|
+
readAllDataXlsx(requestParameters: ReadAllDataXlsxRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
33
|
+
httpHeaderAccept?: 'application/octet-stream' | 'application/json';
|
|
34
|
+
context?: HttpContext;
|
|
35
|
+
}): Observable<string>;
|
|
36
|
+
readAllDataXlsx(requestParameters: ReadAllDataXlsxRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
37
|
+
httpHeaderAccept?: 'application/octet-stream' | 'application/json';
|
|
38
|
+
context?: HttpContext;
|
|
39
|
+
}): Observable<HttpResponse<string>>;
|
|
40
|
+
readAllDataXlsx(requestParameters: ReadAllDataXlsxRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
41
|
+
httpHeaderAccept?: 'application/octet-stream' | 'application/json';
|
|
42
|
+
context?: HttpContext;
|
|
43
|
+
}): Observable<HttpEvent<string>>;
|
|
44
|
+
/**
|
|
45
|
+
* Reading input data
|
|
46
|
+
* Receiving an incoming request by `tracecode`.
|
|
47
|
+
* @param requestParameters
|
|
48
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
49
|
+
* @param reportProgress flag to report request and response progress.
|
|
50
|
+
*/
|
|
51
|
+
readDataInput(requestParameters: ReadDataInputRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
52
|
+
httpHeaderAccept?: 'text/plain' | 'application/json';
|
|
53
|
+
context?: HttpContext;
|
|
54
|
+
}): Observable<string>;
|
|
55
|
+
readDataInput(requestParameters: ReadDataInputRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
56
|
+
httpHeaderAccept?: 'text/plain' | 'application/json';
|
|
57
|
+
context?: HttpContext;
|
|
58
|
+
}): Observable<HttpResponse<string>>;
|
|
59
|
+
readDataInput(requestParameters: ReadDataInputRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
60
|
+
httpHeaderAccept?: 'text/plain' | 'application/json';
|
|
61
|
+
context?: HttpContext;
|
|
62
|
+
}): Observable<HttpEvent<string>>;
|
|
63
|
+
/**
|
|
64
|
+
* Reading output data
|
|
65
|
+
* Getting the output data result by `tracecode`.
|
|
66
|
+
* @param requestParameters
|
|
67
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
68
|
+
* @param reportProgress flag to report request and response progress.
|
|
69
|
+
*/
|
|
70
|
+
readDataOutput(requestParameters: ReadDataOutputRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
71
|
+
httpHeaderAccept?: 'text/plain' | 'application/json';
|
|
72
|
+
context?: HttpContext;
|
|
73
|
+
}): Observable<string>;
|
|
74
|
+
readDataOutput(requestParameters: ReadDataOutputRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
75
|
+
httpHeaderAccept?: 'text/plain' | 'application/json';
|
|
76
|
+
context?: HttpContext;
|
|
77
|
+
}): Observable<HttpResponse<string>>;
|
|
78
|
+
readDataOutput(requestParameters: ReadDataOutputRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
79
|
+
httpHeaderAccept?: 'text/plain' | 'application/json';
|
|
80
|
+
context?: HttpContext;
|
|
81
|
+
}): Observable<HttpEvent<string>>;
|
|
82
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Account [AC]
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1601
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { HttpHeaders } from '@angular/common/http';
|
|
13
|
+
import { Observable } from 'rxjs';
|
|
14
|
+
import { Configuration } from '../configuration';
|
|
15
|
+
export interface ReadAllDataXlsxRequestParams {
|
|
16
|
+
tracecode: string;
|
|
17
|
+
}
|
|
18
|
+
export interface ReadDataInputRequestParams {
|
|
19
|
+
tracecode: string;
|
|
20
|
+
}
|
|
21
|
+
export interface ReadDataOutputRequestParams {
|
|
22
|
+
tracecode: string;
|
|
23
|
+
}
|
|
24
|
+
export interface DataServiceInterface {
|
|
25
|
+
defaultHeaders: HttpHeaders;
|
|
26
|
+
configuration: Configuration;
|
|
27
|
+
/**
|
|
28
|
+
* Data in XLSX
|
|
29
|
+
* Getting the data by `tracecode`.
|
|
30
|
+
* @param requestParameters
|
|
31
|
+
*/
|
|
32
|
+
readAllDataXlsx(requestParameters: ReadAllDataXlsxRequestParams, extraHttpRequestParams?: any): Observable<string>;
|
|
33
|
+
/**
|
|
34
|
+
* Reading input data
|
|
35
|
+
* Receiving an incoming request by `tracecode`.
|
|
36
|
+
* @param requestParameters
|
|
37
|
+
*/
|
|
38
|
+
readDataInput(requestParameters: ReadDataInputRequestParams, extraHttpRequestParams?: any): Observable<string>;
|
|
39
|
+
/**
|
|
40
|
+
* Reading output data
|
|
41
|
+
* Getting the output data result by `tracecode`.
|
|
42
|
+
* @param requestParameters
|
|
43
|
+
*/
|
|
44
|
+
readDataOutput(requestParameters: ReadDataOutputRequestParams, extraHttpRequestParams?: any): Observable<string>;
|
|
45
|
+
}
|
package/api/infoService.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1601
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec } from '@angular/common/http';
|
|
12
|
+
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http';
|
|
13
13
|
import { Observable } from 'rxjs';
|
|
14
|
-
import { AccountInfoAccount } from '../model/
|
|
14
|
+
import { AccountInfoAccount } from '../model/accountInfo';
|
|
15
15
|
import { Configuration } from '../configuration';
|
|
16
|
-
import { InfoServiceInterface,
|
|
16
|
+
import { InfoServiceInterface, UpdateInfoRequestParams } from './infoServiceInterface';
|
|
17
17
|
export declare class InfoService implements InfoServiceInterface {
|
|
18
18
|
protected httpClient: HttpClient;
|
|
19
19
|
protected basePath: string;
|
|
@@ -24,34 +24,40 @@ export declare class InfoService implements InfoServiceInterface {
|
|
|
24
24
|
private addToHttpParams;
|
|
25
25
|
private addToHttpParamsRecursive;
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* Account information
|
|
28
28
|
* Getting a account information.
|
|
29
29
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
30
30
|
* @param reportProgress flag to report request and response progress.
|
|
31
31
|
*/
|
|
32
|
-
|
|
32
|
+
readInfo(observe?: 'body', reportProgress?: boolean, options?: {
|
|
33
33
|
httpHeaderAccept?: 'application/json';
|
|
34
|
+
context?: HttpContext;
|
|
34
35
|
}): Observable<AccountInfoAccount>;
|
|
35
|
-
|
|
36
|
+
readInfo(observe?: 'response', reportProgress?: boolean, options?: {
|
|
36
37
|
httpHeaderAccept?: 'application/json';
|
|
38
|
+
context?: HttpContext;
|
|
37
39
|
}): Observable<HttpResponse<AccountInfoAccount>>;
|
|
38
|
-
|
|
40
|
+
readInfo(observe?: 'events', reportProgress?: boolean, options?: {
|
|
39
41
|
httpHeaderAccept?: 'application/json';
|
|
42
|
+
context?: HttpContext;
|
|
40
43
|
}): Observable<HttpEvent<AccountInfoAccount>>;
|
|
41
44
|
/**
|
|
42
|
-
* Account update
|
|
45
|
+
* Account update
|
|
43
46
|
* Updating the account information.
|
|
44
47
|
* @param requestParameters
|
|
45
48
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
46
49
|
* @param reportProgress flag to report request and response progress.
|
|
47
50
|
*/
|
|
48
|
-
|
|
51
|
+
updateInfo(requestParameters: UpdateInfoRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
49
52
|
httpHeaderAccept?: 'application/json';
|
|
53
|
+
context?: HttpContext;
|
|
50
54
|
}): Observable<AccountInfoAccount>;
|
|
51
|
-
|
|
55
|
+
updateInfo(requestParameters: UpdateInfoRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
52
56
|
httpHeaderAccept?: 'application/json';
|
|
57
|
+
context?: HttpContext;
|
|
53
58
|
}): Observable<HttpResponse<AccountInfoAccount>>;
|
|
54
|
-
|
|
59
|
+
updateInfo(requestParameters: UpdateInfoRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
55
60
|
httpHeaderAccept?: 'application/json';
|
|
61
|
+
context?: HttpContext;
|
|
56
62
|
}): Observable<HttpEvent<AccountInfoAccount>>;
|
|
57
63
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1601
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -13,21 +13,21 @@ import { HttpHeaders } from '@angular/common/http';
|
|
|
13
13
|
import { Observable } from 'rxjs';
|
|
14
14
|
import { AccountInfoAccount } from '../model/models';
|
|
15
15
|
import { Configuration } from '../configuration';
|
|
16
|
-
export interface
|
|
16
|
+
export interface UpdateInfoRequestParams {
|
|
17
17
|
accountInfoAccount: AccountInfoAccount;
|
|
18
18
|
}
|
|
19
19
|
export interface InfoServiceInterface {
|
|
20
20
|
defaultHeaders: HttpHeaders;
|
|
21
21
|
configuration: Configuration;
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* Account information
|
|
24
24
|
* Getting a account information.
|
|
25
25
|
*/
|
|
26
|
-
|
|
26
|
+
readInfo(extraHttpRequestParams?: any): Observable<AccountInfoAccount>;
|
|
27
27
|
/**
|
|
28
|
-
* Account update
|
|
28
|
+
* Account update
|
|
29
29
|
* Updating the account information.
|
|
30
30
|
* @param requestParameters
|
|
31
31
|
*/
|
|
32
|
-
|
|
32
|
+
updateInfo(requestParameters: UpdateInfoRequestParams, extraHttpRequestParams?: any): Observable<AccountInfoAccount>;
|
|
33
33
|
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1601
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec } from '@angular/common/http';
|
|
12
|
+
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http';
|
|
13
13
|
import { Observable } from 'rxjs';
|
|
14
|
-
import {
|
|
14
|
+
import { QuotasResultAccount } from '../model/quotasResult';
|
|
15
15
|
import { Configuration } from '../configuration';
|
|
16
|
-
import {
|
|
17
|
-
export declare class
|
|
16
|
+
import { QuotasServiceInterface } from './quotasServiceInterface';
|
|
17
|
+
export declare class QuotasService implements QuotasServiceInterface {
|
|
18
18
|
protected httpClient: HttpClient;
|
|
19
19
|
protected basePath: string;
|
|
20
20
|
defaultHeaders: HttpHeaders;
|
|
@@ -24,18 +24,21 @@ export declare class QuotaService implements QuotaServiceInterface {
|
|
|
24
24
|
private addToHttpParams;
|
|
25
25
|
private addToHttpParamsRecursive;
|
|
26
26
|
/**
|
|
27
|
-
* Obtaining the quotas
|
|
27
|
+
* Obtaining the quotas
|
|
28
28
|
* Obtaining the quotas for the user.
|
|
29
29
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
30
30
|
* @param reportProgress flag to report request and response progress.
|
|
31
31
|
*/
|
|
32
32
|
readQuota(observe?: 'body', reportProgress?: boolean, options?: {
|
|
33
|
-
httpHeaderAccept?: 'application/
|
|
34
|
-
|
|
33
|
+
httpHeaderAccept?: 'application/json';
|
|
34
|
+
context?: HttpContext;
|
|
35
|
+
}): Observable<QuotasResultAccount>;
|
|
35
36
|
readQuota(observe?: 'response', reportProgress?: boolean, options?: {
|
|
36
|
-
httpHeaderAccept?: 'application/
|
|
37
|
-
|
|
37
|
+
httpHeaderAccept?: 'application/json';
|
|
38
|
+
context?: HttpContext;
|
|
39
|
+
}): Observable<HttpResponse<QuotasResultAccount>>;
|
|
38
40
|
readQuota(observe?: 'events', reportProgress?: boolean, options?: {
|
|
39
|
-
httpHeaderAccept?: 'application/
|
|
40
|
-
|
|
41
|
+
httpHeaderAccept?: 'application/json';
|
|
42
|
+
context?: HttpContext;
|
|
43
|
+
}): Observable<HttpEvent<QuotasResultAccount>>;
|
|
41
44
|
}
|