@veeroute/lss-account-angular 6.20.2258 → 7.1.2439

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 (123) hide show
  1. package/README.md +1 -1
  2. package/api/auditService.d.ts +4 -1
  3. package/api/auditServiceInterface.d.ts +9 -7
  4. package/api/authService.d.ts +9 -0
  5. package/api/authServiceInterface.d.ts +3 -3
  6. package/api/dataService.d.ts +4 -1
  7. package/api/dataServiceInterface.d.ts +4 -6
  8. package/api/infoService.d.ts +13 -7
  9. package/api/infoServiceInterface.d.ts +6 -5
  10. package/api/quotasService.d.ts +3 -0
  11. package/api/quotasServiceInterface.d.ts +1 -1
  12. package/api/statisticsService.d.ts +27 -21
  13. package/api/statisticsServiceInterface.d.ts +15 -9
  14. package/api/systemService.d.ts +9 -0
  15. package/api/systemServiceInterface.d.ts +1 -1
  16. package/cfg/audit_operations.json +23 -12
  17. package/cfg/{method_groups.json → process_types.json} +15 -15
  18. package/esm2022/api/auditService.mjs +27 -18
  19. package/esm2022/api/auditServiceInterface.mjs +1 -1
  20. package/esm2022/api/authService.mjs +26 -11
  21. package/esm2022/api/authServiceInterface.mjs +1 -1
  22. package/esm2022/api/dataService.mjs +18 -17
  23. package/esm2022/api/dataServiceInterface.mjs +1 -1
  24. package/esm2022/api/infoService.mjs +23 -13
  25. package/esm2022/api/infoServiceInterface.mjs +1 -1
  26. package/esm2022/api/quotasService.mjs +14 -9
  27. package/esm2022/api/quotasServiceInterface.mjs +1 -1
  28. package/esm2022/api/statisticsService.mjs +40 -14
  29. package/esm2022/api/statisticsServiceInterface.mjs +1 -1
  30. package/esm2022/api/systemService.mjs +24 -9
  31. package/esm2022/api/systemServiceInterface.mjs +1 -1
  32. package/esm2022/api.module.mjs +7 -7
  33. package/esm2022/configuration.mjs +1 -1
  34. package/esm2022/model/accountAuditResult.mjs +1 -1
  35. package/esm2022/model/attribute.mjs +11 -0
  36. package/esm2022/model/auditAction.mjs +1 -1
  37. package/esm2022/model/auditActionStatistics.mjs +1 -10
  38. package/esm2022/model/auditCounters.mjs +2 -0
  39. package/esm2022/model/auditCountersDetail.mjs +11 -0
  40. package/esm2022/model/calculationInfo.mjs +2 -0
  41. package/esm2022/model/calculationStatus.mjs +23 -0
  42. package/esm2022/model/checkResult.mjs +2 -2
  43. package/esm2022/model/dateStatistics.mjs +1 -1
  44. package/esm2022/model/flowType.mjs +2 -2
  45. package/esm2022/model/general400.mjs +1 -1
  46. package/esm2022/model/general402.mjs +1 -1
  47. package/esm2022/model/general403.mjs +1 -1
  48. package/esm2022/model/general404.mjs +1 -1
  49. package/esm2022/model/general404Detail.mjs +1 -1
  50. package/esm2022/model/general429.mjs +1 -1
  51. package/esm2022/model/general500.mjs +1 -1
  52. package/esm2022/model/infoChangeRequest.mjs +2 -0
  53. package/esm2022/model/models.mjs +13 -11
  54. package/esm2022/model/passwordChangeRequest.mjs +11 -0
  55. package/esm2022/model/processQuota.mjs +2 -0
  56. package/esm2022/model/processStatistics.mjs +2 -0
  57. package/esm2022/model/processType.mjs +24 -0
  58. package/esm2022/model/quotaBase.mjs +1 -1
  59. package/esm2022/model/quotasResult.mjs +1 -1
  60. package/esm2022/model/service.mjs +24 -0
  61. package/esm2022/model/serviceQuota.mjs +1 -1
  62. package/esm2022/model/serviceStatistics.mjs +1 -1
  63. package/esm2022/model/tokenRequest.mjs +2 -2
  64. package/esm2022/model/tokenValidationResult.mjs +1 -1
  65. package/esm2022/model/tracedata.mjs +1 -1
  66. package/esm2022/model/user.mjs +2 -0
  67. package/esm2022/model/userRole.mjs +2 -2
  68. package/esm2022/model/userStatistics.mjs +1 -1
  69. package/esm2022/model/versionResult.mjs +2 -2
  70. package/fesm2022/veeroute-lss-account-angular.mjs +219 -152
  71. package/fesm2022/veeroute-lss-account-angular.mjs.map +1 -1
  72. package/model/accountAuditResult.d.ts +3 -3
  73. package/model/attribute.d.ts +22 -0
  74. package/model/auditAction.d.ts +28 -7
  75. package/model/auditActionStatistics.d.ts +7 -5
  76. package/model/auditCounters.d.ts +17 -0
  77. package/model/{auditStatsDetail.d.ts → auditCountersDetail.d.ts} +3 -3
  78. package/model/calculationInfo.d.ts +40 -0
  79. package/model/calculationStatus.d.ts +21 -0
  80. package/model/checkResult.d.ts +2 -2
  81. package/model/dateStatistics.d.ts +1 -1
  82. package/model/flowType.d.ts +1 -1
  83. package/model/general400.d.ts +1 -1
  84. package/model/general402.d.ts +1 -1
  85. package/model/general403.d.ts +1 -1
  86. package/model/general404.d.ts +2 -2
  87. package/model/general404Detail.d.ts +1 -1
  88. package/model/general429.d.ts +1 -1
  89. package/model/general500.d.ts +1 -1
  90. package/model/infoChangeRequest.d.ts +31 -0
  91. package/model/models.d.ts +12 -10
  92. package/model/{passwordRequest.d.ts → passwordChangeRequest.d.ts} +6 -6
  93. package/model/processQuota.d.ts +28 -0
  94. package/model/{methodStatistics.d.ts → processStatistics.d.ts} +12 -4
  95. package/model/{methodGroup.d.ts → processType.d.ts} +4 -8
  96. package/model/quotaBase.d.ts +1 -1
  97. package/model/quotasResult.d.ts +1 -1
  98. package/model/{serviceName.d.ts → service.d.ts} +3 -7
  99. package/model/serviceQuota.d.ts +6 -6
  100. package/model/serviceStatistics.d.ts +7 -7
  101. package/model/tokenRequest.d.ts +3 -3
  102. package/model/tokenValidationResult.d.ts +2 -2
  103. package/model/tracedata.d.ts +22 -10
  104. package/model/user.d.ts +64 -0
  105. package/model/userRole.d.ts +1 -1
  106. package/model/userStatistics.d.ts +2 -2
  107. package/model/versionResult.d.ts +1 -1
  108. package/package.json +3 -3
  109. package/esm2022/model/accountInfo.mjs +0 -11
  110. package/esm2022/model/auditStats.mjs +0 -2
  111. package/esm2022/model/auditStatsDetail.mjs +0 -11
  112. package/esm2022/model/flowConvert.mjs +0 -19
  113. package/esm2022/model/general401.mjs +0 -2
  114. package/esm2022/model/methodGroup.mjs +0 -28
  115. package/esm2022/model/methodQuota.mjs +0 -2
  116. package/esm2022/model/methodStatistics.mjs +0 -2
  117. package/esm2022/model/passwordRequest.mjs +0 -11
  118. package/esm2022/model/serviceName.mjs +0 -28
  119. package/model/accountInfo.d.ts +0 -38
  120. package/model/auditStats.d.ts +0 -17
  121. package/model/flowConvert.d.ts +0 -17
  122. package/model/general401.d.ts +0 -20
  123. package/model/methodQuota.d.ts +0 -32
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @veeroute/lss-account-angular@6.20.2258
1
+ ## @veeroute/lss-account-angular@7.1.2439
2
2
 
3
3
  ## General usage
4
4
 
@@ -15,7 +15,7 @@ export declare class AuditService implements AuditServiceInterface {
15
15
  private addToHttpParamsRecursive;
16
16
  /**
17
17
  * Actions for the period
18
- * 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.
18
+ * User actions for the period. If the period is not specified, data for the current day is returned - from the beginning of the day to the current time inclusive. If the beginning of the time period is not specified, data from the beginning of the current day is returned. If the end of the time period is not specified, data up to the current time is returned.
19
19
  * @param requestParameters
20
20
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
21
21
  * @param reportProgress flag to report request and response progress.
@@ -23,14 +23,17 @@ export declare class AuditService implements AuditServiceInterface {
23
23
  readAudit(requestParameters: ReadAuditRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
24
24
  httpHeaderAccept?: 'application/json';
25
25
  context?: HttpContext;
26
+ transferCache?: boolean;
26
27
  }): Observable<AccountAuditResultAccount>;
27
28
  readAudit(requestParameters: ReadAuditRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
28
29
  httpHeaderAccept?: 'application/json';
29
30
  context?: HttpContext;
31
+ transferCache?: boolean;
30
32
  }): Observable<HttpResponse<AccountAuditResultAccount>>;
31
33
  readAudit(requestParameters: ReadAuditRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
32
34
  httpHeaderAccept?: 'application/json';
33
35
  context?: HttpContext;
36
+ transferCache?: boolean;
34
37
  }): Observable<HttpEvent<AccountAuditResultAccount>>;
35
38
  static ɵfac: i0.ɵɵFactoryDeclaration<AuditService, [null, { optional: true; }, { optional: true; }]>;
36
39
  static ɵprov: i0.ɵɵInjectableDeclaration<AuditService>;
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Account [AC]
3
3
  *
4
- * The version of the OpenAPI document: 6.20.2258
4
+ * The version of the OpenAPI document: 7.1.2439
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -10,17 +10,19 @@
10
10
  import { HttpHeaders } from '@angular/common/http';
11
11
  import { Observable } from 'rxjs';
12
12
  import { AccountAuditResultAccount } from '../model/models';
13
- import { MethodGroupAccount } from '../model/models';
14
- import { ServiceNameAccount } from '../model/models';
13
+ import { CalculationStatusAccount } from '../model/models';
14
+ import { ProcessTypeAccount } from '../model/models';
15
+ import { ServiceAccount } from '../model/models';
15
16
  import { Configuration } from '../configuration';
16
17
  export interface ReadAuditRequestParams {
17
18
  offset?: number;
18
19
  limit?: number;
19
20
  from?: string;
20
21
  to?: string;
21
- serviceName?: ServiceNameAccount;
22
- operationId?: string;
23
- methodGroup?: MethodGroupAccount;
22
+ service?: ServiceAccount;
23
+ operation?: string;
24
+ processType?: ProcessTypeAccount;
25
+ status?: CalculationStatusAccount;
24
26
  sortField?: string;
25
27
  sortDirection?: 'ASC' | 'DESC';
26
28
  }
@@ -29,7 +31,7 @@ export interface AuditServiceInterface {
29
31
  configuration: Configuration;
30
32
  /**
31
33
  * 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.
34
+ * User actions for the period. If the period is not specified, data for the current day is returned - from the beginning of the day to the current time inclusive. If the beginning of the time period is not specified, data from the beginning of the current day is returned. If the end of the time period is not specified, data up to the current time is returned.
33
35
  * @param requestParameters
34
36
  */
35
37
  readAudit(requestParameters: ReadAuditRequestParams, extraHttpRequestParams?: any): Observable<AccountAuditResultAccount>;
@@ -23,14 +23,17 @@ export declare class AuthService implements AuthServiceInterface {
23
23
  changePassword(requestParameters: ChangePasswordRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
24
24
  httpHeaderAccept?: 'application/json';
25
25
  context?: HttpContext;
26
+ transferCache?: boolean;
26
27
  }): Observable<string>;
27
28
  changePassword(requestParameters: ChangePasswordRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
28
29
  httpHeaderAccept?: 'application/json';
29
30
  context?: HttpContext;
31
+ transferCache?: boolean;
30
32
  }): Observable<HttpResponse<string>>;
31
33
  changePassword(requestParameters: ChangePasswordRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
32
34
  httpHeaderAccept?: 'application/json';
33
35
  context?: HttpContext;
36
+ transferCache?: boolean;
34
37
  }): Observable<HttpEvent<string>>;
35
38
  /**
36
39
  * Obtaining a token
@@ -42,14 +45,17 @@ export declare class AuthService implements AuthServiceInterface {
42
45
  runTokenGeneration(requestParameters: RunTokenGenerationRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
43
46
  httpHeaderAccept?: 'application/json';
44
47
  context?: HttpContext;
48
+ transferCache?: boolean;
45
49
  }): Observable<string>;
46
50
  runTokenGeneration(requestParameters: RunTokenGenerationRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
47
51
  httpHeaderAccept?: 'application/json';
48
52
  context?: HttpContext;
53
+ transferCache?: boolean;
49
54
  }): Observable<HttpResponse<string>>;
50
55
  runTokenGeneration(requestParameters: RunTokenGenerationRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
51
56
  httpHeaderAccept?: 'application/json';
52
57
  context?: HttpContext;
58
+ transferCache?: boolean;
53
59
  }): Observable<HttpEvent<string>>;
54
60
  /**
55
61
  * Validating a token
@@ -61,14 +67,17 @@ export declare class AuthService implements AuthServiceInterface {
61
67
  runTokenValidation(requestParameters: RunTokenValidationRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
62
68
  httpHeaderAccept?: 'application/json';
63
69
  context?: HttpContext;
70
+ transferCache?: boolean;
64
71
  }): Observable<TokenValidationResultAccount>;
65
72
  runTokenValidation(requestParameters: RunTokenValidationRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
66
73
  httpHeaderAccept?: 'application/json';
67
74
  context?: HttpContext;
75
+ transferCache?: boolean;
68
76
  }): Observable<HttpResponse<TokenValidationResultAccount>>;
69
77
  runTokenValidation(requestParameters: RunTokenValidationRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
70
78
  httpHeaderAccept?: 'application/json';
71
79
  context?: HttpContext;
80
+ transferCache?: boolean;
72
81
  }): Observable<HttpEvent<TokenValidationResultAccount>>;
73
82
  static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, [null, { optional: true; }, { optional: true; }]>;
74
83
  static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Account [AC]
3
3
  *
4
- * The version of the OpenAPI document: 6.20.2258
4
+ * The version of the OpenAPI document: 7.1.2439
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -9,12 +9,12 @@
9
9
  */
10
10
  import { HttpHeaders } from '@angular/common/http';
11
11
  import { Observable } from 'rxjs';
12
- import { PasswordRequestAccount } from '../model/models';
12
+ import { PasswordChangeRequestAccount } from '../model/models';
13
13
  import { TokenRequestAccount } from '../model/models';
14
14
  import { TokenValidationResultAccount } from '../model/models';
15
15
  import { Configuration } from '../configuration';
16
16
  export interface ChangePasswordRequestParams {
17
- passwordRequestAccount?: PasswordRequestAccount;
17
+ passwordChangeRequestAccount?: PasswordChangeRequestAccount;
18
18
  }
19
19
  export interface RunTokenGenerationRequestParams {
20
20
  tokenRequestAccount: TokenRequestAccount;
@@ -14,7 +14,7 @@ export declare class DataService implements DataServiceInterface {
14
14
  private addToHttpParamsRecursive;
15
15
  /**
16
16
  * Reading input data
17
- * Receiving an incoming request by &#x60;tracecode&#x60;.
17
+ * Receiving an incoming request by &#x60;tracedata.process_code&#x60;.
18
18
  * @param requestParameters
19
19
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
20
20
  * @param reportProgress flag to report request and response progress.
@@ -22,14 +22,17 @@ export declare class DataService implements DataServiceInterface {
22
22
  readData(requestParameters: ReadDataRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
23
23
  httpHeaderAccept?: 'application/octet-stream' | 'application/json';
24
24
  context?: HttpContext;
25
+ transferCache?: boolean;
25
26
  }): Observable<string>;
26
27
  readData(requestParameters: ReadDataRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
27
28
  httpHeaderAccept?: 'application/octet-stream' | 'application/json';
28
29
  context?: HttpContext;
30
+ transferCache?: boolean;
29
31
  }): Observable<HttpResponse<string>>;
30
32
  readData(requestParameters: ReadDataRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
31
33
  httpHeaderAccept?: 'application/octet-stream' | 'application/json';
32
34
  context?: HttpContext;
35
+ transferCache?: boolean;
33
36
  }): Observable<HttpEvent<string>>;
34
37
  static ɵfac: i0.ɵɵFactoryDeclaration<DataService, [null, { optional: true; }, { optional: true; }]>;
35
38
  static ɵprov: i0.ɵɵInjectableDeclaration<DataService>;
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Account [AC]
3
3
  *
4
- * The version of the OpenAPI document: 6.20.2258
4
+ * The version of the OpenAPI document: 7.1.2439
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -9,21 +9,19 @@
9
9
  */
10
10
  import { HttpHeaders } from '@angular/common/http';
11
11
  import { Observable } from 'rxjs';
12
- import { FlowConvertAccount } from '../model/models';
13
12
  import { FlowTypeAccount } from '../model/models';
14
13
  import { Configuration } from '../configuration';
15
14
  export interface ReadDataRequestParams {
16
- tracecode: string;
15
+ processCode: string;
17
16
  dataFlowType?: FlowTypeAccount;
18
- dataFlowStage?: number;
19
- dataFlowConvert?: FlowConvertAccount;
17
+ dataFlowStage?: 'RAW';
20
18
  }
21
19
  export interface DataServiceInterface {
22
20
  defaultHeaders: HttpHeaders;
23
21
  configuration: Configuration;
24
22
  /**
25
23
  * Reading input data
26
- * Receiving an incoming request by &#x60;tracecode&#x60;.
24
+ * Receiving an incoming request by &#x60;tracedata.process_code&#x60;.
27
25
  * @param requestParameters
28
26
  */
29
27
  readData(requestParameters: ReadDataRequestParams, extraHttpRequestParams?: any): Observable<string>;
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
- import { AccountInfoAccount } from '../model/accountInfo';
3
+ import { UserAccount } from '../model/user';
4
4
  import { Configuration } from '../configuration';
5
5
  import { InfoServiceInterface, UpdateInfoRequestParams } from './infoServiceInterface';
6
6
  import * as i0 from "@angular/core";
@@ -22,15 +22,18 @@ export declare class InfoService implements InfoServiceInterface {
22
22
  readInfo(observe?: 'body', reportProgress?: boolean, options?: {
23
23
  httpHeaderAccept?: 'application/json';
24
24
  context?: HttpContext;
25
- }): Observable<AccountInfoAccount>;
25
+ transferCache?: boolean;
26
+ }): Observable<UserAccount>;
26
27
  readInfo(observe?: 'response', reportProgress?: boolean, options?: {
27
28
  httpHeaderAccept?: 'application/json';
28
29
  context?: HttpContext;
29
- }): Observable<HttpResponse<AccountInfoAccount>>;
30
+ transferCache?: boolean;
31
+ }): Observable<HttpResponse<UserAccount>>;
30
32
  readInfo(observe?: 'events', reportProgress?: boolean, options?: {
31
33
  httpHeaderAccept?: 'application/json';
32
34
  context?: HttpContext;
33
- }): Observable<HttpEvent<AccountInfoAccount>>;
35
+ transferCache?: boolean;
36
+ }): Observable<HttpEvent<UserAccount>>;
34
37
  /**
35
38
  * Account update
36
39
  * Updating the account information.
@@ -41,15 +44,18 @@ export declare class InfoService implements InfoServiceInterface {
41
44
  updateInfo(requestParameters: UpdateInfoRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
42
45
  httpHeaderAccept?: 'application/json';
43
46
  context?: HttpContext;
44
- }): Observable<AccountInfoAccount>;
47
+ transferCache?: boolean;
48
+ }): Observable<UserAccount>;
45
49
  updateInfo(requestParameters: UpdateInfoRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
46
50
  httpHeaderAccept?: 'application/json';
47
51
  context?: HttpContext;
48
- }): Observable<HttpResponse<AccountInfoAccount>>;
52
+ transferCache?: boolean;
53
+ }): Observable<HttpResponse<UserAccount>>;
49
54
  updateInfo(requestParameters: UpdateInfoRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
50
55
  httpHeaderAccept?: 'application/json';
51
56
  context?: HttpContext;
52
- }): Observable<HttpEvent<AccountInfoAccount>>;
57
+ transferCache?: boolean;
58
+ }): Observable<HttpEvent<UserAccount>>;
53
59
  static ɵfac: i0.ɵɵFactoryDeclaration<InfoService, [null, { optional: true; }, { optional: true; }]>;
54
60
  static ɵprov: i0.ɵɵInjectableDeclaration<InfoService>;
55
61
  }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Account [AC]
3
3
  *
4
- * The version of the OpenAPI document: 6.20.2258
4
+ * The version of the OpenAPI document: 7.1.2439
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -9,10 +9,11 @@
9
9
  */
10
10
  import { HttpHeaders } from '@angular/common/http';
11
11
  import { Observable } from 'rxjs';
12
- import { AccountInfoAccount } from '../model/models';
12
+ import { InfoChangeRequestAccount } from '../model/models';
13
+ import { UserAccount } from '../model/models';
13
14
  import { Configuration } from '../configuration';
14
15
  export interface UpdateInfoRequestParams {
15
- accountInfoAccount: AccountInfoAccount;
16
+ infoChangeRequestAccount: InfoChangeRequestAccount;
16
17
  }
17
18
  export interface InfoServiceInterface {
18
19
  defaultHeaders: HttpHeaders;
@@ -21,11 +22,11 @@ export interface InfoServiceInterface {
21
22
  * Account information
22
23
  * Getting a account information.
23
24
  */
24
- readInfo(extraHttpRequestParams?: any): Observable<AccountInfoAccount>;
25
+ readInfo(extraHttpRequestParams?: any): Observable<UserAccount>;
25
26
  /**
26
27
  * Account update
27
28
  * Updating the account information.
28
29
  * @param requestParameters
29
30
  */
30
- updateInfo(requestParameters: UpdateInfoRequestParams, extraHttpRequestParams?: any): Observable<AccountInfoAccount>;
31
+ updateInfo(requestParameters: UpdateInfoRequestParams, extraHttpRequestParams?: any): Observable<UserAccount>;
31
32
  }
@@ -22,14 +22,17 @@ export declare class QuotasService implements QuotasServiceInterface {
22
22
  readQuota(observe?: 'body', reportProgress?: boolean, options?: {
23
23
  httpHeaderAccept?: 'application/json';
24
24
  context?: HttpContext;
25
+ transferCache?: boolean;
25
26
  }): Observable<QuotasResultAccount>;
26
27
  readQuota(observe?: 'response', reportProgress?: boolean, options?: {
27
28
  httpHeaderAccept?: 'application/json';
28
29
  context?: HttpContext;
30
+ transferCache?: boolean;
29
31
  }): Observable<HttpResponse<QuotasResultAccount>>;
30
32
  readQuota(observe?: 'events', reportProgress?: boolean, options?: {
31
33
  httpHeaderAccept?: 'application/json';
32
34
  context?: HttpContext;
35
+ transferCache?: boolean;
33
36
  }): Observable<HttpEvent<QuotasResultAccount>>;
34
37
  static ɵfac: i0.ɵɵFactoryDeclaration<QuotasService, [null, { optional: true; }, { optional: true; }]>;
35
38
  static ɵprov: i0.ɵɵInjectableDeclaration<QuotasService>;
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Account [AC]
3
3
  *
4
- * The version of the OpenAPI document: 6.20.2258
4
+ * The version of the OpenAPI document: 7.1.2439
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -2,7 +2,7 @@ import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, H
2
2
  import { Observable } from 'rxjs';
3
3
  import { UserStatisticsAccount } from '../model/userStatistics';
4
4
  import { Configuration } from '../configuration';
5
- import { StatisticsServiceInterface, GenerateStatisticsRequestParams, ReadReportRequestParams } from './statisticsServiceInterface';
5
+ import { StatisticsServiceInterface, GenerateReportRequestParams, GenerateStatisticsRequestParams } from './statisticsServiceInterface';
6
6
  import * as i0 from "@angular/core";
7
7
  export declare class StatisticsService implements StatisticsServiceInterface {
8
8
  protected httpClient: HttpClient;
@@ -13,9 +13,31 @@ export declare class StatisticsService implements StatisticsServiceInterface {
13
13
  constructor(httpClient: HttpClient, basePath: string | string[], configuration: Configuration);
14
14
  private addToHttpParams;
15
15
  private addToHttpParamsRecursive;
16
+ /**
17
+ * Report creating
18
+ * 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 &#x60;from&#x60; datetime is specified, data are returned from the beginning of the month. If no &#x60;to&#x60; datetime is specified, data are returned be the the present day (excluding). Empty service and process type fields mean returning statistics for all services and process types.
19
+ * @param requestParameters
20
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
21
+ * @param reportProgress flag to report request and response progress.
22
+ */
23
+ generateReport(requestParameters: GenerateReportRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
24
+ httpHeaderAccept?: 'application/octet-stream' | 'application/json';
25
+ context?: HttpContext;
26
+ transferCache?: boolean;
27
+ }): Observable<string>;
28
+ generateReport(requestParameters: GenerateReportRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
29
+ httpHeaderAccept?: 'application/octet-stream' | 'application/json';
30
+ context?: HttpContext;
31
+ transferCache?: boolean;
32
+ }): Observable<HttpResponse<string>>;
33
+ generateReport(requestParameters: GenerateReportRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
34
+ httpHeaderAccept?: 'application/octet-stream' | 'application/json';
35
+ context?: HttpContext;
36
+ transferCache?: boolean;
37
+ }): Observable<HttpEvent<string>>;
16
38
  /**
17
39
  * Statistics for the period
18
- * 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 \&#39;from\&#39; datetime is specified, data are returned from the beginning of the month. If no \&#39;to\&#39; datetime is specified, data are returned be to the present day (excluding).
40
+ * 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 &#x60;from&#x60; datetime is specified, data are returned from the beginning of the month. If no &#x60;to&#x60; datetime is specified, data are returned be to the present day (excluding). Empty service and process type fields mean returning statistics for all services and process types.
19
41
  * @param requestParameters
20
42
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
21
43
  * @param reportProgress flag to report request and response progress.
@@ -23,34 +45,18 @@ export declare class StatisticsService implements StatisticsServiceInterface {
23
45
  generateStatistics(requestParameters: GenerateStatisticsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
24
46
  httpHeaderAccept?: 'application/json';
25
47
  context?: HttpContext;
48
+ transferCache?: boolean;
26
49
  }): Observable<UserStatisticsAccount>;
27
50
  generateStatistics(requestParameters: GenerateStatisticsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
28
51
  httpHeaderAccept?: 'application/json';
29
52
  context?: HttpContext;
53
+ transferCache?: boolean;
30
54
  }): Observable<HttpResponse<UserStatisticsAccount>>;
31
55
  generateStatistics(requestParameters: GenerateStatisticsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
32
56
  httpHeaderAccept?: 'application/json';
33
57
  context?: HttpContext;
58
+ transferCache?: boolean;
34
59
  }): Observable<HttpEvent<UserStatisticsAccount>>;
35
- /**
36
- * Report creating
37
- * 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 \&#39;from\&#39; datetime is specified, data are returned from the beginning of the month. If no \&#39;to\&#39; datetime is specified, data are returned be the the present day (excluding).
38
- * @param requestParameters
39
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
40
- * @param reportProgress flag to report request and response progress.
41
- */
42
- readReport(requestParameters: ReadReportRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
43
- httpHeaderAccept?: 'application/octet-stream' | 'application/json';
44
- context?: HttpContext;
45
- }): Observable<string>;
46
- readReport(requestParameters: ReadReportRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
47
- httpHeaderAccept?: 'application/octet-stream' | 'application/json';
48
- context?: HttpContext;
49
- }): Observable<HttpResponse<string>>;
50
- readReport(requestParameters: ReadReportRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
51
- httpHeaderAccept?: 'application/octet-stream' | 'application/json';
52
- context?: HttpContext;
53
- }): Observable<HttpEvent<string>>;
54
60
  static ɵfac: i0.ɵɵFactoryDeclaration<StatisticsService, [null, { optional: true; }, { optional: true; }]>;
55
61
  static ɵprov: i0.ɵɵInjectableDeclaration<StatisticsService>;
56
62
  }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Account [AC]
3
3
  *
4
- * The version of the OpenAPI document: 6.20.2258
4
+ * The version of the OpenAPI document: 7.1.2439
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -9,29 +9,35 @@
9
9
  */
10
10
  import { HttpHeaders } from '@angular/common/http';
11
11
  import { Observable } from 'rxjs';
12
+ import { ProcessTypeAccount } from '../model/models';
13
+ import { ServiceAccount } from '../model/models';
12
14
  import { UserStatisticsAccount } from '../model/models';
13
15
  import { Configuration } from '../configuration';
14
- export interface GenerateStatisticsRequestParams {
16
+ export interface GenerateReportRequestParams {
15
17
  from?: string;
16
18
  to?: string;
19
+ service?: ServiceAccount;
20
+ processType?: ProcessTypeAccount;
17
21
  }
18
- export interface ReadReportRequestParams {
22
+ export interface GenerateStatisticsRequestParams {
19
23
  from?: string;
20
24
  to?: string;
25
+ service?: ServiceAccount;
26
+ processType?: ProcessTypeAccount;
21
27
  }
22
28
  export interface StatisticsServiceInterface {
23
29
  defaultHeaders: HttpHeaders;
24
30
  configuration: Configuration;
25
31
  /**
26
- * Statistics for the period
27
- * 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 \&#39;from\&#39; datetime is specified, data are returned from the beginning of the month. If no \&#39;to\&#39; datetime is specified, data are returned be to the present day (excluding).
32
+ * Report creating
33
+ * 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 &#x60;from&#x60; datetime is specified, data are returned from the beginning of the month. If no &#x60;to&#x60; datetime is specified, data are returned be the the present day (excluding). Empty service and process type fields mean returning statistics for all services and process types.
28
34
  * @param requestParameters
29
35
  */
30
- generateStatistics(requestParameters: GenerateStatisticsRequestParams, extraHttpRequestParams?: any): Observable<UserStatisticsAccount>;
36
+ generateReport(requestParameters: GenerateReportRequestParams, extraHttpRequestParams?: any): Observable<string>;
31
37
  /**
32
- * Report creating
33
- * 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 \&#39;from\&#39; datetime is specified, data are returned from the beginning of the month. If no \&#39;to\&#39; datetime is specified, data are returned be the the present day (excluding).
38
+ * Statistics for the period
39
+ * 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 &#x60;from&#x60; datetime is specified, data are returned from the beginning of the month. If no &#x60;to&#x60; datetime is specified, data are returned be to the present day (excluding). Empty service and process type fields mean returning statistics for all services and process types.
34
40
  * @param requestParameters
35
41
  */
36
- readReport(requestParameters: ReadReportRequestParams, extraHttpRequestParams?: any): Observable<string>;
42
+ generateStatistics(requestParameters: GenerateStatisticsRequestParams, extraHttpRequestParams?: any): Observable<UserStatisticsAccount>;
37
43
  }
@@ -23,14 +23,17 @@ export declare class SystemService implements SystemServiceInterface {
23
23
  check(observe?: 'body', reportProgress?: boolean, options?: {
24
24
  httpHeaderAccept?: 'application/json';
25
25
  context?: HttpContext;
26
+ transferCache?: boolean;
26
27
  }): Observable<CheckResultAccount>;
27
28
  check(observe?: 'response', reportProgress?: boolean, options?: {
28
29
  httpHeaderAccept?: 'application/json';
29
30
  context?: HttpContext;
31
+ transferCache?: boolean;
30
32
  }): Observable<HttpResponse<CheckResultAccount>>;
31
33
  check(observe?: 'events', reportProgress?: boolean, options?: {
32
34
  httpHeaderAccept?: 'application/json';
33
35
  context?: HttpContext;
36
+ transferCache?: boolean;
34
37
  }): Observable<HttpEvent<CheckResultAccount>>;
35
38
  /**
36
39
  * Getting the documentation
@@ -42,14 +45,17 @@ export declare class SystemService implements SystemServiceInterface {
42
45
  file(requestParameters: FileRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
43
46
  httpHeaderAccept?: 'text/html' | 'text/plain' | 'application/json';
44
47
  context?: HttpContext;
48
+ transferCache?: boolean;
45
49
  }): Observable<string>;
46
50
  file(requestParameters: FileRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
47
51
  httpHeaderAccept?: 'text/html' | 'text/plain' | 'application/json';
48
52
  context?: HttpContext;
53
+ transferCache?: boolean;
49
54
  }): Observable<HttpResponse<string>>;
50
55
  file(requestParameters: FileRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
51
56
  httpHeaderAccept?: 'text/html' | 'text/plain' | 'application/json';
52
57
  context?: HttpContext;
58
+ transferCache?: boolean;
53
59
  }): Observable<HttpEvent<string>>;
54
60
  /**
55
61
  * Getting the service version
@@ -60,14 +66,17 @@ export declare class SystemService implements SystemServiceInterface {
60
66
  version(observe?: 'body', reportProgress?: boolean, options?: {
61
67
  httpHeaderAccept?: 'application/json';
62
68
  context?: HttpContext;
69
+ transferCache?: boolean;
63
70
  }): Observable<VersionResultAccount>;
64
71
  version(observe?: 'response', reportProgress?: boolean, options?: {
65
72
  httpHeaderAccept?: 'application/json';
66
73
  context?: HttpContext;
74
+ transferCache?: boolean;
67
75
  }): Observable<HttpResponse<VersionResultAccount>>;
68
76
  version(observe?: 'events', reportProgress?: boolean, options?: {
69
77
  httpHeaderAccept?: 'application/json';
70
78
  context?: HttpContext;
79
+ transferCache?: boolean;
71
80
  }): Observable<HttpEvent<VersionResultAccount>>;
72
81
  static ɵfac: i0.ɵɵFactoryDeclaration<SystemService, [null, { optional: true; }, { optional: true; }]>;
73
82
  static ɵprov: i0.ɵɵInjectableDeclaration<SystemService>;
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Account [AC]
3
3
  *
4
- * The version of the OpenAPI document: 6.20.2258
4
+ * The version of the OpenAPI document: 7.1.2439
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -5,7 +5,7 @@
5
5
  "change_password",
6
6
  "update_info",
7
7
  "generate_statistics",
8
- "read_report"
8
+ "generate_report"
9
9
  ]
10
10
  },
11
11
  "agro": {
@@ -14,7 +14,6 @@
14
14
  "run_plan_calculation_async"
15
15
  ],
16
16
  "TRACE": [
17
- "read_plan_calculation_state",
18
17
  "cancel_plan_calculation",
19
18
  "read_plan_result",
20
19
  "delete_plan_result"
@@ -25,7 +24,7 @@
25
24
  },
26
25
  "monitor": {},
27
26
  "packer": {
28
- "PACK": [
27
+ "PLAN": [
29
28
  "run_pack_calculation",
30
29
  "run_pack_calculation_async"
31
30
  ],
@@ -51,6 +50,8 @@
51
50
  "create_folder",
52
51
  "update_folder",
53
52
  "delete_folder",
53
+ "delete_folders_batch",
54
+ "delete_experiments_batch",
54
55
  "create_experiment",
55
56
  "update_experiment",
56
57
  "delete_experiment",
@@ -62,7 +63,7 @@
62
63
  "import_xlsx",
63
64
  "import_json",
64
65
  "import_json_url",
65
- "import_json_tracecode",
66
+ "import_json_tracedata",
66
67
  "export_xlsx",
67
68
  "export_json",
68
69
  "create_location",
@@ -74,20 +75,28 @@
74
75
  "create_transport",
75
76
  "update_transport",
76
77
  "delete_transport",
78
+ "delete_orders",
77
79
  "create_order",
78
80
  "update_order",
79
81
  "delete_order",
80
82
  "create_hardlink",
81
83
  "update_hardlink",
82
84
  "delete_hardlink",
85
+ "delete_facts",
86
+ "create_fact",
87
+ "update_fact",
88
+ "delete_fact",
83
89
  "create_trip",
84
90
  "update_trip",
85
- "delete_trip"
91
+ "delete_trip",
92
+ "load_custom_tracks",
93
+ "delete_custom_tracks"
86
94
  ]
87
95
  },
88
96
  "universal": {
89
97
  "ACTUALIZE": [
90
- "run_actualize_calculation"
98
+ "run_actualize_calculation",
99
+ "run_actualize_calculation_async"
91
100
  ],
92
101
  "CONVERT": [
93
102
  "run_convert_json_to_xlsx",
@@ -100,22 +109,24 @@
100
109
  "run_replan_calculation",
101
110
  "run_replan_calculation_async"
102
111
  ],
103
- "REFINE": [
104
- "run_replan_refining",
105
- "run_actualize_refining"
106
- ],
107
112
  "TRACE": [
108
113
  "cancel_plan_calculation",
109
114
  "read_plan_result",
110
115
  "delete_plan_result",
111
116
  "cancel_replan_calculation",
112
117
  "read_replan_result",
113
- "delete_replan_result"
118
+ "delete_replan_result",
119
+ "cancel_actualize_calculation",
120
+ "read_actualize_result",
121
+ "delete_actualize_result"
114
122
  ],
115
123
  "VALIDATE": [
116
124
  "run_plan_validation",
125
+ "run_plan_refine",
117
126
  "run_replan_validation",
118
- "run_actualize_validation"
127
+ "run_replan_refine",
128
+ "run_actualize_validation",
129
+ "run_actualize_refine"
119
130
  ]
120
131
  }
121
132
  }