@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.
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 +143 -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
@@ -1,7 +1,7 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { InjectionToken, Injectable, Optional, Inject, NgModule, SkipSelf } from '@angular/core';
3
3
  import * as i1 from '@angular/common/http';
4
- import { HttpHeaders, HttpParams, HttpClient } from '@angular/common/http';
4
+ import { HttpHeaders, HttpParams, HttpContext, HttpClient } from '@angular/common/http';
5
5
 
6
6
  /**
7
7
  * Custom HttpParameterCodec
@@ -112,10 +112,10 @@ class Configuration {
112
112
 
113
113
  /**
114
114
  * VRt.Account [AC]
115
- * Veeroute Account Panel
115
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
116
116
  *
117
- * The version of the OpenAPI document: 4.0.173743RC
118
- * Contact: support@veeroute.com
117
+ * The version of the OpenAPI document: 4.7.1599
118
+ * Contact: servicedesk@veeroute.com
119
119
  *
120
120
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
121
121
  * https://openapi-generator.tech
@@ -124,7 +124,7 @@ class Configuration {
124
124
  class AuditService {
125
125
  constructor(httpClient, basePath, configuration) {
126
126
  this.httpClient = httpClient;
127
- this.basePath = 'https://api.veeroute.tech/v4';
127
+ this.basePath = 'https://api.edge.veeroute.tech';
128
128
  this.defaultHeaders = new HttpHeaders();
129
129
  this.configuration = new Configuration();
130
130
  if (configuration) {
@@ -175,59 +175,76 @@ class AuditService {
175
175
  }
176
176
  return httpParams;
177
177
  }
178
- readAccountAuditData(requestParameters, observe = 'body', reportProgress = false, options) {
178
+ readAudit(requestParameters, observe = 'body', reportProgress = false, options) {
179
179
  const offset = requestParameters.offset;
180
180
  const limit = requestParameters.limit;
181
181
  const from = requestParameters.from;
182
182
  const to = requestParameters.to;
183
183
  const serviceName = requestParameters.serviceName;
184
- const methodName = requestParameters.methodName;
185
- let queryParameters = new HttpParams({ encoder: this.encoder });
184
+ const operationId = requestParameters.operationId;
185
+ const methodGroup = requestParameters.methodGroup;
186
+ let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
186
187
  if (offset !== undefined && offset !== null) {
187
- queryParameters = this.addToHttpParams(queryParameters, offset, 'offset');
188
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, offset, 'offset');
188
189
  }
189
190
  if (limit !== undefined && limit !== null) {
190
- queryParameters = this.addToHttpParams(queryParameters, limit, 'limit');
191
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, limit, 'limit');
191
192
  }
192
193
  if (from !== undefined && from !== null) {
193
- queryParameters = this.addToHttpParams(queryParameters, from, 'from');
194
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, from, 'from');
194
195
  }
195
196
  if (to !== undefined && to !== null) {
196
- queryParameters = this.addToHttpParams(queryParameters, to, 'to');
197
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, to, 'to');
197
198
  }
198
199
  if (serviceName !== undefined && serviceName !== null) {
199
- queryParameters = this.addToHttpParams(queryParameters, serviceName, 'service_name');
200
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, serviceName, 'service_name');
200
201
  }
201
- if (methodName !== undefined && methodName !== null) {
202
- queryParameters = this.addToHttpParams(queryParameters, methodName, 'method_name');
202
+ if (operationId !== undefined && operationId !== null) {
203
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, operationId, 'operation_id');
203
204
  }
204
- let headers = this.defaultHeaders;
205
- let credential;
205
+ if (methodGroup !== undefined && methodGroup !== null) {
206
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, methodGroup, 'method_group');
207
+ }
208
+ let localVarHeaders = this.defaultHeaders;
209
+ let localVarCredential;
206
210
  // authentication (ApiKeyAuth) required
207
- credential = this.configuration.lookupCredential('ApiKeyAuth');
208
- if (credential) {
209
- headers = headers.set('Authorization', 'Bearer ' + credential);
211
+ localVarCredential = this.configuration.lookupCredential('ApiKeyAuth');
212
+ if (localVarCredential) {
213
+ localVarHeaders = localVarHeaders.set('Authorization', 'Bearer ' + localVarCredential);
210
214
  }
211
- let httpHeaderAcceptSelected = options && options.httpHeaderAccept;
212
- if (httpHeaderAcceptSelected === undefined) {
215
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
216
+ if (localVarHttpHeaderAcceptSelected === undefined) {
213
217
  // to determine the Accept header
214
218
  const httpHeaderAccepts = [
215
219
  'application/json'
216
220
  ];
217
- httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
221
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
222
+ }
223
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
224
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
218
225
  }
219
- if (httpHeaderAcceptSelected !== undefined) {
220
- headers = headers.set('Accept', httpHeaderAcceptSelected);
226
+ let localVarHttpContext = options && options.context;
227
+ if (localVarHttpContext === undefined) {
228
+ localVarHttpContext = new HttpContext();
221
229
  }
222
230
  let responseType_ = 'json';
223
- if (httpHeaderAcceptSelected && httpHeaderAcceptSelected.startsWith('text')) {
224
- responseType_ = 'text';
231
+ if (localVarHttpHeaderAcceptSelected) {
232
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
233
+ responseType_ = 'text';
234
+ }
235
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
236
+ responseType_ = 'json';
237
+ }
238
+ else {
239
+ responseType_ = 'blob';
240
+ }
225
241
  }
226
242
  return this.httpClient.get(`${this.configuration.basePath}/account/audit`, {
227
- params: queryParameters,
243
+ context: localVarHttpContext,
244
+ params: localVarQueryParameters,
228
245
  responseType: responseType_,
229
246
  withCredentials: this.configuration.withCredentials,
230
- headers: headers,
247
+ headers: localVarHeaders,
231
248
  observe: observe,
232
249
  reportProgress: reportProgress
233
250
  });
@@ -247,10 +264,10 @@ AuditService.ctorParameters = () => [
247
264
 
248
265
  /**
249
266
  * VRt.Account [AC]
250
- * Veeroute Account Panel
267
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
251
268
  *
252
- * The version of the OpenAPI document: 4.0.173743RC
253
- * Contact: support@veeroute.com
269
+ * The version of the OpenAPI document: 4.7.1599
270
+ * Contact: servicedesk@veeroute.com
254
271
  *
255
272
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
256
273
  * https://openapi-generator.tech
@@ -259,7 +276,7 @@ AuditService.ctorParameters = () => [
259
276
  class AuthService {
260
277
  constructor(httpClient, basePath, configuration) {
261
278
  this.httpClient = httpClient;
262
- this.basePath = 'https://api.veeroute.tech/v4';
279
+ this.basePath = 'https://api.edge.veeroute.tech';
263
280
  this.defaultHeaders = new HttpHeaders();
264
281
  this.configuration = new Configuration();
265
282
  if (configuration) {
@@ -312,23 +329,27 @@ class AuthService {
312
329
  }
313
330
  changePassword(requestParameters, observe = 'body', reportProgress = false, options) {
314
331
  const passwordRequestAccount = requestParameters.passwordRequestAccount;
315
- let headers = this.defaultHeaders;
316
- let credential;
332
+ let localVarHeaders = this.defaultHeaders;
333
+ let localVarCredential;
317
334
  // authentication (ApiKeyAuth) required
318
- credential = this.configuration.lookupCredential('ApiKeyAuth');
319
- if (credential) {
320
- headers = headers.set('Authorization', 'Bearer ' + credential);
335
+ localVarCredential = this.configuration.lookupCredential('ApiKeyAuth');
336
+ if (localVarCredential) {
337
+ localVarHeaders = localVarHeaders.set('Authorization', 'Bearer ' + localVarCredential);
321
338
  }
322
- let httpHeaderAcceptSelected = options && options.httpHeaderAccept;
323
- if (httpHeaderAcceptSelected === undefined) {
339
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
340
+ if (localVarHttpHeaderAcceptSelected === undefined) {
324
341
  // to determine the Accept header
325
342
  const httpHeaderAccepts = [
326
343
  'application/json'
327
344
  ];
328
- httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
345
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
346
+ }
347
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
348
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
329
349
  }
330
- if (httpHeaderAcceptSelected !== undefined) {
331
- headers = headers.set('Accept', httpHeaderAcceptSelected);
350
+ let localVarHttpContext = options && options.context;
351
+ if (localVarHttpContext === undefined) {
352
+ localVarHttpContext = new HttpContext();
332
353
  }
333
354
  // to determine the Content-Type header
334
355
  const consumes = [
@@ -336,36 +357,49 @@ class AuthService {
336
357
  ];
337
358
  const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
338
359
  if (httpContentTypeSelected !== undefined) {
339
- headers = headers.set('Content-Type', httpContentTypeSelected);
360
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
340
361
  }
341
362
  let responseType_ = 'json';
342
- if (httpHeaderAcceptSelected && httpHeaderAcceptSelected.startsWith('text')) {
343
- responseType_ = 'text';
363
+ if (localVarHttpHeaderAcceptSelected) {
364
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
365
+ responseType_ = 'text';
366
+ }
367
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
368
+ responseType_ = 'json';
369
+ }
370
+ else {
371
+ responseType_ = 'blob';
372
+ }
344
373
  }
345
374
  return this.httpClient.post(`${this.configuration.basePath}/account/password`, passwordRequestAccount, {
375
+ context: localVarHttpContext,
346
376
  responseType: responseType_,
347
377
  withCredentials: this.configuration.withCredentials,
348
- headers: headers,
378
+ headers: localVarHeaders,
349
379
  observe: observe,
350
380
  reportProgress: reportProgress
351
381
  });
352
382
  }
353
- generateToken(requestParameters, observe = 'body', reportProgress = false, options) {
383
+ runTokenGeneration(requestParameters, observe = 'body', reportProgress = false, options) {
354
384
  const tokenRequestAccount = requestParameters.tokenRequestAccount;
355
385
  if (tokenRequestAccount === null || tokenRequestAccount === undefined) {
356
- throw new Error('Required parameter tokenRequestAccount was null or undefined when calling generateToken.');
386
+ throw new Error('Required parameter tokenRequestAccount was null or undefined when calling runTokenGeneration.');
357
387
  }
358
- let headers = this.defaultHeaders;
359
- let httpHeaderAcceptSelected = options && options.httpHeaderAccept;
360
- if (httpHeaderAcceptSelected === undefined) {
388
+ let localVarHeaders = this.defaultHeaders;
389
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
390
+ if (localVarHttpHeaderAcceptSelected === undefined) {
361
391
  // to determine the Accept header
362
392
  const httpHeaderAccepts = [
363
393
  'application/json'
364
394
  ];
365
- httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
395
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
396
+ }
397
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
398
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
366
399
  }
367
- if (httpHeaderAcceptSelected !== undefined) {
368
- headers = headers.set('Accept', httpHeaderAcceptSelected);
400
+ let localVarHttpContext = options && options.context;
401
+ if (localVarHttpContext === undefined) {
402
+ localVarHttpContext = new HttpContext();
369
403
  }
370
404
  // to determine the Content-Type header
371
405
  const consumes = [
@@ -373,36 +407,49 @@ class AuthService {
373
407
  ];
374
408
  const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
375
409
  if (httpContentTypeSelected !== undefined) {
376
- headers = headers.set('Content-Type', httpContentTypeSelected);
410
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
377
411
  }
378
412
  let responseType_ = 'json';
379
- if (httpHeaderAcceptSelected && httpHeaderAcceptSelected.startsWith('text')) {
380
- responseType_ = 'text';
413
+ if (localVarHttpHeaderAcceptSelected) {
414
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
415
+ responseType_ = 'text';
416
+ }
417
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
418
+ responseType_ = 'json';
419
+ }
420
+ else {
421
+ responseType_ = 'blob';
422
+ }
381
423
  }
382
- return this.httpClient.post(`${this.configuration.basePath}/account/token`, tokenRequestAccount, {
424
+ return this.httpClient.post(`${this.configuration.basePath}/account/token/generation`, tokenRequestAccount, {
425
+ context: localVarHttpContext,
383
426
  responseType: responseType_,
384
427
  withCredentials: this.configuration.withCredentials,
385
- headers: headers,
428
+ headers: localVarHeaders,
386
429
  observe: observe,
387
430
  reportProgress: reportProgress
388
431
  });
389
432
  }
390
- validateToken(requestParameters, observe = 'body', reportProgress = false, options) {
433
+ runTokenValidation(requestParameters, observe = 'body', reportProgress = false, options) {
391
434
  const body = requestParameters.body;
392
435
  if (body === null || body === undefined) {
393
- throw new Error('Required parameter body was null or undefined when calling validateToken.');
436
+ throw new Error('Required parameter body was null or undefined when calling runTokenValidation.');
394
437
  }
395
- let headers = this.defaultHeaders;
396
- let httpHeaderAcceptSelected = options && options.httpHeaderAccept;
397
- if (httpHeaderAcceptSelected === undefined) {
438
+ let localVarHeaders = this.defaultHeaders;
439
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
440
+ if (localVarHttpHeaderAcceptSelected === undefined) {
398
441
  // to determine the Accept header
399
442
  const httpHeaderAccepts = [
400
443
  'application/json'
401
444
  ];
402
- httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
445
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
403
446
  }
404
- if (httpHeaderAcceptSelected !== undefined) {
405
- headers = headers.set('Accept', httpHeaderAcceptSelected);
447
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
448
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
449
+ }
450
+ let localVarHttpContext = options && options.context;
451
+ if (localVarHttpContext === undefined) {
452
+ localVarHttpContext = new HttpContext();
406
453
  }
407
454
  // to determine the Content-Type header
408
455
  const consumes = [
@@ -410,16 +457,25 @@ class AuthService {
410
457
  ];
411
458
  const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
412
459
  if (httpContentTypeSelected !== undefined) {
413
- headers = headers.set('Content-Type', httpContentTypeSelected);
460
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
414
461
  }
415
462
  let responseType_ = 'json';
416
- if (httpHeaderAcceptSelected && httpHeaderAcceptSelected.startsWith('text')) {
417
- responseType_ = 'text';
463
+ if (localVarHttpHeaderAcceptSelected) {
464
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
465
+ responseType_ = 'text';
466
+ }
467
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
468
+ responseType_ = 'json';
469
+ }
470
+ else {
471
+ responseType_ = 'blob';
472
+ }
418
473
  }
419
- return this.httpClient.post(`${this.configuration.basePath}/account/token/validate`, body, {
474
+ return this.httpClient.post(`${this.configuration.basePath}/account/token/validation`, body, {
475
+ context: localVarHttpContext,
420
476
  responseType: responseType_,
421
477
  withCredentials: this.configuration.withCredentials,
422
- headers: headers,
478
+ headers: localVarHeaders,
423
479
  observe: observe,
424
480
  reportProgress: reportProgress
425
481
  });
@@ -439,19 +495,19 @@ AuthService.ctorParameters = () => [
439
495
 
440
496
  /**
441
497
  * VRt.Account [AC]
442
- * Veeroute Account Panel
498
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
443
499
  *
444
- * The version of the OpenAPI document: 4.0.173743RC
445
- * Contact: support@veeroute.com
500
+ * The version of the OpenAPI document: 4.7.1599
501
+ * Contact: servicedesk@veeroute.com
446
502
  *
447
503
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
448
504
  * https://openapi-generator.tech
449
505
  * Do not edit the class manually.
450
506
  */
451
- class InfoService {
507
+ class DataService {
452
508
  constructor(httpClient, basePath, configuration) {
453
509
  this.httpClient = httpClient;
454
- this.basePath = 'https://api.veeroute.tech/v4';
510
+ this.basePath = 'https://api.edge.veeroute.tech';
455
511
  this.defaultHeaders = new HttpHeaders();
456
512
  this.configuration = new Configuration();
457
513
  if (configuration) {
@@ -502,88 +558,161 @@ class InfoService {
502
558
  }
503
559
  return httpParams;
504
560
  }
505
- readAccountInfo(observe = 'body', reportProgress = false, options) {
506
- let headers = this.defaultHeaders;
507
- let credential;
561
+ readAllDataXlsx(requestParameters, observe = 'body', reportProgress = false, options) {
562
+ const tracecode = requestParameters.tracecode;
563
+ if (tracecode === null || tracecode === undefined) {
564
+ throw new Error('Required parameter tracecode was null or undefined when calling readAllDataXlsx.');
565
+ }
566
+ let localVarHeaders = this.defaultHeaders;
567
+ let localVarCredential;
508
568
  // authentication (ApiKeyAuth) required
509
- credential = this.configuration.lookupCredential('ApiKeyAuth');
510
- if (credential) {
511
- headers = headers.set('Authorization', 'Bearer ' + credential);
569
+ localVarCredential = this.configuration.lookupCredential('ApiKeyAuth');
570
+ if (localVarCredential) {
571
+ localVarHeaders = localVarHeaders.set('Authorization', 'Bearer ' + localVarCredential);
512
572
  }
513
- let httpHeaderAcceptSelected = options && options.httpHeaderAccept;
514
- if (httpHeaderAcceptSelected === undefined) {
573
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
574
+ if (localVarHttpHeaderAcceptSelected === undefined) {
515
575
  // to determine the Accept header
516
576
  const httpHeaderAccepts = [
577
+ 'application/octet-stream',
517
578
  'application/json'
518
579
  ];
519
- httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
580
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
581
+ }
582
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
583
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
520
584
  }
521
- if (httpHeaderAcceptSelected !== undefined) {
522
- headers = headers.set('Accept', httpHeaderAcceptSelected);
585
+ let localVarHttpContext = options && options.context;
586
+ if (localVarHttpContext === undefined) {
587
+ localVarHttpContext = new HttpContext();
523
588
  }
524
589
  let responseType_ = 'json';
525
- if (httpHeaderAcceptSelected && httpHeaderAcceptSelected.startsWith('text')) {
526
- responseType_ = 'text';
590
+ if (localVarHttpHeaderAcceptSelected) {
591
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
592
+ responseType_ = 'text';
593
+ }
594
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
595
+ responseType_ = 'json';
596
+ }
597
+ else {
598
+ responseType_ = 'blob';
599
+ }
527
600
  }
528
- return this.httpClient.get(`${this.configuration.basePath}/account/info`, {
601
+ return this.httpClient.get(`${this.configuration.basePath}/account/data/xlsx/${encodeURIComponent(String(tracecode))}`, {
602
+ context: localVarHttpContext,
529
603
  responseType: responseType_,
530
604
  withCredentials: this.configuration.withCredentials,
531
- headers: headers,
605
+ headers: localVarHeaders,
532
606
  observe: observe,
533
607
  reportProgress: reportProgress
534
608
  });
535
609
  }
536
- updateAccountInfo(requestParameters, observe = 'body', reportProgress = false, options) {
537
- const accountInfoAccount = requestParameters.accountInfoAccount;
538
- if (accountInfoAccount === null || accountInfoAccount === undefined) {
539
- throw new Error('Required parameter accountInfoAccount was null or undefined when calling updateAccountInfo.');
610
+ readDataInput(requestParameters, observe = 'body', reportProgress = false, options) {
611
+ const tracecode = requestParameters.tracecode;
612
+ if (tracecode === null || tracecode === undefined) {
613
+ throw new Error('Required parameter tracecode was null or undefined when calling readDataInput.');
540
614
  }
541
- let headers = this.defaultHeaders;
542
- let credential;
615
+ let localVarHeaders = this.defaultHeaders;
616
+ let localVarCredential;
543
617
  // authentication (ApiKeyAuth) required
544
- credential = this.configuration.lookupCredential('ApiKeyAuth');
545
- if (credential) {
546
- headers = headers.set('Authorization', 'Bearer ' + credential);
618
+ localVarCredential = this.configuration.lookupCredential('ApiKeyAuth');
619
+ if (localVarCredential) {
620
+ localVarHeaders = localVarHeaders.set('Authorization', 'Bearer ' + localVarCredential);
547
621
  }
548
- let httpHeaderAcceptSelected = options && options.httpHeaderAccept;
549
- if (httpHeaderAcceptSelected === undefined) {
622
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
623
+ if (localVarHttpHeaderAcceptSelected === undefined) {
550
624
  // to determine the Accept header
551
625
  const httpHeaderAccepts = [
626
+ 'text/plain',
552
627
  'application/json'
553
628
  ];
554
- httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
629
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
555
630
  }
556
- if (httpHeaderAcceptSelected !== undefined) {
557
- headers = headers.set('Accept', httpHeaderAcceptSelected);
631
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
632
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
558
633
  }
559
- // to determine the Content-Type header
560
- const consumes = [
561
- 'application/json'
562
- ];
563
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
564
- if (httpContentTypeSelected !== undefined) {
565
- headers = headers.set('Content-Type', httpContentTypeSelected);
634
+ let localVarHttpContext = options && options.context;
635
+ if (localVarHttpContext === undefined) {
636
+ localVarHttpContext = new HttpContext();
566
637
  }
567
638
  let responseType_ = 'json';
568
- if (httpHeaderAcceptSelected && httpHeaderAcceptSelected.startsWith('text')) {
569
- responseType_ = 'text';
639
+ if (localVarHttpHeaderAcceptSelected) {
640
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
641
+ responseType_ = 'text';
642
+ }
643
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
644
+ responseType_ = 'json';
645
+ }
646
+ else {
647
+ responseType_ = 'blob';
648
+ }
570
649
  }
571
- return this.httpClient.put(`${this.configuration.basePath}/account/info`, accountInfoAccount, {
650
+ return this.httpClient.get(`${this.configuration.basePath}/account/data/input/${encodeURIComponent(String(tracecode))}`, {
651
+ context: localVarHttpContext,
652
+ responseType: responseType_,
653
+ withCredentials: this.configuration.withCredentials,
654
+ headers: localVarHeaders,
655
+ observe: observe,
656
+ reportProgress: reportProgress
657
+ });
658
+ }
659
+ readDataOutput(requestParameters, observe = 'body', reportProgress = false, options) {
660
+ const tracecode = requestParameters.tracecode;
661
+ if (tracecode === null || tracecode === undefined) {
662
+ throw new Error('Required parameter tracecode was null or undefined when calling readDataOutput.');
663
+ }
664
+ let localVarHeaders = this.defaultHeaders;
665
+ let localVarCredential;
666
+ // authentication (ApiKeyAuth) required
667
+ localVarCredential = this.configuration.lookupCredential('ApiKeyAuth');
668
+ if (localVarCredential) {
669
+ localVarHeaders = localVarHeaders.set('Authorization', 'Bearer ' + localVarCredential);
670
+ }
671
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
672
+ if (localVarHttpHeaderAcceptSelected === undefined) {
673
+ // to determine the Accept header
674
+ const httpHeaderAccepts = [
675
+ 'text/plain',
676
+ 'application/json'
677
+ ];
678
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
679
+ }
680
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
681
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
682
+ }
683
+ let localVarHttpContext = options && options.context;
684
+ if (localVarHttpContext === undefined) {
685
+ localVarHttpContext = new HttpContext();
686
+ }
687
+ let responseType_ = 'json';
688
+ if (localVarHttpHeaderAcceptSelected) {
689
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
690
+ responseType_ = 'text';
691
+ }
692
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
693
+ responseType_ = 'json';
694
+ }
695
+ else {
696
+ responseType_ = 'blob';
697
+ }
698
+ }
699
+ return this.httpClient.get(`${this.configuration.basePath}/account/data/output/${encodeURIComponent(String(tracecode))}`, {
700
+ context: localVarHttpContext,
572
701
  responseType: responseType_,
573
702
  withCredentials: this.configuration.withCredentials,
574
- headers: headers,
703
+ headers: localVarHeaders,
575
704
  observe: observe,
576
705
  reportProgress: reportProgress
577
706
  });
578
707
  }
579
708
  }
580
- InfoService.ɵprov = i0.ɵɵdefineInjectable({ factory: function InfoService_Factory() { return new InfoService(i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(BASE_PATH, 8), i0.ɵɵinject(Configuration, 8)); }, token: InfoService, providedIn: "root" });
581
- InfoService.decorators = [
709
+ DataService.ɵprov = i0.ɵɵdefineInjectable({ factory: function DataService_Factory() { return new DataService(i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(BASE_PATH, 8), i0.ɵɵinject(Configuration, 8)); }, token: DataService, providedIn: "root" });
710
+ DataService.decorators = [
582
711
  { type: Injectable, args: [{
583
712
  providedIn: 'root'
584
713
  },] }
585
714
  ];
586
- InfoService.ctorParameters = () => [
715
+ DataService.ctorParameters = () => [
587
716
  { type: HttpClient },
588
717
  { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
589
718
  { type: Configuration, decorators: [{ type: Optional }] }
@@ -591,19 +720,19 @@ InfoService.ctorParameters = () => [
591
720
 
592
721
  /**
593
722
  * VRt.Account [AC]
594
- * Veeroute Account Panel
723
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
595
724
  *
596
- * The version of the OpenAPI document: 4.0.173743RC
597
- * Contact: support@veeroute.com
725
+ * The version of the OpenAPI document: 4.7.1599
726
+ * Contact: servicedesk@veeroute.com
598
727
  *
599
728
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
600
729
  * https://openapi-generator.tech
601
730
  * Do not edit the class manually.
602
731
  */
603
- class QuotaService {
732
+ class InfoService {
604
733
  constructor(httpClient, basePath, configuration) {
605
734
  this.httpClient = httpClient;
606
- this.basePath = 'https://api.veeroute.tech/v4';
735
+ this.basePath = 'https://api.edge.veeroute.tech';
607
736
  this.defaultHeaders = new HttpHeaders();
608
737
  this.configuration = new Configuration();
609
738
  if (configuration) {
@@ -654,46 +783,114 @@ class QuotaService {
654
783
  }
655
784
  return httpParams;
656
785
  }
657
- readQuota(observe = 'body', reportProgress = false, options) {
658
- let headers = this.defaultHeaders;
659
- let credential;
786
+ readInfo(observe = 'body', reportProgress = false, options) {
787
+ let localVarHeaders = this.defaultHeaders;
788
+ let localVarCredential;
660
789
  // authentication (ApiKeyAuth) required
661
- credential = this.configuration.lookupCredential('ApiKeyAuth');
662
- if (credential) {
663
- headers = headers.set('Authorization', 'Bearer ' + credential);
790
+ localVarCredential = this.configuration.lookupCredential('ApiKeyAuth');
791
+ if (localVarCredential) {
792
+ localVarHeaders = localVarHeaders.set('Authorization', 'Bearer ' + localVarCredential);
664
793
  }
665
- let httpHeaderAcceptSelected = options && options.httpHeaderAccept;
666
- if (httpHeaderAcceptSelected === undefined) {
794
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
795
+ if (localVarHttpHeaderAcceptSelected === undefined) {
667
796
  // to determine the Accept header
668
797
  const httpHeaderAccepts = [
669
- 'application/octet-stream',
670
798
  'application/json'
671
799
  ];
672
- httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
800
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
673
801
  }
674
- if (httpHeaderAcceptSelected !== undefined) {
675
- headers = headers.set('Accept', httpHeaderAcceptSelected);
802
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
803
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
804
+ }
805
+ let localVarHttpContext = options && options.context;
806
+ if (localVarHttpContext === undefined) {
807
+ localVarHttpContext = new HttpContext();
676
808
  }
677
809
  let responseType_ = 'json';
678
- if (httpHeaderAcceptSelected && httpHeaderAcceptSelected.startsWith('text')) {
679
- responseType_ = 'text';
810
+ if (localVarHttpHeaderAcceptSelected) {
811
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
812
+ responseType_ = 'text';
813
+ }
814
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
815
+ responseType_ = 'json';
816
+ }
817
+ else {
818
+ responseType_ = 'blob';
819
+ }
680
820
  }
681
- return this.httpClient.get(`${this.configuration.basePath}/account/quota`, {
821
+ return this.httpClient.get(`${this.configuration.basePath}/account/info`, {
822
+ context: localVarHttpContext,
682
823
  responseType: responseType_,
683
824
  withCredentials: this.configuration.withCredentials,
684
- headers: headers,
825
+ headers: localVarHeaders,
826
+ observe: observe,
827
+ reportProgress: reportProgress
828
+ });
829
+ }
830
+ updateInfo(requestParameters, observe = 'body', reportProgress = false, options) {
831
+ const accountInfoAccount = requestParameters.accountInfoAccount;
832
+ if (accountInfoAccount === null || accountInfoAccount === undefined) {
833
+ throw new Error('Required parameter accountInfoAccount was null or undefined when calling updateInfo.');
834
+ }
835
+ let localVarHeaders = this.defaultHeaders;
836
+ let localVarCredential;
837
+ // authentication (ApiKeyAuth) required
838
+ localVarCredential = this.configuration.lookupCredential('ApiKeyAuth');
839
+ if (localVarCredential) {
840
+ localVarHeaders = localVarHeaders.set('Authorization', 'Bearer ' + localVarCredential);
841
+ }
842
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
843
+ if (localVarHttpHeaderAcceptSelected === undefined) {
844
+ // to determine the Accept header
845
+ const httpHeaderAccepts = [
846
+ 'application/json'
847
+ ];
848
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
849
+ }
850
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
851
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
852
+ }
853
+ let localVarHttpContext = options && options.context;
854
+ if (localVarHttpContext === undefined) {
855
+ localVarHttpContext = new HttpContext();
856
+ }
857
+ // to determine the Content-Type header
858
+ const consumes = [
859
+ 'application/json'
860
+ ];
861
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
862
+ if (httpContentTypeSelected !== undefined) {
863
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
864
+ }
865
+ let responseType_ = 'json';
866
+ if (localVarHttpHeaderAcceptSelected) {
867
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
868
+ responseType_ = 'text';
869
+ }
870
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
871
+ responseType_ = 'json';
872
+ }
873
+ else {
874
+ responseType_ = 'blob';
875
+ }
876
+ }
877
+ return this.httpClient.put(`${this.configuration.basePath}/account/info`, accountInfoAccount, {
878
+ context: localVarHttpContext,
879
+ responseType: responseType_,
880
+ withCredentials: this.configuration.withCredentials,
881
+ headers: localVarHeaders,
685
882
  observe: observe,
686
883
  reportProgress: reportProgress
687
884
  });
688
885
  }
689
886
  }
690
- QuotaService.ɵprov = i0.ɵɵdefineInjectable({ factory: function QuotaService_Factory() { return new QuotaService(i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(BASE_PATH, 8), i0.ɵɵinject(Configuration, 8)); }, token: QuotaService, providedIn: "root" });
691
- QuotaService.decorators = [
887
+ InfoService.ɵprov = i0.ɵɵdefineInjectable({ factory: function InfoService_Factory() { return new InfoService(i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(BASE_PATH, 8), i0.ɵɵinject(Configuration, 8)); }, token: InfoService, providedIn: "root" });
888
+ InfoService.decorators = [
692
889
  { type: Injectable, args: [{
693
890
  providedIn: 'root'
694
891
  },] }
695
892
  ];
696
- QuotaService.ctorParameters = () => [
893
+ InfoService.ctorParameters = () => [
697
894
  { type: HttpClient },
698
895
  { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
699
896
  { type: Configuration, decorators: [{ type: Optional }] }
@@ -701,19 +898,19 @@ QuotaService.ctorParameters = () => [
701
898
 
702
899
  /**
703
900
  * VRt.Account [AC]
704
- * Veeroute Account Panel
901
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
705
902
  *
706
- * The version of the OpenAPI document: 4.0.173743RC
707
- * Contact: support@veeroute.com
903
+ * The version of the OpenAPI document: 4.7.1599
904
+ * Contact: servicedesk@veeroute.com
708
905
  *
709
906
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
710
907
  * https://openapi-generator.tech
711
908
  * Do not edit the class manually.
712
909
  */
713
- class ReportsService {
910
+ class QuotasService {
714
911
  constructor(httpClient, basePath, configuration) {
715
912
  this.httpClient = httpClient;
716
- this.basePath = 'https://api.veeroute.tech/v4';
913
+ this.basePath = 'https://api.edge.veeroute.tech';
717
914
  this.defaultHeaders = new HttpHeaders();
718
915
  this.configuration = new Configuration();
719
916
  if (configuration) {
@@ -764,58 +961,58 @@ class ReportsService {
764
961
  }
765
962
  return httpParams;
766
963
  }
767
- generateReport(requestParameters, observe = 'body', reportProgress = false, options) {
768
- const userReportFilterAccount = requestParameters.userReportFilterAccount;
769
- if (userReportFilterAccount === null || userReportFilterAccount === undefined) {
770
- throw new Error('Required parameter userReportFilterAccount was null or undefined when calling generateReport.');
771
- }
772
- let headers = this.defaultHeaders;
773
- let credential;
964
+ readQuota(observe = 'body', reportProgress = false, options) {
965
+ let localVarHeaders = this.defaultHeaders;
966
+ let localVarCredential;
774
967
  // authentication (ApiKeyAuth) required
775
- credential = this.configuration.lookupCredential('ApiKeyAuth');
776
- if (credential) {
777
- headers = headers.set('Authorization', 'Bearer ' + credential);
968
+ localVarCredential = this.configuration.lookupCredential('ApiKeyAuth');
969
+ if (localVarCredential) {
970
+ localVarHeaders = localVarHeaders.set('Authorization', 'Bearer ' + localVarCredential);
778
971
  }
779
- let httpHeaderAcceptSelected = options && options.httpHeaderAccept;
780
- if (httpHeaderAcceptSelected === undefined) {
972
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
973
+ if (localVarHttpHeaderAcceptSelected === undefined) {
781
974
  // to determine the Accept header
782
975
  const httpHeaderAccepts = [
783
- 'application/octet-stream',
784
976
  'application/json'
785
977
  ];
786
- httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
978
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
787
979
  }
788
- if (httpHeaderAcceptSelected !== undefined) {
789
- headers = headers.set('Accept', httpHeaderAcceptSelected);
980
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
981
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
790
982
  }
791
- // to determine the Content-Type header
792
- const consumes = [
793
- 'application/json'
794
- ];
795
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
796
- if (httpContentTypeSelected !== undefined) {
797
- headers = headers.set('Content-Type', httpContentTypeSelected);
983
+ let localVarHttpContext = options && options.context;
984
+ if (localVarHttpContext === undefined) {
985
+ localVarHttpContext = new HttpContext();
798
986
  }
799
987
  let responseType_ = 'json';
800
- if (httpHeaderAcceptSelected && httpHeaderAcceptSelected.startsWith('text')) {
801
- responseType_ = 'text';
988
+ if (localVarHttpHeaderAcceptSelected) {
989
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
990
+ responseType_ = 'text';
991
+ }
992
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
993
+ responseType_ = 'json';
994
+ }
995
+ else {
996
+ responseType_ = 'blob';
997
+ }
802
998
  }
803
- return this.httpClient.post(`${this.configuration.basePath}/account/report`, userReportFilterAccount, {
999
+ return this.httpClient.get(`${this.configuration.basePath}/account/quota`, {
1000
+ context: localVarHttpContext,
804
1001
  responseType: responseType_,
805
1002
  withCredentials: this.configuration.withCredentials,
806
- headers: headers,
1003
+ headers: localVarHeaders,
807
1004
  observe: observe,
808
1005
  reportProgress: reportProgress
809
1006
  });
810
1007
  }
811
1008
  }
812
- ReportsService.ɵprov = i0.ɵɵdefineInjectable({ factory: function ReportsService_Factory() { return new ReportsService(i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(BASE_PATH, 8), i0.ɵɵinject(Configuration, 8)); }, token: ReportsService, providedIn: "root" });
813
- ReportsService.decorators = [
1009
+ QuotasService.ɵprov = i0.ɵɵdefineInjectable({ factory: function QuotasService_Factory() { return new QuotasService(i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(BASE_PATH, 8), i0.ɵɵinject(Configuration, 8)); }, token: QuotasService, providedIn: "root" });
1010
+ QuotasService.decorators = [
814
1011
  { type: Injectable, args: [{
815
1012
  providedIn: 'root'
816
1013
  },] }
817
1014
  ];
818
- ReportsService.ctorParameters = () => [
1015
+ QuotasService.ctorParameters = () => [
819
1016
  { type: HttpClient },
820
1017
  { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
821
1018
  { type: Configuration, decorators: [{ type: Optional }] }
@@ -823,10 +1020,10 @@ ReportsService.ctorParameters = () => [
823
1020
 
824
1021
  /**
825
1022
  * VRt.Account [AC]
826
- * Veeroute Account Panel
1023
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
827
1024
  *
828
- * The version of the OpenAPI document: 4.0.173743RC
829
- * Contact: support@veeroute.com
1025
+ * The version of the OpenAPI document: 4.7.1599
1026
+ * Contact: servicedesk@veeroute.com
830
1027
  *
831
1028
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
832
1029
  * https://openapi-generator.tech
@@ -835,7 +1032,7 @@ ReportsService.ctorParameters = () => [
835
1032
  class StatisticsService {
836
1033
  constructor(httpClient, basePath, configuration) {
837
1034
  this.httpClient = httpClient;
838
- this.basePath = 'https://api.veeroute.tech/v4';
1035
+ this.basePath = 'https://api.edge.veeroute.tech';
839
1036
  this.defaultHeaders = new HttpHeaders();
840
1037
  this.configuration = new Configuration();
841
1038
  if (configuration) {
@@ -887,41 +1084,110 @@ class StatisticsService {
887
1084
  return httpParams;
888
1085
  }
889
1086
  generateStatistics(requestParameters, observe = 'body', reportProgress = false, options) {
890
- const userStatisticsFilterAccount = requestParameters.userStatisticsFilterAccount;
891
- let headers = this.defaultHeaders;
892
- let credential;
1087
+ const from = requestParameters.from;
1088
+ const to = requestParameters.to;
1089
+ let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
1090
+ if (from !== undefined && from !== null) {
1091
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, from, 'from');
1092
+ }
1093
+ if (to !== undefined && to !== null) {
1094
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, to, 'to');
1095
+ }
1096
+ let localVarHeaders = this.defaultHeaders;
1097
+ let localVarCredential;
893
1098
  // authentication (ApiKeyAuth) required
894
- credential = this.configuration.lookupCredential('ApiKeyAuth');
895
- if (credential) {
896
- headers = headers.set('Authorization', 'Bearer ' + credential);
1099
+ localVarCredential = this.configuration.lookupCredential('ApiKeyAuth');
1100
+ if (localVarCredential) {
1101
+ localVarHeaders = localVarHeaders.set('Authorization', 'Bearer ' + localVarCredential);
897
1102
  }
898
- let httpHeaderAcceptSelected = options && options.httpHeaderAccept;
899
- if (httpHeaderAcceptSelected === undefined) {
1103
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
1104
+ if (localVarHttpHeaderAcceptSelected === undefined) {
900
1105
  // to determine the Accept header
901
1106
  const httpHeaderAccepts = [
902
1107
  'application/json'
903
1108
  ];
904
- httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1109
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
905
1110
  }
906
- if (httpHeaderAcceptSelected !== undefined) {
907
- headers = headers.set('Accept', httpHeaderAcceptSelected);
1111
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
1112
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
908
1113
  }
909
- // to determine the Content-Type header
910
- const consumes = [
911
- 'application/json'
912
- ];
913
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
914
- if (httpContentTypeSelected !== undefined) {
915
- headers = headers.set('Content-Type', httpContentTypeSelected);
1114
+ let localVarHttpContext = options && options.context;
1115
+ if (localVarHttpContext === undefined) {
1116
+ localVarHttpContext = new HttpContext();
916
1117
  }
917
1118
  let responseType_ = 'json';
918
- if (httpHeaderAcceptSelected && httpHeaderAcceptSelected.startsWith('text')) {
919
- responseType_ = 'text';
1119
+ if (localVarHttpHeaderAcceptSelected) {
1120
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
1121
+ responseType_ = 'text';
1122
+ }
1123
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
1124
+ responseType_ = 'json';
1125
+ }
1126
+ else {
1127
+ responseType_ = 'blob';
1128
+ }
920
1129
  }
921
- return this.httpClient.post(`${this.configuration.basePath}/account/statistics`, userStatisticsFilterAccount, {
1130
+ return this.httpClient.get(`${this.configuration.basePath}/account/statistics`, {
1131
+ context: localVarHttpContext,
1132
+ params: localVarQueryParameters,
922
1133
  responseType: responseType_,
923
1134
  withCredentials: this.configuration.withCredentials,
924
- headers: headers,
1135
+ headers: localVarHeaders,
1136
+ observe: observe,
1137
+ reportProgress: reportProgress
1138
+ });
1139
+ }
1140
+ readReport(requestParameters, observe = 'body', reportProgress = false, options) {
1141
+ const from = requestParameters.from;
1142
+ const to = requestParameters.to;
1143
+ let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
1144
+ if (from !== undefined && from !== null) {
1145
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, from, 'from');
1146
+ }
1147
+ if (to !== undefined && to !== null) {
1148
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, to, 'to');
1149
+ }
1150
+ let localVarHeaders = this.defaultHeaders;
1151
+ let localVarCredential;
1152
+ // authentication (ApiKeyAuth) required
1153
+ localVarCredential = this.configuration.lookupCredential('ApiKeyAuth');
1154
+ if (localVarCredential) {
1155
+ localVarHeaders = localVarHeaders.set('Authorization', 'Bearer ' + localVarCredential);
1156
+ }
1157
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
1158
+ if (localVarHttpHeaderAcceptSelected === undefined) {
1159
+ // to determine the Accept header
1160
+ const httpHeaderAccepts = [
1161
+ 'application/octet-stream',
1162
+ 'application/json'
1163
+ ];
1164
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1165
+ }
1166
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
1167
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
1168
+ }
1169
+ let localVarHttpContext = options && options.context;
1170
+ if (localVarHttpContext === undefined) {
1171
+ localVarHttpContext = new HttpContext();
1172
+ }
1173
+ let responseType_ = 'json';
1174
+ if (localVarHttpHeaderAcceptSelected) {
1175
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
1176
+ responseType_ = 'text';
1177
+ }
1178
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
1179
+ responseType_ = 'json';
1180
+ }
1181
+ else {
1182
+ responseType_ = 'blob';
1183
+ }
1184
+ }
1185
+ return this.httpClient.get(`${this.configuration.basePath}/account/report`, {
1186
+ context: localVarHttpContext,
1187
+ params: localVarQueryParameters,
1188
+ responseType: responseType_,
1189
+ withCredentials: this.configuration.withCredentials,
1190
+ headers: localVarHeaders,
925
1191
  observe: observe,
926
1192
  reportProgress: reportProgress
927
1193
  });
@@ -941,10 +1207,10 @@ StatisticsService.ctorParameters = () => [
941
1207
 
942
1208
  /**
943
1209
  * VRt.Account [AC]
944
- * Veeroute Account Panel
1210
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
945
1211
  *
946
- * The version of the OpenAPI document: 4.0.173743RC
947
- * Contact: support@veeroute.com
1212
+ * The version of the OpenAPI document: 4.7.1599
1213
+ * Contact: servicedesk@veeroute.com
948
1214
  *
949
1215
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
950
1216
  * https://openapi-generator.tech
@@ -953,7 +1219,7 @@ StatisticsService.ctorParameters = () => [
953
1219
  class SystemService {
954
1220
  constructor(httpClient, basePath, configuration) {
955
1221
  this.httpClient = httpClient;
956
- this.basePath = 'https://api.veeroute.tech/v4';
1222
+ this.basePath = 'https://api.edge.veeroute.tech';
957
1223
  this.defaultHeaders = new HttpHeaders();
958
1224
  this.configuration = new Configuration();
959
1225
  if (configuration) {
@@ -1005,51 +1271,77 @@ class SystemService {
1005
1271
  return httpParams;
1006
1272
  }
1007
1273
  check(observe = 'body', reportProgress = false, options) {
1008
- let headers = this.defaultHeaders;
1009
- let httpHeaderAcceptSelected = options && options.httpHeaderAccept;
1010
- if (httpHeaderAcceptSelected === undefined) {
1274
+ let localVarHeaders = this.defaultHeaders;
1275
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
1276
+ if (localVarHttpHeaderAcceptSelected === undefined) {
1011
1277
  // to determine the Accept header
1012
1278
  const httpHeaderAccepts = [
1013
1279
  'application/json'
1014
1280
  ];
1015
- httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1281
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1016
1282
  }
1017
- if (httpHeaderAcceptSelected !== undefined) {
1018
- headers = headers.set('Accept', httpHeaderAcceptSelected);
1283
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
1284
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
1285
+ }
1286
+ let localVarHttpContext = options && options.context;
1287
+ if (localVarHttpContext === undefined) {
1288
+ localVarHttpContext = new HttpContext();
1019
1289
  }
1020
1290
  let responseType_ = 'json';
1021
- if (httpHeaderAcceptSelected && httpHeaderAcceptSelected.startsWith('text')) {
1022
- responseType_ = 'text';
1291
+ if (localVarHttpHeaderAcceptSelected) {
1292
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
1293
+ responseType_ = 'text';
1294
+ }
1295
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
1296
+ responseType_ = 'json';
1297
+ }
1298
+ else {
1299
+ responseType_ = 'blob';
1300
+ }
1023
1301
  }
1024
- return this.httpClient.get(`${this.configuration.basePath}/account/check`, {
1302
+ return this.httpClient.get(`${this.configuration.basePath}/account/system/check`, {
1303
+ context: localVarHttpContext,
1025
1304
  responseType: responseType_,
1026
1305
  withCredentials: this.configuration.withCredentials,
1027
- headers: headers,
1306
+ headers: localVarHeaders,
1028
1307
  observe: observe,
1029
1308
  reportProgress: reportProgress
1030
1309
  });
1031
1310
  }
1032
1311
  version(observe = 'body', reportProgress = false, options) {
1033
- let headers = this.defaultHeaders;
1034
- let httpHeaderAcceptSelected = options && options.httpHeaderAccept;
1035
- if (httpHeaderAcceptSelected === undefined) {
1312
+ let localVarHeaders = this.defaultHeaders;
1313
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
1314
+ if (localVarHttpHeaderAcceptSelected === undefined) {
1036
1315
  // to determine the Accept header
1037
1316
  const httpHeaderAccepts = [
1038
1317
  'application/json'
1039
1318
  ];
1040
- httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1319
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1320
+ }
1321
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
1322
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
1041
1323
  }
1042
- if (httpHeaderAcceptSelected !== undefined) {
1043
- headers = headers.set('Accept', httpHeaderAcceptSelected);
1324
+ let localVarHttpContext = options && options.context;
1325
+ if (localVarHttpContext === undefined) {
1326
+ localVarHttpContext = new HttpContext();
1044
1327
  }
1045
1328
  let responseType_ = 'json';
1046
- if (httpHeaderAcceptSelected && httpHeaderAcceptSelected.startsWith('text')) {
1047
- responseType_ = 'text';
1329
+ if (localVarHttpHeaderAcceptSelected) {
1330
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
1331
+ responseType_ = 'text';
1332
+ }
1333
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
1334
+ responseType_ = 'json';
1335
+ }
1336
+ else {
1337
+ responseType_ = 'blob';
1338
+ }
1048
1339
  }
1049
- return this.httpClient.get(`${this.configuration.basePath}/account/version`, {
1340
+ return this.httpClient.get(`${this.configuration.basePath}/account/system/version`, {
1341
+ context: localVarHttpContext,
1050
1342
  responseType: responseType_,
1051
1343
  withCredentials: this.configuration.withCredentials,
1052
- headers: headers,
1344
+ headers: localVarHeaders,
1053
1345
  observe: observe,
1054
1346
  reportProgress: reportProgress
1055
1347
  });
@@ -1067,14 +1359,14 @@ SystemService.ctorParameters = () => [
1067
1359
  { type: Configuration, decorators: [{ type: Optional }] }
1068
1360
  ];
1069
1361
 
1070
- const APIS = [AuditService, AuthService, InfoService, QuotaService, ReportsService, StatisticsService, SystemService];
1362
+ const APIS = [AuditService, AuthService, DataService, InfoService, QuotasService, StatisticsService, SystemService];
1071
1363
 
1072
1364
  /**
1073
1365
  * VRt.Account [AC]
1074
- * Veeroute Account Panel
1366
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
1075
1367
  *
1076
- * The version of the OpenAPI document: 4.0.173743RC
1077
- * Contact: support@veeroute.com
1368
+ * The version of the OpenAPI document: 4.7.1599
1369
+ * Contact: servicedesk@veeroute.com
1078
1370
  *
1079
1371
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1080
1372
  * https://openapi-generator.tech
@@ -1083,10 +1375,10 @@ const APIS = [AuditService, AuthService, InfoService, QuotaService, ReportsServi
1083
1375
 
1084
1376
  /**
1085
1377
  * VRt.Account [AC]
1086
- * Veeroute Account Panel
1378
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
1087
1379
  *
1088
- * The version of the OpenAPI document: 4.0.173743RC
1089
- * Contact: support@veeroute.com
1380
+ * The version of the OpenAPI document: 4.7.1599
1381
+ * Contact: servicedesk@veeroute.com
1090
1382
  *
1091
1383
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1092
1384
  * https://openapi-generator.tech
@@ -1095,10 +1387,10 @@ const APIS = [AuditService, AuthService, InfoService, QuotaService, ReportsServi
1095
1387
 
1096
1388
  /**
1097
1389
  * VRt.Account [AC]
1098
- * Veeroute Account Panel
1390
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
1099
1391
  *
1100
- * The version of the OpenAPI document: 4.0.173743RC
1101
- * Contact: support@veeroute.com
1392
+ * The version of the OpenAPI document: 4.7.1599
1393
+ * Contact: servicedesk@veeroute.com
1102
1394
  *
1103
1395
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1104
1396
  * https://openapi-generator.tech
@@ -1107,10 +1399,10 @@ const APIS = [AuditService, AuthService, InfoService, QuotaService, ReportsServi
1107
1399
 
1108
1400
  /**
1109
1401
  * VRt.Account [AC]
1110
- * Veeroute Account Panel
1402
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
1111
1403
  *
1112
- * The version of the OpenAPI document: 4.0.173743RC
1113
- * Contact: support@veeroute.com
1404
+ * The version of the OpenAPI document: 4.7.1599
1405
+ * Contact: servicedesk@veeroute.com
1114
1406
  *
1115
1407
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1116
1408
  * https://openapi-generator.tech
@@ -1119,39 +1411,41 @@ const APIS = [AuditService, AuthService, InfoService, QuotaService, ReportsServi
1119
1411
 
1120
1412
  /**
1121
1413
  * VRt.Account [AC]
1122
- * Veeroute Account Panel
1414
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
1123
1415
  *
1124
- * The version of the OpenAPI document: 4.0.173743RC
1125
- * Contact: support@veeroute.com
1416
+ * The version of the OpenAPI document: 4.7.1599
1417
+ * Contact: servicedesk@veeroute.com
1126
1418
  *
1127
1419
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1128
1420
  * https://openapi-generator.tech
1129
1421
  * Do not edit the class manually.
1130
1422
  */
1131
1423
  /**
1132
- * Method name.
1424
+ * Method group name. Uniqueness of points is considered within one group.
1133
1425
  */
1134
- var MethodNameAccount;
1135
- (function (MethodNameAccount) {
1136
- MethodNameAccount["PLAN"] = "PLAN";
1137
- MethodNameAccount["REPLAN"] = "REPLAN";
1138
- MethodNameAccount["ACTUALIZE"] = "ACTUALIZE";
1139
- MethodNameAccount["CONVERT"] = "CONVERT";
1140
- MethodNameAccount["ANALYTICS"] = "ANALYTICS";
1141
- MethodNameAccount["PREDICT"] = "PREDICT";
1142
- MethodNameAccount["VALIDATE"] = "VALIDATE";
1143
- MethodNameAccount["ROUTE"] = "ROUTE";
1144
- MethodNameAccount["MATRIX"] = "MATRIX";
1145
- MethodNameAccount["CLUSTER"] = "CLUSTER";
1146
- })(MethodNameAccount || (MethodNameAccount = {}));
1426
+ var MethodGroupAccount;
1427
+ (function (MethodGroupAccount) {
1428
+ MethodGroupAccount["NOTRACE"] = "NOTRACE";
1429
+ MethodGroupAccount["TRACE"] = "TRACE";
1430
+ MethodGroupAccount["PLAN"] = "PLAN";
1431
+ MethodGroupAccount["ACTUALIZE"] = "ACTUALIZE";
1432
+ MethodGroupAccount["REFINE"] = "REFINE";
1433
+ MethodGroupAccount["CONVERT"] = "CONVERT";
1434
+ MethodGroupAccount["ANALYTICS"] = "ANALYTICS";
1435
+ MethodGroupAccount["PREDICT"] = "PREDICT";
1436
+ MethodGroupAccount["VALIDATE"] = "VALIDATE";
1437
+ MethodGroupAccount["ROUTE"] = "ROUTE";
1438
+ MethodGroupAccount["MATRIX"] = "MATRIX";
1439
+ MethodGroupAccount["PACK"] = "PACK";
1440
+ })(MethodGroupAccount || (MethodGroupAccount = {}));
1147
1441
  ;
1148
1442
 
1149
1443
  /**
1150
1444
  * VRt.Account [AC]
1151
- * Veeroute Account Panel
1445
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
1152
1446
  *
1153
- * The version of the OpenAPI document: 4.0.173743RC
1154
- * Contact: support@veeroute.com
1447
+ * The version of the OpenAPI document: 4.7.1599
1448
+ * Contact: servicedesk@veeroute.com
1155
1449
  *
1156
1450
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1157
1451
  * https://openapi-generator.tech
@@ -1160,10 +1454,10 @@ var MethodNameAccount;
1160
1454
 
1161
1455
  /**
1162
1456
  * VRt.Account [AC]
1163
- * Veeroute Account Panel
1457
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
1164
1458
  *
1165
- * The version of the OpenAPI document: 4.0.173743RC
1166
- * Contact: support@veeroute.com
1459
+ * The version of the OpenAPI document: 4.7.1599
1460
+ * Contact: servicedesk@veeroute.com
1167
1461
  *
1168
1462
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1169
1463
  * https://openapi-generator.tech
@@ -1175,27 +1469,24 @@ var MethodNameAccount;
1175
1469
  var ServiceNameAccount;
1176
1470
  (function (ServiceNameAccount) {
1177
1471
  ServiceNameAccount["UNIVERSAL"] = "UNIVERSAL";
1178
- ServiceNameAccount["DELIVERY"] = "DELIVERY";
1179
- ServiceNameAccount["FIELDSERVICE"] = "FIELDSERVICE";
1180
- ServiceNameAccount["MERCHANDISER"] = "MERCHANDISER";
1181
- ServiceNameAccount["LONGHAUL"] = "LONGHAUL";
1182
1472
  ServiceNameAccount["ROUTING"] = "ROUTING";
1183
- ServiceNameAccount["CLUSTERING"] = "CLUSTERING";
1184
- ServiceNameAccount["PACKER"] = "PACKER";
1185
- ServiceNameAccount["CARGOTIMETABLE"] = "CARGOTIMETABLE";
1186
- ServiceNameAccount["STOCK"] = "STOCK";
1187
- ServiceNameAccount["STUDIO"] = "STUDIO";
1188
1473
  ServiceNameAccount["ACCOUNT"] = "ACCOUNT";
1189
1474
  ServiceNameAccount["ADMIN"] = "ADMIN";
1475
+ ServiceNameAccount["STUDIO"] = "STUDIO";
1476
+ ServiceNameAccount["STOCK"] = "STOCK";
1477
+ ServiceNameAccount["PACKER"] = "PACKER";
1478
+ ServiceNameAccount["LONGHAUL"] = "LONGHAUL";
1479
+ ServiceNameAccount["CLUSTER"] = "CLUSTER";
1480
+ ServiceNameAccount["CARGOTIMETABLE"] = "CARGOTIMETABLE";
1190
1481
  })(ServiceNameAccount || (ServiceNameAccount = {}));
1191
1482
  ;
1192
1483
 
1193
1484
  /**
1194
1485
  * VRt.Account [AC]
1195
- * Veeroute Account Panel
1486
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
1196
1487
  *
1197
- * The version of the OpenAPI document: 4.0.173743RC
1198
- * Contact: support@veeroute.com
1488
+ * The version of the OpenAPI document: 4.7.1599
1489
+ * Contact: servicedesk@veeroute.com
1199
1490
  *
1200
1491
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1201
1492
  * https://openapi-generator.tech
@@ -1204,34 +1495,33 @@ var ServiceNameAccount;
1204
1495
 
1205
1496
  /**
1206
1497
  * VRt.Account [AC]
1207
- * Veeroute Account Panel
1498
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
1208
1499
  *
1209
- * The version of the OpenAPI document: 4.0.173743RC
1210
- * Contact: support@veeroute.com
1500
+ * The version of the OpenAPI document: 4.7.1599
1501
+ * Contact: servicedesk@veeroute.com
1211
1502
  *
1212
1503
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1213
1504
  * https://openapi-generator.tech
1214
1505
  * Do not edit the class manually.
1215
1506
  */
1216
- var TokenValidationAccountRolesEnum;
1217
- (function (TokenValidationAccountRolesEnum) {
1218
- TokenValidationAccountRolesEnum["USER"] = "USER";
1219
- TokenValidationAccountRolesEnum["ADMIN"] = "ADMIN";
1220
- })(TokenValidationAccountRolesEnum || (TokenValidationAccountRolesEnum = {}));
1221
- ;
1222
-
1223
- var UserReportFilterAccountNameEnum;
1224
- (function (UserReportFilterAccountNameEnum) {
1225
- UserReportFilterAccountNameEnum["USAGE_REPORT"] = "UsageReport";
1226
- })(UserReportFilterAccountNameEnum || (UserReportFilterAccountNameEnum = {}));
1507
+ /**
1508
+ * Role.
1509
+ */
1510
+ var UserRoleAccount;
1511
+ (function (UserRoleAccount) {
1512
+ UserRoleAccount["ADMIN"] = "ADMIN";
1513
+ UserRoleAccount["PARTNER"] = "PARTNER";
1514
+ UserRoleAccount["USER"] = "USER";
1515
+ UserRoleAccount["BOT"] = "BOT";
1516
+ })(UserRoleAccount || (UserRoleAccount = {}));
1227
1517
  ;
1228
1518
 
1229
1519
  /**
1230
1520
  * VRt.Account [AC]
1231
- * Veeroute Account Panel
1521
+ * # Description Veeroute Account Panel. ## Entity relationship diagram ![erd](../uml/account.svg)
1232
1522
  *
1233
- * The version of the OpenAPI document: 4.0.173743RC
1234
- * Contact: support@veeroute.com
1523
+ * The version of the OpenAPI document: 4.7.1599
1524
+ * Contact: servicedesk@veeroute.com
1235
1525
  *
1236
1526
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1237
1527
  * https://openapi-generator.tech
@@ -1272,5 +1562,5 @@ LssAccountApiModule.ctorParameters = () => [
1272
1562
  * Generated bundle index. Do not edit.
1273
1563
  */
1274
1564
 
1275
- export { APIS, AuditService, AuthService, BASE_PATH, COLLECTION_FORMATS, Configuration, InfoService, LssAccountApiModule, MethodNameAccount, QuotaService, ReportsService, ServiceNameAccount, StatisticsService, SystemService, TokenValidationAccountRolesEnum, UserReportFilterAccountNameEnum };
1565
+ export { APIS, AuditService, AuthService, BASE_PATH, COLLECTION_FORMATS, Configuration, DataService, InfoService, LssAccountApiModule, MethodGroupAccount, QuotasService, ServiceNameAccount, StatisticsService, SystemService, UserRoleAccount };
1276
1566
  //# sourceMappingURL=veeroute-lss-account-angular.js.map