@indigina/wms-api 0.0.123 → 0.0.125
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 +88 -10
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +78 -11
package/package.json
CHANGED
|
@@ -2077,22 +2077,21 @@ declare class DeliveriesService extends BaseService {
|
|
|
2077
2077
|
* @endpoint put /deliveries/{id}
|
|
2078
2078
|
* @param id
|
|
2079
2079
|
* @param delivery
|
|
2080
|
-
* @param propertiesToUpdate
|
|
2081
2080
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2082
2081
|
* @param reportProgress flag to report request and response progress.
|
|
2083
2082
|
* @param options additional options
|
|
2084
2083
|
*/
|
|
2085
|
-
setDelivery(id: string, delivery: Delivery,
|
|
2084
|
+
setDelivery(id: string, delivery: Delivery, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2086
2085
|
httpHeaderAccept?: 'application/json';
|
|
2087
2086
|
context?: HttpContext;
|
|
2088
2087
|
transferCache?: boolean;
|
|
2089
2088
|
}): Observable<Delivery>;
|
|
2090
|
-
setDelivery(id: string, delivery: Delivery,
|
|
2089
|
+
setDelivery(id: string, delivery: Delivery, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2091
2090
|
httpHeaderAccept?: 'application/json';
|
|
2092
2091
|
context?: HttpContext;
|
|
2093
2092
|
transferCache?: boolean;
|
|
2094
2093
|
}): Observable<HttpResponse<Delivery>>;
|
|
2095
|
-
setDelivery(id: string, delivery: Delivery,
|
|
2094
|
+
setDelivery(id: string, delivery: Delivery, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2096
2095
|
httpHeaderAccept?: 'application/json';
|
|
2097
2096
|
context?: HttpContext;
|
|
2098
2097
|
transferCache?: boolean;
|
|
@@ -2309,22 +2308,21 @@ declare class DeliveryItemsService extends BaseService {
|
|
|
2309
2308
|
* @endpoint put /deliveryItems/{id}
|
|
2310
2309
|
* @param id
|
|
2311
2310
|
* @param deliveryItem
|
|
2312
|
-
* @param propertiesToUpdate
|
|
2313
2311
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2314
2312
|
* @param reportProgress flag to report request and response progress.
|
|
2315
2313
|
* @param options additional options
|
|
2316
2314
|
*/
|
|
2317
|
-
setDeliveryItem(id: string, deliveryItem: DeliveryItem,
|
|
2315
|
+
setDeliveryItem(id: string, deliveryItem: DeliveryItem, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2318
2316
|
httpHeaderAccept?: 'application/json';
|
|
2319
2317
|
context?: HttpContext;
|
|
2320
2318
|
transferCache?: boolean;
|
|
2321
2319
|
}): Observable<DeliveryItem>;
|
|
2322
|
-
setDeliveryItem(id: string, deliveryItem: DeliveryItem,
|
|
2320
|
+
setDeliveryItem(id: string, deliveryItem: DeliveryItem, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2323
2321
|
httpHeaderAccept?: 'application/json';
|
|
2324
2322
|
context?: HttpContext;
|
|
2325
2323
|
transferCache?: boolean;
|
|
2326
2324
|
}): Observable<HttpResponse<DeliveryItem>>;
|
|
2327
|
-
setDeliveryItem(id: string, deliveryItem: DeliveryItem,
|
|
2325
|
+
setDeliveryItem(id: string, deliveryItem: DeliveryItem, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2328
2326
|
httpHeaderAccept?: 'application/json';
|
|
2329
2327
|
context?: HttpContext;
|
|
2330
2328
|
transferCache?: boolean;
|
|
@@ -5913,6 +5911,75 @@ declare class WavePickReleasesService extends BaseService {
|
|
|
5913
5911
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavePickReleasesService>;
|
|
5914
5912
|
}
|
|
5915
5913
|
|
|
5914
|
+
/**
|
|
5915
|
+
* Wms.API.Client
|
|
5916
|
+
*
|
|
5917
|
+
*
|
|
5918
|
+
*
|
|
5919
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5920
|
+
* https://openapi-generator.tech
|
|
5921
|
+
* Do not edit the class manually.
|
|
5922
|
+
*/
|
|
5923
|
+
interface WavePickingAccessView {
|
|
5924
|
+
id: string;
|
|
5925
|
+
clientId?: string | null;
|
|
5926
|
+
client: string;
|
|
5927
|
+
pickByLicencePlate: boolean;
|
|
5928
|
+
createdDate: string;
|
|
5929
|
+
createdBy: string;
|
|
5930
|
+
lastModifiedDate?: string | null;
|
|
5931
|
+
lastModifiedBy?: string;
|
|
5932
|
+
}
|
|
5933
|
+
|
|
5934
|
+
/**
|
|
5935
|
+
* Wms.API.Client
|
|
5936
|
+
*
|
|
5937
|
+
*
|
|
5938
|
+
*
|
|
5939
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5940
|
+
* https://openapi-generator.tech
|
|
5941
|
+
* Do not edit the class manually.
|
|
5942
|
+
*/
|
|
5943
|
+
|
|
5944
|
+
interface WavePickingAccesses {
|
|
5945
|
+
total: number;
|
|
5946
|
+
data: Array<WavePickingAccessView>;
|
|
5947
|
+
}
|
|
5948
|
+
|
|
5949
|
+
declare class WavePickingAccessService extends BaseService {
|
|
5950
|
+
protected httpClient: HttpClient;
|
|
5951
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
5952
|
+
/**
|
|
5953
|
+
* Getting wave picking access list
|
|
5954
|
+
* @endpoint get /wavePickingAccesses
|
|
5955
|
+
* @param $skip
|
|
5956
|
+
* @param $top
|
|
5957
|
+
* @param $orderby
|
|
5958
|
+
* @param $filter
|
|
5959
|
+
* @param $search
|
|
5960
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5961
|
+
* @param reportProgress flag to report request and response progress.
|
|
5962
|
+
* @param options additional options
|
|
5963
|
+
*/
|
|
5964
|
+
getWavePickingAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5965
|
+
httpHeaderAccept?: 'application/json';
|
|
5966
|
+
context?: HttpContext;
|
|
5967
|
+
transferCache?: boolean;
|
|
5968
|
+
}): Observable<WavePickingAccesses>;
|
|
5969
|
+
getWavePickingAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
5970
|
+
httpHeaderAccept?: 'application/json';
|
|
5971
|
+
context?: HttpContext;
|
|
5972
|
+
transferCache?: boolean;
|
|
5973
|
+
}): Observable<HttpResponse<WavePickingAccesses>>;
|
|
5974
|
+
getWavePickingAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
5975
|
+
httpHeaderAccept?: 'application/json';
|
|
5976
|
+
context?: HttpContext;
|
|
5977
|
+
transferCache?: boolean;
|
|
5978
|
+
}): Observable<HttpEvent<WavePickingAccesses>>;
|
|
5979
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WavePickingAccessService, [null, { optional: true; }, { optional: true; }]>;
|
|
5980
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WavePickingAccessService>;
|
|
5981
|
+
}
|
|
5982
|
+
|
|
5916
5983
|
/**
|
|
5917
5984
|
* Wms.API.Client
|
|
5918
5985
|
*
|
|
@@ -6008,7 +6075,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
6008
6075
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
6009
6076
|
}
|
|
6010
6077
|
|
|
6011
|
-
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessesService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserPrintersService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavesByPickReleaseIdService)[];
|
|
6078
|
+
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessesService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserPrintersService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WavesByPickReleaseIdService)[];
|
|
6012
6079
|
|
|
6013
6080
|
/**
|
|
6014
6081
|
* Wms.API.Client
|
|
@@ -6193,5 +6260,5 @@ declare class ApiModule {
|
|
|
6193
6260
|
|
|
6194
6261
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
6195
6262
|
|
|
6196
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, PrintTypes, Printer, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessesService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserPrinter, UserPrintersService, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
6197
|
-
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, Waves };
|
|
6263
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, PrintTypes, Printer, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessesService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserPrinter, UserPrintersService, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
6264
|
+
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, WavePickingAccessView, WavePickingAccesses, Waves };
|