@indigina/wms-api 0.0.122 → 0.0.124
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/package.json
CHANGED
|
@@ -3379,6 +3379,29 @@ declare class NotesService extends BaseService {
|
|
|
3379
3379
|
context?: HttpContext;
|
|
3380
3380
|
transferCache?: boolean;
|
|
3381
3381
|
}): Observable<HttpEvent<Note>>;
|
|
3382
|
+
/**
|
|
3383
|
+
* Delete a specific note
|
|
3384
|
+
* @endpoint delete /notes/{id}
|
|
3385
|
+
* @param id
|
|
3386
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3387
|
+
* @param reportProgress flag to report request and response progress.
|
|
3388
|
+
* @param options additional options
|
|
3389
|
+
*/
|
|
3390
|
+
deleteNote(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3391
|
+
httpHeaderAccept?: undefined;
|
|
3392
|
+
context?: HttpContext;
|
|
3393
|
+
transferCache?: boolean;
|
|
3394
|
+
}): Observable<any>;
|
|
3395
|
+
deleteNote(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3396
|
+
httpHeaderAccept?: undefined;
|
|
3397
|
+
context?: HttpContext;
|
|
3398
|
+
transferCache?: boolean;
|
|
3399
|
+
}): Observable<HttpResponse<any>>;
|
|
3400
|
+
deleteNote(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3401
|
+
httpHeaderAccept?: undefined;
|
|
3402
|
+
context?: HttpContext;
|
|
3403
|
+
transferCache?: boolean;
|
|
3404
|
+
}): Observable<HttpEvent<any>>;
|
|
3382
3405
|
/**
|
|
3383
3406
|
* Get note by source with category
|
|
3384
3407
|
* @endpoint get /notes/{sourceId}/{type}/{category}
|
|
@@ -5890,6 +5913,75 @@ declare class WavePickReleasesService extends BaseService {
|
|
|
5890
5913
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavePickReleasesService>;
|
|
5891
5914
|
}
|
|
5892
5915
|
|
|
5916
|
+
/**
|
|
5917
|
+
* Wms.API.Client
|
|
5918
|
+
*
|
|
5919
|
+
*
|
|
5920
|
+
*
|
|
5921
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5922
|
+
* https://openapi-generator.tech
|
|
5923
|
+
* Do not edit the class manually.
|
|
5924
|
+
*/
|
|
5925
|
+
interface WavePickingAccessView {
|
|
5926
|
+
id: string;
|
|
5927
|
+
clientId?: string | null;
|
|
5928
|
+
client: string;
|
|
5929
|
+
pickByLicencePlate: boolean;
|
|
5930
|
+
createdDate: string;
|
|
5931
|
+
createdBy: string;
|
|
5932
|
+
lastModifiedDate?: string | null;
|
|
5933
|
+
lastModifiedBy?: string;
|
|
5934
|
+
}
|
|
5935
|
+
|
|
5936
|
+
/**
|
|
5937
|
+
* Wms.API.Client
|
|
5938
|
+
*
|
|
5939
|
+
*
|
|
5940
|
+
*
|
|
5941
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5942
|
+
* https://openapi-generator.tech
|
|
5943
|
+
* Do not edit the class manually.
|
|
5944
|
+
*/
|
|
5945
|
+
|
|
5946
|
+
interface WavePickingAccesses {
|
|
5947
|
+
total: number;
|
|
5948
|
+
data: Array<WavePickingAccessView>;
|
|
5949
|
+
}
|
|
5950
|
+
|
|
5951
|
+
declare class WavePickingAccessService extends BaseService {
|
|
5952
|
+
protected httpClient: HttpClient;
|
|
5953
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
5954
|
+
/**
|
|
5955
|
+
* Getting wave picking access list
|
|
5956
|
+
* @endpoint get /wavePickingAccesses
|
|
5957
|
+
* @param $skip
|
|
5958
|
+
* @param $top
|
|
5959
|
+
* @param $orderby
|
|
5960
|
+
* @param $filter
|
|
5961
|
+
* @param $search
|
|
5962
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5963
|
+
* @param reportProgress flag to report request and response progress.
|
|
5964
|
+
* @param options additional options
|
|
5965
|
+
*/
|
|
5966
|
+
getWavePickingAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5967
|
+
httpHeaderAccept?: 'application/json';
|
|
5968
|
+
context?: HttpContext;
|
|
5969
|
+
transferCache?: boolean;
|
|
5970
|
+
}): Observable<WavePickingAccesses>;
|
|
5971
|
+
getWavePickingAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
5972
|
+
httpHeaderAccept?: 'application/json';
|
|
5973
|
+
context?: HttpContext;
|
|
5974
|
+
transferCache?: boolean;
|
|
5975
|
+
}): Observable<HttpResponse<WavePickingAccesses>>;
|
|
5976
|
+
getWavePickingAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
5977
|
+
httpHeaderAccept?: 'application/json';
|
|
5978
|
+
context?: HttpContext;
|
|
5979
|
+
transferCache?: boolean;
|
|
5980
|
+
}): Observable<HttpEvent<WavePickingAccesses>>;
|
|
5981
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WavePickingAccessService, [null, { optional: true; }, { optional: true; }]>;
|
|
5982
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WavePickingAccessService>;
|
|
5983
|
+
}
|
|
5984
|
+
|
|
5893
5985
|
/**
|
|
5894
5986
|
* Wms.API.Client
|
|
5895
5987
|
*
|
|
@@ -5985,7 +6077,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
5985
6077
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
5986
6078
|
}
|
|
5987
6079
|
|
|
5988
|
-
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)[];
|
|
6080
|
+
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)[];
|
|
5989
6081
|
|
|
5990
6082
|
/**
|
|
5991
6083
|
* Wms.API.Client
|
|
@@ -6170,5 +6262,5 @@ declare class ApiModule {
|
|
|
6170
6262
|
|
|
6171
6263
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
6172
6264
|
|
|
6173
|
-
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 };
|
|
6174
|
-
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 };
|
|
6265
|
+
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 };
|
|
6266
|
+
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 };
|