@veeroute/lss-account-angular 4.0.173743-RC → 4.7.1599
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/api/api.d.ts +7 -7
- package/api/auditService.d.ts +17 -14
- package/api/auditServiceInterface.d.ts +11 -10
- package/api/authService.d.ts +27 -18
- package/api/authServiceInterface.d.ts +11 -11
- package/api/dataService.d.ts +82 -0
- package/api/dataServiceInterface.d.ts +45 -0
- package/api/infoService.d.ts +20 -14
- package/api/infoServiceInterface.d.ts +8 -8
- package/api/{quotaService.d.ts → quotasService.d.ts} +17 -14
- package/api/{quotaServiceInterface.d.ts → quotasServiceInterface.d.ts} +7 -7
- package/api/statisticsService.d.ts +30 -8
- package/api/statisticsServiceInterface.d.ts +17 -7
- package/api/systemService.d.ts +14 -8
- package/api/systemServiceInterface.d.ts +5 -5
- package/bundles/veeroute-lss-account-angular.umd.js +588 -294
- package/bundles/veeroute-lss-account-angular.umd.js.map +1 -1
- package/cfg/audit_operations.json +143 -0
- package/cfg/method_groups.json +88 -0
- package/esm2015/api/api.js +8 -8
- package/esm2015/api/auditService.js +48 -30
- package/esm2015/api/auditServiceInterface.js +1 -1
- package/esm2015/api/authService.js +86 -46
- package/esm2015/api/authServiceInterface.js +1 -1
- package/esm2015/api/dataService.js +236 -0
- package/esm2015/api/dataServiceInterface.js +2 -0
- package/esm2015/api/infoService.js +63 -36
- package/esm2015/api/infoServiceInterface.js +1 -1
- package/esm2015/api/quotasService.js +133 -0
- package/esm2015/api/quotasServiceInterface.js +2 -0
- package/esm2015/api/statisticsService.js +98 -28
- package/esm2015/api/statisticsServiceInterface.js +1 -1
- package/esm2015/api/systemService.js +53 -26
- package/esm2015/api/systemServiceInterface.js +1 -1
- package/esm2015/api.module.js +1 -1
- package/esm2015/model/accountAuditResult.js +2 -0
- package/esm2015/model/accountInfo.js +4 -4
- package/esm2015/model/auditAction.js +2 -0
- package/esm2015/model/auditActionStatistics.js +13 -0
- package/esm2015/model/auditStats.js +1 -1
- package/esm2015/model/auditStatsDetail.js +4 -4
- package/esm2015/model/checkResult.js +4 -4
- package/esm2015/model/dateStatistics.js +1 -1
- package/esm2015/model/inlineResponse400.js +1 -1
- package/esm2015/model/inlineResponse401.js +1 -1
- package/esm2015/model/inlineResponse402.js +1 -1
- package/esm2015/model/inlineResponse403.js +1 -1
- package/esm2015/model/inlineResponse404.js +1 -1
- package/esm2015/model/inlineResponse404Detail.js +2 -0
- package/esm2015/model/inlineResponse429.js +1 -1
- package/esm2015/model/inlineResponse500.js +1 -1
- package/esm2015/model/methodGroup.js +31 -0
- package/esm2015/model/methodQuota.js +1 -1
- package/esm2015/model/methodStatistics.js +1 -1
- package/esm2015/model/models.js +11 -16
- package/esm2015/model/passwordRequest.js +4 -4
- package/esm2015/model/quotaBase.js +2 -0
- package/esm2015/model/quotasResult.js +2 -0
- package/esm2015/model/serviceName.js +10 -13
- package/esm2015/model/serviceQuota.js +1 -1
- package/esm2015/model/serviceStatistics.js +1 -1
- package/esm2015/model/tokenRequest.js +4 -4
- package/esm2015/model/tokenValidationResult.js +2 -0
- package/esm2015/model/tracedata.js +2 -0
- package/esm2015/model/userRole.js +23 -0
- package/esm2015/model/userStatistics.js +1 -1
- package/esm2015/model/versionResult.js +4 -4
- package/fesm2015/veeroute-lss-account-angular.js +586 -296
- package/fesm2015/veeroute-lss-account-angular.js.map +1 -1
- package/model/accountAuditResult.d.ts +23 -0
- package/model/accountInfo.d.ts +8 -8
- package/model/auditAction.d.ts +30 -0
- package/model/auditActionStatistics.d.ts +24 -0
- package/model/auditStats.d.ts +3 -3
- package/model/auditStatsDetail.d.ts +3 -3
- package/model/checkResult.d.ts +3 -3
- package/model/dateStatistics.d.ts +3 -3
- package/model/inlineResponse400.d.ts +6 -6
- package/model/inlineResponse401.d.ts +6 -6
- package/model/inlineResponse402.d.ts +6 -6
- package/model/inlineResponse403.d.ts +7 -7
- package/model/inlineResponse404.d.ts +7 -7
- package/model/inlineResponse404Detail.d.ts +18 -0
- package/model/inlineResponse429.d.ts +6 -6
- package/model/inlineResponse500.d.ts +6 -6
- package/model/{methodName.d.ts → methodGroup.d.ts} +9 -7
- package/model/methodQuota.d.ts +7 -7
- package/model/methodStatistics.d.ts +5 -5
- package/model/models.d.ts +10 -15
- package/model/passwordRequest.d.ts +3 -3
- package/model/{quota.d.ts → quotaBase.d.ts} +4 -4
- package/model/quotasResult.d.ts +18 -0
- package/model/serviceName.d.ts +10 -13
- package/model/serviceQuota.d.ts +4 -4
- package/model/serviceStatistics.d.ts +3 -3
- package/model/tokenRequest.d.ts +4 -4
- package/model/{tokenValidation.d.ts → tokenValidationResult.d.ts} +6 -9
- package/model/tracedata.d.ts +38 -0
- package/model/userRole.d.ts +20 -0
- package/model/userStatistics.d.ts +4 -4
- package/model/versionResult.d.ts +3 -3
- package/package.json +8 -9
- package/veeroute-lss-account-angular.metadata.json +1 -1
- package/api/reportsService.d.ts +0 -41
- package/api/reportsServiceInterface.d.ts +0 -28
- package/bundles/veeroute-lss-account-angular.umd.min.js +0 -2
- package/bundles/veeroute-lss-account-angular.umd.min.js.map +0 -1
- package/esm2015/api/quotaService.js +0 -120
- package/esm2015/api/quotaServiceInterface.js +0 -2
- package/esm2015/api/reportsService.js +0 -132
- package/esm2015/api/reportsServiceInterface.js +0 -2
- package/esm2015/model/accountAction.js +0 -2
- package/esm2015/model/additionalQuota.js +0 -2
- package/esm2015/model/dateWindow.js +0 -13
- package/esm2015/model/inlineResponse405.js +0 -2
- package/esm2015/model/inlineResponse406.js +0 -2
- package/esm2015/model/inlineResponse415.js +0 -2
- package/esm2015/model/methodName.js +0 -29
- package/esm2015/model/quota.js +0 -2
- package/esm2015/model/tokenValidation.js +0 -18
- package/esm2015/model/traceData.js +0 -2
- package/esm2015/model/userActionDetail.js +0 -2
- package/esm2015/model/userAuditResult.js +0 -2
- package/esm2015/model/userQuotaResult.js +0 -2
- package/esm2015/model/userReportFilter.js +0 -6
- package/esm2015/model/userStatisticsFilter.js +0 -2
- package/model/accountAction.d.ts +0 -26
- package/model/additionalQuota.d.ts +0 -20
- package/model/dateWindow.d.ts +0 -24
- package/model/inlineResponse405.d.ts +0 -22
- package/model/inlineResponse406.d.ts +0 -22
- package/model/inlineResponse415.d.ts +0 -22
- package/model/traceData.d.ts +0 -36
- package/model/userActionDetail.d.ts +0 -22
- package/model/userAuditResult.d.ts +0 -23
- package/model/userQuotaResult.d.ts +0 -20
- package/model/userReportFilter.d.ts +0 -25
- package/model/userStatisticsFilter.d.ts +0 -18
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Account [AC]
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { AuditStatsAccount } from './auditStats';
|
|
13
|
+
import { AuditActionAccount } from './auditAction';
|
|
14
|
+
/**
|
|
15
|
+
* User actions request result.
|
|
16
|
+
*/
|
|
17
|
+
export interface AccountAuditResultAccount {
|
|
18
|
+
/**
|
|
19
|
+
* User actions list.
|
|
20
|
+
*/
|
|
21
|
+
actions: Array<AuditActionAccount>;
|
|
22
|
+
statistics: AuditStatsAccount;
|
|
23
|
+
}
|
package/model/accountInfo.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -14,25 +14,25 @@
|
|
|
14
14
|
*/
|
|
15
15
|
export interface AccountInfoAccount {
|
|
16
16
|
/**
|
|
17
|
-
* Login,
|
|
17
|
+
* Login, unique identifier.
|
|
18
18
|
*/
|
|
19
19
|
username: string;
|
|
20
20
|
/**
|
|
21
21
|
* Full name of user.
|
|
22
22
|
*/
|
|
23
|
-
name?: string;
|
|
23
|
+
name?: string | null;
|
|
24
24
|
/**
|
|
25
25
|
* User mail address.
|
|
26
26
|
*/
|
|
27
|
-
email?: string;
|
|
27
|
+
email?: string | null;
|
|
28
28
|
/**
|
|
29
29
|
* User phone.
|
|
30
30
|
*/
|
|
31
|
-
phone?: string;
|
|
31
|
+
phone?: string | null;
|
|
32
32
|
/**
|
|
33
33
|
* Company key.
|
|
34
34
|
*/
|
|
35
|
-
company_key
|
|
35
|
+
company_key: string;
|
|
36
36
|
/**
|
|
37
37
|
* Basic time zone used for statistics.
|
|
38
38
|
*/
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Account [AC]
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { AuditActionStatisticsAccount } from './auditActionStatistics';
|
|
13
|
+
import { TracedataAccount } from './tracedata';
|
|
14
|
+
import { MethodGroupAccount } from './methodGroup';
|
|
15
|
+
/**
|
|
16
|
+
* User action.
|
|
17
|
+
*/
|
|
18
|
+
export interface AuditActionAccount {
|
|
19
|
+
/**
|
|
20
|
+
* Login, unique identifier.
|
|
21
|
+
*/
|
|
22
|
+
username: string;
|
|
23
|
+
/**
|
|
24
|
+
* Company key.
|
|
25
|
+
*/
|
|
26
|
+
company_key: string;
|
|
27
|
+
tracedata: TracedataAccount;
|
|
28
|
+
method_group: MethodGroupAccount;
|
|
29
|
+
statistics: AuditActionStatisticsAccount;
|
|
30
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Account [AC]
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* Detail user action statistics.
|
|
14
|
+
*/
|
|
15
|
+
export interface AuditActionStatisticsAccount {
|
|
16
|
+
/**
|
|
17
|
+
* Non-unique points per request.
|
|
18
|
+
*/
|
|
19
|
+
points_count?: number;
|
|
20
|
+
/**
|
|
21
|
+
* Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations).
|
|
22
|
+
*/
|
|
23
|
+
duration?: string;
|
|
24
|
+
}
|
package/model/auditStats.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/model/checkResult.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { TracedataAccount } from './tracedata';
|
|
13
13
|
/**
|
|
14
14
|
* Error details.
|
|
15
15
|
*/
|
|
16
16
|
export interface InlineResponse400Account {
|
|
17
|
-
tracedata
|
|
17
|
+
tracedata: TracedataAccount;
|
|
18
18
|
/**
|
|
19
19
|
* Error message.
|
|
20
20
|
*/
|
|
21
|
-
message?: string;
|
|
21
|
+
message?: string | null;
|
|
22
22
|
}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { TracedataAccount } from './tracedata';
|
|
13
13
|
/**
|
|
14
14
|
* Error details.
|
|
15
15
|
*/
|
|
16
16
|
export interface InlineResponse401Account {
|
|
17
|
-
tracedata
|
|
17
|
+
tracedata: TracedataAccount;
|
|
18
18
|
/**
|
|
19
19
|
* Error message.
|
|
20
20
|
*/
|
|
21
|
-
message?: string;
|
|
21
|
+
message?: string | null;
|
|
22
22
|
}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { TracedataAccount } from './tracedata';
|
|
13
13
|
/**
|
|
14
14
|
* Error details.
|
|
15
15
|
*/
|
|
16
16
|
export interface InlineResponse402Account {
|
|
17
|
-
tracedata
|
|
17
|
+
tracedata: TracedataAccount;
|
|
18
18
|
/**
|
|
19
19
|
* Error message.
|
|
20
20
|
*/
|
|
21
|
-
message?: string;
|
|
21
|
+
message?: string | null;
|
|
22
22
|
}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { TracedataAccount } from './tracedata';
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Error details.
|
|
15
15
|
*/
|
|
16
16
|
export interface InlineResponse403Account {
|
|
17
|
-
tracedata
|
|
17
|
+
tracedata: TracedataAccount;
|
|
18
18
|
/**
|
|
19
19
|
* Error message.
|
|
20
20
|
*/
|
|
21
|
-
message?: string;
|
|
21
|
+
message?: string | null;
|
|
22
22
|
}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { InlineResponse404DetailAccount } from './inlineResponse404Detail';
|
|
13
13
|
/**
|
|
14
14
|
* Error details.
|
|
15
15
|
*/
|
|
16
16
|
export interface InlineResponse404Account {
|
|
17
|
-
tracedata?: TraceDataAccount;
|
|
18
17
|
/**
|
|
19
|
-
*
|
|
18
|
+
* Resource identifier.
|
|
20
19
|
*/
|
|
21
|
-
|
|
20
|
+
resource_id?: string | null;
|
|
21
|
+
detail?: InlineResponse404DetailAccount | null;
|
|
22
22
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Account [AC]
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { TracedataAccount } from './tracedata';
|
|
13
|
+
/**
|
|
14
|
+
* Resource details.
|
|
15
|
+
*/
|
|
16
|
+
export interface InlineResponse404DetailAccount {
|
|
17
|
+
tracedata: TracedataAccount;
|
|
18
|
+
}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { TracedataAccount } from './tracedata';
|
|
13
13
|
/**
|
|
14
14
|
* Error details.
|
|
15
15
|
*/
|
|
16
16
|
export interface InlineResponse429Account {
|
|
17
|
-
tracedata
|
|
17
|
+
tracedata: TracedataAccount;
|
|
18
18
|
/**
|
|
19
19
|
* Error Message.
|
|
20
20
|
*/
|
|
21
|
-
message?: string;
|
|
21
|
+
message?: string | null;
|
|
22
22
|
}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { TracedataAccount } from './tracedata';
|
|
13
13
|
/**
|
|
14
14
|
* Error details.
|
|
15
15
|
*/
|
|
16
16
|
export interface InlineResponse500Account {
|
|
17
|
-
tracedata
|
|
17
|
+
tracedata: TracedataAccount;
|
|
18
18
|
/**
|
|
19
19
|
* Error message.
|
|
20
20
|
*/
|
|
21
|
-
message?: string;
|
|
21
|
+
message?: string | null;
|
|
22
22
|
}
|
|
@@ -1,26 +1,28 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
-
* Method name.
|
|
13
|
+
* Method group name. Uniqueness of points is considered within one group.
|
|
14
14
|
*/
|
|
15
|
-
export declare enum
|
|
15
|
+
export declare enum MethodGroupAccount {
|
|
16
|
+
NOTRACE = "NOTRACE",
|
|
17
|
+
TRACE = "TRACE",
|
|
16
18
|
PLAN = "PLAN",
|
|
17
|
-
REPLAN = "REPLAN",
|
|
18
19
|
ACTUALIZE = "ACTUALIZE",
|
|
20
|
+
REFINE = "REFINE",
|
|
19
21
|
CONVERT = "CONVERT",
|
|
20
22
|
ANALYTICS = "ANALYTICS",
|
|
21
23
|
PREDICT = "PREDICT",
|
|
22
24
|
VALIDATE = "VALIDATE",
|
|
23
25
|
ROUTE = "ROUTE",
|
|
24
26
|
MATRIX = "MATRIX",
|
|
25
|
-
|
|
27
|
+
PACK = "PACK"
|
|
26
28
|
}
|
package/model/methodQuota.d.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { MethodGroupAccount } from './methodGroup';
|
|
13
13
|
/**
|
|
14
|
-
* Quota for the service method. If any of the quotas are exceeded, the request is not returned with the quota exceeded error.
|
|
14
|
+
* Quota for the service method group. If any of the quotas are exceeded, the request is not returned with the quota exceeded error.
|
|
15
15
|
*/
|
|
16
16
|
export interface MethodQuotaAccount {
|
|
17
|
-
|
|
17
|
+
method_group: MethodGroupAccount;
|
|
18
18
|
/**
|
|
19
19
|
* Maximum number of non-unique points per request.
|
|
20
20
|
*/
|
|
@@ -26,7 +26,7 @@ export interface MethodQuotaAccount {
|
|
|
26
26
|
/**
|
|
27
27
|
* The maximum total number of non-unique points for the specified time period, multiple of a day. If the time period equals to a day, this parameter is not taken into account, since it is responsible for one day
|
|
28
28
|
*/
|
|
29
|
-
points_per_date_window?: number;
|
|
29
|
+
points_per_date_window?: number | null;
|
|
30
30
|
/**
|
|
31
31
|
* The maximum total number of concurrent method execution.
|
|
32
32
|
*/
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { MethodGroupAccount } from './methodGroup';
|
|
13
13
|
/**
|
|
14
14
|
* Usage statistics of the service method.
|
|
15
15
|
*/
|
|
16
16
|
export interface MethodStatisticsAccount {
|
|
17
|
-
|
|
17
|
+
method_group: MethodGroupAccount;
|
|
18
18
|
/**
|
|
19
19
|
* Unique points per day.
|
|
20
20
|
*/
|
package/model/models.d.ts
CHANGED
|
@@ -1,36 +1,31 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './accountAuditResult';
|
|
2
2
|
export * from './accountInfo';
|
|
3
|
-
export * from './
|
|
3
|
+
export * from './auditAction';
|
|
4
|
+
export * from './auditActionStatistics';
|
|
4
5
|
export * from './auditStats';
|
|
5
6
|
export * from './auditStatsDetail';
|
|
6
7
|
export * from './checkResult';
|
|
7
8
|
export * from './dateStatistics';
|
|
8
|
-
export * from './dateWindow';
|
|
9
9
|
export * from './inlineResponse400';
|
|
10
10
|
export * from './inlineResponse401';
|
|
11
11
|
export * from './inlineResponse402';
|
|
12
12
|
export * from './inlineResponse403';
|
|
13
13
|
export * from './inlineResponse404';
|
|
14
|
-
export * from './
|
|
15
|
-
export * from './inlineResponse406';
|
|
16
|
-
export * from './inlineResponse415';
|
|
14
|
+
export * from './inlineResponse404Detail';
|
|
17
15
|
export * from './inlineResponse429';
|
|
18
16
|
export * from './inlineResponse500';
|
|
19
|
-
export * from './
|
|
17
|
+
export * from './methodGroup';
|
|
20
18
|
export * from './methodQuota';
|
|
21
19
|
export * from './methodStatistics';
|
|
22
20
|
export * from './passwordRequest';
|
|
23
|
-
export * from './
|
|
21
|
+
export * from './quotaBase';
|
|
22
|
+
export * from './quotasResult';
|
|
24
23
|
export * from './serviceName';
|
|
25
24
|
export * from './serviceQuota';
|
|
26
25
|
export * from './serviceStatistics';
|
|
27
26
|
export * from './tokenRequest';
|
|
28
|
-
export * from './
|
|
29
|
-
export * from './
|
|
30
|
-
export * from './
|
|
31
|
-
export * from './userAuditResult';
|
|
32
|
-
export * from './userQuotaResult';
|
|
33
|
-
export * from './userReportFilter';
|
|
27
|
+
export * from './tokenValidationResult';
|
|
28
|
+
export * from './tracedata';
|
|
29
|
+
export * from './userRole';
|
|
34
30
|
export * from './userStatistics';
|
|
35
|
-
export * from './userStatisticsFilter';
|
|
36
31
|
export * from './versionResult';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -13,7 +13,7 @@ import { ServiceQuotaAccount } from './serviceQuota';
|
|
|
13
13
|
/**
|
|
14
14
|
* All services quota.
|
|
15
15
|
*/
|
|
16
|
-
export interface
|
|
16
|
+
export interface QuotaBaseAccount {
|
|
17
17
|
/**
|
|
18
18
|
* All services quota list.
|
|
19
19
|
*/
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Account [AC]
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { QuotaBaseAccount } from './quotaBase';
|
|
13
|
+
/**
|
|
14
|
+
* Quota request result.
|
|
15
|
+
*/
|
|
16
|
+
export interface QuotasResultAccount {
|
|
17
|
+
base: QuotaBaseAccount;
|
|
18
|
+
}
|
package/model/serviceName.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
3
|
+
* # Description Veeroute Account Panel. ## Entity relationship diagram 
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
6
|
-
* Contact:
|
|
5
|
+
* The version of the OpenAPI document: 4.7.1599
|
|
6
|
+
* Contact: servicedesk@veeroute.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -14,16 +14,13 @@
|
|
|
14
14
|
*/
|
|
15
15
|
export declare enum ServiceNameAccount {
|
|
16
16
|
UNIVERSAL = "UNIVERSAL",
|
|
17
|
-
DELIVERY = "DELIVERY",
|
|
18
|
-
FIELDSERVICE = "FIELDSERVICE",
|
|
19
|
-
MERCHANDISER = "MERCHANDISER",
|
|
20
|
-
LONGHAUL = "LONGHAUL",
|
|
21
17
|
ROUTING = "ROUTING",
|
|
22
|
-
CLUSTERING = "CLUSTERING",
|
|
23
|
-
PACKER = "PACKER",
|
|
24
|
-
CARGOTIMETABLE = "CARGOTIMETABLE",
|
|
25
|
-
STOCK = "STOCK",
|
|
26
|
-
STUDIO = "STUDIO",
|
|
27
18
|
ACCOUNT = "ACCOUNT",
|
|
28
|
-
ADMIN = "ADMIN"
|
|
19
|
+
ADMIN = "ADMIN",
|
|
20
|
+
STUDIO = "STUDIO",
|
|
21
|
+
STOCK = "STOCK",
|
|
22
|
+
PACKER = "PACKER",
|
|
23
|
+
LONGHAUL = "LONGHAUL",
|
|
24
|
+
CLUSTER = "CLUSTER",
|
|
25
|
+
CARGOTIMETABLE = "CARGOTIMETABLE"
|
|
29
26
|
}
|