@veeroute/lss-account-angular 4.0.173743-RC → 4.7.1599
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 +143 -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
|
@@ -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.1599
|
|
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,14 +11,14 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { HttpHeaders } from '@angular/common/http';
|
|
13
13
|
import { Observable } from 'rxjs';
|
|
14
|
-
import {
|
|
14
|
+
import { QuotasResultAccount } from '../model/models';
|
|
15
15
|
import { Configuration } from '../configuration';
|
|
16
|
-
export interface
|
|
16
|
+
export interface QuotasServiceInterface {
|
|
17
17
|
defaultHeaders: HttpHeaders;
|
|
18
18
|
configuration: Configuration;
|
|
19
19
|
/**
|
|
20
|
-
* Obtaining the quotas
|
|
20
|
+
* Obtaining the quotas
|
|
21
21
|
* Obtaining the quotas for the user.
|
|
22
22
|
*/
|
|
23
|
-
readQuota(extraHttpRequestParams?: any): Observable<
|
|
23
|
+
readQuota(extraHttpRequestParams?: any): Observable<QuotasResultAccount>;
|
|
24
24
|
}
|
|
@@ -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.1599
|
|
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 { UserStatisticsAccount } from '../model/
|
|
14
|
+
import { UserStatisticsAccount } from '../model/userStatistics';
|
|
15
15
|
import { Configuration } from '../configuration';
|
|
16
|
-
import { StatisticsServiceInterface, GenerateStatisticsRequestParams } from './statisticsServiceInterface';
|
|
16
|
+
import { StatisticsServiceInterface, GenerateStatisticsRequestParams, ReadReportRequestParams } from './statisticsServiceInterface';
|
|
17
17
|
export declare class StatisticsService implements StatisticsServiceInterface {
|
|
18
18
|
protected httpClient: HttpClient;
|
|
19
19
|
protected basePath: string;
|
|
@@ -24,19 +24,41 @@ export declare class StatisticsService implements StatisticsServiceInterface {
|
|
|
24
24
|
private addToHttpParams;
|
|
25
25
|
private addToHttpParamsRecursive;
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
28
|
-
* User statistics for the period. If the period is not specified, the statistics for the current month returns (from the beginning of the month to the present day).
|
|
27
|
+
* Statistics for the period
|
|
28
|
+
* User statistics for the period. If the period is not specified, the statistics for the current month returns (from the beginning of the month to the present day). If no \'from\' datetime is specified, data are returned from the beginning of the month. If no \'to\' datetime is specified, data are returned be to the present day (excluding).
|
|
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
|
generateStatistics(requestParameters: GenerateStatisticsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
34
34
|
httpHeaderAccept?: 'application/json';
|
|
35
|
+
context?: HttpContext;
|
|
35
36
|
}): Observable<UserStatisticsAccount>;
|
|
36
37
|
generateStatistics(requestParameters: GenerateStatisticsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
37
38
|
httpHeaderAccept?: 'application/json';
|
|
39
|
+
context?: HttpContext;
|
|
38
40
|
}): Observable<HttpResponse<UserStatisticsAccount>>;
|
|
39
41
|
generateStatistics(requestParameters: GenerateStatisticsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
40
42
|
httpHeaderAccept?: 'application/json';
|
|
43
|
+
context?: HttpContext;
|
|
41
44
|
}): Observable<HttpEvent<UserStatisticsAccount>>;
|
|
45
|
+
/**
|
|
46
|
+
* Report creating
|
|
47
|
+
* Creating report with usage statistics. If the period is not specified, records are returned from the beginning of the month to the present day (excluding). If no \'from\' datetime is specified, data are returned from the beginning of the month. If no \'to\' datetime is specified, data are returned be the the present day (excluding).
|
|
48
|
+
* @param requestParameters
|
|
49
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
50
|
+
* @param reportProgress flag to report request and response progress.
|
|
51
|
+
*/
|
|
52
|
+
readReport(requestParameters: ReadReportRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
53
|
+
httpHeaderAccept?: 'application/octet-stream' | 'application/json';
|
|
54
|
+
context?: HttpContext;
|
|
55
|
+
}): Observable<string>;
|
|
56
|
+
readReport(requestParameters: ReadReportRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
57
|
+
httpHeaderAccept?: 'application/octet-stream' | 'application/json';
|
|
58
|
+
context?: HttpContext;
|
|
59
|
+
}): Observable<HttpResponse<string>>;
|
|
60
|
+
readReport(requestParameters: ReadReportRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
61
|
+
httpHeaderAccept?: 'application/octet-stream' | 'application/json';
|
|
62
|
+
context?: HttpContext;
|
|
63
|
+
}): Observable<HttpEvent<string>>;
|
|
42
64
|
}
|
|
@@ -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.1599
|
|
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
|
|
@@ -12,18 +12,28 @@
|
|
|
12
12
|
import { HttpHeaders } from '@angular/common/http';
|
|
13
13
|
import { Observable } from 'rxjs';
|
|
14
14
|
import { UserStatisticsAccount } from '../model/models';
|
|
15
|
-
import { UserStatisticsFilterAccount } from '../model/models';
|
|
16
15
|
import { Configuration } from '../configuration';
|
|
17
16
|
export interface GenerateStatisticsRequestParams {
|
|
18
|
-
|
|
17
|
+
from?: string;
|
|
18
|
+
to?: string;
|
|
19
|
+
}
|
|
20
|
+
export interface ReadReportRequestParams {
|
|
21
|
+
from?: string;
|
|
22
|
+
to?: string;
|
|
19
23
|
}
|
|
20
24
|
export interface StatisticsServiceInterface {
|
|
21
25
|
defaultHeaders: HttpHeaders;
|
|
22
26
|
configuration: Configuration;
|
|
23
27
|
/**
|
|
24
|
-
*
|
|
25
|
-
* User statistics for the period. If the period is not specified, the statistics for the current month returns (from the beginning of the month to the present day).
|
|
28
|
+
* Statistics for the period
|
|
29
|
+
* User statistics for the period. If the period is not specified, the statistics for the current month returns (from the beginning of the month to the present day). If no \'from\' datetime is specified, data are returned from the beginning of the month. If no \'to\' datetime is specified, data are returned be to the present day (excluding).
|
|
26
30
|
* @param requestParameters
|
|
27
31
|
*/
|
|
28
32
|
generateStatistics(requestParameters: GenerateStatisticsRequestParams, extraHttpRequestParams?: any): Observable<UserStatisticsAccount>;
|
|
33
|
+
/**
|
|
34
|
+
* Report creating
|
|
35
|
+
* Creating report with usage statistics. If the period is not specified, records are returned from the beginning of the month to the present day (excluding). If no \'from\' datetime is specified, data are returned from the beginning of the month. If no \'to\' datetime is specified, data are returned be the the present day (excluding).
|
|
36
|
+
* @param requestParameters
|
|
37
|
+
*/
|
|
38
|
+
readReport(requestParameters: ReadReportRequestParams, extraHttpRequestParams?: any): Observable<string>;
|
|
29
39
|
}
|
package/api/systemService.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
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.1599
|
|
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 { CheckResultAccount } from '../model/
|
|
15
|
-
import { VersionResultAccount } from '../model/
|
|
14
|
+
import { CheckResultAccount } from '../model/checkResult';
|
|
15
|
+
import { VersionResultAccount } from '../model/versionResult';
|
|
16
16
|
import { Configuration } from '../configuration';
|
|
17
17
|
import { SystemServiceInterface } from './systemServiceInterface';
|
|
18
18
|
export declare class SystemService implements SystemServiceInterface {
|
|
@@ -25,33 +25,39 @@ export declare class SystemService implements SystemServiceInterface {
|
|
|
25
25
|
private addToHttpParams;
|
|
26
26
|
private addToHttpParamsRecursive;
|
|
27
27
|
/**
|
|
28
|
-
* Checking the
|
|
28
|
+
* Checking the availability
|
|
29
29
|
* Checking the service availability.
|
|
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
|
check(observe?: 'body', reportProgress?: boolean, options?: {
|
|
34
34
|
httpHeaderAccept?: 'application/json';
|
|
35
|
+
context?: HttpContext;
|
|
35
36
|
}): Observable<CheckResultAccount>;
|
|
36
37
|
check(observe?: 'response', reportProgress?: boolean, options?: {
|
|
37
38
|
httpHeaderAccept?: 'application/json';
|
|
39
|
+
context?: HttpContext;
|
|
38
40
|
}): Observable<HttpResponse<CheckResultAccount>>;
|
|
39
41
|
check(observe?: 'events', reportProgress?: boolean, options?: {
|
|
40
42
|
httpHeaderAccept?: 'application/json';
|
|
43
|
+
context?: HttpContext;
|
|
41
44
|
}): Observable<HttpEvent<CheckResultAccount>>;
|
|
42
45
|
/**
|
|
43
|
-
* Getting the service version
|
|
46
|
+
* Getting the service version
|
|
44
47
|
* Getting the service version.
|
|
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
|
version(observe?: 'body', reportProgress?: boolean, options?: {
|
|
49
52
|
httpHeaderAccept?: 'application/json';
|
|
53
|
+
context?: HttpContext;
|
|
50
54
|
}): Observable<VersionResultAccount>;
|
|
51
55
|
version(observe?: 'response', reportProgress?: boolean, options?: {
|
|
52
56
|
httpHeaderAccept?: 'application/json';
|
|
57
|
+
context?: HttpContext;
|
|
53
58
|
}): Observable<HttpResponse<VersionResultAccount>>;
|
|
54
59
|
version(observe?: 'events', reportProgress?: boolean, options?: {
|
|
55
60
|
httpHeaderAccept?: 'application/json';
|
|
61
|
+
context?: HttpContext;
|
|
56
62
|
}): Observable<HttpEvent<VersionResultAccount>>;
|
|
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.1599
|
|
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
|
|
@@ -18,12 +18,12 @@ export interface SystemServiceInterface {
|
|
|
18
18
|
defaultHeaders: HttpHeaders;
|
|
19
19
|
configuration: Configuration;
|
|
20
20
|
/**
|
|
21
|
-
* Checking the
|
|
21
|
+
* Checking the availability
|
|
22
22
|
* Checking the service availability.
|
|
23
23
|
*/
|
|
24
24
|
check(extraHttpRequestParams?: any): Observable<CheckResultAccount>;
|
|
25
25
|
/**
|
|
26
|
-
* Getting the service version
|
|
26
|
+
* Getting the service version
|
|
27
27
|
* Getting the service version.
|
|
28
28
|
*/
|
|
29
29
|
version(extraHttpRequestParams?: any): Observable<VersionResultAccount>;
|