@indigina/wms-api 0.0.101 → 0.0.103
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 +282 -7
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +274 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2744,27 +2744,27 @@ declare class DispatchesService extends BaseService {
|
|
|
2744
2744
|
}): Observable<HttpEvent<DispatchSummaryView>>;
|
|
2745
2745
|
/**
|
|
2746
2746
|
* Getting dispatches
|
|
2747
|
-
* @param orderStatus
|
|
2748
2747
|
* @param $skip
|
|
2749
2748
|
* @param $top
|
|
2750
2749
|
* @param $orderby
|
|
2751
2750
|
* @param $filter
|
|
2752
2751
|
* @param $search
|
|
2753
2752
|
* @param tabName
|
|
2753
|
+
* @param orderStatuses List of dispatch statuses to filter by
|
|
2754
2754
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2755
2755
|
* @param reportProgress flag to report request and response progress.
|
|
2756
2756
|
*/
|
|
2757
|
-
|
|
2757
|
+
getDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, orderStatuses?: Array<OrderStatus>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2758
2758
|
httpHeaderAccept?: 'application/json';
|
|
2759
2759
|
context?: HttpContext;
|
|
2760
2760
|
transferCache?: boolean;
|
|
2761
2761
|
}): Observable<Dispatches>;
|
|
2762
|
-
|
|
2762
|
+
getDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, orderStatuses?: Array<OrderStatus>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2763
2763
|
httpHeaderAccept?: 'application/json';
|
|
2764
2764
|
context?: HttpContext;
|
|
2765
2765
|
transferCache?: boolean;
|
|
2766
2766
|
}): Observable<HttpResponse<Dispatches>>;
|
|
2767
|
-
|
|
2767
|
+
getDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, orderStatuses?: Array<OrderStatus>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2768
2768
|
httpHeaderAccept?: 'application/json';
|
|
2769
2769
|
context?: HttpContext;
|
|
2770
2770
|
transferCache?: boolean;
|
|
@@ -4681,7 +4681,274 @@ declare class UsersInternalService extends BaseService {
|
|
|
4681
4681
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersInternalService>;
|
|
4682
4682
|
}
|
|
4683
4683
|
|
|
4684
|
-
|
|
4684
|
+
/**
|
|
4685
|
+
* Wms.API.Client
|
|
4686
|
+
*
|
|
4687
|
+
*
|
|
4688
|
+
*
|
|
4689
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4690
|
+
* https://openapi-generator.tech
|
|
4691
|
+
* Do not edit the class manually.
|
|
4692
|
+
*/
|
|
4693
|
+
declare const PickReleaseHistoryTypes: {
|
|
4694
|
+
readonly All: "All";
|
|
4695
|
+
readonly ToBePrinted: "ToBePrinted";
|
|
4696
|
+
readonly Active: "Active";
|
|
4697
|
+
readonly Complete: "Complete";
|
|
4698
|
+
readonly Closed: "Closed";
|
|
4699
|
+
};
|
|
4700
|
+
type PickReleaseHistoryTypes = typeof PickReleaseHistoryTypes[keyof typeof PickReleaseHistoryTypes];
|
|
4701
|
+
|
|
4702
|
+
/**
|
|
4703
|
+
* Wms.API.Client
|
|
4704
|
+
*
|
|
4705
|
+
*
|
|
4706
|
+
*
|
|
4707
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4708
|
+
* https://openapi-generator.tech
|
|
4709
|
+
* Do not edit the class manually.
|
|
4710
|
+
*/
|
|
4711
|
+
declare const WavePickReleaseStatuses: {
|
|
4712
|
+
readonly Active: "Active";
|
|
4713
|
+
readonly Complete: "Complete";
|
|
4714
|
+
readonly Closed: "Closed";
|
|
4715
|
+
};
|
|
4716
|
+
type WavePickReleaseStatuses = typeof WavePickReleaseStatuses[keyof typeof WavePickReleaseStatuses];
|
|
4717
|
+
|
|
4718
|
+
/**
|
|
4719
|
+
* Wms.API.Client
|
|
4720
|
+
*
|
|
4721
|
+
*
|
|
4722
|
+
*
|
|
4723
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4724
|
+
* https://openapi-generator.tech
|
|
4725
|
+
* Do not edit the class manually.
|
|
4726
|
+
*/
|
|
4727
|
+
declare const WavePickReleaseMethods: {
|
|
4728
|
+
readonly Sku: "SKU";
|
|
4729
|
+
readonly Date: "Date";
|
|
4730
|
+
};
|
|
4731
|
+
type WavePickReleaseMethods = typeof WavePickReleaseMethods[keyof typeof WavePickReleaseMethods];
|
|
4732
|
+
|
|
4733
|
+
/**
|
|
4734
|
+
* Wms.API.Client
|
|
4735
|
+
*
|
|
4736
|
+
*
|
|
4737
|
+
*
|
|
4738
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4739
|
+
* https://openapi-generator.tech
|
|
4740
|
+
* Do not edit the class manually.
|
|
4741
|
+
*/
|
|
4742
|
+
declare const DocumentGenerationStatuses: {
|
|
4743
|
+
readonly NoDocsToGenerate: "NoDocsToGenerate";
|
|
4744
|
+
readonly ToBeGenerated: "ToBeGenerated";
|
|
4745
|
+
readonly Regenerate: "Regenerate";
|
|
4746
|
+
readonly Complete: "Complete";
|
|
4747
|
+
readonly Exception: "Exception";
|
|
4748
|
+
};
|
|
4749
|
+
type DocumentGenerationStatuses = typeof DocumentGenerationStatuses[keyof typeof DocumentGenerationStatuses];
|
|
4750
|
+
|
|
4751
|
+
/**
|
|
4752
|
+
* Wms.API.Client
|
|
4753
|
+
*
|
|
4754
|
+
*
|
|
4755
|
+
*
|
|
4756
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4757
|
+
* https://openapi-generator.tech
|
|
4758
|
+
* Do not edit the class manually.
|
|
4759
|
+
*/
|
|
4760
|
+
|
|
4761
|
+
interface WavePickReleaseModel {
|
|
4762
|
+
id: string;
|
|
4763
|
+
clientId: string;
|
|
4764
|
+
client: string;
|
|
4765
|
+
createdBy: string;
|
|
4766
|
+
completedBy?: string;
|
|
4767
|
+
closedBy?: string;
|
|
4768
|
+
wavePickReleaseNumber: string;
|
|
4769
|
+
wavePickReleaseStatus: WavePickReleaseStatuses;
|
|
4770
|
+
wavePickReleaseMethod?: WavePickReleaseMethods;
|
|
4771
|
+
documentGenerationStatus: DocumentGenerationStatuses;
|
|
4772
|
+
maxDispatchesForRelease: number;
|
|
4773
|
+
numberOfWaves: number;
|
|
4774
|
+
extPlatesPending: boolean;
|
|
4775
|
+
containsCi?: boolean | null;
|
|
4776
|
+
containsNsr?: boolean | null;
|
|
4777
|
+
containsBuildKit: boolean;
|
|
4778
|
+
createdDate: string;
|
|
4779
|
+
completedDate?: string | null;
|
|
4780
|
+
closedDate?: string | null;
|
|
4781
|
+
}
|
|
4782
|
+
declare namespace WavePickReleaseModel {
|
|
4783
|
+
}
|
|
4784
|
+
|
|
4785
|
+
/**
|
|
4786
|
+
* Wms.API.Client
|
|
4787
|
+
*
|
|
4788
|
+
*
|
|
4789
|
+
*
|
|
4790
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4791
|
+
* https://openapi-generator.tech
|
|
4792
|
+
* Do not edit the class manually.
|
|
4793
|
+
*/
|
|
4794
|
+
|
|
4795
|
+
interface WavePickReleases {
|
|
4796
|
+
total: number;
|
|
4797
|
+
data: Array<WavePickReleaseModel>;
|
|
4798
|
+
}
|
|
4799
|
+
|
|
4800
|
+
declare class WavePickReleasesService extends BaseService {
|
|
4801
|
+
protected httpClient: HttpClient;
|
|
4802
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
4803
|
+
/**
|
|
4804
|
+
* Getting wavePickReleases by historyType
|
|
4805
|
+
* @param pickReleaseHistoryType
|
|
4806
|
+
* @param $skip
|
|
4807
|
+
* @param $top
|
|
4808
|
+
* @param $orderby
|
|
4809
|
+
* @param $filter
|
|
4810
|
+
* @param $search
|
|
4811
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4812
|
+
* @param reportProgress flag to report request and response progress.
|
|
4813
|
+
*/
|
|
4814
|
+
getWavePickReleasesByHistoryType(pickReleaseHistoryType: PickReleaseHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4815
|
+
httpHeaderAccept?: 'application/json';
|
|
4816
|
+
context?: HttpContext;
|
|
4817
|
+
transferCache?: boolean;
|
|
4818
|
+
}): Observable<WavePickReleases>;
|
|
4819
|
+
getWavePickReleasesByHistoryType(pickReleaseHistoryType: PickReleaseHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4820
|
+
httpHeaderAccept?: 'application/json';
|
|
4821
|
+
context?: HttpContext;
|
|
4822
|
+
transferCache?: boolean;
|
|
4823
|
+
}): Observable<HttpResponse<WavePickReleases>>;
|
|
4824
|
+
getWavePickReleasesByHistoryType(pickReleaseHistoryType: PickReleaseHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4825
|
+
httpHeaderAccept?: 'application/json';
|
|
4826
|
+
context?: HttpContext;
|
|
4827
|
+
transferCache?: boolean;
|
|
4828
|
+
}): Observable<HttpEvent<WavePickReleases>>;
|
|
4829
|
+
/**
|
|
4830
|
+
* WavePickReleases list
|
|
4831
|
+
* @param $skip
|
|
4832
|
+
* @param $top
|
|
4833
|
+
* @param $orderby
|
|
4834
|
+
* @param $filter
|
|
4835
|
+
* @param searchTerm
|
|
4836
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4837
|
+
* @param reportProgress flag to report request and response progress.
|
|
4838
|
+
*/
|
|
4839
|
+
getWavePickReleasesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4840
|
+
httpHeaderAccept?: 'application/json';
|
|
4841
|
+
context?: HttpContext;
|
|
4842
|
+
transferCache?: boolean;
|
|
4843
|
+
}): Observable<WavePickReleases>;
|
|
4844
|
+
getWavePickReleasesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4845
|
+
httpHeaderAccept?: 'application/json';
|
|
4846
|
+
context?: HttpContext;
|
|
4847
|
+
transferCache?: boolean;
|
|
4848
|
+
}): Observable<HttpResponse<WavePickReleases>>;
|
|
4849
|
+
getWavePickReleasesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4850
|
+
httpHeaderAccept?: 'application/json';
|
|
4851
|
+
context?: HttpContext;
|
|
4852
|
+
transferCache?: boolean;
|
|
4853
|
+
}): Observable<HttpEvent<WavePickReleases>>;
|
|
4854
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WavePickReleasesService, [null, { optional: true; }, { optional: true; }]>;
|
|
4855
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WavePickReleasesService>;
|
|
4856
|
+
}
|
|
4857
|
+
|
|
4858
|
+
/**
|
|
4859
|
+
* Wms.API.Client
|
|
4860
|
+
*
|
|
4861
|
+
*
|
|
4862
|
+
*
|
|
4863
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4864
|
+
* https://openapi-generator.tech
|
|
4865
|
+
* Do not edit the class manually.
|
|
4866
|
+
*/
|
|
4867
|
+
declare const WaveStatuses: {
|
|
4868
|
+
readonly Active: "Active";
|
|
4869
|
+
readonly Complete: "Complete";
|
|
4870
|
+
readonly Closed: "Closed";
|
|
4871
|
+
};
|
|
4872
|
+
type WaveStatuses = typeof WaveStatuses[keyof typeof WaveStatuses];
|
|
4873
|
+
|
|
4874
|
+
/**
|
|
4875
|
+
* Wms.API.Client
|
|
4876
|
+
*
|
|
4877
|
+
*
|
|
4878
|
+
*
|
|
4879
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4880
|
+
* https://openapi-generator.tech
|
|
4881
|
+
* Do not edit the class manually.
|
|
4882
|
+
*/
|
|
4883
|
+
|
|
4884
|
+
interface WaveModel {
|
|
4885
|
+
id: string;
|
|
4886
|
+
wavePickReleaseId: string;
|
|
4887
|
+
waveNumber: number;
|
|
4888
|
+
waveStatus: WaveStatuses;
|
|
4889
|
+
dispatchCount: number;
|
|
4890
|
+
skipped: boolean;
|
|
4891
|
+
shortShipped: boolean;
|
|
4892
|
+
createdDate: string;
|
|
4893
|
+
createdBy: string;
|
|
4894
|
+
completedDate?: string | null;
|
|
4895
|
+
completedBy?: string;
|
|
4896
|
+
closedDate?: string | null;
|
|
4897
|
+
closedBy?: string;
|
|
4898
|
+
waveConfigurationDescription: string;
|
|
4899
|
+
}
|
|
4900
|
+
declare namespace WaveModel {
|
|
4901
|
+
}
|
|
4902
|
+
|
|
4903
|
+
/**
|
|
4904
|
+
* Wms.API.Client
|
|
4905
|
+
*
|
|
4906
|
+
*
|
|
4907
|
+
*
|
|
4908
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4909
|
+
* https://openapi-generator.tech
|
|
4910
|
+
* Do not edit the class manually.
|
|
4911
|
+
*/
|
|
4912
|
+
|
|
4913
|
+
interface Waves {
|
|
4914
|
+
total: number;
|
|
4915
|
+
data: Array<WaveModel>;
|
|
4916
|
+
}
|
|
4917
|
+
|
|
4918
|
+
declare class WavesByPickReleaseIdService extends BaseService {
|
|
4919
|
+
protected httpClient: HttpClient;
|
|
4920
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
4921
|
+
/**
|
|
4922
|
+
* Getting waves by pickReleaseId
|
|
4923
|
+
* @param id
|
|
4924
|
+
* @param $skip
|
|
4925
|
+
* @param $top
|
|
4926
|
+
* @param $orderby
|
|
4927
|
+
* @param $filter
|
|
4928
|
+
* @param $search
|
|
4929
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4930
|
+
* @param reportProgress flag to report request and response progress.
|
|
4931
|
+
*/
|
|
4932
|
+
getWavesByPickReleaseId(id: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4933
|
+
httpHeaderAccept?: 'application/json';
|
|
4934
|
+
context?: HttpContext;
|
|
4935
|
+
transferCache?: boolean;
|
|
4936
|
+
}): Observable<Waves>;
|
|
4937
|
+
getWavesByPickReleaseId(id: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4938
|
+
httpHeaderAccept?: 'application/json';
|
|
4939
|
+
context?: HttpContext;
|
|
4940
|
+
transferCache?: boolean;
|
|
4941
|
+
}): Observable<HttpResponse<Waves>>;
|
|
4942
|
+
getWavesByPickReleaseId(id: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4943
|
+
httpHeaderAccept?: 'application/json';
|
|
4944
|
+
context?: HttpContext;
|
|
4945
|
+
transferCache?: boolean;
|
|
4946
|
+
}): Observable<HttpEvent<Waves>>;
|
|
4947
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WavesByPickReleaseIdService, [null, { optional: true; }, { optional: true; }]>;
|
|
4948
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
4949
|
+
}
|
|
4950
|
+
|
|
4951
|
+
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | 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 ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavesByPickReleaseIdService)[];
|
|
4685
4952
|
|
|
4686
4953
|
/**
|
|
4687
4954
|
* Wms.API.Client
|
|
@@ -4866,5 +5133,5 @@ declare class ApiModule {
|
|
|
4866
5133
|
|
|
4867
5134
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
4868
5135
|
|
|
4869
|
-
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, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, 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, provideApi };
|
|
4870
|
-
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 };
|
|
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 };
|
|
5137
|
+
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 };
|