@indigina/wms-api 0.0.28 → 0.0.30
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 +2 -2
- package/api/dcs.service.d.ts +21 -0
- package/api/reports.service.d.ts +41 -0
- package/esm2022/api/dcs.service.mjs +45 -1
- package/esm2022/api/reports.service.mjs +89 -1
- package/esm2022/model/countingSummary.mjs +12 -0
- package/esm2022/model/models.mjs +2 -1
- package/fesm2022/indigina-wms-api.mjs +143 -0
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/model/countingSummary.d.ts +17 -0
- package/model/models.d.ts +1 -0
- package/package.json +1 -1
|
@@ -223,6 +223,50 @@ class DcsService {
|
|
|
223
223
|
}
|
|
224
224
|
return httpParams;
|
|
225
225
|
}
|
|
226
|
+
getCountingSummary(observe = 'body', reportProgress = false, options) {
|
|
227
|
+
let localVarHeaders = this.defaultHeaders;
|
|
228
|
+
let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
|
|
229
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
230
|
+
// to determine the Accept header
|
|
231
|
+
const httpHeaderAccepts = [
|
|
232
|
+
'application/json'
|
|
233
|
+
];
|
|
234
|
+
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
235
|
+
}
|
|
236
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
237
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
238
|
+
}
|
|
239
|
+
let localVarHttpContext = options && options.context;
|
|
240
|
+
if (localVarHttpContext === undefined) {
|
|
241
|
+
localVarHttpContext = new HttpContext();
|
|
242
|
+
}
|
|
243
|
+
let localVarTransferCache = options && options.transferCache;
|
|
244
|
+
if (localVarTransferCache === undefined) {
|
|
245
|
+
localVarTransferCache = true;
|
|
246
|
+
}
|
|
247
|
+
let responseType_ = 'json';
|
|
248
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
249
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
250
|
+
responseType_ = 'text';
|
|
251
|
+
}
|
|
252
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
253
|
+
responseType_ = 'json';
|
|
254
|
+
}
|
|
255
|
+
else {
|
|
256
|
+
responseType_ = 'blob';
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
let localVarPath = `/dcs/counting/summary`;
|
|
260
|
+
return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
|
|
261
|
+
context: localVarHttpContext,
|
|
262
|
+
responseType: responseType_,
|
|
263
|
+
withCredentials: this.configuration.withCredentials,
|
|
264
|
+
headers: localVarHeaders,
|
|
265
|
+
observe: observe,
|
|
266
|
+
transferCache: localVarTransferCache,
|
|
267
|
+
reportProgress: reportProgress
|
|
268
|
+
});
|
|
269
|
+
}
|
|
226
270
|
getDispatchSummary(observe = 'body', reportProgress = false, options) {
|
|
227
271
|
let localVarHeaders = this.defaultHeaders;
|
|
228
272
|
let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
|
|
@@ -711,6 +755,50 @@ class ReportsService {
|
|
|
711
755
|
}
|
|
712
756
|
return httpParams;
|
|
713
757
|
}
|
|
758
|
+
getCastoreWeeklyReports(observe = 'body', reportProgress = false, options) {
|
|
759
|
+
let localVarHeaders = this.defaultHeaders;
|
|
760
|
+
let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
|
|
761
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
762
|
+
// to determine the Accept header
|
|
763
|
+
const httpHeaderAccepts = [
|
|
764
|
+
'application/json'
|
|
765
|
+
];
|
|
766
|
+
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
767
|
+
}
|
|
768
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
769
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
770
|
+
}
|
|
771
|
+
let localVarHttpContext = options && options.context;
|
|
772
|
+
if (localVarHttpContext === undefined) {
|
|
773
|
+
localVarHttpContext = new HttpContext();
|
|
774
|
+
}
|
|
775
|
+
let localVarTransferCache = options && options.transferCache;
|
|
776
|
+
if (localVarTransferCache === undefined) {
|
|
777
|
+
localVarTransferCache = true;
|
|
778
|
+
}
|
|
779
|
+
let responseType_ = 'json';
|
|
780
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
781
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
782
|
+
responseType_ = 'text';
|
|
783
|
+
}
|
|
784
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
785
|
+
responseType_ = 'json';
|
|
786
|
+
}
|
|
787
|
+
else {
|
|
788
|
+
responseType_ = 'blob';
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
let localVarPath = `/reports/castore-weekly-reports`;
|
|
792
|
+
return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
|
|
793
|
+
context: localVarHttpContext,
|
|
794
|
+
responseType: responseType_,
|
|
795
|
+
withCredentials: this.configuration.withCredentials,
|
|
796
|
+
headers: localVarHeaders,
|
|
797
|
+
observe: observe,
|
|
798
|
+
transferCache: localVarTransferCache,
|
|
799
|
+
reportProgress: reportProgress
|
|
800
|
+
});
|
|
801
|
+
}
|
|
714
802
|
getDcmReports(observe = 'body', reportProgress = false, options) {
|
|
715
803
|
let localVarHeaders = this.defaultHeaders;
|
|
716
804
|
let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
|
|
@@ -755,6 +843,50 @@ class ReportsService {
|
|
|
755
843
|
reportProgress: reportProgress
|
|
756
844
|
});
|
|
757
845
|
}
|
|
846
|
+
getSohoManifestReports(observe = 'body', reportProgress = false, options) {
|
|
847
|
+
let localVarHeaders = this.defaultHeaders;
|
|
848
|
+
let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
|
|
849
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
850
|
+
// to determine the Accept header
|
|
851
|
+
const httpHeaderAccepts = [
|
|
852
|
+
'application/json'
|
|
853
|
+
];
|
|
854
|
+
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
855
|
+
}
|
|
856
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
857
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
858
|
+
}
|
|
859
|
+
let localVarHttpContext = options && options.context;
|
|
860
|
+
if (localVarHttpContext === undefined) {
|
|
861
|
+
localVarHttpContext = new HttpContext();
|
|
862
|
+
}
|
|
863
|
+
let localVarTransferCache = options && options.transferCache;
|
|
864
|
+
if (localVarTransferCache === undefined) {
|
|
865
|
+
localVarTransferCache = true;
|
|
866
|
+
}
|
|
867
|
+
let responseType_ = 'json';
|
|
868
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
869
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
870
|
+
responseType_ = 'text';
|
|
871
|
+
}
|
|
872
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
873
|
+
responseType_ = 'json';
|
|
874
|
+
}
|
|
875
|
+
else {
|
|
876
|
+
responseType_ = 'blob';
|
|
877
|
+
}
|
|
878
|
+
}
|
|
879
|
+
let localVarPath = `/reports/soho-manifest-reports`;
|
|
880
|
+
return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
|
|
881
|
+
context: localVarHttpContext,
|
|
882
|
+
responseType: responseType_,
|
|
883
|
+
withCredentials: this.configuration.withCredentials,
|
|
884
|
+
headers: localVarHeaders,
|
|
885
|
+
observe: observe,
|
|
886
|
+
transferCache: localVarTransferCache,
|
|
887
|
+
reportProgress: reportProgress
|
|
888
|
+
});
|
|
889
|
+
}
|
|
758
890
|
getSummaryDashboardReports(observe = 'body', reportProgress = false, options) {
|
|
759
891
|
let localVarHeaders = this.defaultHeaders;
|
|
760
892
|
let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
|
|
@@ -1161,6 +1293,17 @@ const APIS = [DcsService, HealthService, PermissionsService, ReportsService, Use
|
|
|
1161
1293
|
* Do not edit the class manually.
|
|
1162
1294
|
*/
|
|
1163
1295
|
|
|
1296
|
+
/**
|
|
1297
|
+
* Wms.API.Client
|
|
1298
|
+
* WMS API Client for Angular applications
|
|
1299
|
+
*
|
|
1300
|
+
*
|
|
1301
|
+
*
|
|
1302
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1303
|
+
* https://openapi-generator.tech
|
|
1304
|
+
* Do not edit the class manually.
|
|
1305
|
+
*/
|
|
1306
|
+
|
|
1164
1307
|
/**
|
|
1165
1308
|
* Wms.API.Client
|
|
1166
1309
|
* WMS API Client for Angular applications
|