@springtree/eva-services-core-management 3.0.0-beta.26 → 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.
@@ -6830,6 +6830,40 @@ export interface PushLoyaltyProgram_AsyncResponse {
6830
6830
  export interface PushLoyaltyProgram_AsyncResult {
6831
6831
  JobID?: string;
6832
6832
  }
6833
+ export interface PushLoyaltyProgramsResponse {
6834
+ Error?: ServiceError;
6835
+ FailedToAdjustLoyaltyPrograms?: LoyaltyPushLoyaltyProgramsResponse_FailedToAdjustLoyaltyProgram[];
6836
+ Metadata?: ResponseMessageMetadata;
6837
+ SuccessfullyAdjustedLoyaltyPrograms?: LoyaltyPushLoyaltyProgramsResponse_SuccessfullyAdjustedLoyaltyProgram[];
6838
+ }
6839
+ export interface LoyaltyPushLoyaltyProgramsResponse_FailedToAdjustLoyaltyProgram {
6840
+ /**
6841
+ * Entity type: LoyaltyProgram
6842
+ */
6843
+ BackendID?: string;
6844
+ ErrorIdentifier?: string;
6845
+ }
6846
+ export interface LoyaltyPushLoyaltyProgramsResponse_SuccessfullyAdjustedLoyaltyProgram {
6847
+ /**
6848
+ * Entity type: LoyaltyProgram
6849
+ */
6850
+ ID: string;
6851
+ }
6852
+ export interface PushLoyaltyPrograms_Async {
6853
+ /**
6854
+ * Enabling this will try to suppress as many event exports as possible that might result from this call.
6855
+ */
6856
+ DisableEventExports?: boolean;
6857
+ LoyaltyPrograms: LoyaltyPushLoyaltyProgram[];
6858
+ }
6859
+ export interface PushLoyaltyPrograms_AsyncResponse {
6860
+ Error?: ServiceError;
6861
+ JobID?: string;
6862
+ Metadata?: ResponseMessageMetadata;
6863
+ }
6864
+ export interface PushLoyaltyPrograms_AsyncResult {
6865
+ JobID?: string;
6866
+ }
6833
6867
  /**
6834
6868
  * Rebalance loyalty points of a user
6835
6869
  */
@@ -12651,6 +12685,43 @@ export interface DeleteStockAllocationRule {
12651
12685
  export interface DownloadStockAllocationRulesExcel {
12652
12686
  PageConfig?: PageConfig<SuppliersListStockAllocationRulesFilter>;
12653
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
+ }
12654
12725
  export interface InitialReplenishment {
12655
12726
  BlobID: string;
12656
12727
  EmailAddress: string;