@indigina/wms-api 0.0.116 → 0.0.118
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
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.118
|
|
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.118 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -3639,6 +3639,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
3639
3639
|
type: Optional
|
|
3640
3640
|
}] }] });
|
|
3641
3641
|
|
|
3642
|
+
/**
|
|
3643
|
+
* Wms.API.Client
|
|
3644
|
+
*
|
|
3645
|
+
*
|
|
3646
|
+
*
|
|
3647
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3648
|
+
* https://openapi-generator.tech
|
|
3649
|
+
* Do not edit the class manually.
|
|
3650
|
+
*/
|
|
3651
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
3652
|
+
class ProductMasterSuppliersService extends BaseService {
|
|
3653
|
+
httpClient;
|
|
3654
|
+
constructor(httpClient, basePath, configuration) {
|
|
3655
|
+
super(basePath, configuration);
|
|
3656
|
+
this.httpClient = httpClient;
|
|
3657
|
+
}
|
|
3658
|
+
getProductMastersBySupplier($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
3659
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
3660
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
3661
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
3662
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
3663
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
3664
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
3665
|
+
let localVarHeaders = this.defaultHeaders;
|
|
3666
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
3667
|
+
'application/json'
|
|
3668
|
+
]);
|
|
3669
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
3670
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
3671
|
+
}
|
|
3672
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
3673
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
3674
|
+
let responseType_ = 'json';
|
|
3675
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
3676
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
3677
|
+
responseType_ = 'text';
|
|
3678
|
+
}
|
|
3679
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
3680
|
+
responseType_ = 'json';
|
|
3681
|
+
}
|
|
3682
|
+
else {
|
|
3683
|
+
responseType_ = 'blob';
|
|
3684
|
+
}
|
|
3685
|
+
}
|
|
3686
|
+
let localVarPath = `/productMasterSuppliers/productMasters`;
|
|
3687
|
+
const { basePath, withCredentials } = this.configuration;
|
|
3688
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
3689
|
+
context: localVarHttpContext,
|
|
3690
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
3691
|
+
responseType: responseType_,
|
|
3692
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
3693
|
+
headers: localVarHeaders,
|
|
3694
|
+
observe: observe,
|
|
3695
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
3696
|
+
reportProgress: reportProgress
|
|
3697
|
+
});
|
|
3698
|
+
}
|
|
3699
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ProductMasterSuppliersService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3700
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ProductMasterSuppliersService, providedIn: 'root' });
|
|
3701
|
+
}
|
|
3702
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ProductMasterSuppliersService, decorators: [{
|
|
3703
|
+
type: Injectable,
|
|
3704
|
+
args: [{
|
|
3705
|
+
providedIn: 'root'
|
|
3706
|
+
}]
|
|
3707
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
3708
|
+
type: Optional
|
|
3709
|
+
}, {
|
|
3710
|
+
type: Inject,
|
|
3711
|
+
args: [BASE_PATH]
|
|
3712
|
+
}] }, { type: Configuration, decorators: [{
|
|
3713
|
+
type: Optional
|
|
3714
|
+
}] }] });
|
|
3715
|
+
|
|
3642
3716
|
/**
|
|
3643
3717
|
* Wms.API.Client
|
|
3644
3718
|
*
|
|
@@ -6094,7 +6168,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
6094
6168
|
type: Optional
|
|
6095
6169
|
}] }] });
|
|
6096
6170
|
|
|
6097
|
-
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, NotesService, PendoService, PermissionsService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UsersInternalService, WavePickReleasesService, WavesByPickReleaseIdService];
|
|
6171
|
+
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, NotesService, PendoService, PermissionsService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UsersInternalService, WavePickReleasesService, WavesByPickReleaseIdService];
|
|
6098
6172
|
|
|
6099
6173
|
/**
|
|
6100
6174
|
* Wms.API.Client
|
|
@@ -6548,6 +6622,20 @@ const PickingProcesses = {
|
|
|
6548
6622
|
* Do not edit the class manually.
|
|
6549
6623
|
*/
|
|
6550
6624
|
|
|
6625
|
+
/**
|
|
6626
|
+
* Wms.API.Client
|
|
6627
|
+
*
|
|
6628
|
+
*
|
|
6629
|
+
*
|
|
6630
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6631
|
+
* https://openapi-generator.tech
|
|
6632
|
+
* Do not edit the class manually.
|
|
6633
|
+
*/
|
|
6634
|
+
const ProductStatus = {
|
|
6635
|
+
InDevelopment: 'InDevelopment',
|
|
6636
|
+
InProduction: 'InProduction'
|
|
6637
|
+
};
|
|
6638
|
+
|
|
6551
6639
|
/**
|
|
6552
6640
|
* Wms.API.Client
|
|
6553
6641
|
*
|
|
@@ -6931,5 +7019,5 @@ function provideApi(configOrBasePath) {
|
|
|
6931
7019
|
* Generated bundle index. Do not edit.
|
|
6932
7020
|
*/
|
|
6933
7021
|
|
|
6934
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentRecordsService, ReplenishmentService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
7022
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentRecordsService, ReplenishmentService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
6935
7023
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|