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

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
  */