@springtree/eva-services-core-management 2.6.1 → 2.7.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
|
*
|
|
@@ -6527,6 +6566,19 @@ NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA
|
|
|
6527
6566
|
request?: EVA.Core.Management.RemoveLoyaltyProgramPriceList;
|
|
6528
6567
|
response?: EVA.Core.EmptyResponseMessage;
|
|
6529
6568
|
}
|
|
6569
|
+
/**
|
|
6570
|
+
* Removes a custom field requirement from a loyalty program.
|
|
6571
|
+
*
|
|
6572
|
+
* @export
|
|
6573
|
+
* @class RemoveLoyaltyProgramRequiredCustomField
|
|
6574
|
+
* @implements {EvaService}
|
|
6575
|
+
*/
|
|
6576
|
+
class RemoveLoyaltyProgramRequiredCustomField implements IEvaServiceDefinition {
|
|
6577
|
+
name: string;
|
|
6578
|
+
path: string;
|
|
6579
|
+
request?: EVA.Core.Management.RemoveLoyaltyProgramRequiredCustomField;
|
|
6580
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
6581
|
+
}
|
|
6530
6582
|
/**
|
|
6531
6583
|
* Remove a package from a carrier
|
|
6532
6584
|
*
|
|
@@ -6566,6 +6618,19 @@ NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA
|
|
|
6566
6618
|
request?: EVA.Core.Management.RemoveProductsFromAssortment;
|
|
6567
6619
|
response?: EVA.Core.EmptyResponseMessage;
|
|
6568
6620
|
}
|
|
6621
|
+
/**
|
|
6622
|
+
* Remove required custom fields from ManualDiscount
|
|
6623
|
+
*
|
|
6624
|
+
* @export
|
|
6625
|
+
* @class RemoveRequiredCustomFieldsFromManualDiscount
|
|
6626
|
+
* @implements {EvaService}
|
|
6627
|
+
*/
|
|
6628
|
+
class RemoveRequiredCustomFieldsFromManualDiscount implements IEvaServiceDefinition {
|
|
6629
|
+
name: string;
|
|
6630
|
+
path: string;
|
|
6631
|
+
request?: EVA.Core.Management.RemoveRequiredCustomFieldsFromManualDiscount;
|
|
6632
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
6633
|
+
}
|
|
6569
6634
|
/**
|
|
6570
6635
|
* Remove security roles from ManualDiscount
|
|
6571
6636
|
*
|
|
@@ -6727,7 +6792,7 @@ You can provide further details by setting RelatedItems. These can either
|
|
|
6727
6792
|
response?: EVA.Core.EmptyResponseMessage;
|
|
6728
6793
|
}
|
|
6729
6794
|
/**
|
|
6730
|
-
* Set the loyalty program payment types for the order.
|
|
6795
|
+
* Set the optional loyalty program payment types for the order.
|
|
6731
6796
|
*
|
|
6732
6797
|
* @export
|
|
6733
6798
|
* @class SetOrderLoyaltyProgramPaymentTypes
|