@indigina/wms-api 0.0.186 → 0.0.188
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 +177 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +185 -3
package/package.json
CHANGED
|
@@ -5273,6 +5273,70 @@ interface PrintDispatchView {
|
|
|
5273
5273
|
declare namespace PrintDispatchView {
|
|
5274
5274
|
}
|
|
5275
5275
|
|
|
5276
|
+
/**
|
|
5277
|
+
* Wms.API.Client
|
|
5278
|
+
*
|
|
5279
|
+
*
|
|
5280
|
+
*
|
|
5281
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5282
|
+
* https://openapi-generator.tech
|
|
5283
|
+
* Do not edit the class manually.
|
|
5284
|
+
*/
|
|
5285
|
+
interface CountrySummary {
|
|
5286
|
+
countryName?: string | null;
|
|
5287
|
+
}
|
|
5288
|
+
|
|
5289
|
+
/**
|
|
5290
|
+
* Wms.API.Client
|
|
5291
|
+
*
|
|
5292
|
+
*
|
|
5293
|
+
*
|
|
5294
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5295
|
+
* https://openapi-generator.tech
|
|
5296
|
+
* Do not edit the class manually.
|
|
5297
|
+
*/
|
|
5298
|
+
|
|
5299
|
+
interface WavePickingStarDispatchView {
|
|
5300
|
+
id: string;
|
|
5301
|
+
clientId: string;
|
|
5302
|
+
client?: CompanyDescriptionSummary | null;
|
|
5303
|
+
dispatchNumber: string;
|
|
5304
|
+
salesOrderNumberList?: string;
|
|
5305
|
+
noOfLines?: number | null;
|
|
5306
|
+
noOfLinesOrdered?: number | null;
|
|
5307
|
+
shipTo?: string;
|
|
5308
|
+
region?: string;
|
|
5309
|
+
countryId?: string | null;
|
|
5310
|
+
country?: CountrySummary | null;
|
|
5311
|
+
requestedCarrier?: string;
|
|
5312
|
+
requestedService?: string;
|
|
5313
|
+
carrier?: string;
|
|
5314
|
+
service?: string;
|
|
5315
|
+
orderType: OrderType;
|
|
5316
|
+
createdDate: string;
|
|
5317
|
+
scheduledShipDate?: string | null;
|
|
5318
|
+
recordType: RecordType;
|
|
5319
|
+
star: boolean;
|
|
5320
|
+
dispatchNumberUnique: number;
|
|
5321
|
+
}
|
|
5322
|
+
declare namespace WavePickingStarDispatchView {
|
|
5323
|
+
}
|
|
5324
|
+
|
|
5325
|
+
/**
|
|
5326
|
+
* Wms.API.Client
|
|
5327
|
+
*
|
|
5328
|
+
*
|
|
5329
|
+
*
|
|
5330
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5331
|
+
* https://openapi-generator.tech
|
|
5332
|
+
* Do not edit the class manually.
|
|
5333
|
+
*/
|
|
5334
|
+
|
|
5335
|
+
interface WavePickingStarDispatches {
|
|
5336
|
+
total: number;
|
|
5337
|
+
data: Array<WavePickingStarDispatchView>;
|
|
5338
|
+
}
|
|
5339
|
+
|
|
5276
5340
|
declare class DispatchesService extends BaseService {
|
|
5277
5341
|
protected httpClient: HttpClient;
|
|
5278
5342
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
@@ -5518,6 +5582,33 @@ declare class DispatchesService extends BaseService {
|
|
|
5518
5582
|
context?: HttpContext;
|
|
5519
5583
|
transferCache?: boolean;
|
|
5520
5584
|
}): Observable<HttpEvent<PrintDispatchView>>;
|
|
5585
|
+
/**
|
|
5586
|
+
* Getting the To Be Picked star dispatches
|
|
5587
|
+
* @endpoint get /dispatches/star-dispatches
|
|
5588
|
+
* @param $skip
|
|
5589
|
+
* @param $top
|
|
5590
|
+
* @param $orderby
|
|
5591
|
+
* @param $filter
|
|
5592
|
+
* @param $search
|
|
5593
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5594
|
+
* @param reportProgress flag to report request and response progress.
|
|
5595
|
+
* @param options additional options
|
|
5596
|
+
*/
|
|
5597
|
+
getStarDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5598
|
+
httpHeaderAccept?: 'application/json';
|
|
5599
|
+
context?: HttpContext;
|
|
5600
|
+
transferCache?: boolean;
|
|
5601
|
+
}): Observable<WavePickingStarDispatches>;
|
|
5602
|
+
getStarDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
5603
|
+
httpHeaderAccept?: 'application/json';
|
|
5604
|
+
context?: HttpContext;
|
|
5605
|
+
transferCache?: boolean;
|
|
5606
|
+
}): Observable<HttpResponse<WavePickingStarDispatches>>;
|
|
5607
|
+
getStarDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
5608
|
+
httpHeaderAccept?: 'application/json';
|
|
5609
|
+
context?: HttpContext;
|
|
5610
|
+
transferCache?: boolean;
|
|
5611
|
+
}): Observable<HttpEvent<WavePickingStarDispatches>>;
|
|
5521
5612
|
/**
|
|
5522
5613
|
* Release on-hold dispatches
|
|
5523
5614
|
* @endpoint put /dispatches/release-on-hold
|
|
@@ -5566,6 +5657,30 @@ declare class DispatchesService extends BaseService {
|
|
|
5566
5657
|
context?: HttpContext;
|
|
5567
5658
|
transferCache?: boolean;
|
|
5568
5659
|
}): Observable<HttpEvent<any>>;
|
|
5660
|
+
/**
|
|
5661
|
+
* Toggle the Star flag for a dispatch
|
|
5662
|
+
* @endpoint patch /dispatches/{id}/star
|
|
5663
|
+
* @param id
|
|
5664
|
+
* @param starred
|
|
5665
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5666
|
+
* @param reportProgress flag to report request and response progress.
|
|
5667
|
+
* @param options additional options
|
|
5668
|
+
*/
|
|
5669
|
+
setDispatchStar(id: string, starred: boolean, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5670
|
+
httpHeaderAccept?: undefined;
|
|
5671
|
+
context?: HttpContext;
|
|
5672
|
+
transferCache?: boolean;
|
|
5673
|
+
}): Observable<any>;
|
|
5674
|
+
setDispatchStar(id: string, starred: boolean, observe?: 'response', reportProgress?: boolean, options?: {
|
|
5675
|
+
httpHeaderAccept?: undefined;
|
|
5676
|
+
context?: HttpContext;
|
|
5677
|
+
transferCache?: boolean;
|
|
5678
|
+
}): Observable<HttpResponse<any>>;
|
|
5679
|
+
setDispatchStar(id: string, starred: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
5680
|
+
httpHeaderAccept?: undefined;
|
|
5681
|
+
context?: HttpContext;
|
|
5682
|
+
transferCache?: boolean;
|
|
5683
|
+
}): Observable<HttpEvent<any>>;
|
|
5569
5684
|
static ɵfac: i0.ɵɵFactoryDeclaration<DispatchesService, [null, { optional: true; }, { optional: true; }]>;
|
|
5570
5685
|
static ɵprov: i0.ɵɵInjectableDeclaration<DispatchesService>;
|
|
5571
5686
|
}
|
|
@@ -5599,6 +5714,73 @@ declare class HealthService extends BaseService {
|
|
|
5599
5714
|
static ɵprov: i0.ɵɵInjectableDeclaration<HealthService>;
|
|
5600
5715
|
}
|
|
5601
5716
|
|
|
5717
|
+
/**
|
|
5718
|
+
* Wms.API.Client
|
|
5719
|
+
*
|
|
5720
|
+
*
|
|
5721
|
+
*
|
|
5722
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5723
|
+
* https://openapi-generator.tech
|
|
5724
|
+
* Do not edit the class manually.
|
|
5725
|
+
*/
|
|
5726
|
+
declare const PrintLabelTemplates: {
|
|
5727
|
+
readonly BoxTemplate: "BoxTemplate";
|
|
5728
|
+
readonly BoxTemplateAbsolute: "BoxTemplateAbsolute";
|
|
5729
|
+
readonly Bpt: "Bpt";
|
|
5730
|
+
readonly ReturnLabel: "ReturnLabel";
|
|
5731
|
+
};
|
|
5732
|
+
type PrintLabelTemplates = typeof PrintLabelTemplates[keyof typeof PrintLabelTemplates];
|
|
5733
|
+
|
|
5734
|
+
/**
|
|
5735
|
+
* Wms.API.Client
|
|
5736
|
+
*
|
|
5737
|
+
*
|
|
5738
|
+
*
|
|
5739
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5740
|
+
* https://openapi-generator.tech
|
|
5741
|
+
* Do not edit the class manually.
|
|
5742
|
+
*/
|
|
5743
|
+
|
|
5744
|
+
interface LicencePlateLabelsGenerateModel {
|
|
5745
|
+
ids: Array<string>;
|
|
5746
|
+
qrCode: boolean;
|
|
5747
|
+
labelTemplate?: PrintLabelTemplates;
|
|
5748
|
+
isLicencePlate: boolean;
|
|
5749
|
+
printerId?: number | null;
|
|
5750
|
+
}
|
|
5751
|
+
declare namespace LicencePlateLabelsGenerateModel {
|
|
5752
|
+
}
|
|
5753
|
+
|
|
5754
|
+
declare class LicencePlateLabelsService extends BaseService {
|
|
5755
|
+
protected httpClient: HttpClient;
|
|
5756
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
5757
|
+
/**
|
|
5758
|
+
* Generate and optionally print licence plate labels
|
|
5759
|
+
* @endpoint post /licencePlateLabels/print
|
|
5760
|
+
* @param licencePlateLabelsGenerateModel
|
|
5761
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5762
|
+
* @param reportProgress flag to report request and response progress.
|
|
5763
|
+
* @param options additional options
|
|
5764
|
+
*/
|
|
5765
|
+
printLicencePlateLabels(licencePlateLabelsGenerateModel: LicencePlateLabelsGenerateModel, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5766
|
+
httpHeaderAccept?: 'application/pdf';
|
|
5767
|
+
context?: HttpContext;
|
|
5768
|
+
transferCache?: boolean;
|
|
5769
|
+
}): Observable<Blob>;
|
|
5770
|
+
printLicencePlateLabels(licencePlateLabelsGenerateModel: LicencePlateLabelsGenerateModel, observe?: 'response', reportProgress?: boolean, options?: {
|
|
5771
|
+
httpHeaderAccept?: 'application/pdf';
|
|
5772
|
+
context?: HttpContext;
|
|
5773
|
+
transferCache?: boolean;
|
|
5774
|
+
}): Observable<HttpResponse<Blob>>;
|
|
5775
|
+
printLicencePlateLabels(licencePlateLabelsGenerateModel: LicencePlateLabelsGenerateModel, observe?: 'events', reportProgress?: boolean, options?: {
|
|
5776
|
+
httpHeaderAccept?: 'application/pdf';
|
|
5777
|
+
context?: HttpContext;
|
|
5778
|
+
transferCache?: boolean;
|
|
5779
|
+
}): Observable<HttpEvent<Blob>>;
|
|
5780
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LicencePlateLabelsService, [null, { optional: true; }, { optional: true; }]>;
|
|
5781
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LicencePlateLabelsService>;
|
|
5782
|
+
}
|
|
5783
|
+
|
|
5602
5784
|
/**
|
|
5603
5785
|
* Wms.API.Client
|
|
5604
5786
|
*
|
|
@@ -10766,7 +10948,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
10766
10948
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
10767
10949
|
}
|
|
10768
10950
|
|
|
10769
|
-
declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarrierServiceTypesService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof CountContinuousInventoryService | typeof CountRecordsService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxTypesService | typeof DispatchBoxesService | typeof DispatchCarriersService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PackageTypesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SalesOrderItemsService | typeof SalesOrdersService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
|
|
10951
|
+
declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarrierServiceTypesService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof CountContinuousInventoryService | typeof CountRecordsService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxTypesService | typeof DispatchBoxesService | typeof DispatchCarriersService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateLabelsService | typeof LicencePlateSerialsService | typeof NotesService | typeof PackageTypesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SalesOrderItemsService | typeof SalesOrdersService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
|
|
10770
10952
|
|
|
10771
10953
|
/**
|
|
10772
10954
|
* Wms.API.Client
|
|
@@ -11082,5 +11264,5 @@ declare class ApiModule {
|
|
|
11082
11264
|
|
|
11083
11265
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
11084
11266
|
|
|
11085
|
-
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarrierServiceTypesService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountContinuousInventoryService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OperatorCountGridView, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, 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, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderCompletionIssue, SalesOrderGridView, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrderTab, SalesOrdersService, SettingsService, ShipToCompany, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
|
|
11086
|
-
export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServiceType, CarrierServiceTypeSummary, CarrierServiceTypes, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountContinuousInventories, CountContinuousInventory, CountContinuousInventoryClient, CountContinuousInventoryClients, CountContinuousInventoryGridView, CountRecords, CountingSummary, CreateCountContinuousInventory, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxType, DispatchBoxTypeView, DispatchBoxTypes, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, OperatorCounts, PackageType, PackageTypeSummary, PackageTypes, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SalesOrders, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, ShipToCompanies, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UpdateCountContinuousInventory, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };
|
|
11267
|
+
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarrierServiceTypesService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountContinuousInventoryService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateLabelsGenerateModel, LicencePlateLabelsService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OperatorCountGridView, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintLabelTemplates, 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, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderCompletionIssue, SalesOrderGridView, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrderTab, SalesOrdersService, SettingsService, ShipToCompany, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WavePickingStarDispatchView, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
|
|
11268
|
+
export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServiceType, CarrierServiceTypeSummary, CarrierServiceTypes, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountContinuousInventories, CountContinuousInventory, CountContinuousInventoryClient, CountContinuousInventoryClients, CountContinuousInventoryGridView, CountRecords, CountingSummary, CountrySummary, CreateCountContinuousInventory, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxType, DispatchBoxTypeView, DispatchBoxTypes, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, OperatorCounts, PackageType, PackageTypeSummary, PackageTypes, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SalesOrders, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, ShipToCompanies, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UpdateCountContinuousInventory, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WavePickingStarDispatches, WaveSummaries, Waves };
|