@indigina/wms-api 0.0.138 → 0.0.140
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 +86 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +119 -47
package/package.json
CHANGED
|
@@ -2730,6 +2730,27 @@ declare class DispatchItemsService extends BaseService {
|
|
|
2730
2730
|
static ɵprov: i0.ɵɵInjectableDeclaration<DispatchItemsService>;
|
|
2731
2731
|
}
|
|
2732
2732
|
|
|
2733
|
+
/**
|
|
2734
|
+
* Wms.API.Client
|
|
2735
|
+
*
|
|
2736
|
+
*
|
|
2737
|
+
*
|
|
2738
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2739
|
+
* https://openapi-generator.tech
|
|
2740
|
+
* Do not edit the class manually.
|
|
2741
|
+
*/
|
|
2742
|
+
declare const PickingProcesses: {
|
|
2743
|
+
readonly OrderPicking: "OrderPicking";
|
|
2744
|
+
readonly OrderPickingToTempBin: "OrderPickingToTempBin";
|
|
2745
|
+
readonly WavePicking: "WavePicking";
|
|
2746
|
+
readonly FastDispatch: "FastDispatch";
|
|
2747
|
+
readonly PickBySku: "PickBySku";
|
|
2748
|
+
readonly PickPack: "PickPack";
|
|
2749
|
+
readonly PickPackBySku: "PickPackBySku";
|
|
2750
|
+
readonly BatchPicking: "BatchPicking";
|
|
2751
|
+
};
|
|
2752
|
+
type PickingProcesses = typeof PickingProcesses[keyof typeof PickingProcesses];
|
|
2753
|
+
|
|
2733
2754
|
/**
|
|
2734
2755
|
* Wms.API.Client
|
|
2735
2756
|
*
|
|
@@ -2751,6 +2772,27 @@ declare const OrderType: {
|
|
|
2751
2772
|
};
|
|
2752
2773
|
type OrderType = typeof OrderType[keyof typeof OrderType];
|
|
2753
2774
|
|
|
2775
|
+
/**
|
|
2776
|
+
* Wms.API.Client
|
|
2777
|
+
*
|
|
2778
|
+
*
|
|
2779
|
+
*
|
|
2780
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2781
|
+
* https://openapi-generator.tech
|
|
2782
|
+
* Do not edit the class manually.
|
|
2783
|
+
*/
|
|
2784
|
+
declare const PackingProcesses: {
|
|
2785
|
+
readonly OrderPacking: "OrderPacking";
|
|
2786
|
+
readonly WebOrderPacking: "WebOrderPacking";
|
|
2787
|
+
readonly ClusterPacking: "ClusterPacking";
|
|
2788
|
+
readonly DispatchPacking: "DispatchPacking";
|
|
2789
|
+
readonly SkuPacking: "SkuPacking";
|
|
2790
|
+
readonly PickPack: "PickPack";
|
|
2791
|
+
readonly PickPackBySku: "PickPackBySku";
|
|
2792
|
+
readonly BatchPicking: "BatchPicking";
|
|
2793
|
+
};
|
|
2794
|
+
type PackingProcesses = typeof PackingProcesses[keyof typeof PackingProcesses];
|
|
2795
|
+
|
|
2754
2796
|
/**
|
|
2755
2797
|
* Wms.API.Client
|
|
2756
2798
|
*
|
|
@@ -2826,8 +2868,8 @@ interface Dispatch {
|
|
|
2826
2868
|
waveId?: string | null;
|
|
2827
2869
|
purchaseOrderNumber?: string;
|
|
2828
2870
|
star?: boolean;
|
|
2829
|
-
|
|
2830
|
-
|
|
2871
|
+
pickingProcess?: PickingProcesses;
|
|
2872
|
+
packingProcess?: PackingProcesses;
|
|
2831
2873
|
noOfLinesOrdered?: number | null;
|
|
2832
2874
|
totalUnitsOrdered?: number | null;
|
|
2833
2875
|
containsBuildKit?: boolean;
|
|
@@ -2836,48 +2878,6 @@ interface Dispatch {
|
|
|
2836
2878
|
declare namespace Dispatch {
|
|
2837
2879
|
}
|
|
2838
2880
|
|
|
2839
|
-
/**
|
|
2840
|
-
* Wms.API.Client
|
|
2841
|
-
*
|
|
2842
|
-
*
|
|
2843
|
-
*
|
|
2844
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2845
|
-
* https://openapi-generator.tech
|
|
2846
|
-
* Do not edit the class manually.
|
|
2847
|
-
*/
|
|
2848
|
-
declare const PickingProcesses: {
|
|
2849
|
-
readonly OrderPicking: "OrderPicking";
|
|
2850
|
-
readonly OrderPickingToTempBin: "OrderPickingToTempBin";
|
|
2851
|
-
readonly WavePicking: "WavePicking";
|
|
2852
|
-
readonly FastDispatch: "FastDispatch";
|
|
2853
|
-
readonly PickBySku: "PickBySku";
|
|
2854
|
-
readonly PickPack: "PickPack";
|
|
2855
|
-
readonly PickPackBySku: "PickPackBySku";
|
|
2856
|
-
readonly BatchPicking: "BatchPicking";
|
|
2857
|
-
};
|
|
2858
|
-
type PickingProcesses = typeof PickingProcesses[keyof typeof PickingProcesses];
|
|
2859
|
-
|
|
2860
|
-
/**
|
|
2861
|
-
* Wms.API.Client
|
|
2862
|
-
*
|
|
2863
|
-
*
|
|
2864
|
-
*
|
|
2865
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2866
|
-
* https://openapi-generator.tech
|
|
2867
|
-
* Do not edit the class manually.
|
|
2868
|
-
*/
|
|
2869
|
-
declare const PackingProcesses: {
|
|
2870
|
-
readonly OrderPacking: "OrderPacking";
|
|
2871
|
-
readonly WebOrderPacking: "WebOrderPacking";
|
|
2872
|
-
readonly ClusterPacking: "ClusterPacking";
|
|
2873
|
-
readonly DispatchPacking: "DispatchPacking";
|
|
2874
|
-
readonly SkuPacking: "SkuPacking";
|
|
2875
|
-
readonly PickPack: "PickPack";
|
|
2876
|
-
readonly PickPackBySku: "PickPackBySku";
|
|
2877
|
-
readonly BatchPicking: "BatchPicking";
|
|
2878
|
-
};
|
|
2879
|
-
type PackingProcesses = typeof PackingProcesses[keyof typeof PackingProcesses];
|
|
2880
|
-
|
|
2881
2881
|
/**
|
|
2882
2882
|
* Wms.API.Client
|
|
2883
2883
|
*
|
|
@@ -3310,6 +3310,78 @@ declare class HealthService extends BaseService {
|
|
|
3310
3310
|
static ɵprov: i0.ɵɵInjectableDeclaration<HealthService>;
|
|
3311
3311
|
}
|
|
3312
3312
|
|
|
3313
|
+
/**
|
|
3314
|
+
* Wms.API.Client
|
|
3315
|
+
*
|
|
3316
|
+
*
|
|
3317
|
+
*
|
|
3318
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3319
|
+
* https://openapi-generator.tech
|
|
3320
|
+
* Do not edit the class manually.
|
|
3321
|
+
*/
|
|
3322
|
+
interface LicencePlateSerialView {
|
|
3323
|
+
id: number;
|
|
3324
|
+
clientId?: string;
|
|
3325
|
+
cartonId?: string;
|
|
3326
|
+
client: string | null;
|
|
3327
|
+
licencePlateNumber: number;
|
|
3328
|
+
location: string | null;
|
|
3329
|
+
productCode: string | null;
|
|
3330
|
+
productDescription: string | null;
|
|
3331
|
+
serialNumber: string | null;
|
|
3332
|
+
serialReference: string | null;
|
|
3333
|
+
createdDate: string;
|
|
3334
|
+
}
|
|
3335
|
+
|
|
3336
|
+
/**
|
|
3337
|
+
* Wms.API.Client
|
|
3338
|
+
*
|
|
3339
|
+
*
|
|
3340
|
+
*
|
|
3341
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3342
|
+
* https://openapi-generator.tech
|
|
3343
|
+
* Do not edit the class manually.
|
|
3344
|
+
*/
|
|
3345
|
+
|
|
3346
|
+
interface LicencePlateSerials {
|
|
3347
|
+
total: number;
|
|
3348
|
+
data: Array<LicencePlateSerialView>;
|
|
3349
|
+
}
|
|
3350
|
+
|
|
3351
|
+
declare class LicencePlateSerialsService extends BaseService {
|
|
3352
|
+
protected httpClient: HttpClient;
|
|
3353
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3354
|
+
/**
|
|
3355
|
+
* Retrieve a paginated list of licence plate serials based on a specification
|
|
3356
|
+
* @endpoint get /licencePlateSerials
|
|
3357
|
+
* @param $skip
|
|
3358
|
+
* @param $top
|
|
3359
|
+
* @param $orderby
|
|
3360
|
+
* @param $filter
|
|
3361
|
+
* @param $search
|
|
3362
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3363
|
+
* @param reportProgress flag to report request and response progress.
|
|
3364
|
+
* @param options additional options
|
|
3365
|
+
*/
|
|
3366
|
+
getLicencePlateSerials($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3367
|
+
httpHeaderAccept?: 'application/json';
|
|
3368
|
+
context?: HttpContext;
|
|
3369
|
+
transferCache?: boolean;
|
|
3370
|
+
}): Observable<LicencePlateSerials>;
|
|
3371
|
+
getLicencePlateSerials($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3372
|
+
httpHeaderAccept?: 'application/json';
|
|
3373
|
+
context?: HttpContext;
|
|
3374
|
+
transferCache?: boolean;
|
|
3375
|
+
}): Observable<HttpResponse<LicencePlateSerials>>;
|
|
3376
|
+
getLicencePlateSerials($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3377
|
+
httpHeaderAccept?: 'application/json';
|
|
3378
|
+
context?: HttpContext;
|
|
3379
|
+
transferCache?: boolean;
|
|
3380
|
+
}): Observable<HttpEvent<LicencePlateSerials>>;
|
|
3381
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LicencePlateSerialsService, [null, { optional: true; }, { optional: true; }]>;
|
|
3382
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LicencePlateSerialsService>;
|
|
3383
|
+
}
|
|
3384
|
+
|
|
3313
3385
|
/**
|
|
3314
3386
|
* Wms.API.Client
|
|
3315
3387
|
*
|
|
@@ -6734,7 +6806,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
6734
6806
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
6735
6807
|
}
|
|
6736
6808
|
|
|
6737
|
-
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 ReplenishmentAccessService | 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)[];
|
|
6809
|
+
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 LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | 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)[];
|
|
6738
6810
|
|
|
6739
6811
|
/**
|
|
6740
6812
|
* Wms.API.Client
|
|
@@ -7007,5 +7079,5 @@ declare class ApiModule {
|
|
|
7007
7079
|
|
|
7008
7080
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
7009
7081
|
|
|
7010
|
-
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, 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 };
|
|
7011
|
-
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, 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 };
|
|
7082
|
+
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 };
|
|
7083
|
+
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, 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 };
|