@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
package/model/serviceQuota.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
|
|
@@ -17,7 +17,7 @@ import { MethodQuotaAccount } from './methodQuota';
|
|
|
17
17
|
export interface ServiceQuotaAccount {
|
|
18
18
|
service: ServiceNameAccount;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* List of quotas for a group of methods.
|
|
21
21
|
*/
|
|
22
22
|
methods: Array<MethodQuotaAccount>;
|
|
23
23
|
}
|
|
@@ -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/tokenRequest.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,7 +14,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
export interface TokenRequestAccount {
|
|
16
16
|
/**
|
|
17
|
-
* Login.
|
|
17
|
+
* Login, unique identifier.
|
|
18
18
|
*/
|
|
19
19
|
username: string;
|
|
20
20
|
/**
|
|
@@ -1,18 +1,19 @@
|
|
|
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 { UserRoleAccount } from './userRole';
|
|
12
13
|
/**
|
|
13
14
|
* Token validation result.
|
|
14
15
|
*/
|
|
15
|
-
export interface
|
|
16
|
+
export interface TokenValidationResultAccount {
|
|
16
17
|
/**
|
|
17
18
|
* Token status.
|
|
18
19
|
*/
|
|
@@ -20,9 +21,5 @@ export interface TokenValidationAccount {
|
|
|
20
21
|
/**
|
|
21
22
|
* List of user roles.
|
|
22
23
|
*/
|
|
23
|
-
roles?: Array<
|
|
24
|
-
}
|
|
25
|
-
export declare enum TokenValidationAccountRolesEnum {
|
|
26
|
-
USER = "USER",
|
|
27
|
-
ADMIN = "ADMIN"
|
|
24
|
+
roles?: Array<UserRoleAccount>;
|
|
28
25
|
}
|
|
@@ -0,0 +1,38 @@
|
|
|
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 { ServiceNameAccount } from './serviceName';
|
|
13
|
+
/**
|
|
14
|
+
* Data for request tracing.
|
|
15
|
+
*/
|
|
16
|
+
export interface TracedataAccount {
|
|
17
|
+
/**
|
|
18
|
+
* Unique process identifier. If an asynchronous process is running, then the code for it will be the same, although other fields may differ.
|
|
19
|
+
*/
|
|
20
|
+
code: string;
|
|
21
|
+
/**
|
|
22
|
+
* The unique identifier of the client (`company_key` + `__` + `username`) that made the request.
|
|
23
|
+
*/
|
|
24
|
+
client: string;
|
|
25
|
+
/**
|
|
26
|
+
* Server identifier.
|
|
27
|
+
*/
|
|
28
|
+
server: string;
|
|
29
|
+
service: ServiceNameAccount;
|
|
30
|
+
/**
|
|
31
|
+
* Operation identifier.
|
|
32
|
+
*/
|
|
33
|
+
operation: string;
|
|
34
|
+
/**
|
|
35
|
+
* Date and time service method run in the [RFC 3339, section 5.6 (ISO 8601)](https://tools.ietf.org/html/rfc3339#section-5.6) format.
|
|
36
|
+
*/
|
|
37
|
+
time: string;
|
|
38
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
* Role.
|
|
14
|
+
*/
|
|
15
|
+
export declare enum UserRoleAccount {
|
|
16
|
+
ADMIN = "ADMIN",
|
|
17
|
+
PARTNER = "PARTNER",
|
|
18
|
+
USER = "USER",
|
|
19
|
+
BOT = "BOT"
|
|
20
|
+
}
|
|
@@ -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
|
|
@@ -15,7 +15,7 @@ import { DateStatisticsAccount } from './dateStatistics';
|
|
|
15
15
|
*/
|
|
16
16
|
export interface UserStatisticsAccount {
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* Login, unique identifier.
|
|
19
19
|
*/
|
|
20
20
|
username: string;
|
|
21
21
|
/**
|
package/model/versionResult.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
|
package/package.json
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veeroute/lss-account-angular",
|
|
3
|
-
"version": "4.
|
|
4
|
-
"description": "OpenAPI client for
|
|
3
|
+
"version": "4.7.1599",
|
|
4
|
+
"description": "OpenAPI client for @veeroute/lss-account-angular",
|
|
5
5
|
"author": "Veeroute Team",
|
|
6
6
|
"keywords": [
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"logistics"
|
|
10
|
-
"veeroute"
|
|
7
|
+
"veeroute",
|
|
8
|
+
"openapi",
|
|
9
|
+
"logistics"
|
|
11
10
|
],
|
|
12
|
-
"license": "
|
|
11
|
+
"license": "Veeroute",
|
|
13
12
|
"peerDependencies": {
|
|
14
|
-
"@angular/core": "^
|
|
13
|
+
"@angular/core": "^12.2.7",
|
|
15
14
|
"rxjs": "^6.6.0"
|
|
16
15
|
},
|
|
17
16
|
"main": "bundles/veeroute-lss-account-angular.umd.js",
|
|
@@ -23,6 +22,6 @@
|
|
|
23
22
|
"metadata": "veeroute-lss-account-angular.metadata.json",
|
|
24
23
|
"sideEffects": false,
|
|
25
24
|
"dependencies": {
|
|
26
|
-
"tslib": "^2.
|
|
25
|
+
"tslib": "^2.2.0"
|
|
27
26
|
}
|
|
28
27
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"__symbolic":"module","version":4,"metadata":{"APIS":[{"__symbolic":"reference","name":"AuditService"},{"__symbolic":"reference","name":"AuthService"},{"__symbolic":"reference","name":"InfoService"},{"__symbolic":"reference","name":"QuotaService"},{"__symbolic":"reference","name":"ReportsService"},{"__symbolic":"reference","name":"StatisticsService"},{"__symbolic":"reference","name":"SystemService"}],"AuditService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":40,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":50,"character":51}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":50,"character":62},"arguments":[{"__symbolic":"reference","name":"BASE_PATH"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":50,"character":99}}]],"parameters":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":50,"character":38},{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"Configuration"}]}],"addToHttpParams":[{"__symbolic":"method"}],"addToHttpParamsRecursive":[{"__symbolic":"method"}],"readAccountAuditData":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"ReadAccountAuditDataRequestParams":{"__symbolic":"interface"},"AuditServiceInterface":{"__symbolic":"interface"},"AuthService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":42,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":52,"character":51}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":52,"character":62},"arguments":[{"__symbolic":"reference","name":"BASE_PATH"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":52,"character":99}}]],"parameters":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":52,"character":38},{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"Configuration"}]}],"addToHttpParams":[{"__symbolic":"method"}],"addToHttpParamsRecursive":[{"__symbolic":"method"}],"changePassword":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}],"generateToken":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}],"validateToken":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"ChangePasswordRequestParams":{"__symbolic":"interface"},"GenerateTokenRequestParams":{"__symbolic":"interface"},"ValidateTokenRequestParams":{"__symbolic":"interface"},"AuthServiceInterface":{"__symbolic":"interface"},"InfoService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":38,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":48,"character":51}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":48,"character":62},"arguments":[{"__symbolic":"reference","name":"BASE_PATH"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":48,"character":99}}]],"parameters":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":48,"character":38},{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"Configuration"}]}],"addToHttpParams":[{"__symbolic":"method"}],"addToHttpParamsRecursive":[{"__symbolic":"method"}],"readAccountInfo":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}],"updateAccountInfo":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"UpdateAccountInfoRequestParams":{"__symbolic":"interface"},"InfoServiceInterface":{"__symbolic":"interface"},"QuotaService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":36,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":46,"character":51}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":46,"character":62},"arguments":[{"__symbolic":"reference","name":"BASE_PATH"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":46,"character":99}}]],"parameters":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":46,"character":38},{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"Configuration"}]}],"addToHttpParams":[{"__symbolic":"method"}],"addToHttpParamsRecursive":[{"__symbolic":"method"}],"readQuota":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"QuotaServiceInterface":{"__symbolic":"interface"},"ReportsService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":38,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":48,"character":51}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":48,"character":62},"arguments":[{"__symbolic":"reference","name":"BASE_PATH"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":48,"character":99}}]],"parameters":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":48,"character":38},{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"Configuration"}]}],"addToHttpParams":[{"__symbolic":"method"}],"addToHttpParamsRecursive":[{"__symbolic":"method"}],"generateReport":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"GenerateReportRequestParams":{"__symbolic":"interface"},"ReportsServiceInterface":{"__symbolic":"interface"},"StatisticsService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":38,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":48,"character":51}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":48,"character":62},"arguments":[{"__symbolic":"reference","name":"BASE_PATH"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":48,"character":99}}]],"parameters":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":48,"character":38},{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"Configuration"}]}],"addToHttpParams":[{"__symbolic":"method"}],"addToHttpParamsRecursive":[{"__symbolic":"method"}],"generateStatistics":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"GenerateStatisticsRequestParams":{"__symbolic":"interface"},"StatisticsServiceInterface":{"__symbolic":"interface"},"SystemService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":33,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":43,"character":51}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":43,"character":62},"arguments":[{"__symbolic":"reference","name":"BASE_PATH"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":43,"character":99}}]],"parameters":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":43,"character":38},{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"Configuration"}]}],"addToHttpParams":[{"__symbolic":"method"}],"addToHttpParamsRecursive":[{"__symbolic":"method"}],"check":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}],"version":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"SystemServiceInterface":{"__symbolic":"interface"},"AccountActionAccount":{"__symbolic":"interface"},"AccountInfoAccount":{"__symbolic":"interface"},"AdditionalQuotaAccount":{"__symbolic":"interface"},"AuditStatsAccount":{"__symbolic":"interface"},"AuditStatsDetailAccount":{"__symbolic":"interface"},"CheckResultAccount":{"__symbolic":"interface"},"DateStatisticsAccount":{"__symbolic":"interface"},"DateWindowAccount":{"__symbolic":"interface"},"InlineResponse400Account":{"__symbolic":"interface"},"InlineResponse401Account":{"__symbolic":"interface"},"InlineResponse402Account":{"__symbolic":"interface"},"InlineResponse403Account":{"__symbolic":"interface"},"InlineResponse404Account":{"__symbolic":"interface"},"InlineResponse405Account":{"__symbolic":"interface"},"InlineResponse406Account":{"__symbolic":"interface"},"InlineResponse415Account":{"__symbolic":"interface"},"InlineResponse429Account":{"__symbolic":"interface"},"InlineResponse500Account":{"__symbolic":"interface"},"MethodNameAccount":{"PLAN":"PLAN","REPLAN":"REPLAN","ACTUALIZE":"ACTUALIZE","CONVERT":"CONVERT","ANALYTICS":"ANALYTICS","PREDICT":"PREDICT","VALIDATE":"VALIDATE","ROUTE":"ROUTE","MATRIX":"MATRIX","CLUSTER":"CLUSTER"},"MethodQuotaAccount":{"__symbolic":"interface"},"MethodStatisticsAccount":{"__symbolic":"interface"},"PasswordRequestAccount":{"__symbolic":"interface"},"QuotaAccount":{"__symbolic":"interface"},"ServiceNameAccount":{"UNIVERSAL":"UNIVERSAL","DELIVERY":"DELIVERY","FIELDSERVICE":"FIELDSERVICE","MERCHANDISER":"MERCHANDISER","LONGHAUL":"LONGHAUL","ROUTING":"ROUTING","CLUSTERING":"CLUSTERING","PACKER":"PACKER","CARGOTIMETABLE":"CARGOTIMETABLE","STOCK":"STOCK","STUDIO":"STUDIO","ACCOUNT":"ACCOUNT","ADMIN":"ADMIN"},"ServiceQuotaAccount":{"__symbolic":"interface"},"ServiceStatisticsAccount":{"__symbolic":"interface"},"TokenRequestAccount":{"__symbolic":"interface"},"TokenValidationAccount":{"__symbolic":"interface"},"TokenValidationAccountRolesEnum":{"USER":"USER","ADMIN":"ADMIN"},"TraceDataAccount":{"__symbolic":"interface"},"UserActionDetailAccount":{"__symbolic":"interface"},"UserAuditResultAccount":{"__symbolic":"interface"},"UserQuotaResultAccount":{"__symbolic":"interface"},"UserReportFilterAccount":{"__symbolic":"interface"},"UserReportFilterAccountNameEnum":{"USAGE_REPORT":"UsageReport"},"UserStatisticsAccount":{"__symbolic":"interface"},"UserStatisticsFilterAccount":{"__symbolic":"interface"},"VersionResultAccount":{"__symbolic":"interface"},"BASE_PATH":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":2,"character":29},"arguments":["basePath"]},"COLLECTION_FORMATS":{"csv":",","tsv":" ","ssv":" ","pipes":"|","$quoted$":["csv","tsv","ssv","pipes"]},"ConfigurationParameters":{"__symbolic":"interface"},"Configuration":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"any"}]}],"selectHeaderContentType":[{"__symbolic":"method"}],"selectHeaderAccept":[{"__symbolic":"method"}],"isJsonMime":[{"__symbolic":"method"}],"lookupCredential":[{"__symbolic":"method"}]}},"LssAccountApiModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":12,"character":1},"arguments":[{"imports":[],"declarations":[],"exports":[],"providers":[]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":26,"character":18}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf","line":26,"character":30}}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":27,"character":18}}]],"parameters":[{"__symbolic":"reference","name":"LssAccountApiModule"},{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":27,"character":35}]}]},"statics":{"forRoot":{"__symbolic":"function","parameters":["configurationFactory"],"value":{"ngModule":{"__symbolic":"reference","name":"LssAccountApiModule"},"providers":[{"provide":{"__symbolic":"reference","name":"Configuration"},"useFactory":{"__symbolic":"reference","name":"configurationFactory"}}]}}}}},"origins":{"APIS":"./api/api","AuditService":"./api/auditService","ReadAccountAuditDataRequestParams":"./api/auditServiceInterface","AuditServiceInterface":"./api/auditServiceInterface","AuthService":"./api/authService","ChangePasswordRequestParams":"./api/authServiceInterface","GenerateTokenRequestParams":"./api/authServiceInterface","ValidateTokenRequestParams":"./api/authServiceInterface","AuthServiceInterface":"./api/authServiceInterface","InfoService":"./api/infoService","UpdateAccountInfoRequestParams":"./api/infoServiceInterface","InfoServiceInterface":"./api/infoServiceInterface","QuotaService":"./api/quotaService","QuotaServiceInterface":"./api/quotaServiceInterface","ReportsService":"./api/reportsService","GenerateReportRequestParams":"./api/reportsServiceInterface","ReportsServiceInterface":"./api/reportsServiceInterface","StatisticsService":"./api/statisticsService","GenerateStatisticsRequestParams":"./api/statisticsServiceInterface","StatisticsServiceInterface":"./api/statisticsServiceInterface","SystemService":"./api/systemService","SystemServiceInterface":"./api/systemServiceInterface","AccountActionAccount":"./model/accountAction","AccountInfoAccount":"./model/accountInfo","AdditionalQuotaAccount":"./model/additionalQuota","AuditStatsAccount":"./model/auditStats","AuditStatsDetailAccount":"./model/auditStatsDetail","CheckResultAccount":"./model/checkResult","DateStatisticsAccount":"./model/dateStatistics","DateWindowAccount":"./model/dateWindow","InlineResponse400Account":"./model/inlineResponse400","InlineResponse401Account":"./model/inlineResponse401","InlineResponse402Account":"./model/inlineResponse402","InlineResponse403Account":"./model/inlineResponse403","InlineResponse404Account":"./model/inlineResponse404","InlineResponse405Account":"./model/inlineResponse405","InlineResponse406Account":"./model/inlineResponse406","InlineResponse415Account":"./model/inlineResponse415","InlineResponse429Account":"./model/inlineResponse429","InlineResponse500Account":"./model/inlineResponse500","MethodNameAccount":"./model/methodName","MethodQuotaAccount":"./model/methodQuota","MethodStatisticsAccount":"./model/methodStatistics","PasswordRequestAccount":"./model/passwordRequest","QuotaAccount":"./model/quota","ServiceNameAccount":"./model/serviceName","ServiceQuotaAccount":"./model/serviceQuota","ServiceStatisticsAccount":"./model/serviceStatistics","TokenRequestAccount":"./model/tokenRequest","TokenValidationAccount":"./model/tokenValidation","TokenValidationAccountRolesEnum":"./model/tokenValidation","TraceDataAccount":"./model/traceData","UserActionDetailAccount":"./model/userActionDetail","UserAuditResultAccount":"./model/userAuditResult","UserQuotaResultAccount":"./model/userQuotaResult","UserReportFilterAccount":"./model/userReportFilter","UserReportFilterAccountNameEnum":"./model/userReportFilter","UserStatisticsAccount":"./model/userStatistics","UserStatisticsFilterAccount":"./model/userStatisticsFilter","VersionResultAccount":"./model/versionResult","BASE_PATH":"./variables","COLLECTION_FORMATS":"./variables","ConfigurationParameters":"./configuration","Configuration":"./configuration","LssAccountApiModule":"./api.module"},"importAs":"@veeroute/lss-account-angular"}
|
|
1
|
+
{"__symbolic":"module","version":4,"metadata":{"APIS":[{"__symbolic":"reference","name":"AuditService"},{"__symbolic":"reference","name":"AuthService"},{"__symbolic":"reference","name":"DataService"},{"__symbolic":"reference","name":"InfoService"},{"__symbolic":"reference","name":"QuotasService"},{"__symbolic":"reference","name":"StatisticsService"},{"__symbolic":"reference","name":"SystemService"}],"AuditService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":51,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":61,"character":51}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":61,"character":62},"arguments":[{"__symbolic":"reference","name":"BASE_PATH"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":61,"character":99}}]],"parameters":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":61,"character":38},{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"Configuration"}]}],"addToHttpParams":[{"__symbolic":"method"}],"addToHttpParamsRecursive":[{"__symbolic":"method"}],"readAudit":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"ReadAuditRequestParams":{"__symbolic":"interface"},"AuditServiceInterface":{"__symbolic":"interface"},"AuthService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":53,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":63,"character":51}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":63,"character":62},"arguments":[{"__symbolic":"reference","name":"BASE_PATH"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":63,"character":99}}]],"parameters":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":63,"character":38},{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"Configuration"}]}],"addToHttpParams":[{"__symbolic":"method"}],"addToHttpParamsRecursive":[{"__symbolic":"method"}],"changePassword":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}],"runTokenGeneration":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}],"runTokenValidation":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"ChangePasswordRequestParams":{"__symbolic":"interface"},"RunTokenGenerationRequestParams":{"__symbolic":"interface"},"RunTokenValidationRequestParams":{"__symbolic":"interface"},"AuthServiceInterface":{"__symbolic":"interface"},"DataService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":47,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":57,"character":51}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":57,"character":62},"arguments":[{"__symbolic":"reference","name":"BASE_PATH"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":57,"character":99}}]],"parameters":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":57,"character":38},{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"Configuration"}]}],"addToHttpParams":[{"__symbolic":"method"}],"addToHttpParamsRecursive":[{"__symbolic":"method"}],"readAllDataXlsx":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}],"readDataInput":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}],"readDataOutput":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"ReadAllDataXlsxRequestParams":{"__symbolic":"interface"},"ReadDataInputRequestParams":{"__symbolic":"interface"},"ReadDataOutputRequestParams":{"__symbolic":"interface"},"DataServiceInterface":{"__symbolic":"interface"},"InfoService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":47,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":57,"character":51}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":57,"character":62},"arguments":[{"__symbolic":"reference","name":"BASE_PATH"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":57,"character":99}}]],"parameters":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":57,"character":38},{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"Configuration"}]}],"addToHttpParams":[{"__symbolic":"method"}],"addToHttpParamsRecursive":[{"__symbolic":"method"}],"readInfo":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}],"updateInfo":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"UpdateInfoRequestParams":{"__symbolic":"interface"},"InfoServiceInterface":{"__symbolic":"interface"},"QuotasService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":46,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":56,"character":51}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":56,"character":62},"arguments":[{"__symbolic":"reference","name":"BASE_PATH"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":56,"character":99}}]],"parameters":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":56,"character":38},{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"Configuration"}]}],"addToHttpParams":[{"__symbolic":"method"}],"addToHttpParamsRecursive":[{"__symbolic":"method"}],"readQuota":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"QuotasServiceInterface":{"__symbolic":"interface"},"StatisticsService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":48,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":58,"character":51}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":58,"character":62},"arguments":[{"__symbolic":"reference","name":"BASE_PATH"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":58,"character":99}}]],"parameters":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":58,"character":38},{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"Configuration"}]}],"addToHttpParams":[{"__symbolic":"method"}],"addToHttpParamsRecursive":[{"__symbolic":"method"}],"generateStatistics":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}],"readReport":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"GenerateStatisticsRequestParams":{"__symbolic":"interface"},"ReadReportRequestParams":{"__symbolic":"interface"},"StatisticsServiceInterface":{"__symbolic":"interface"},"SystemService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":40,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":50,"character":51}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":50,"character":62},"arguments":[{"__symbolic":"reference","name":"BASE_PATH"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":50,"character":99}}]],"parameters":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":50,"character":38},{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"Configuration"}]}],"addToHttpParams":[{"__symbolic":"method"}],"addToHttpParamsRecursive":[{"__symbolic":"method"}],"check":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}],"version":[{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"},{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"SystemServiceInterface":{"__symbolic":"interface"},"AccountAuditResultAccount":{"__symbolic":"interface"},"AccountInfoAccount":{"__symbolic":"interface"},"AuditActionAccount":{"__symbolic":"interface"},"AuditActionStatisticsAccount":{"__symbolic":"interface"},"AuditStatsAccount":{"__symbolic":"interface"},"AuditStatsDetailAccount":{"__symbolic":"interface"},"CheckResultAccount":{"__symbolic":"interface"},"DateStatisticsAccount":{"__symbolic":"interface"},"InlineResponse400Account":{"__symbolic":"interface"},"InlineResponse401Account":{"__symbolic":"interface"},"InlineResponse402Account":{"__symbolic":"interface"},"InlineResponse403Account":{"__symbolic":"interface"},"InlineResponse404Account":{"__symbolic":"interface"},"InlineResponse404DetailAccount":{"__symbolic":"interface"},"InlineResponse429Account":{"__symbolic":"interface"},"InlineResponse500Account":{"__symbolic":"interface"},"MethodGroupAccount":{"NOTRACE":"NOTRACE","TRACE":"TRACE","PLAN":"PLAN","ACTUALIZE":"ACTUALIZE","REFINE":"REFINE","CONVERT":"CONVERT","ANALYTICS":"ANALYTICS","PREDICT":"PREDICT","VALIDATE":"VALIDATE","ROUTE":"ROUTE","MATRIX":"MATRIX","PACK":"PACK"},"MethodQuotaAccount":{"__symbolic":"interface"},"MethodStatisticsAccount":{"__symbolic":"interface"},"PasswordRequestAccount":{"__symbolic":"interface"},"QuotaBaseAccount":{"__symbolic":"interface"},"QuotasResultAccount":{"__symbolic":"interface"},"ServiceNameAccount":{"UNIVERSAL":"UNIVERSAL","ROUTING":"ROUTING","ACCOUNT":"ACCOUNT","ADMIN":"ADMIN","STUDIO":"STUDIO","STOCK":"STOCK","PACKER":"PACKER","LONGHAUL":"LONGHAUL","CLUSTER":"CLUSTER","CARGOTIMETABLE":"CARGOTIMETABLE"},"ServiceQuotaAccount":{"__symbolic":"interface"},"ServiceStatisticsAccount":{"__symbolic":"interface"},"TokenRequestAccount":{"__symbolic":"interface"},"TokenValidationResultAccount":{"__symbolic":"interface"},"TracedataAccount":{"__symbolic":"interface"},"UserRoleAccount":{"ADMIN":"ADMIN","PARTNER":"PARTNER","USER":"USER","BOT":"BOT"},"UserStatisticsAccount":{"__symbolic":"interface"},"VersionResultAccount":{"__symbolic":"interface"},"BASE_PATH":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":2,"character":29},"arguments":["basePath"]},"COLLECTION_FORMATS":{"csv":",","tsv":" ","ssv":" ","pipes":"|","$quoted$":["csv","tsv","ssv","pipes"]},"ConfigurationParameters":{"__symbolic":"interface"},"Configuration":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"any"}]}],"selectHeaderContentType":[{"__symbolic":"method"}],"selectHeaderAccept":[{"__symbolic":"method"}],"isJsonMime":[{"__symbolic":"method"}],"lookupCredential":[{"__symbolic":"method"}]}},"LssAccountApiModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":12,"character":1},"arguments":[{"imports":[],"declarations":[],"exports":[],"providers":[]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":26,"character":18}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf","line":26,"character":30}}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":27,"character":18}}]],"parameters":[{"__symbolic":"reference","name":"LssAccountApiModule"},{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":27,"character":35}]}]},"statics":{"forRoot":{"__symbolic":"function","parameters":["configurationFactory"],"value":{"ngModule":{"__symbolic":"reference","name":"LssAccountApiModule"},"providers":[{"provide":{"__symbolic":"reference","name":"Configuration"},"useFactory":{"__symbolic":"reference","name":"configurationFactory"}}]}}}}},"origins":{"APIS":"./api/api","AuditService":"./api/auditService","ReadAuditRequestParams":"./api/auditServiceInterface","AuditServiceInterface":"./api/auditServiceInterface","AuthService":"./api/authService","ChangePasswordRequestParams":"./api/authServiceInterface","RunTokenGenerationRequestParams":"./api/authServiceInterface","RunTokenValidationRequestParams":"./api/authServiceInterface","AuthServiceInterface":"./api/authServiceInterface","DataService":"./api/dataService","ReadAllDataXlsxRequestParams":"./api/dataServiceInterface","ReadDataInputRequestParams":"./api/dataServiceInterface","ReadDataOutputRequestParams":"./api/dataServiceInterface","DataServiceInterface":"./api/dataServiceInterface","InfoService":"./api/infoService","UpdateInfoRequestParams":"./api/infoServiceInterface","InfoServiceInterface":"./api/infoServiceInterface","QuotasService":"./api/quotasService","QuotasServiceInterface":"./api/quotasServiceInterface","StatisticsService":"./api/statisticsService","GenerateStatisticsRequestParams":"./api/statisticsServiceInterface","ReadReportRequestParams":"./api/statisticsServiceInterface","StatisticsServiceInterface":"./api/statisticsServiceInterface","SystemService":"./api/systemService","SystemServiceInterface":"./api/systemServiceInterface","AccountAuditResultAccount":"./model/accountAuditResult","AccountInfoAccount":"./model/accountInfo","AuditActionAccount":"./model/auditAction","AuditActionStatisticsAccount":"./model/auditActionStatistics","AuditStatsAccount":"./model/auditStats","AuditStatsDetailAccount":"./model/auditStatsDetail","CheckResultAccount":"./model/checkResult","DateStatisticsAccount":"./model/dateStatistics","InlineResponse400Account":"./model/inlineResponse400","InlineResponse401Account":"./model/inlineResponse401","InlineResponse402Account":"./model/inlineResponse402","InlineResponse403Account":"./model/inlineResponse403","InlineResponse404Account":"./model/inlineResponse404","InlineResponse404DetailAccount":"./model/inlineResponse404Detail","InlineResponse429Account":"./model/inlineResponse429","InlineResponse500Account":"./model/inlineResponse500","MethodGroupAccount":"./model/methodGroup","MethodQuotaAccount":"./model/methodQuota","MethodStatisticsAccount":"./model/methodStatistics","PasswordRequestAccount":"./model/passwordRequest","QuotaBaseAccount":"./model/quotaBase","QuotasResultAccount":"./model/quotasResult","ServiceNameAccount":"./model/serviceName","ServiceQuotaAccount":"./model/serviceQuota","ServiceStatisticsAccount":"./model/serviceStatistics","TokenRequestAccount":"./model/tokenRequest","TokenValidationResultAccount":"./model/tokenValidationResult","TracedataAccount":"./model/tracedata","UserRoleAccount":"./model/userRole","UserStatisticsAccount":"./model/userStatistics","VersionResultAccount":"./model/versionResult","BASE_PATH":"./variables","COLLECTION_FORMATS":"./variables","ConfigurationParameters":"./configuration","Configuration":"./configuration","LssAccountApiModule":"./api.module"},"importAs":"@veeroute/lss-account-angular"}
|
package/api/reportsService.d.ts
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 4.0.173743RC
|
|
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 { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec } from '@angular/common/http';
|
|
13
|
-
import { Observable } from 'rxjs';
|
|
14
|
-
import { Configuration } from '../configuration';
|
|
15
|
-
import { ReportsServiceInterface, GenerateReportRequestParams } from './reportsServiceInterface';
|
|
16
|
-
export declare class ReportsService implements ReportsServiceInterface {
|
|
17
|
-
protected httpClient: HttpClient;
|
|
18
|
-
protected basePath: string;
|
|
19
|
-
defaultHeaders: HttpHeaders;
|
|
20
|
-
configuration: Configuration;
|
|
21
|
-
encoder: HttpParameterCodec;
|
|
22
|
-
constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
|
|
23
|
-
private addToHttpParams;
|
|
24
|
-
private addToHttpParamsRecursive;
|
|
25
|
-
/**
|
|
26
|
-
* Reporting.
|
|
27
|
-
* Reporting.
|
|
28
|
-
* @param requestParameters
|
|
29
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
30
|
-
* @param reportProgress flag to report request and response progress.
|
|
31
|
-
*/
|
|
32
|
-
generateReport(requestParameters: GenerateReportRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
33
|
-
httpHeaderAccept?: 'application/octet-stream' | 'application/json';
|
|
34
|
-
}): Observable<string>;
|
|
35
|
-
generateReport(requestParameters: GenerateReportRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
36
|
-
httpHeaderAccept?: 'application/octet-stream' | 'application/json';
|
|
37
|
-
}): Observable<HttpResponse<string>>;
|
|
38
|
-
generateReport(requestParameters: GenerateReportRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
39
|
-
httpHeaderAccept?: 'application/octet-stream' | 'application/json';
|
|
40
|
-
}): Observable<HttpEvent<string>>;
|
|
41
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* VRt.Account [AC]
|
|
3
|
-
* Veeroute Account Panel
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 4.0.173743RC
|
|
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 { HttpHeaders } from '@angular/common/http';
|
|
13
|
-
import { Observable } from 'rxjs';
|
|
14
|
-
import { UserReportFilterAccount } from '../model/models';
|
|
15
|
-
import { Configuration } from '../configuration';
|
|
16
|
-
export interface GenerateReportRequestParams {
|
|
17
|
-
userReportFilterAccount: UserReportFilterAccount;
|
|
18
|
-
}
|
|
19
|
-
export interface ReportsServiceInterface {
|
|
20
|
-
defaultHeaders: HttpHeaders;
|
|
21
|
-
configuration: Configuration;
|
|
22
|
-
/**
|
|
23
|
-
* Reporting.
|
|
24
|
-
* Reporting.
|
|
25
|
-
* @param requestParameters
|
|
26
|
-
*/
|
|
27
|
-
generateReport(requestParameters: GenerateReportRequestParams, extraHttpRequestParams?: any): Observable<string>;
|
|
28
|
-
}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("@angular/core"),require("@angular/common/http")):"function"==typeof define&&define.amd?define("@veeroute/lss-account-angular",["exports","@angular/core","@angular/common/http"],e):e(((t="undefined"!=typeof globalThis?globalThis:t||self).veeroute=t.veeroute||{},t.veeroute["lss-account-angular"]={}),t.ng.core,t.ng.common.http)}(this,(function(t,e,r){"use strict";function o(t){if(t&&t.__esModule)return t;var e=Object.create(null);return t&&Object.keys(t).forEach((function(r){if("default"!==r){var o=Object.getOwnPropertyDescriptor(t,r);Object.defineProperty(e,r,o.get?o:{enumerable:!0,get:function(){return t[r]}})}})),e.default=t,Object.freeze(e)}var n=o(e),i=o(r),a=function(){function t(){}return t.prototype.encodeKey=function(t){return encodeURIComponent(t)},t.prototype.encodeValue=function(t){return encodeURIComponent(t)},t.prototype.decodeKey=function(t){return decodeURIComponent(t)},t.prototype.decodeValue=function(t){return decodeURIComponent(t)},t}(),s=new e.InjectionToken("basePath"),c=function(){function t(t){var e=this;void 0===t&&(t={}),this.apiKeys=t.apiKeys,this.username=t.username,this.password=t.password,this.accessToken=t.accessToken,this.basePath=t.basePath,this.withCredentials=t.withCredentials,this.encoder=t.encoder,t.credentials?this.credentials=t.credentials:this.credentials={},this.credentials.ApiKeyAuth||(this.credentials.ApiKeyAuth=function(){return"function"==typeof e.accessToken?e.accessToken():e.accessToken})}return t.prototype.selectHeaderContentType=function(t){var e=this;if(0!==t.length){var r=t.find((function(t){return e.isJsonMime(t)}));return void 0===r?t[0]:r}},t.prototype.selectHeaderAccept=function(t){var e=this;if(0!==t.length){var r=t.find((function(t){return e.isJsonMime(t)}));return void 0===r?t[0]:r}},t.prototype.isJsonMime=function(t){var e=new RegExp("^(application/json|[^;/ \t]+/[^;/ \t]+[+]json)[ \t]*(;.*)?$","i");return null!==t&&(e.test(t)||"application/json-patch+json"===t.toLowerCase())},t.prototype.lookupCredential=function(t){var e=this.credentials[t];return"function"==typeof e?e():e},t}(),u=function(){function t(t,e,o){this.httpClient=t,this.basePath="https://api.veeroute.tech/v4",this.defaultHeaders=new r.HttpHeaders,this.configuration=new c,o&&(this.configuration=o),"string"!=typeof this.configuration.basePath&&("string"!=typeof e&&(e=this.basePath),this.configuration.basePath=e),this.encoder=this.configuration.encoder||new a}return t.prototype.addToHttpParams=function(t,e,r){return t="object"==typeof e&&e instanceof Date==!1?this.addToHttpParamsRecursive(t,e):this.addToHttpParamsRecursive(t,e,r)},t.prototype.addToHttpParamsRecursive=function(t,e,r){var o=this;if(null==e)return t;if("object"==typeof e)if(Array.isArray(e))e.forEach((function(e){return t=o.addToHttpParamsRecursive(t,e,r)}));else if(e instanceof Date){if(null==r)throw Error("key may not be null if value is Date");t=t.append(r,e.toISOString().substr(0,10))}else Object.keys(e).forEach((function(n){return t=o.addToHttpParamsRecursive(t,e[n],null!=r?r+"."+n:n)}));else{if(null==r)throw Error("key may not be null if value is not object or array");t=t.append(r,e)}return t},t.prototype.readAccountAuditData=function(t,e,o,n){void 0===e&&(e="body"),void 0===o&&(o=!1);var i=t.offset,a=t.limit,s=t.from,c=t.to,u=t.serviceName,p=t.methodName,d=new r.HttpParams({encoder:this.encoder});null!=i&&(d=this.addToHttpParams(d,i,"offset")),null!=a&&(d=this.addToHttpParams(d,a,"limit")),null!=s&&(d=this.addToHttpParams(d,s,"from")),null!=c&&(d=this.addToHttpParams(d,c,"to")),null!=u&&(d=this.addToHttpParams(d,u,"service_name")),null!=p&&(d=this.addToHttpParams(d,p,"method_name"));var h,l=this.defaultHeaders;(h=this.configuration.lookupCredential("ApiKeyAuth"))&&(l=l.set("Authorization","Bearer "+h));var f=n&&n.httpHeaderAccept;if(void 0===f){f=this.configuration.selectHeaderAccept(["application/json"])}void 0!==f&&(l=l.set("Accept",f));var v="json";return f&&f.startsWith("text")&&(v="text"),this.httpClient.get(this.configuration.basePath+"/account/audit",{params:d,responseType:v,withCredentials:this.configuration.withCredentials,headers:l,observe:e,reportProgress:o})},t}();u.ɵprov=n.ɵɵdefineInjectable({factory:function(){return new u(n.ɵɵinject(i.HttpClient),n.ɵɵinject(s,8),n.ɵɵinject(c,8))},token:u,providedIn:"root"}),u.decorators=[{type:e.Injectable,args:[{providedIn:"root"}]}],u.ctorParameters=function(){return[{type:r.HttpClient},{type:String,decorators:[{type:e.Optional},{type:e.Inject,args:[s]}]},{type:c,decorators:[{type:e.Optional}]}]};var p=function(){function t(t,e,o){this.httpClient=t,this.basePath="https://api.veeroute.tech/v4",this.defaultHeaders=new r.HttpHeaders,this.configuration=new c,o&&(this.configuration=o),"string"!=typeof this.configuration.basePath&&("string"!=typeof e&&(e=this.basePath),this.configuration.basePath=e),this.encoder=this.configuration.encoder||new a}return t.prototype.addToHttpParams=function(t,e,r){return t="object"==typeof e&&e instanceof Date==!1?this.addToHttpParamsRecursive(t,e):this.addToHttpParamsRecursive(t,e,r)},t.prototype.addToHttpParamsRecursive=function(t,e,r){var o=this;if(null==e)return t;if("object"==typeof e)if(Array.isArray(e))e.forEach((function(e){return t=o.addToHttpParamsRecursive(t,e,r)}));else if(e instanceof Date){if(null==r)throw Error("key may not be null if value is Date");t=t.append(r,e.toISOString().substr(0,10))}else Object.keys(e).forEach((function(n){return t=o.addToHttpParamsRecursive(t,e[n],null!=r?r+"."+n:n)}));else{if(null==r)throw Error("key may not be null if value is not object or array");t=t.append(r,e)}return t},t.prototype.changePassword=function(t,e,r,o){void 0===e&&(e="body"),void 0===r&&(r=!1);var n,i=t.passwordRequestAccount,a=this.defaultHeaders;(n=this.configuration.lookupCredential("ApiKeyAuth"))&&(a=a.set("Authorization","Bearer "+n));var s=o&&o.httpHeaderAccept;if(void 0===s){s=this.configuration.selectHeaderAccept(["application/json"])}void 0!==s&&(a=a.set("Accept",s));var c=this.configuration.selectHeaderContentType(["application/json"]);void 0!==c&&(a=a.set("Content-Type",c));var u="json";return s&&s.startsWith("text")&&(u="text"),this.httpClient.post(this.configuration.basePath+"/account/password",i,{responseType:u,withCredentials:this.configuration.withCredentials,headers:a,observe:e,reportProgress:r})},t.prototype.generateToken=function(t,e,r,o){void 0===e&&(e="body"),void 0===r&&(r=!1);var n=t.tokenRequestAccount;if(null==n)throw new Error("Required parameter tokenRequestAccount was null or undefined when calling generateToken.");var i=this.defaultHeaders,a=o&&o.httpHeaderAccept;if(void 0===a){a=this.configuration.selectHeaderAccept(["application/json"])}void 0!==a&&(i=i.set("Accept",a));var s=this.configuration.selectHeaderContentType(["application/json"]);void 0!==s&&(i=i.set("Content-Type",s));var c="json";return a&&a.startsWith("text")&&(c="text"),this.httpClient.post(this.configuration.basePath+"/account/token",n,{responseType:c,withCredentials:this.configuration.withCredentials,headers:i,observe:e,reportProgress:r})},t.prototype.validateToken=function(t,e,r,o){void 0===e&&(e="body"),void 0===r&&(r=!1);var n=t.body;if(null==n)throw new Error("Required parameter body was null or undefined when calling validateToken.");var i=this.defaultHeaders,a=o&&o.httpHeaderAccept;if(void 0===a){a=this.configuration.selectHeaderAccept(["application/json"])}void 0!==a&&(i=i.set("Accept",a));var s=this.configuration.selectHeaderContentType(["application/json"]);void 0!==s&&(i=i.set("Content-Type",s));var c="json";return a&&a.startsWith("text")&&(c="text"),this.httpClient.post(this.configuration.basePath+"/account/token/validate",n,{responseType:c,withCredentials:this.configuration.withCredentials,headers:i,observe:e,reportProgress:r})},t}();p.ɵprov=n.ɵɵdefineInjectable({factory:function(){return new p(n.ɵɵinject(i.HttpClient),n.ɵɵinject(s,8),n.ɵɵinject(c,8))},token:p,providedIn:"root"}),p.decorators=[{type:e.Injectable,args:[{providedIn:"root"}]}],p.ctorParameters=function(){return[{type:r.HttpClient},{type:String,decorators:[{type:e.Optional},{type:e.Inject,args:[s]}]},{type:c,decorators:[{type:e.Optional}]}]};var d=function(){function t(t,e,o){this.httpClient=t,this.basePath="https://api.veeroute.tech/v4",this.defaultHeaders=new r.HttpHeaders,this.configuration=new c,o&&(this.configuration=o),"string"!=typeof this.configuration.basePath&&("string"!=typeof e&&(e=this.basePath),this.configuration.basePath=e),this.encoder=this.configuration.encoder||new a}return t.prototype.addToHttpParams=function(t,e,r){return t="object"==typeof e&&e instanceof Date==!1?this.addToHttpParamsRecursive(t,e):this.addToHttpParamsRecursive(t,e,r)},t.prototype.addToHttpParamsRecursive=function(t,e,r){var o=this;if(null==e)return t;if("object"==typeof e)if(Array.isArray(e))e.forEach((function(e){return t=o.addToHttpParamsRecursive(t,e,r)}));else if(e instanceof Date){if(null==r)throw Error("key may not be null if value is Date");t=t.append(r,e.toISOString().substr(0,10))}else Object.keys(e).forEach((function(n){return t=o.addToHttpParamsRecursive(t,e[n],null!=r?r+"."+n:n)}));else{if(null==r)throw Error("key may not be null if value is not object or array");t=t.append(r,e)}return t},t.prototype.readAccountInfo=function(t,e,r){void 0===t&&(t="body"),void 0===e&&(e=!1);var o,n=this.defaultHeaders;(o=this.configuration.lookupCredential("ApiKeyAuth"))&&(n=n.set("Authorization","Bearer "+o));var i=r&&r.httpHeaderAccept;if(void 0===i){i=this.configuration.selectHeaderAccept(["application/json"])}void 0!==i&&(n=n.set("Accept",i));var a="json";return i&&i.startsWith("text")&&(a="text"),this.httpClient.get(this.configuration.basePath+"/account/info",{responseType:a,withCredentials:this.configuration.withCredentials,headers:n,observe:t,reportProgress:e})},t.prototype.updateAccountInfo=function(t,e,r,o){void 0===e&&(e="body"),void 0===r&&(r=!1);var n=t.accountInfoAccount;if(null==n)throw new Error("Required parameter accountInfoAccount was null or undefined when calling updateAccountInfo.");var i,a=this.defaultHeaders;(i=this.configuration.lookupCredential("ApiKeyAuth"))&&(a=a.set("Authorization","Bearer "+i));var s=o&&o.httpHeaderAccept;if(void 0===s){s=this.configuration.selectHeaderAccept(["application/json"])}void 0!==s&&(a=a.set("Accept",s));var c=this.configuration.selectHeaderContentType(["application/json"]);void 0!==c&&(a=a.set("Content-Type",c));var u="json";return s&&s.startsWith("text")&&(u="text"),this.httpClient.put(this.configuration.basePath+"/account/info",n,{responseType:u,withCredentials:this.configuration.withCredentials,headers:a,observe:e,reportProgress:r})},t}();d.ɵprov=n.ɵɵdefineInjectable({factory:function(){return new d(n.ɵɵinject(i.HttpClient),n.ɵɵinject(s,8),n.ɵɵinject(c,8))},token:d,providedIn:"root"}),d.decorators=[{type:e.Injectable,args:[{providedIn:"root"}]}],d.ctorParameters=function(){return[{type:r.HttpClient},{type:String,decorators:[{type:e.Optional},{type:e.Inject,args:[s]}]},{type:c,decorators:[{type:e.Optional}]}]};var h=function(){function t(t,e,o){this.httpClient=t,this.basePath="https://api.veeroute.tech/v4",this.defaultHeaders=new r.HttpHeaders,this.configuration=new c,o&&(this.configuration=o),"string"!=typeof this.configuration.basePath&&("string"!=typeof e&&(e=this.basePath),this.configuration.basePath=e),this.encoder=this.configuration.encoder||new a}return t.prototype.addToHttpParams=function(t,e,r){return t="object"==typeof e&&e instanceof Date==!1?this.addToHttpParamsRecursive(t,e):this.addToHttpParamsRecursive(t,e,r)},t.prototype.addToHttpParamsRecursive=function(t,e,r){var o=this;if(null==e)return t;if("object"==typeof e)if(Array.isArray(e))e.forEach((function(e){return t=o.addToHttpParamsRecursive(t,e,r)}));else if(e instanceof Date){if(null==r)throw Error("key may not be null if value is Date");t=t.append(r,e.toISOString().substr(0,10))}else Object.keys(e).forEach((function(n){return t=o.addToHttpParamsRecursive(t,e[n],null!=r?r+"."+n:n)}));else{if(null==r)throw Error("key may not be null if value is not object or array");t=t.append(r,e)}return t},t.prototype.readQuota=function(t,e,r){void 0===t&&(t="body"),void 0===e&&(e=!1);var o,n=this.defaultHeaders;(o=this.configuration.lookupCredential("ApiKeyAuth"))&&(n=n.set("Authorization","Bearer "+o));var i=r&&r.httpHeaderAccept;if(void 0===i){i=this.configuration.selectHeaderAccept(["application/octet-stream","application/json"])}void 0!==i&&(n=n.set("Accept",i));var a="json";return i&&i.startsWith("text")&&(a="text"),this.httpClient.get(this.configuration.basePath+"/account/quota",{responseType:a,withCredentials:this.configuration.withCredentials,headers:n,observe:t,reportProgress:e})},t}();h.ɵprov=n.ɵɵdefineInjectable({factory:function(){return new h(n.ɵɵinject(i.HttpClient),n.ɵɵinject(s,8),n.ɵɵinject(c,8))},token:h,providedIn:"root"}),h.decorators=[{type:e.Injectable,args:[{providedIn:"root"}]}],h.ctorParameters=function(){return[{type:r.HttpClient},{type:String,decorators:[{type:e.Optional},{type:e.Inject,args:[s]}]},{type:c,decorators:[{type:e.Optional}]}]};var l=function(){function t(t,e,o){this.httpClient=t,this.basePath="https://api.veeroute.tech/v4",this.defaultHeaders=new r.HttpHeaders,this.configuration=new c,o&&(this.configuration=o),"string"!=typeof this.configuration.basePath&&("string"!=typeof e&&(e=this.basePath),this.configuration.basePath=e),this.encoder=this.configuration.encoder||new a}return t.prototype.addToHttpParams=function(t,e,r){return t="object"==typeof e&&e instanceof Date==!1?this.addToHttpParamsRecursive(t,e):this.addToHttpParamsRecursive(t,e,r)},t.prototype.addToHttpParamsRecursive=function(t,e,r){var o=this;if(null==e)return t;if("object"==typeof e)if(Array.isArray(e))e.forEach((function(e){return t=o.addToHttpParamsRecursive(t,e,r)}));else if(e instanceof Date){if(null==r)throw Error("key may not be null if value is Date");t=t.append(r,e.toISOString().substr(0,10))}else Object.keys(e).forEach((function(n){return t=o.addToHttpParamsRecursive(t,e[n],null!=r?r+"."+n:n)}));else{if(null==r)throw Error("key may not be null if value is not object or array");t=t.append(r,e)}return t},t.prototype.generateReport=function(t,e,r,o){void 0===e&&(e="body"),void 0===r&&(r=!1);var n=t.userReportFilterAccount;if(null==n)throw new Error("Required parameter userReportFilterAccount was null or undefined when calling generateReport.");var i,a=this.defaultHeaders;(i=this.configuration.lookupCredential("ApiKeyAuth"))&&(a=a.set("Authorization","Bearer "+i));var s=o&&o.httpHeaderAccept;if(void 0===s){s=this.configuration.selectHeaderAccept(["application/octet-stream","application/json"])}void 0!==s&&(a=a.set("Accept",s));var c=this.configuration.selectHeaderContentType(["application/json"]);void 0!==c&&(a=a.set("Content-Type",c));var u="json";return s&&s.startsWith("text")&&(u="text"),this.httpClient.post(this.configuration.basePath+"/account/report",n,{responseType:u,withCredentials:this.configuration.withCredentials,headers:a,observe:e,reportProgress:r})},t}();l.ɵprov=n.ɵɵdefineInjectable({factory:function(){return new l(n.ɵɵinject(i.HttpClient),n.ɵɵinject(s,8),n.ɵɵinject(c,8))},token:l,providedIn:"root"}),l.decorators=[{type:e.Injectable,args:[{providedIn:"root"}]}],l.ctorParameters=function(){return[{type:r.HttpClient},{type:String,decorators:[{type:e.Optional},{type:e.Inject,args:[s]}]},{type:c,decorators:[{type:e.Optional}]}]};var f=function(){function t(t,e,o){this.httpClient=t,this.basePath="https://api.veeroute.tech/v4",this.defaultHeaders=new r.HttpHeaders,this.configuration=new c,o&&(this.configuration=o),"string"!=typeof this.configuration.basePath&&("string"!=typeof e&&(e=this.basePath),this.configuration.basePath=e),this.encoder=this.configuration.encoder||new a}return t.prototype.addToHttpParams=function(t,e,r){return t="object"==typeof e&&e instanceof Date==!1?this.addToHttpParamsRecursive(t,e):this.addToHttpParamsRecursive(t,e,r)},t.prototype.addToHttpParamsRecursive=function(t,e,r){var o=this;if(null==e)return t;if("object"==typeof e)if(Array.isArray(e))e.forEach((function(e){return t=o.addToHttpParamsRecursive(t,e,r)}));else if(e instanceof Date){if(null==r)throw Error("key may not be null if value is Date");t=t.append(r,e.toISOString().substr(0,10))}else Object.keys(e).forEach((function(n){return t=o.addToHttpParamsRecursive(t,e[n],null!=r?r+"."+n:n)}));else{if(null==r)throw Error("key may not be null if value is not object or array");t=t.append(r,e)}return t},t.prototype.generateStatistics=function(t,e,r,o){void 0===e&&(e="body"),void 0===r&&(r=!1);var n,i=t.userStatisticsFilterAccount,a=this.defaultHeaders;(n=this.configuration.lookupCredential("ApiKeyAuth"))&&(a=a.set("Authorization","Bearer "+n));var s=o&&o.httpHeaderAccept;if(void 0===s){s=this.configuration.selectHeaderAccept(["application/json"])}void 0!==s&&(a=a.set("Accept",s));var c=this.configuration.selectHeaderContentType(["application/json"]);void 0!==c&&(a=a.set("Content-Type",c));var u="json";return s&&s.startsWith("text")&&(u="text"),this.httpClient.post(this.configuration.basePath+"/account/statistics",i,{responseType:u,withCredentials:this.configuration.withCredentials,headers:a,observe:e,reportProgress:r})},t}();f.ɵprov=n.ɵɵdefineInjectable({factory:function(){return new f(n.ɵɵinject(i.HttpClient),n.ɵɵinject(s,8),n.ɵɵinject(c,8))},token:f,providedIn:"root"}),f.decorators=[{type:e.Injectable,args:[{providedIn:"root"}]}],f.ctorParameters=function(){return[{type:r.HttpClient},{type:String,decorators:[{type:e.Optional},{type:e.Inject,args:[s]}]},{type:c,decorators:[{type:e.Optional}]}]};var v=function(){function t(t,e,o){this.httpClient=t,this.basePath="https://api.veeroute.tech/v4",this.defaultHeaders=new r.HttpHeaders,this.configuration=new c,o&&(this.configuration=o),"string"!=typeof this.configuration.basePath&&("string"!=typeof e&&(e=this.basePath),this.configuration.basePath=e),this.encoder=this.configuration.encoder||new a}return t.prototype.addToHttpParams=function(t,e,r){return t="object"==typeof e&&e instanceof Date==!1?this.addToHttpParamsRecursive(t,e):this.addToHttpParamsRecursive(t,e,r)},t.prototype.addToHttpParamsRecursive=function(t,e,r){var o=this;if(null==e)return t;if("object"==typeof e)if(Array.isArray(e))e.forEach((function(e){return t=o.addToHttpParamsRecursive(t,e,r)}));else if(e instanceof Date){if(null==r)throw Error("key may not be null if value is Date");t=t.append(r,e.toISOString().substr(0,10))}else Object.keys(e).forEach((function(n){return t=o.addToHttpParamsRecursive(t,e[n],null!=r?r+"."+n:n)}));else{if(null==r)throw Error("key may not be null if value is not object or array");t=t.append(r,e)}return t},t.prototype.check=function(t,e,r){void 0===t&&(t="body"),void 0===e&&(e=!1);var o=this.defaultHeaders,n=r&&r.httpHeaderAccept;if(void 0===n){n=this.configuration.selectHeaderAccept(["application/json"])}void 0!==n&&(o=o.set("Accept",n));var i="json";return n&&n.startsWith("text")&&(i="text"),this.httpClient.get(this.configuration.basePath+"/account/check",{responseType:i,withCredentials:this.configuration.withCredentials,headers:o,observe:t,reportProgress:e})},t.prototype.version=function(t,e,r){void 0===t&&(t="body"),void 0===e&&(e=!1);var o=this.defaultHeaders,n=r&&r.httpHeaderAccept;if(void 0===n){n=this.configuration.selectHeaderAccept(["application/json"])}void 0!==n&&(o=o.set("Accept",n));var i="json";return n&&n.startsWith("text")&&(i="text"),this.httpClient.get(this.configuration.basePath+"/account/version",{responseType:i,withCredentials:this.configuration.withCredentials,headers:o,observe:t,reportProgress:e})},t}();v.ɵprov=n.ɵɵdefineInjectable({factory:function(){return new v(n.ɵɵinject(i.HttpClient),n.ɵɵinject(s,8),n.ɵɵinject(c,8))},token:v,providedIn:"root"}),v.decorators=[{type:e.Injectable,args:[{providedIn:"root"}]}],v.ctorParameters=function(){return[{type:r.HttpClient},{type:String,decorators:[{type:e.Optional},{type:e.Inject,args:[s]}]},{type:c,decorators:[{type:e.Optional}]}]};var y,g,A,b=[u,p,d,h,l,f,v];t.MethodNameAccount=void 0,(y=t.MethodNameAccount||(t.MethodNameAccount={})).PLAN="PLAN",y.REPLAN="REPLAN",y.ACTUALIZE="ACTUALIZE",y.CONVERT="CONVERT",y.ANALYTICS="ANALYTICS",y.PREDICT="PREDICT",y.VALIDATE="VALIDATE",y.ROUTE="ROUTE",y.MATRIX="MATRIX",y.CLUSTER="CLUSTER",t.ServiceNameAccount=void 0,(g=t.ServiceNameAccount||(t.ServiceNameAccount={})).UNIVERSAL="UNIVERSAL",g.DELIVERY="DELIVERY",g.FIELDSERVICE="FIELDSERVICE",g.MERCHANDISER="MERCHANDISER",g.LONGHAUL="LONGHAUL",g.ROUTING="ROUTING",g.CLUSTERING="CLUSTERING",g.PACKER="PACKER",g.CARGOTIMETABLE="CARGOTIMETABLE",g.STOCK="STOCK",g.STUDIO="STUDIO",g.ACCOUNT="ACCOUNT",g.ADMIN="ADMIN",t.TokenValidationAccountRolesEnum=void 0,(A=t.TokenValidationAccountRolesEnum||(t.TokenValidationAccountRolesEnum={})).USER="USER",A.ADMIN="ADMIN",t.UserReportFilterAccountNameEnum=void 0,(t.UserReportFilterAccountNameEnum||(t.UserReportFilterAccountNameEnum={})).USAGE_REPORT="UsageReport";var H=function(){function t(t,e){if(t)throw new Error("LssAccountApiModule is already loaded. Import in your base AppModule only.");if(!e)throw new Error("You need to import the HttpClientModule in your AppModule! \nSee also https://github.com/angular/angular/issues/20575")}return t.forRoot=function(e){return{ngModule:t,providers:[{provide:c,useFactory:e}]}},t}();H.decorators=[{type:e.NgModule,args:[{imports:[],declarations:[],exports:[],providers:[]}]}],H.ctorParameters=function(){return[{type:H,decorators:[{type:e.Optional},{type:e.SkipSelf}]},{type:r.HttpClient,decorators:[{type:e.Optional}]}]},t.APIS=b,t.AuditService=u,t.AuthService=p,t.BASE_PATH=s,t.COLLECTION_FORMATS={csv:",",tsv:" ",ssv:" ",pipes:"|"},t.Configuration=c,t.InfoService=d,t.LssAccountApiModule=H,t.QuotaService=h,t.ReportsService=l,t.StatisticsService=f,t.SystemService=v,Object.defineProperty(t,"__esModule",{value:!0})}));
|
|
2
|
-
//# sourceMappingURL=veeroute-lss-account-angular.umd.min.js.map
|