@springtree/eva-services-core-management 3.0.0-beta.27 → 3.0.0-beta.28

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.
@@ -12685,6 +12685,43 @@ export interface DeleteStockAllocationRule {
12685
12685
  export interface DownloadStockAllocationRulesExcel {
12686
12686
  PageConfig?: PageConfig<SuppliersListStockAllocationRulesFilter>;
12687
12687
  }
12688
+ export interface DownloadStockOverview_Async {
12689
+ /**
12690
+ * View the stock on a certain moment in time
12691
+ */
12692
+ DateTime?: string;
12693
+ /**
12694
+ * Entity type: OrganizationUnit
12695
+ * The organization units to list the stock for, will be ignored if `OrganizationUnitSetID` is specified
12696
+ */
12697
+ OrganizationUnitIDs?: string[];
12698
+ /**
12699
+ * Entity type: OrganizationUnitSet
12700
+ * The organization units to list the stock for, when specified, `OrganizationUnitIDs` will be ignored
12701
+ */
12702
+ OrganizationUnitSetID?: string;
12703
+ /**
12704
+ * Entity type: Product
12705
+ * Only these products will be returned
12706
+ */
12707
+ ProductIDs?: string[];
12708
+ /**
12709
+ * Filter on products, is used as input in ElasticSearch
12710
+ */
12711
+ Query?: string;
12712
+ /**
12713
+ * Entity type: StockLabel
12714
+ */
12715
+ StockLabelID?: string;
12716
+ }
12717
+ export interface DownloadStockOverview_AsyncResponse {
12718
+ Error?: ServiceError;
12719
+ JobID?: string;
12720
+ Metadata?: ResponseMessageMetadata;
12721
+ }
12722
+ export interface DownloadStockOverview_AsyncResult {
12723
+ JobID?: string;
12724
+ }
12688
12725
  export interface InitialReplenishment {
12689
12726
  BlobID: string;
12690
12727
  EmailAddress: string;