@indigina/wms-api 0.0.162 → 0.0.164
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/fesm2022/indigina-wms-api.mjs +192 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +160 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.164
|
|
2
2
|
|
|
3
3
|
WMS API Client for Angular applications
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
|
|
|
24
24
|
_published:_
|
|
25
25
|
|
|
26
26
|
```console
|
|
27
|
-
npm install @indigina/wms-api@0.0.
|
|
27
|
+
npm install @indigina/wms-api@0.0.164 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -3215,6 +3215,40 @@ class DispatchesService extends BaseService {
|
|
|
3215
3215
|
reportProgress: reportProgress
|
|
3216
3216
|
});
|
|
3217
3217
|
}
|
|
3218
|
+
getCarrierLabels(requestBody, observe = 'body', reportProgress = false, options) {
|
|
3219
|
+
if (requestBody === null || requestBody === undefined) {
|
|
3220
|
+
throw new Error('Required parameter requestBody was null or undefined when calling getCarrierLabels.');
|
|
3221
|
+
}
|
|
3222
|
+
let localVarHeaders = this.defaultHeaders;
|
|
3223
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
3224
|
+
'application/pdf'
|
|
3225
|
+
]);
|
|
3226
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
3227
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
3228
|
+
}
|
|
3229
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
3230
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
3231
|
+
// to determine the Content-Type header
|
|
3232
|
+
const consumes = [
|
|
3233
|
+
'application/json'
|
|
3234
|
+
];
|
|
3235
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
3236
|
+
if (httpContentTypeSelected !== undefined) {
|
|
3237
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
3238
|
+
}
|
|
3239
|
+
let localVarPath = `/dispatches/carrier-labels`;
|
|
3240
|
+
const { basePath, withCredentials } = this.configuration;
|
|
3241
|
+
return this.httpClient.request('post', `${basePath}${localVarPath}`, {
|
|
3242
|
+
context: localVarHttpContext,
|
|
3243
|
+
body: requestBody,
|
|
3244
|
+
responseType: "blob",
|
|
3245
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
3246
|
+
headers: localVarHeaders,
|
|
3247
|
+
observe: observe,
|
|
3248
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
3249
|
+
reportProgress: reportProgress
|
|
3250
|
+
});
|
|
3251
|
+
}
|
|
3218
3252
|
getDispatch(id, observe = 'body', reportProgress = false, options) {
|
|
3219
3253
|
if (id === null || id === undefined) {
|
|
3220
3254
|
throw new Error('Required parameter id was null or undefined when calling getDispatch.');
|
|
@@ -7774,6 +7808,47 @@ class WaveConfigurationsService extends BaseService {
|
|
|
7774
7808
|
reportProgress: reportProgress
|
|
7775
7809
|
});
|
|
7776
7810
|
}
|
|
7811
|
+
getWaveConfigurationsFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
7812
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
7813
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
7814
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
7815
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
7816
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
7817
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
|
|
7818
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7819
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7820
|
+
'application/json'
|
|
7821
|
+
]);
|
|
7822
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7823
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7824
|
+
}
|
|
7825
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7826
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7827
|
+
let responseType_ = 'json';
|
|
7828
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7829
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7830
|
+
responseType_ = 'text';
|
|
7831
|
+
}
|
|
7832
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7833
|
+
responseType_ = 'json';
|
|
7834
|
+
}
|
|
7835
|
+
else {
|
|
7836
|
+
responseType_ = 'blob';
|
|
7837
|
+
}
|
|
7838
|
+
}
|
|
7839
|
+
let localVarPath = `/waveConfigurations/search`;
|
|
7840
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7841
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
7842
|
+
context: localVarHttpContext,
|
|
7843
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
7844
|
+
responseType: responseType_,
|
|
7845
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7846
|
+
headers: localVarHeaders,
|
|
7847
|
+
observe: observe,
|
|
7848
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7849
|
+
reportProgress: reportProgress
|
|
7850
|
+
});
|
|
7851
|
+
}
|
|
7777
7852
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveConfigurationsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7778
7853
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveConfigurationsService, providedIn: 'root' });
|
|
7779
7854
|
}
|
|
@@ -8354,6 +8429,121 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
8354
8429
|
type: Optional
|
|
8355
8430
|
}] }] });
|
|
8356
8431
|
|
|
8432
|
+
/**
|
|
8433
|
+
* Wms.API.Client
|
|
8434
|
+
*
|
|
8435
|
+
*
|
|
8436
|
+
*
|
|
8437
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8438
|
+
* https://openapi-generator.tech
|
|
8439
|
+
* Do not edit the class manually.
|
|
8440
|
+
*/
|
|
8441
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
8442
|
+
class WaveSummariesService extends BaseService {
|
|
8443
|
+
httpClient;
|
|
8444
|
+
constructor(httpClient, basePath, configuration) {
|
|
8445
|
+
super(basePath, configuration);
|
|
8446
|
+
this.httpClient = httpClient;
|
|
8447
|
+
}
|
|
8448
|
+
getWaveSummaries($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
8449
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
8450
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
8451
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
8452
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
8453
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
8454
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
8455
|
+
let localVarHeaders = this.defaultHeaders;
|
|
8456
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
8457
|
+
'application/json'
|
|
8458
|
+
]);
|
|
8459
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
8460
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
8461
|
+
}
|
|
8462
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
8463
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
8464
|
+
let responseType_ = 'json';
|
|
8465
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
8466
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
8467
|
+
responseType_ = 'text';
|
|
8468
|
+
}
|
|
8469
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
8470
|
+
responseType_ = 'json';
|
|
8471
|
+
}
|
|
8472
|
+
else {
|
|
8473
|
+
responseType_ = 'blob';
|
|
8474
|
+
}
|
|
8475
|
+
}
|
|
8476
|
+
let localVarPath = `/waveSummaries`;
|
|
8477
|
+
const { basePath, withCredentials } = this.configuration;
|
|
8478
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
8479
|
+
context: localVarHttpContext,
|
|
8480
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
8481
|
+
responseType: responseType_,
|
|
8482
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
8483
|
+
headers: localVarHeaders,
|
|
8484
|
+
observe: observe,
|
|
8485
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
8486
|
+
reportProgress: reportProgress
|
|
8487
|
+
});
|
|
8488
|
+
}
|
|
8489
|
+
getWaveSummariesFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
8490
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
8491
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
8492
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
8493
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
8494
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
8495
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
|
|
8496
|
+
let localVarHeaders = this.defaultHeaders;
|
|
8497
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
8498
|
+
'application/json'
|
|
8499
|
+
]);
|
|
8500
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
8501
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
8502
|
+
}
|
|
8503
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
8504
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
8505
|
+
let responseType_ = 'json';
|
|
8506
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
8507
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
8508
|
+
responseType_ = 'text';
|
|
8509
|
+
}
|
|
8510
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
8511
|
+
responseType_ = 'json';
|
|
8512
|
+
}
|
|
8513
|
+
else {
|
|
8514
|
+
responseType_ = 'blob';
|
|
8515
|
+
}
|
|
8516
|
+
}
|
|
8517
|
+
let localVarPath = `/waveSummaries/search`;
|
|
8518
|
+
const { basePath, withCredentials } = this.configuration;
|
|
8519
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
8520
|
+
context: localVarHttpContext,
|
|
8521
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
8522
|
+
responseType: responseType_,
|
|
8523
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
8524
|
+
headers: localVarHeaders,
|
|
8525
|
+
observe: observe,
|
|
8526
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
8527
|
+
reportProgress: reportProgress
|
|
8528
|
+
});
|
|
8529
|
+
}
|
|
8530
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveSummariesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8531
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveSummariesService, providedIn: 'root' });
|
|
8532
|
+
}
|
|
8533
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveSummariesService, decorators: [{
|
|
8534
|
+
type: Injectable,
|
|
8535
|
+
args: [{
|
|
8536
|
+
providedIn: 'root'
|
|
8537
|
+
}]
|
|
8538
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
8539
|
+
type: Optional
|
|
8540
|
+
}, {
|
|
8541
|
+
type: Inject,
|
|
8542
|
+
args: [BASE_PATH]
|
|
8543
|
+
}] }, { type: Configuration, decorators: [{
|
|
8544
|
+
type: Optional
|
|
8545
|
+
}] }] });
|
|
8546
|
+
|
|
8357
8547
|
/**
|
|
8358
8548
|
* Wms.API.Client
|
|
8359
8549
|
*
|
|
@@ -8431,7 +8621,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
8431
8621
|
type: Optional
|
|
8432
8622
|
}] }] });
|
|
8433
8623
|
|
|
8434
|
-
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WavesByPickReleaseIdService];
|
|
8624
|
+
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WaveSummariesService, WavesByPickReleaseIdService];
|
|
8435
8625
|
|
|
8436
8626
|
/**
|
|
8437
8627
|
* Wms.API.Client
|
|
@@ -9515,5 +9705,5 @@ function provideApi(configOrBasePath) {
|
|
|
9515
9705
|
* Generated bundle index. Do not edit.
|
|
9516
9706
|
*/
|
|
9517
9707
|
|
|
9518
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
9708
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
|
|
9519
9709
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|