@indigina/wms-api 0.0.146 → 0.0.148
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
|
@@ -2814,6 +2814,8 @@ declare const PackingProcesses: {
|
|
|
2814
2814
|
readonly PickPack: "PickPack";
|
|
2815
2815
|
readonly PickPackBySku: "PickPackBySku";
|
|
2816
2816
|
readonly BatchPacking: "BatchPacking";
|
|
2817
|
+
readonly DispatchPackingWeb: "DispatchPackingWeb";
|
|
2818
|
+
readonly SkuPackingWeb: "SkuPackingWeb";
|
|
2817
2819
|
};
|
|
2818
2820
|
type PackingProcesses = typeof PackingProcesses[keyof typeof PackingProcesses];
|
|
2819
2821
|
|
|
@@ -2902,6 +2904,35 @@ interface Dispatch {
|
|
|
2902
2904
|
declare namespace Dispatch {
|
|
2903
2905
|
}
|
|
2904
2906
|
|
|
2907
|
+
/**
|
|
2908
|
+
* Wms.API.Client
|
|
2909
|
+
*
|
|
2910
|
+
*
|
|
2911
|
+
*
|
|
2912
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2913
|
+
* https://openapi-generator.tech
|
|
2914
|
+
* Do not edit the class manually.
|
|
2915
|
+
*/
|
|
2916
|
+
interface DispatchCarrier {
|
|
2917
|
+
carrierId?: string;
|
|
2918
|
+
carrierName?: string;
|
|
2919
|
+
}
|
|
2920
|
+
|
|
2921
|
+
/**
|
|
2922
|
+
* Wms.API.Client
|
|
2923
|
+
*
|
|
2924
|
+
*
|
|
2925
|
+
*
|
|
2926
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2927
|
+
* https://openapi-generator.tech
|
|
2928
|
+
* Do not edit the class manually.
|
|
2929
|
+
*/
|
|
2930
|
+
|
|
2931
|
+
interface DispatchCarriers {
|
|
2932
|
+
total: number;
|
|
2933
|
+
data: Array<DispatchCarrier>;
|
|
2934
|
+
}
|
|
2935
|
+
|
|
2905
2936
|
/**
|
|
2906
2937
|
* Wms.API.Client
|
|
2907
2938
|
*
|
|
@@ -3176,6 +3207,29 @@ declare class DispatchesService extends BaseService {
|
|
|
3176
3207
|
context?: HttpContext;
|
|
3177
3208
|
transferCache?: boolean;
|
|
3178
3209
|
}): Observable<HttpEvent<Dispatch>>;
|
|
3210
|
+
/**
|
|
3211
|
+
* Getting available carriers for a dispatch
|
|
3212
|
+
* @endpoint get /dispatches/{id}/carriers
|
|
3213
|
+
* @param id
|
|
3214
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3215
|
+
* @param reportProgress flag to report request and response progress.
|
|
3216
|
+
* @param options additional options
|
|
3217
|
+
*/
|
|
3218
|
+
getDispatchCarriers(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3219
|
+
httpHeaderAccept?: 'application/json';
|
|
3220
|
+
context?: HttpContext;
|
|
3221
|
+
transferCache?: boolean;
|
|
3222
|
+
}): Observable<DispatchCarriers>;
|
|
3223
|
+
getDispatchCarriers(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3224
|
+
httpHeaderAccept?: 'application/json';
|
|
3225
|
+
context?: HttpContext;
|
|
3226
|
+
transferCache?: boolean;
|
|
3227
|
+
}): Observable<HttpResponse<DispatchCarriers>>;
|
|
3228
|
+
getDispatchCarriers(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3229
|
+
httpHeaderAccept?: 'application/json';
|
|
3230
|
+
context?: HttpContext;
|
|
3231
|
+
transferCache?: boolean;
|
|
3232
|
+
}): Observable<HttpEvent<DispatchCarriers>>;
|
|
3179
3233
|
/**
|
|
3180
3234
|
* Getting dispatch summary by id
|
|
3181
3235
|
* @endpoint get /dispatches/{id}/summary
|
|
@@ -3301,6 +3355,30 @@ declare class DispatchesService extends BaseService {
|
|
|
3301
3355
|
context?: HttpContext;
|
|
3302
3356
|
transferCache?: boolean;
|
|
3303
3357
|
}): Observable<HttpEvent<any>>;
|
|
3358
|
+
/**
|
|
3359
|
+
* Set carrier for a dispatch
|
|
3360
|
+
* @endpoint put /dispatches/{id}/carrier
|
|
3361
|
+
* @param id
|
|
3362
|
+
* @param carrierId
|
|
3363
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3364
|
+
* @param reportProgress flag to report request and response progress.
|
|
3365
|
+
* @param options additional options
|
|
3366
|
+
*/
|
|
3367
|
+
setDispatchCarrier(id: string, carrierId: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3368
|
+
httpHeaderAccept?: undefined;
|
|
3369
|
+
context?: HttpContext;
|
|
3370
|
+
transferCache?: boolean;
|
|
3371
|
+
}): Observable<any>;
|
|
3372
|
+
setDispatchCarrier(id: string, carrierId: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3373
|
+
httpHeaderAccept?: undefined;
|
|
3374
|
+
context?: HttpContext;
|
|
3375
|
+
transferCache?: boolean;
|
|
3376
|
+
}): Observable<HttpResponse<any>>;
|
|
3377
|
+
setDispatchCarrier(id: string, carrierId: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3378
|
+
httpHeaderAccept?: undefined;
|
|
3379
|
+
context?: HttpContext;
|
|
3380
|
+
transferCache?: boolean;
|
|
3381
|
+
}): Observable<HttpEvent<any>>;
|
|
3304
3382
|
static ɵfac: i0.ɵɵFactoryDeclaration<DispatchesService, [null, { optional: true; }, { optional: true; }]>;
|
|
3305
3383
|
static ɵprov: i0.ɵɵInjectableDeclaration<DispatchesService>;
|
|
3306
3384
|
}
|
|
@@ -7185,4 +7263,4 @@ declare class ApiModule {
|
|
|
7185
7263
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
7186
7264
|
|
|
7187
7265
|
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
7188
|
-
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, 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, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };
|
|
7266
|
+
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };
|