@veeroute/lss-account-angular 4.0.173861-RC → 4.7.1605

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 (125) hide show
  1. package/README.md +3 -3
  2. package/api/api.d.ts +7 -4
  3. package/api/auditService.d.ts +13 -10
  4. package/api/auditServiceInterface.d.ts +9 -8
  5. package/api/authService.d.ts +24 -15
  6. package/api/authServiceInterface.d.ts +10 -10
  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} +14 -11
  12. package/api/{quotaServiceInterface.d.ts → quotasServiceInterface.d.ts} +5 -5
  13. package/api/statisticsService.d.ts +29 -23
  14. package/api/statisticsServiceInterface.d.ts +11 -11
  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 +630 -248
  18. package/bundles/veeroute-lss-account-angular.umd.js.map +1 -1
  19. package/cfg/audit_operations.json +137 -0
  20. package/cfg/method_groups.json +88 -0
  21. package/esm2015/api/api.js +8 -5
  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 +74 -47
  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 +1 -1
  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 +7 -10
  57. package/esm2015/model/passwordRequest.js +4 -4
  58. package/esm2015/model/quotaBase.js +1 -1
  59. package/esm2015/model/quotasResult.js +1 -1
  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 -18
  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 +633 -258
  70. package/fesm2015/veeroute-lss-account-angular.js.map +1 -1
  71. package/model/accountAuditResult.d.ts +5 -5
  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 +6 -9
  91. package/model/passwordRequest.d.ts +3 -3
  92. package/model/quotaBase.d.ts +3 -3
  93. package/model/quotasResult.d.ts +4 -6
  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/tokenValidationResult.d.ts +5 -8
  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/bundles/veeroute-lss-account-angular.umd.min.js +0 -2
  106. package/bundles/veeroute-lss-account-angular.umd.min.js.map +0 -1
  107. package/esm2015/api/quotaService.js +0 -120
  108. package/esm2015/api/quotaServiceInterface.js +0 -2
  109. package/esm2015/model/accountAction.js +0 -2
  110. package/esm2015/model/accountActionDetail.js +0 -2
  111. package/esm2015/model/dateWindow.js +0 -13
  112. package/esm2015/model/inlineResponse405.js +0 -2
  113. package/esm2015/model/inlineResponse406.js +0 -2
  114. package/esm2015/model/inlineResponse415.js +0 -2
  115. package/esm2015/model/methodName.js +0 -29
  116. package/esm2015/model/quotaAdditional.js +0 -2
  117. package/esm2015/model/traceData.js +0 -2
  118. package/model/accountAction.d.ts +0 -26
  119. package/model/accountActionDetail.d.ts +0 -22
  120. package/model/dateWindow.d.ts +0 -24
  121. package/model/inlineResponse405.d.ts +0 -22
  122. package/model/inlineResponse406.d.ts +0 -22
  123. package/model/inlineResponse415.d.ts +0 -22
  124. package/model/quotaAdditional.d.ts +0 -20
  125. package/model/traceData.d.ts +0 -36
@@ -1,20 +0,0 @@
1
- /**
2
- * VRt.Account [AC]
3
- * # Introduction Veeroute Account Panel.
4
- *
5
- * The version of the OpenAPI document: 4.0.173861RC
6
- * Contact: support@veeroute.com
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { DateWindowAccount } from './dateWindow';
13
- import { QuotaBaseAccount } from './quotaBase';
14
- /**
15
- * Additional quota for the period between dates.
16
- */
17
- export interface QuotaAdditionalAccount {
18
- date_window: DateWindowAccount;
19
- quota: QuotaBaseAccount;
20
- }
@@ -1,36 +0,0 @@
1
- /**
2
- * VRt.Account [AC]
3
- * # Introduction Veeroute Account Panel.
4
- *
5
- * The version of the OpenAPI document: 4.0.173861RC
6
- * Contact: support@veeroute.com
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { MethodNameAccount } from './methodName';
13
- import { ServiceNameAccount } from './serviceName';
14
- /**
15
- * Data for request tracing.
16
- */
17
- export interface TraceDataAccount {
18
- /**
19
- * Unique operation code.
20
- */
21
- code: string;
22
- /**
23
- * Client ID.
24
- */
25
- client?: string;
26
- /**
27
- * Server ID.
28
- */
29
- server?: string;
30
- service?: ServiceNameAccount;
31
- method?: MethodNameAccount;
32
- /**
33
- * Date and time service method run in the [RFC 3339, section 5.6 (ISO8601)](https://tools.ietf.org/html/rfc3339#section-5.6) format.
34
- */
35
- time?: string;
36
- }