@indigina/wms-api 0.0.117 → 0.0.119

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.117",
3
+ "version": "0.0.119",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -2182,6 +2182,8 @@ interface DeliveryItemView {
2182
2182
  qcPercentage: number | null;
2183
2183
  qcControlled: boolean;
2184
2184
  bestBeforeDate: string | null;
2185
+ lotControlled?: boolean | null;
2186
+ dateControlled?: boolean | null;
2185
2187
  qcType: QcType | null;
2186
2188
  }
2187
2189
  declare namespace DeliveryItemView {
@@ -3526,6 +3528,21 @@ declare class PermissionsService extends BaseService {
3526
3528
  static ɵprov: i0.ɵɵInjectableDeclaration<PermissionsService>;
3527
3529
  }
3528
3530
 
3531
+ /**
3532
+ * Wms.API.Client
3533
+ *
3534
+ *
3535
+ *
3536
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3537
+ * https://openapi-generator.tech
3538
+ * Do not edit the class manually.
3539
+ */
3540
+ declare const ProductStatus: {
3541
+ readonly InDevelopment: "InDevelopment";
3542
+ readonly InProduction: "InProduction";
3543
+ };
3544
+ type ProductStatus = typeof ProductStatus[keyof typeof ProductStatus];
3545
+
3529
3546
  /**
3530
3547
  * Wms.API.Client
3531
3548
  *
@@ -3542,7 +3559,9 @@ interface ProductMaster {
3542
3559
  htsCode?: string;
3543
3560
  productCode: string;
3544
3561
  ownerCompanyId: string;
3545
- status: OrderStatus | null;
3562
+ lotControlled: boolean;
3563
+ dateControlled: boolean;
3564
+ status?: ProductStatus | null;
3546
3565
  }
3547
3566
  declare namespace ProductMaster {
3548
3567
  }
@@ -3562,6 +3581,40 @@ interface ProductMasters {
3562
3581
  data: Array<ProductMaster>;
3563
3582
  }
3564
3583
 
3584
+ declare class ProductMasterSuppliersService extends BaseService {
3585
+ protected httpClient: HttpClient;
3586
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
3587
+ /**
3588
+ * Get product masters by supplier
3589
+ * @endpoint get /productMasterSuppliers/productMasters
3590
+ * @param $skip
3591
+ * @param $top
3592
+ * @param $orderby
3593
+ * @param $filter
3594
+ * @param $search
3595
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3596
+ * @param reportProgress flag to report request and response progress.
3597
+ * @param options additional options
3598
+ */
3599
+ getProductMastersBySupplier($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
3600
+ httpHeaderAccept?: 'application/json';
3601
+ context?: HttpContext;
3602
+ transferCache?: boolean;
3603
+ }): Observable<ProductMasters>;
3604
+ getProductMastersBySupplier($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
3605
+ httpHeaderAccept?: 'application/json';
3606
+ context?: HttpContext;
3607
+ transferCache?: boolean;
3608
+ }): Observable<HttpResponse<ProductMasters>>;
3609
+ getProductMastersBySupplier($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
3610
+ httpHeaderAccept?: 'application/json';
3611
+ context?: HttpContext;
3612
+ transferCache?: boolean;
3613
+ }): Observable<HttpEvent<ProductMasters>>;
3614
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProductMasterSuppliersService, [null, { optional: true; }, { optional: true; }]>;
3615
+ static ɵprov: i0.ɵɵInjectableDeclaration<ProductMasterSuppliersService>;
3616
+ }
3617
+
3565
3618
  declare class ProductMastersService extends BaseService {
3566
3619
  protected httpClient: HttpClient;
3567
3620
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
@@ -3785,6 +3838,23 @@ interface ReplenishmentAccessClients {
3785
3838
  data: Array<ReplenishmentAccessClient>;
3786
3839
  }
3787
3840
 
3841
+ /**
3842
+ * Wms.API.Client
3843
+ *
3844
+ *
3845
+ *
3846
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3847
+ * https://openapi-generator.tech
3848
+ * Do not edit the class manually.
3849
+ */
3850
+ interface ReplenishmentAccessView {
3851
+ id: string;
3852
+ client: string;
3853
+ systemReplenishment: boolean;
3854
+ createdDate: string;
3855
+ createdBy: string;
3856
+ }
3857
+
3788
3858
  /**
3789
3859
  * Wms.API.Client
3790
3860
  *
@@ -3818,58 +3888,81 @@ interface ReplenishmentAccesses {
3818
3888
  data: Array<ReplenishmentAccessGridView>;
3819
3889
  }
3820
3890
 
3821
- declare class ReplenishmentService extends BaseService {
3891
+ declare class ReplenishmentAccessesService extends BaseService {
3822
3892
  protected httpClient: HttpClient;
3823
3893
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
3824
3894
  /**
3825
3895
  * Create a specific replenishment access
3826
- * @endpoint post /replenishment/access
3896
+ * @endpoint post /replenishmentAccesses
3827
3897
  * @param replenishmentAccess
3828
3898
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3829
3899
  * @param reportProgress flag to report request and response progress.
3830
3900
  * @param options additional options
3831
3901
  */
3832
- createAccess(replenishmentAccess: ReplenishmentAccess, observe?: 'body', reportProgress?: boolean, options?: {
3902
+ createReplenishmentAccess(replenishmentAccess: ReplenishmentAccess, observe?: 'body', reportProgress?: boolean, options?: {
3833
3903
  httpHeaderAccept?: 'application/json';
3834
3904
  context?: HttpContext;
3835
3905
  transferCache?: boolean;
3836
3906
  }): Observable<ReplenishmentAccess>;
3837
- createAccess(replenishmentAccess: ReplenishmentAccess, observe?: 'response', reportProgress?: boolean, options?: {
3907
+ createReplenishmentAccess(replenishmentAccess: ReplenishmentAccess, observe?: 'response', reportProgress?: boolean, options?: {
3838
3908
  httpHeaderAccept?: 'application/json';
3839
3909
  context?: HttpContext;
3840
3910
  transferCache?: boolean;
3841
3911
  }): Observable<HttpResponse<ReplenishmentAccess>>;
3842
- createAccess(replenishmentAccess: ReplenishmentAccess, observe?: 'events', reportProgress?: boolean, options?: {
3912
+ createReplenishmentAccess(replenishmentAccess: ReplenishmentAccess, observe?: 'events', reportProgress?: boolean, options?: {
3843
3913
  httpHeaderAccept?: 'application/json';
3844
3914
  context?: HttpContext;
3845
3915
  transferCache?: boolean;
3846
3916
  }): Observable<HttpEvent<ReplenishmentAccess>>;
3847
3917
  /**
3848
- * Delete a replenishment access
3849
- * @endpoint delete /replenishment/access/{id}
3918
+ * Delete a replenishment access by Id
3919
+ * @endpoint delete /replenishmentAccesses/{id}
3850
3920
  * @param id
3851
3921
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3852
3922
  * @param reportProgress flag to report request and response progress.
3853
3923
  * @param options additional options
3854
3924
  */
3855
- deleteAccess(id: string, observe?: 'body', reportProgress?: boolean, options?: {
3925
+ deleteReplenishmentAccess(id: string, observe?: 'body', reportProgress?: boolean, options?: {
3856
3926
  httpHeaderAccept?: 'application/json';
3857
3927
  context?: HttpContext;
3858
3928
  transferCache?: boolean;
3859
3929
  }): Observable<any>;
3860
- deleteAccess(id: string, observe?: 'response', reportProgress?: boolean, options?: {
3930
+ deleteReplenishmentAccess(id: string, observe?: 'response', reportProgress?: boolean, options?: {
3861
3931
  httpHeaderAccept?: 'application/json';
3862
3932
  context?: HttpContext;
3863
3933
  transferCache?: boolean;
3864
3934
  }): Observable<HttpResponse<any>>;
3865
- deleteAccess(id: string, observe?: 'events', reportProgress?: boolean, options?: {
3935
+ deleteReplenishmentAccess(id: string, observe?: 'events', reportProgress?: boolean, options?: {
3866
3936
  httpHeaderAccept?: 'application/json';
3867
3937
  context?: HttpContext;
3868
3938
  transferCache?: boolean;
3869
3939
  }): Observable<HttpEvent<any>>;
3870
3940
  /**
3871
- * Get list of replenishment access client
3872
- * @endpoint get /replenishment/accesses/clients
3941
+ * Get an existing replenishment access by Id
3942
+ * @endpoint get /replenishmentAccesses/{id}
3943
+ * @param id
3944
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3945
+ * @param reportProgress flag to report request and response progress.
3946
+ * @param options additional options
3947
+ */
3948
+ getReplenishmentAccess(id: string, observe?: 'body', reportProgress?: boolean, options?: {
3949
+ httpHeaderAccept?: 'application/json';
3950
+ context?: HttpContext;
3951
+ transferCache?: boolean;
3952
+ }): Observable<ReplenishmentAccessView>;
3953
+ getReplenishmentAccess(id: string, observe?: 'response', reportProgress?: boolean, options?: {
3954
+ httpHeaderAccept?: 'application/json';
3955
+ context?: HttpContext;
3956
+ transferCache?: boolean;
3957
+ }): Observable<HttpResponse<ReplenishmentAccessView>>;
3958
+ getReplenishmentAccess(id: string, observe?: 'events', reportProgress?: boolean, options?: {
3959
+ httpHeaderAccept?: 'application/json';
3960
+ context?: HttpContext;
3961
+ transferCache?: boolean;
3962
+ }): Observable<HttpEvent<ReplenishmentAccessView>>;
3963
+ /**
3964
+ * Get list of replenishment access clients
3965
+ * @endpoint get /replenishmentAccesses/clients
3873
3966
  * @param $skip
3874
3967
  * @param $top
3875
3968
  * @param $orderby
@@ -3879,24 +3972,24 @@ declare class ReplenishmentService extends BaseService {
3879
3972
  * @param reportProgress flag to report request and response progress.
3880
3973
  * @param options additional options
3881
3974
  */
3882
- getAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
3975
+ getReplenishmentAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
3883
3976
  httpHeaderAccept?: 'application/json';
3884
3977
  context?: HttpContext;
3885
3978
  transferCache?: boolean;
3886
3979
  }): Observable<ReplenishmentAccessClients>;
3887
- getAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
3980
+ getReplenishmentAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
3888
3981
  httpHeaderAccept?: 'application/json';
3889
3982
  context?: HttpContext;
3890
3983
  transferCache?: boolean;
3891
3984
  }): Observable<HttpResponse<ReplenishmentAccessClients>>;
3892
- getAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
3985
+ getReplenishmentAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
3893
3986
  httpHeaderAccept?: 'application/json';
3894
3987
  context?: HttpContext;
3895
3988
  transferCache?: boolean;
3896
3989
  }): Observable<HttpEvent<ReplenishmentAccessClients>>;
3897
3990
  /**
3898
- * Getting replenishment access
3899
- * @endpoint get /replenishment/accesses
3991
+ * Getting replenishment accesses
3992
+ * @endpoint get /replenishmentAccesses
3900
3993
  * @param $skip
3901
3994
  * @param $top
3902
3995
  * @param $orderby
@@ -3906,24 +3999,24 @@ declare class ReplenishmentService extends BaseService {
3906
3999
  * @param reportProgress flag to report request and response progress.
3907
4000
  * @param options additional options
3908
4001
  */
3909
- getAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
4002
+ getReplenishmentAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
3910
4003
  httpHeaderAccept?: 'application/json';
3911
4004
  context?: HttpContext;
3912
4005
  transferCache?: boolean;
3913
4006
  }): Observable<ReplenishmentAccesses>;
3914
- getAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
4007
+ getReplenishmentAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
3915
4008
  httpHeaderAccept?: 'application/json';
3916
4009
  context?: HttpContext;
3917
4010
  transferCache?: boolean;
3918
4011
  }): Observable<HttpResponse<ReplenishmentAccesses>>;
3919
- getAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
4012
+ getReplenishmentAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
3920
4013
  httpHeaderAccept?: 'application/json';
3921
4014
  context?: HttpContext;
3922
4015
  transferCache?: boolean;
3923
4016
  }): Observable<HttpEvent<ReplenishmentAccesses>>;
3924
4017
  /**
3925
- * Update an existing replenishment access
3926
- * @endpoint put /replenishment/access/{id}
4018
+ * Update an existing replenishment access by Id
4019
+ * @endpoint put /replenishmentAccesses/{id}
3927
4020
  * @param id
3928
4021
  * @param replenishmentAccess
3929
4022
  * @param propertiesToUpdate Array of property names to update
@@ -3931,23 +4024,23 @@ declare class ReplenishmentService extends BaseService {
3931
4024
  * @param reportProgress flag to report request and response progress.
3932
4025
  * @param options additional options
3933
4026
  */
3934
- updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
4027
+ updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
3935
4028
  httpHeaderAccept?: 'application/json';
3936
4029
  context?: HttpContext;
3937
4030
  transferCache?: boolean;
3938
4031
  }): Observable<ReplenishmentAccess>;
3939
- updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
4032
+ updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
3940
4033
  httpHeaderAccept?: 'application/json';
3941
4034
  context?: HttpContext;
3942
4035
  transferCache?: boolean;
3943
4036
  }): Observable<HttpResponse<ReplenishmentAccess>>;
3944
- updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
4037
+ updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
3945
4038
  httpHeaderAccept?: 'application/json';
3946
4039
  context?: HttpContext;
3947
4040
  transferCache?: boolean;
3948
4041
  }): Observable<HttpEvent<ReplenishmentAccess>>;
3949
- static ɵfac: i0.ɵɵFactoryDeclaration<ReplenishmentService, [null, { optional: true; }, { optional: true; }]>;
3950
- static ɵprov: i0.ɵɵInjectableDeclaration<ReplenishmentService>;
4042
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReplenishmentAccessesService, [null, { optional: true; }, { optional: true; }]>;
4043
+ static ɵprov: i0.ɵɵInjectableDeclaration<ReplenishmentAccessesService>;
3951
4044
  }
3952
4045
 
3953
4046
  /**
@@ -5708,7 +5801,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
5708
5801
  static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
5709
5802
  }
5710
5803
 
5711
- 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 ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavesByPickReleaseIdService)[];
5804
+ 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 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 UsersInternalService | typeof WavePickReleasesService | typeof WavesByPickReleaseIdService)[];
5712
5805
 
5713
5806
  /**
5714
5807
  * Wms.API.Client
@@ -5893,5 +5986,5 @@ declare class ApiModule {
5893
5986
 
5894
5987
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
5895
5988
 
5896
- 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, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
5897
- 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, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, Waves };
5989
+ 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, 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, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
5990
+ 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, 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 };