@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.
Files changed (139) hide show
  1. package/README.md +3 -3
  2. package/api/api.d.ts +7 -7
  3. package/api/auditService.d.ts +17 -14
  4. package/api/auditServiceInterface.d.ts +11 -10
  5. package/api/authService.d.ts +27 -18
  6. package/api/authServiceInterface.d.ts +11 -11
  7. package/api/dataService.d.ts +82 -0
  8. package/api/dataServiceInterface.d.ts +45 -0
  9. package/api/infoService.d.ts +20 -14
  10. package/api/infoServiceInterface.d.ts +8 -8
  11. package/api/{quotaService.d.ts → quotasService.d.ts} +17 -14
  12. package/api/{quotaServiceInterface.d.ts → quotasServiceInterface.d.ts} +7 -7
  13. package/api/statisticsService.d.ts +30 -8
  14. package/api/statisticsServiceInterface.d.ts +17 -7
  15. package/api/systemService.d.ts +14 -8
  16. package/api/systemServiceInterface.d.ts +5 -5
  17. package/bundles/veeroute-lss-account-angular.umd.js +588 -294
  18. package/bundles/veeroute-lss-account-angular.umd.js.map +1 -1
  19. package/cfg/audit_operations.json +137 -0
  20. package/cfg/method_groups.json +88 -0
  21. package/esm2015/api/api.js +8 -8
  22. package/esm2015/api/auditService.js +48 -30
  23. package/esm2015/api/auditServiceInterface.js +1 -1
  24. package/esm2015/api/authService.js +86 -46
  25. package/esm2015/api/authServiceInterface.js +1 -1
  26. package/esm2015/api/dataService.js +236 -0
  27. package/esm2015/api/dataServiceInterface.js +2 -0
  28. package/esm2015/api/infoService.js +63 -36
  29. package/esm2015/api/infoServiceInterface.js +1 -1
  30. package/esm2015/api/quotasService.js +133 -0
  31. package/esm2015/api/quotasServiceInterface.js +2 -0
  32. package/esm2015/api/statisticsService.js +98 -28
  33. package/esm2015/api/statisticsServiceInterface.js +1 -1
  34. package/esm2015/api/systemService.js +53 -26
  35. package/esm2015/api/systemServiceInterface.js +1 -1
  36. package/esm2015/api.module.js +1 -1
  37. package/esm2015/model/accountAuditResult.js +2 -0
  38. package/esm2015/model/accountInfo.js +4 -4
  39. package/esm2015/model/auditAction.js +2 -0
  40. package/esm2015/model/auditActionStatistics.js +13 -0
  41. package/esm2015/model/auditStats.js +1 -1
  42. package/esm2015/model/auditStatsDetail.js +4 -4
  43. package/esm2015/model/checkResult.js +4 -4
  44. package/esm2015/model/dateStatistics.js +1 -1
  45. package/esm2015/model/inlineResponse400.js +1 -1
  46. package/esm2015/model/inlineResponse401.js +1 -1
  47. package/esm2015/model/inlineResponse402.js +1 -1
  48. package/esm2015/model/inlineResponse403.js +1 -1
  49. package/esm2015/model/inlineResponse404.js +1 -1
  50. package/esm2015/model/inlineResponse404Detail.js +2 -0
  51. package/esm2015/model/inlineResponse429.js +1 -1
  52. package/esm2015/model/inlineResponse500.js +1 -1
  53. package/esm2015/model/methodGroup.js +31 -0
  54. package/esm2015/model/methodQuota.js +1 -1
  55. package/esm2015/model/methodStatistics.js +1 -1
  56. package/esm2015/model/models.js +11 -16
  57. package/esm2015/model/passwordRequest.js +4 -4
  58. package/esm2015/model/quotaBase.js +2 -0
  59. package/esm2015/model/quotasResult.js +2 -0
  60. package/esm2015/model/serviceName.js +10 -13
  61. package/esm2015/model/serviceQuota.js +1 -1
  62. package/esm2015/model/serviceStatistics.js +1 -1
  63. package/esm2015/model/tokenRequest.js +4 -4
  64. package/esm2015/model/tokenValidationResult.js +2 -0
  65. package/esm2015/model/tracedata.js +2 -0
  66. package/esm2015/model/userRole.js +23 -0
  67. package/esm2015/model/userStatistics.js +1 -1
  68. package/esm2015/model/versionResult.js +4 -4
  69. package/fesm2015/veeroute-lss-account-angular.js +586 -296
  70. package/fesm2015/veeroute-lss-account-angular.js.map +1 -1
  71. package/model/accountAuditResult.d.ts +23 -0
  72. package/model/accountInfo.d.ts +8 -8
  73. package/model/auditAction.d.ts +30 -0
  74. package/model/auditActionStatistics.d.ts +24 -0
  75. package/model/auditStats.d.ts +3 -3
  76. package/model/auditStatsDetail.d.ts +3 -3
  77. package/model/checkResult.d.ts +3 -3
  78. package/model/dateStatistics.d.ts +3 -3
  79. package/model/inlineResponse400.d.ts +6 -6
  80. package/model/inlineResponse401.d.ts +6 -6
  81. package/model/inlineResponse402.d.ts +6 -6
  82. package/model/inlineResponse403.d.ts +7 -7
  83. package/model/inlineResponse404.d.ts +7 -7
  84. package/model/inlineResponse404Detail.d.ts +18 -0
  85. package/model/inlineResponse429.d.ts +6 -6
  86. package/model/inlineResponse500.d.ts +6 -6
  87. package/model/{methodName.d.ts → methodGroup.d.ts} +9 -7
  88. package/model/methodQuota.d.ts +7 -7
  89. package/model/methodStatistics.d.ts +5 -5
  90. package/model/models.d.ts +10 -15
  91. package/model/passwordRequest.d.ts +3 -3
  92. package/model/{quota.d.ts → quotaBase.d.ts} +4 -4
  93. package/model/quotasResult.d.ts +18 -0
  94. package/model/serviceName.d.ts +10 -13
  95. package/model/serviceQuota.d.ts +4 -4
  96. package/model/serviceStatistics.d.ts +3 -3
  97. package/model/tokenRequest.d.ts +4 -4
  98. package/model/{tokenValidation.d.ts → tokenValidationResult.d.ts} +6 -9
  99. package/model/tracedata.d.ts +38 -0
  100. package/model/userRole.d.ts +20 -0
  101. package/model/userStatistics.d.ts +4 -4
  102. package/model/versionResult.d.ts +3 -3
  103. package/package.json +8 -9
  104. package/veeroute-lss-account-angular.metadata.json +1 -1
  105. package/api/reportsService.d.ts +0 -41
  106. package/api/reportsServiceInterface.d.ts +0 -28
  107. package/bundles/veeroute-lss-account-angular.umd.min.js +0 -2
  108. package/bundles/veeroute-lss-account-angular.umd.min.js.map +0 -1
  109. package/esm2015/api/quotaService.js +0 -120
  110. package/esm2015/api/quotaServiceInterface.js +0 -2
  111. package/esm2015/api/reportsService.js +0 -132
  112. package/esm2015/api/reportsServiceInterface.js +0 -2
  113. package/esm2015/model/accountAction.js +0 -2
  114. package/esm2015/model/additionalQuota.js +0 -2
  115. package/esm2015/model/dateWindow.js +0 -13
  116. package/esm2015/model/inlineResponse405.js +0 -2
  117. package/esm2015/model/inlineResponse406.js +0 -2
  118. package/esm2015/model/inlineResponse415.js +0 -2
  119. package/esm2015/model/methodName.js +0 -29
  120. package/esm2015/model/quota.js +0 -2
  121. package/esm2015/model/tokenValidation.js +0 -18
  122. package/esm2015/model/traceData.js +0 -2
  123. package/esm2015/model/userActionDetail.js +0 -2
  124. package/esm2015/model/userAuditResult.js +0 -2
  125. package/esm2015/model/userQuotaResult.js +0 -2
  126. package/esm2015/model/userReportFilter.js +0 -6
  127. package/esm2015/model/userStatisticsFilter.js +0 -2
  128. package/model/accountAction.d.ts +0 -26
  129. package/model/additionalQuota.d.ts +0 -20
  130. package/model/dateWindow.d.ts +0 -24
  131. package/model/inlineResponse405.d.ts +0 -22
  132. package/model/inlineResponse406.d.ts +0 -22
  133. package/model/inlineResponse415.d.ts +0 -22
  134. package/model/traceData.d.ts +0 -36
  135. package/model/userActionDetail.d.ts +0 -22
  136. package/model/userAuditResult.d.ts +0 -23
  137. package/model/userQuotaResult.d.ts +0 -20
  138. package/model/userReportFilter.d.ts +0 -25
  139. package/model/userStatisticsFilter.d.ts +0 -18
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @veeroute/lss-account-angular@4.0.173744RC
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 './quotaService';
11
- import { QuotaService } from './quotaService';
12
- export * from './quotaServiceInterface';
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 InfoService | typeof QuotaService | typeof ReportsService | typeof StatisticsService | typeof SystemService)[];
22
+ export declare const APIS: (typeof AuditService | typeof AuthService | typeof DataService | typeof InfoService | typeof QuotasService | typeof StatisticsService | typeof SystemService)[];
@@ -1,19 +1,19 @@
1
1
  /**
2
2
  * VRt.Account [AC]
3
- * Veeroute Account Panel
3
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
4
4
  *
5
- * The version of the OpenAPI document: 4.0.173744RC
6
- * Contact: support@veeroute.com
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 { UserAuditResultAccount } from '../model/models';
14
+ import { AccountAuditResultAccount } from '../model/accountAuditResult';
15
15
  import { Configuration } from '../configuration';
16
- import { AuditServiceInterface, ReadAccountAuditDataRequestParams } from './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
- * User 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.
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
- readAccountAuditData(requestParameters: ReadAccountAuditDataRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
33
+ readAudit(requestParameters: ReadAuditRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
34
34
  httpHeaderAccept?: 'application/json';
35
- }): Observable<UserAuditResultAccount>;
36
- readAccountAuditData(requestParameters: ReadAccountAuditDataRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
35
+ context?: HttpContext;
36
+ }): Observable<AccountAuditResultAccount>;
37
+ readAudit(requestParameters: ReadAuditRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
37
38
  httpHeaderAccept?: 'application/json';
38
- }): Observable<HttpResponse<UserAuditResultAccount>>;
39
- readAccountAuditData(requestParameters: ReadAccountAuditDataRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
39
+ context?: HttpContext;
40
+ }): Observable<HttpResponse<AccountAuditResultAccount>>;
41
+ readAudit(requestParameters: ReadAuditRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
40
42
  httpHeaderAccept?: 'application/json';
41
- }): Observable<HttpEvent<UserAuditResultAccount>>;
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 ![erd](../uml/account.svg)
4
4
  *
5
- * The version of the OpenAPI document: 4.0.173744RC
6
- * Contact: support@veeroute.com
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 { MethodNameAccount } from '../model/models';
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 ReadAccountAuditDataRequestParams {
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
- methodName?: MethodNameAccount;
24
+ operationId?: string;
25
+ methodGroup?: MethodGroupAccount;
25
26
  }
26
27
  export interface AuditServiceInterface {
27
28
  defaultHeaders: HttpHeaders;
28
29
  configuration: Configuration;
29
30
  /**
30
- * User actions for the period.
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 \&#39;from\&#39; datetime is specified, audit data are returned from the beginning of the day. If no \&#39;to\&#39; datetime is specified, audit data are returned be the end of the current day.
32
33
  * @param requestParameters
33
34
  */
34
- readAccountAuditData(requestParameters: ReadAccountAuditDataRequestParams, extraHttpRequestParams?: any): Observable<UserAuditResultAccount>;
35
+ readAudit(requestParameters: ReadAuditRequestParams, extraHttpRequestParams?: any): Observable<AccountAuditResultAccount>;
35
36
  }
@@ -1,19 +1,19 @@
1
1
  /**
2
2
  * VRt.Account [AC]
3
- * Veeroute Account Panel
3
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
4
4
  *
5
- * The version of the OpenAPI document: 4.0.173744RC
6
- * Contact: support@veeroute.com
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 { TokenValidationAccount } from '../model/models';
14
+ import { TokenValidationResultAccount } from '../model/tokenValidationResult';
15
15
  import { Configuration } from '../configuration';
16
- import { AuthServiceInterface, ChangePasswordRequestParams, GenerateTokenRequestParams, ValidateTokenRequestParams } from './authServiceInterface';
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
- generateToken(requestParameters: GenerateTokenRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
52
+ runTokenGeneration(requestParameters: RunTokenGenerationRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
50
53
  httpHeaderAccept?: 'application/json';
54
+ context?: HttpContext;
51
55
  }): Observable<string>;
52
- generateToken(requestParameters: GenerateTokenRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
56
+ runTokenGeneration(requestParameters: RunTokenGenerationRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
53
57
  httpHeaderAccept?: 'application/json';
58
+ context?: HttpContext;
54
59
  }): Observable<HttpResponse<string>>;
55
- generateToken(requestParameters: GenerateTokenRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
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
- validateToken(requestParameters: ValidateTokenRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
71
+ runTokenValidation(requestParameters: RunTokenValidationRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
66
72
  httpHeaderAccept?: 'application/json';
67
- }): Observable<TokenValidationAccount>;
68
- validateToken(requestParameters: ValidateTokenRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
73
+ context?: HttpContext;
74
+ }): Observable<TokenValidationResultAccount>;
75
+ runTokenValidation(requestParameters: RunTokenValidationRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
69
76
  httpHeaderAccept?: 'application/json';
70
- }): Observable<HttpResponse<TokenValidationAccount>>;
71
- validateToken(requestParameters: ValidateTokenRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
77
+ context?: HttpContext;
78
+ }): Observable<HttpResponse<TokenValidationResultAccount>>;
79
+ runTokenValidation(requestParameters: RunTokenValidationRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
72
80
  httpHeaderAccept?: 'application/json';
73
- }): Observable<HttpEvent<TokenValidationAccount>>;
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 ![erd](../uml/account.svg)
4
4
  *
5
- * The version of the OpenAPI document: 4.0.173744RC
6
- * Contact: support@veeroute.com
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 { TokenValidationAccount } from '../model/models';
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 GenerateTokenRequestParams {
21
+ export interface RunTokenGenerationRequestParams {
22
22
  tokenRequestAccount: TokenRequestAccount;
23
23
  }
24
- export interface ValidateTokenRequestParams {
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
- generateToken(requestParameters: GenerateTokenRequestParams, extraHttpRequestParams?: any): Observable<string>;
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
- validateToken(requestParameters: ValidateTokenRequestParams, extraHttpRequestParams?: any): Observable<TokenValidationAccount>;
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 ![erd](../uml/account.svg)
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 &#x60;tracecode&#x60;.
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 &#x60;tracecode&#x60;.
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 &#x60;tracecode&#x60;.
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 ![erd](../uml/account.svg)
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 &#x60;tracecode&#x60;.
30
+ * @param requestParameters
31
+ */
32
+ readAllDataXlsx(requestParameters: ReadAllDataXlsxRequestParams, extraHttpRequestParams?: any): Observable<string>;
33
+ /**
34
+ * Reading input data
35
+ * Receiving an incoming request by &#x60;tracecode&#x60;.
36
+ * @param requestParameters
37
+ */
38
+ readDataInput(requestParameters: ReadDataInputRequestParams, extraHttpRequestParams?: any): Observable<string>;
39
+ /**
40
+ * Reading output data
41
+ * Getting the output data result by &#x60;tracecode&#x60;.
42
+ * @param requestParameters
43
+ */
44
+ readDataOutput(requestParameters: ReadDataOutputRequestParams, extraHttpRequestParams?: any): Observable<string>;
45
+ }
@@ -1,19 +1,19 @@
1
1
  /**
2
2
  * VRt.Account [AC]
3
- * Veeroute Account Panel
3
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
4
4
  *
5
- * The version of the OpenAPI document: 4.0.173744RC
6
- * Contact: support@veeroute.com
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/models';
14
+ import { AccountInfoAccount } from '../model/accountInfo';
15
15
  import { Configuration } from '../configuration';
16
- import { InfoServiceInterface, UpdateAccountInfoRequestParams } from './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
- * Getting a account information.
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
- readAccountInfo(observe?: 'body', reportProgress?: boolean, options?: {
32
+ readInfo(observe?: 'body', reportProgress?: boolean, options?: {
33
33
  httpHeaderAccept?: 'application/json';
34
+ context?: HttpContext;
34
35
  }): Observable<AccountInfoAccount>;
35
- readAccountInfo(observe?: 'response', reportProgress?: boolean, options?: {
36
+ readInfo(observe?: 'response', reportProgress?: boolean, options?: {
36
37
  httpHeaderAccept?: 'application/json';
38
+ context?: HttpContext;
37
39
  }): Observable<HttpResponse<AccountInfoAccount>>;
38
- readAccountInfo(observe?: 'events', reportProgress?: boolean, options?: {
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
- updateAccountInfo(requestParameters: UpdateAccountInfoRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
51
+ updateInfo(requestParameters: UpdateInfoRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
49
52
  httpHeaderAccept?: 'application/json';
53
+ context?: HttpContext;
50
54
  }): Observable<AccountInfoAccount>;
51
- updateAccountInfo(requestParameters: UpdateAccountInfoRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
55
+ updateInfo(requestParameters: UpdateInfoRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
52
56
  httpHeaderAccept?: 'application/json';
57
+ context?: HttpContext;
53
58
  }): Observable<HttpResponse<AccountInfoAccount>>;
54
- updateAccountInfo(requestParameters: UpdateAccountInfoRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
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 ![erd](../uml/account.svg)
4
4
  *
5
- * The version of the OpenAPI document: 4.0.173744RC
6
- * Contact: support@veeroute.com
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 UpdateAccountInfoRequestParams {
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
- * Getting a account information.
23
+ * Account information
24
24
  * Getting a account information.
25
25
  */
26
- readAccountInfo(extraHttpRequestParams?: any): Observable<AccountInfoAccount>;
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
- updateAccountInfo(requestParameters: UpdateAccountInfoRequestParams, extraHttpRequestParams?: any): Observable<AccountInfoAccount>;
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 ![erd](../uml/account.svg)
4
4
  *
5
- * The version of the OpenAPI document: 4.0.173744RC
6
- * Contact: support@veeroute.com
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 { UserQuotaResultAccount } from '../model/models';
14
+ import { QuotasResultAccount } from '../model/quotasResult';
15
15
  import { Configuration } from '../configuration';
16
- import { QuotaServiceInterface } from './quotaServiceInterface';
17
- export declare class QuotaService implements QuotaServiceInterface {
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/octet-stream' | 'application/json';
34
- }): Observable<UserQuotaResultAccount>;
33
+ httpHeaderAccept?: 'application/json';
34
+ context?: HttpContext;
35
+ }): Observable<QuotasResultAccount>;
35
36
  readQuota(observe?: 'response', reportProgress?: boolean, options?: {
36
- httpHeaderAccept?: 'application/octet-stream' | 'application/json';
37
- }): Observable<HttpResponse<UserQuotaResultAccount>>;
37
+ httpHeaderAccept?: 'application/json';
38
+ context?: HttpContext;
39
+ }): Observable<HttpResponse<QuotasResultAccount>>;
38
40
  readQuota(observe?: 'events', reportProgress?: boolean, options?: {
39
- httpHeaderAccept?: 'application/octet-stream' | 'application/json';
40
- }): Observable<HttpEvent<UserQuotaResultAccount>>;
41
+ httpHeaderAccept?: 'application/json';
42
+ context?: HttpContext;
43
+ }): Observable<HttpEvent<QuotasResultAccount>>;
41
44
  }