@indigina/wms-api 0.0.103 → 0.0.105
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 +38 -1
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +71 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2654,6 +2654,52 @@ interface Dispatches {
|
|
|
2654
2654
|
data: Array<DispatchGridView>;
|
|
2655
2655
|
}
|
|
2656
2656
|
|
|
2657
|
+
/**
|
|
2658
|
+
* Wms.API.Client
|
|
2659
|
+
*
|
|
2660
|
+
*
|
|
2661
|
+
*
|
|
2662
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2663
|
+
* https://openapi-generator.tech
|
|
2664
|
+
* Do not edit the class manually.
|
|
2665
|
+
*/
|
|
2666
|
+
|
|
2667
|
+
interface PrintDispatchView {
|
|
2668
|
+
clientId: string;
|
|
2669
|
+
dcId: string;
|
|
2670
|
+
salesOrderNumber?: string;
|
|
2671
|
+
waveId?: string | null;
|
|
2672
|
+
dispatchId: string;
|
|
2673
|
+
clientName?: string;
|
|
2674
|
+
dispatchNumber: string;
|
|
2675
|
+
noOfLines?: number | null;
|
|
2676
|
+
totalUnits?: number | null;
|
|
2677
|
+
countryName?: string;
|
|
2678
|
+
statusDescription?: OrderStatus;
|
|
2679
|
+
dispatchNumberUnique: number;
|
|
2680
|
+
commercialInvoiceEnabled: boolean;
|
|
2681
|
+
shipToCountryId?: string | null;
|
|
2682
|
+
dispatchNoteEnabled: boolean;
|
|
2683
|
+
nonStandardRequirementEnabled: boolean;
|
|
2684
|
+
carrierLabelEnabled: boolean;
|
|
2685
|
+
packingListEnabled: boolean;
|
|
2686
|
+
boxLabelEnabled: boolean;
|
|
2687
|
+
boxLabelModalEnabled: boolean;
|
|
2688
|
+
giftMessageCardEnabled: boolean;
|
|
2689
|
+
dcUser: boolean;
|
|
2690
|
+
productLabelEnabled: boolean;
|
|
2691
|
+
kitToOrderEnabled: boolean;
|
|
2692
|
+
extPlatesPending: boolean;
|
|
2693
|
+
integratedDispatchNoteEnabled: boolean;
|
|
2694
|
+
integratedEmptyDispatchNoteEnabled: boolean;
|
|
2695
|
+
printEnabled: boolean;
|
|
2696
|
+
boxCount: number;
|
|
2697
|
+
startBoxNumber?: number;
|
|
2698
|
+
endBoxNumber?: number;
|
|
2699
|
+
}
|
|
2700
|
+
declare namespace PrintDispatchView {
|
|
2701
|
+
}
|
|
2702
|
+
|
|
2657
2703
|
declare class DispatchesService extends BaseService {
|
|
2658
2704
|
protected httpClient: HttpClient;
|
|
2659
2705
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
@@ -2794,6 +2840,27 @@ declare class DispatchesService extends BaseService {
|
|
|
2794
2840
|
context?: HttpContext;
|
|
2795
2841
|
transferCache?: boolean;
|
|
2796
2842
|
}): Observable<HttpEvent<Dispatches>>;
|
|
2843
|
+
/**
|
|
2844
|
+
* Getting dispatch print details by id
|
|
2845
|
+
* @param id
|
|
2846
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2847
|
+
* @param reportProgress flag to report request and response progress.
|
|
2848
|
+
*/
|
|
2849
|
+
getPrintDetails(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2850
|
+
httpHeaderAccept?: 'application/json';
|
|
2851
|
+
context?: HttpContext;
|
|
2852
|
+
transferCache?: boolean;
|
|
2853
|
+
}): Observable<PrintDispatchView>;
|
|
2854
|
+
getPrintDetails(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2855
|
+
httpHeaderAccept?: 'application/json';
|
|
2856
|
+
context?: HttpContext;
|
|
2857
|
+
transferCache?: boolean;
|
|
2858
|
+
}): Observable<HttpResponse<PrintDispatchView>>;
|
|
2859
|
+
getPrintDetails(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2860
|
+
httpHeaderAccept?: 'application/json';
|
|
2861
|
+
context?: HttpContext;
|
|
2862
|
+
transferCache?: boolean;
|
|
2863
|
+
}): Observable<HttpEvent<PrintDispatchView>>;
|
|
2797
2864
|
/**
|
|
2798
2865
|
* Release on-hold dispatches
|
|
2799
2866
|
* @param ids
|
|
@@ -4929,17 +4996,17 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
4929
4996
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4930
4997
|
* @param reportProgress flag to report request and response progress.
|
|
4931
4998
|
*/
|
|
4932
|
-
getWavesByPickReleaseId(id:
|
|
4999
|
+
getWavesByPickReleaseId(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4933
5000
|
httpHeaderAccept?: 'application/json';
|
|
4934
5001
|
context?: HttpContext;
|
|
4935
5002
|
transferCache?: boolean;
|
|
4936
5003
|
}): Observable<Waves>;
|
|
4937
|
-
getWavesByPickReleaseId(id:
|
|
5004
|
+
getWavesByPickReleaseId(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4938
5005
|
httpHeaderAccept?: 'application/json';
|
|
4939
5006
|
context?: HttpContext;
|
|
4940
5007
|
transferCache?: boolean;
|
|
4941
5008
|
}): Observable<HttpResponse<Waves>>;
|
|
4942
|
-
getWavesByPickReleaseId(id:
|
|
5009
|
+
getWavesByPickReleaseId(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4943
5010
|
httpHeaderAccept?: 'application/json';
|
|
4944
5011
|
context?: HttpContext;
|
|
4945
5012
|
transferCache?: boolean;
|
|
@@ -5133,5 +5200,5 @@ declare class ApiModule {
|
|
|
5133
5200
|
|
|
5134
5201
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
5135
5202
|
|
|
5136
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, 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, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
5203
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, 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, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
5137
5204
|
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, 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, Notes, Param, ParamLocation, ParamStyle, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, Waves };
|