@springtree/eva-services-core-management 3.0.0-beta.10 → 3.0.0-beta.12

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.
@@ -881,6 +881,7 @@ export interface CasesListBlobsForCaseResponse_Blob {
881
881
  CreationTime: string;
882
882
  MimeType?: string;
883
883
  Name?: string;
884
+ Url?: string;
884
885
  }
885
886
  /**
886
887
  * List the case interactions
@@ -2961,6 +2962,24 @@ export interface GenerateDiscountCoupons {
2961
2962
  Quantity?: number;
2962
2963
  Suffix?: string;
2963
2964
  }
2965
+ export interface GenerateDiscountCoupons_Async {
2966
+ /**
2967
+ * Entity type: Discount
2968
+ */
2969
+ DiscountID: string;
2970
+ MaximumUsage?: number;
2971
+ Prefix?: string;
2972
+ Quantity?: number;
2973
+ Suffix?: string;
2974
+ }
2975
+ export interface GenerateDiscountCoupons_AsyncResponse {
2976
+ Error?: ServiceError;
2977
+ JobID?: string;
2978
+ Metadata?: ResponseMessageMetadata;
2979
+ }
2980
+ export interface GenerateDiscountCoupons_AsyncResult {
2981
+ JobID?: string;
2982
+ }
2964
2983
  /**
2965
2984
  * Get a coupon by it's token. When a customer calls this service, the service will only resolve tokens from coupons on which the user is registered. Employees and API's can resolve all coupon tokens.
2966
2985
  */
@@ -3833,7 +3852,7 @@ export interface UpdateDiscountCampaignBudget {
3833
3852
  * Update an existing DiscountCoupon
3834
3853
  */
3835
3854
  export interface UpdateDiscountCoupon {
3836
- CouponCode: string;
3855
+ CouponCode?: string;
3837
3856
  /**
3838
3857
  * Entity type: DiscountCoupon
3839
3858
  */
@@ -3927,6 +3946,24 @@ export interface UploadCouponExcelResponse {
3927
3946
  IsProcessedAsync: boolean;
3928
3947
  Metadata?: ResponseMessageMetadata;
3929
3948
  }
3949
+ export interface UploadCouponExcel_Async {
3950
+ /**
3951
+ * Entity type: Blob
3952
+ */
3953
+ BlobID?: string;
3954
+ /**
3955
+ * Entity type: Discount
3956
+ */
3957
+ DiscountID: string;
3958
+ }
3959
+ export interface UploadCouponExcel_AsyncResponse {
3960
+ Error?: ServiceError;
3961
+ JobID?: string;
3962
+ Metadata?: ResponseMessageMetadata;
3963
+ }
3964
+ export interface UploadCouponExcel_AsyncResult {
3965
+ JobID?: string;
3966
+ }
3930
3967
  /**
3931
3968
  * Validates the given discount information
3932
3969
  */
@@ -9010,7 +9047,7 @@ export interface UploadPaymentSettlementFile {
9010
9047
  /**
9011
9048
  * Entity type: Blob
9012
9049
  */
9013
- BlobID?: string;
9050
+ BlobID: string;
9014
9051
  Data?: string;
9015
9052
  Handler: string;
9016
9053
  MimeType?: string;