@springtree/eva-services-core-management 2.6.1 → 2.8.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.
|
@@ -26,6 +26,19 @@ export declare namespace CoreManagement {
|
|
|
26
26
|
request?: EVA.Core.Management.AddLoyaltyProgramPriceList;
|
|
27
27
|
response?: EVA.Core.EmptyResponseMessage;
|
|
28
28
|
}
|
|
29
|
+
/**
|
|
30
|
+
* Add a custom field requirement to the loyalty program. NOTE THAT a custom field can only be set once as a requirement.
|
|
31
|
+
*
|
|
32
|
+
* @export
|
|
33
|
+
* @class AddLoyaltyProgramRequiredCustomField
|
|
34
|
+
* @implements {EvaService}
|
|
35
|
+
*/
|
|
36
|
+
class AddLoyaltyProgramRequiredCustomField implements IEvaServiceDefinition {
|
|
37
|
+
name: string;
|
|
38
|
+
path: string;
|
|
39
|
+
request?: EVA.Core.Management.AddLoyaltyProgramRequiredCustomField;
|
|
40
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
41
|
+
}
|
|
29
42
|
/**
|
|
30
43
|
* Add a package to a carrier
|
|
31
44
|
*
|
|
@@ -68,6 +81,19 @@ But if the list is a mixed product list, all updates will be applied according t
|
|
|
68
81
|
request?: EVA.Core.Management.AddProductsToAssortment;
|
|
69
82
|
response?: EVA.Core.EmptyResponseMessage;
|
|
70
83
|
}
|
|
84
|
+
/**
|
|
85
|
+
* Add required custom fields to ManualDiscount
|
|
86
|
+
*
|
|
87
|
+
* @export
|
|
88
|
+
* @class AddRequiredCustomFieldsToManualDiscount
|
|
89
|
+
* @implements {EvaService}
|
|
90
|
+
*/
|
|
91
|
+
class AddRequiredCustomFieldsToManualDiscount implements IEvaServiceDefinition {
|
|
92
|
+
name: string;
|
|
93
|
+
path: string;
|
|
94
|
+
request?: EVA.Core.Management.AddRequiredCustomFieldsToManualDiscount;
|
|
95
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
96
|
+
}
|
|
71
97
|
/**
|
|
72
98
|
* Add security roles to ManualDiscount
|
|
73
99
|
*
|
|
@@ -5296,6 +5322,19 @@ or to get a specific product in an assortment by filtering on both.
|
|
|
5296
5322
|
request?: EVA.Core.Management.ListLoyaltyProgramProductLimitations;
|
|
5297
5323
|
response?: EVA.Core.Management.ListLoyaltyProgramProductLimitationsResponse;
|
|
5298
5324
|
}
|
|
5325
|
+
/**
|
|
5326
|
+
* List the loyalty program CustomFieldRequirements
|
|
5327
|
+
*
|
|
5328
|
+
* @export
|
|
5329
|
+
* @class ListLoyaltyProgramRequiredCustomFields
|
|
5330
|
+
* @implements {EvaService}
|
|
5331
|
+
*/
|
|
5332
|
+
class ListLoyaltyProgramRequiredCustomFields implements IEvaServiceDefinition {
|
|
5333
|
+
name: string;
|
|
5334
|
+
path: string;
|
|
5335
|
+
request?: EVA.Core.Management.ListLoyaltyProgramRequiredCustomFields;
|
|
5336
|
+
response?: EVA.Core.Management.ListLoyaltyProgramRequiredCustomFieldsResponse;
|
|
5337
|
+
}
|
|
5299
5338
|
/**
|
|
5300
5339
|
* List the LoyaltyPrograms
|
|
5301
5340
|
*
|
|
@@ -6360,6 +6399,19 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
|
|
|
6360
6399
|
request?: EVA.Core.Management.PushCase;
|
|
6361
6400
|
response?: EVA.Core.Management.PushCaseResponse;
|
|
6362
6401
|
}
|
|
6402
|
+
/**
|
|
6403
|
+
* Push a DiscountCoupon
|
|
6404
|
+
*
|
|
6405
|
+
* @export
|
|
6406
|
+
* @class PushDiscountCoupons
|
|
6407
|
+
* @implements {EvaService}
|
|
6408
|
+
*/
|
|
6409
|
+
class PushDiscountCoupons implements IEvaServiceDefinition {
|
|
6410
|
+
name: string;
|
|
6411
|
+
path: string;
|
|
6412
|
+
request?: EVA.Core.Management.PushDiscountCoupons;
|
|
6413
|
+
response?: EVA.Core.Management.PushDiscountCouponsResponse;
|
|
6414
|
+
}
|
|
6363
6415
|
/**
|
|
6364
6416
|
* Push a LoyaltyProgram.
|
|
6365
6417
|
If it doesn't exist it will be created, otherwise is will be updated.
|
|
@@ -6527,6 +6579,19 @@ NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA
|
|
|
6527
6579
|
request?: EVA.Core.Management.RemoveLoyaltyProgramPriceList;
|
|
6528
6580
|
response?: EVA.Core.EmptyResponseMessage;
|
|
6529
6581
|
}
|
|
6582
|
+
/**
|
|
6583
|
+
* Removes a custom field requirement from a loyalty program.
|
|
6584
|
+
*
|
|
6585
|
+
* @export
|
|
6586
|
+
* @class RemoveLoyaltyProgramRequiredCustomField
|
|
6587
|
+
* @implements {EvaService}
|
|
6588
|
+
*/
|
|
6589
|
+
class RemoveLoyaltyProgramRequiredCustomField implements IEvaServiceDefinition {
|
|
6590
|
+
name: string;
|
|
6591
|
+
path: string;
|
|
6592
|
+
request?: EVA.Core.Management.RemoveLoyaltyProgramRequiredCustomField;
|
|
6593
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
6594
|
+
}
|
|
6530
6595
|
/**
|
|
6531
6596
|
* Remove a package from a carrier
|
|
6532
6597
|
*
|
|
@@ -6566,6 +6631,19 @@ NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA
|
|
|
6566
6631
|
request?: EVA.Core.Management.RemoveProductsFromAssortment;
|
|
6567
6632
|
response?: EVA.Core.EmptyResponseMessage;
|
|
6568
6633
|
}
|
|
6634
|
+
/**
|
|
6635
|
+
* Remove required custom fields from ManualDiscount
|
|
6636
|
+
*
|
|
6637
|
+
* @export
|
|
6638
|
+
* @class RemoveRequiredCustomFieldsFromManualDiscount
|
|
6639
|
+
* @implements {EvaService}
|
|
6640
|
+
*/
|
|
6641
|
+
class RemoveRequiredCustomFieldsFromManualDiscount implements IEvaServiceDefinition {
|
|
6642
|
+
name: string;
|
|
6643
|
+
path: string;
|
|
6644
|
+
request?: EVA.Core.Management.RemoveRequiredCustomFieldsFromManualDiscount;
|
|
6645
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
6646
|
+
}
|
|
6569
6647
|
/**
|
|
6570
6648
|
* Remove security roles from ManualDiscount
|
|
6571
6649
|
*
|
|
@@ -6727,7 +6805,7 @@ You can provide further details by setting RelatedItems. These can either
|
|
|
6727
6805
|
response?: EVA.Core.EmptyResponseMessage;
|
|
6728
6806
|
}
|
|
6729
6807
|
/**
|
|
6730
|
-
* Set the loyalty program payment types for the order.
|
|
6808
|
+
* Set the optional loyalty program payment types for the order.
|
|
6731
6809
|
*
|
|
6732
6810
|
* @export
|
|
6733
6811
|
* @class SetOrderLoyaltyProgramPaymentTypes
|
|
@@ -8172,32 +8250,6 @@ The data for this service can be gotten by first calling DownloadAssortmentProdu
|
|
|
8172
8250
|
request?: EVA.Core.Management.UploadCouponExcel;
|
|
8173
8251
|
response?: EVA.Core.Management.UploadCouponExcelResponse;
|
|
8174
8252
|
}
|
|
8175
|
-
/**
|
|
8176
|
-
* Upload an excel with coupons.
|
|
8177
|
-
*
|
|
8178
|
-
* @export
|
|
8179
|
-
* @class UploadCouponExcel_Async
|
|
8180
|
-
* @implements {EvaService}
|
|
8181
|
-
*/
|
|
8182
|
-
class UploadCouponExcel_Async implements IEvaServiceDefinition {
|
|
8183
|
-
name: string;
|
|
8184
|
-
path: string;
|
|
8185
|
-
request?: EVA.Core.Management.UploadCouponExcel;
|
|
8186
|
-
response?: EVA.Core.AsyncRequestResponse;
|
|
8187
|
-
}
|
|
8188
|
-
/**
|
|
8189
|
-
* Upload an excel with coupons.
|
|
8190
|
-
*
|
|
8191
|
-
* @export
|
|
8192
|
-
* @class UploadCouponExcel_AsyncResult
|
|
8193
|
-
* @implements {EvaService}
|
|
8194
|
-
*/
|
|
8195
|
-
class UploadCouponExcel_AsyncResult implements IEvaServiceDefinition {
|
|
8196
|
-
name: string;
|
|
8197
|
-
path: string;
|
|
8198
|
-
request?: EVA.Core.AsyncRequestResultRequest;
|
|
8199
|
-
response?: EVA.Core.Management.UploadCouponExcelResponse;
|
|
8200
|
-
}
|
|
8201
8253
|
/**
|
|
8202
8254
|
* Upload the Excel based on the sample from `DownloadCustomersSample`.
|
|
8203
8255
|
|