@springtree/eva-services-core-management 3.0.0-beta.10 → 3.0.0-beta.11
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.
- package/lib/eva-services-core-management.d.ts +36 -0
- package/lib/eva-services-core-management.d.ts.map +1 -1
- package/lib/eva-services-core-management.js.map +1 -1
- package/lib/eva-services-core-management.services.d.ts +25 -1
- package/lib/eva-services-core-management.services.d.ts.map +1 -1
- package/lib/eva-services-core-management.services.js +24 -0
- package/lib/eva-services-core-management.services.js.map +1 -1
- package/package.json +2 -2
|
@@ -2961,6 +2961,24 @@ export interface GenerateDiscountCoupons {
|
|
|
2961
2961
|
Quantity?: number;
|
|
2962
2962
|
Suffix?: string;
|
|
2963
2963
|
}
|
|
2964
|
+
export interface GenerateDiscountCoupons_Async {
|
|
2965
|
+
/**
|
|
2966
|
+
* Entity type: Discount
|
|
2967
|
+
*/
|
|
2968
|
+
DiscountID: string;
|
|
2969
|
+
MaximumUsage?: number;
|
|
2970
|
+
Prefix?: string;
|
|
2971
|
+
Quantity?: number;
|
|
2972
|
+
Suffix?: string;
|
|
2973
|
+
}
|
|
2974
|
+
export interface GenerateDiscountCoupons_AsyncResponse {
|
|
2975
|
+
Error?: ServiceError;
|
|
2976
|
+
JobID?: string;
|
|
2977
|
+
Metadata?: ResponseMessageMetadata;
|
|
2978
|
+
}
|
|
2979
|
+
export interface GenerateDiscountCoupons_AsyncResult {
|
|
2980
|
+
JobID?: string;
|
|
2981
|
+
}
|
|
2964
2982
|
/**
|
|
2965
2983
|
* 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
2984
|
*/
|
|
@@ -3927,6 +3945,24 @@ export interface UploadCouponExcelResponse {
|
|
|
3927
3945
|
IsProcessedAsync: boolean;
|
|
3928
3946
|
Metadata?: ResponseMessageMetadata;
|
|
3929
3947
|
}
|
|
3948
|
+
export interface UploadCouponExcel_Async {
|
|
3949
|
+
/**
|
|
3950
|
+
* Entity type: Blob
|
|
3951
|
+
*/
|
|
3952
|
+
BlobID?: string;
|
|
3953
|
+
/**
|
|
3954
|
+
* Entity type: Discount
|
|
3955
|
+
*/
|
|
3956
|
+
DiscountID: string;
|
|
3957
|
+
}
|
|
3958
|
+
export interface UploadCouponExcel_AsyncResponse {
|
|
3959
|
+
Error?: ServiceError;
|
|
3960
|
+
JobID?: string;
|
|
3961
|
+
Metadata?: ResponseMessageMetadata;
|
|
3962
|
+
}
|
|
3963
|
+
export interface UploadCouponExcel_AsyncResult {
|
|
3964
|
+
JobID?: string;
|
|
3965
|
+
}
|
|
3930
3966
|
/**
|
|
3931
3967
|
* Validates the given discount information
|
|
3932
3968
|
*/
|