@springtree/eva-services-core-management 2.18.0 → 2.19.0

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.
@@ -2867,6 +2867,45 @@ File in state processing or processed can't be deleted due to generated financia
2867
2867
  request?: EVA.Core.Management.DownloadStockAllocationRulesExcel;
2868
2868
  response?: EVA.Core.ResourceResponseMessage;
2869
2869
  }
2870
+ /**
2871
+ * Download an overview of the stock for the specified organization units.
2872
+ *
2873
+ * @export
2874
+ * @class DownloadStockOverview
2875
+ * @implements {EvaService}
2876
+ */
2877
+ class DownloadStockOverview implements IEvaServiceDefinition {
2878
+ name: string;
2879
+ path: string;
2880
+ request?: EVA.Core.Management.DownloadStockOverview;
2881
+ response?: EVA.Core.ResourceWithBlobIDResponseMessage;
2882
+ }
2883
+ /**
2884
+ * Download an overview of the stock for the specified organization units.
2885
+ *
2886
+ * @export
2887
+ * @class DownloadStockOverview_Async
2888
+ * @implements {EvaService}
2889
+ */
2890
+ class DownloadStockOverview_Async implements IEvaServiceDefinition {
2891
+ name: string;
2892
+ path: string;
2893
+ request?: EVA.Core.Management.DownloadStockOverview;
2894
+ response?: EVA.Core.AsyncRequestResponse;
2895
+ }
2896
+ /**
2897
+ * Download an overview of the stock for the specified organization units.
2898
+ *
2899
+ * @export
2900
+ * @class DownloadStockOverview_AsyncResult
2901
+ * @implements {EvaService}
2902
+ */
2903
+ class DownloadStockOverview_AsyncResult implements IEvaServiceDefinition {
2904
+ name: string;
2905
+ path: string;
2906
+ request?: EVA.Core.AsyncRequestResultRequest;
2907
+ response?: EVA.Core.ResourceWithBlobIDResponseMessage;
2908
+ }
2870
2909
  /**
2871
2910
  * Download the current supplier products.
2872
2911
  *
@@ -3785,6 +3824,19 @@ At this moment the supported DeviceTypes are:
3785
3824
  request?: EVA.Core.Management.GetEntityFieldValidator;
3786
3825
  response?: EVA.Core.Management.GetEntityFieldValidatorResponse;
3787
3826
  }
3827
+ /**
3828
+ * Get all entity field validators for given entity
3829
+ *
3830
+ * @export
3831
+ * @class GetFieldValidatorsForEntity
3832
+ * @implements {EvaService}
3833
+ */
3834
+ class GetFieldValidatorsForEntity implements IEvaServiceDefinition {
3835
+ name: string;
3836
+ path: string;
3837
+ request?: EVA.Core.Management.GetFieldValidatorsForEntity;
3838
+ response?: EVA.Core.Management.GetFieldValidatorsForEntityResponse;
3839
+ }
3788
3840
  /**
3789
3841
  * Retrieve the currently assigned functionalities flattened on specified OU.
3790
3842
  *
@@ -6683,6 +6735,54 @@ Sub entities will also be created or updated, but will not be removed.
6683
6735
  request?: EVA.Core.AsyncRequestResultRequest;
6684
6736
  response?: EVA.Core.Management.PushLoyaltyProgramResponse;
6685
6737
  }
6738
+ /**
6739
+ * Push multiple loyalty programs at once.
6740
+ If a loyalty program doesn't exist it will be created, otherwise it will be updated.
6741
+ Sub entities will also be created or updated, but will not be removed.
6742
+ There is a limit (1000) of loyalty programs that can be pushed a once.
6743
+ *
6744
+ * @export
6745
+ * @class PushLoyaltyPrograms
6746
+ * @implements {EvaService}
6747
+ */
6748
+ class PushLoyaltyPrograms implements IEvaServiceDefinition {
6749
+ name: string;
6750
+ path: string;
6751
+ request?: EVA.Core.Management.PushLoyaltyPrograms;
6752
+ response?: EVA.Core.Management.PushLoyaltyProgramsResponse;
6753
+ }
6754
+ /**
6755
+ * Push multiple loyalty programs at once.
6756
+ If a loyalty program doesn't exist it will be created, otherwise it will be updated.
6757
+ Sub entities will also be created or updated, but will not be removed.
6758
+ There is a limit (1000) of loyalty programs that can be pushed a once.
6759
+ *
6760
+ * @export
6761
+ * @class PushLoyaltyPrograms_Async
6762
+ * @implements {EvaService}
6763
+ */
6764
+ class PushLoyaltyPrograms_Async implements IEvaServiceDefinition {
6765
+ name: string;
6766
+ path: string;
6767
+ request?: EVA.Core.Management.PushLoyaltyPrograms;
6768
+ response?: EVA.Core.AsyncRequestResponse;
6769
+ }
6770
+ /**
6771
+ * Push multiple loyalty programs at once.
6772
+ If a loyalty program doesn't exist it will be created, otherwise it will be updated.
6773
+ Sub entities will also be created or updated, but will not be removed.
6774
+ There is a limit (1000) of loyalty programs that can be pushed a once.
6775
+ *
6776
+ * @export
6777
+ * @class PushLoyaltyPrograms_AsyncResult
6778
+ * @implements {EvaService}
6779
+ */
6780
+ class PushLoyaltyPrograms_AsyncResult implements IEvaServiceDefinition {
6781
+ name: string;
6782
+ path: string;
6783
+ request?: EVA.Core.AsyncRequestResultRequest;
6784
+ response?: EVA.Core.Management.PushLoyaltyProgramsResponse;
6785
+ }
6686
6786
  /**
6687
6787
  * Push user bought product.
6688
6788
  *